*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --red: #ff2a0c;
  --red-soft: #ff5a42;
  --charcoal: #2d2c2c;
  --graphite: #1f1f1f;
  --ink: #252525;
  --text: #595959;
  --muted: #bababa;
  --line: #e8e8e8;
  --paper: #ffffff;
  --off-white: #f6f6f6;
  --font-main: "Roboto", Arial, sans-serif;
  --font-title: "Rubik", Arial, sans-serif;
  --font-accent: "Roboto Slab", Georgia, serif;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-main);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(45, 44, 44, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: min-height 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  min-height: 70px;
  background: rgba(31, 31, 31, 0.97);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.brand img {
  width: auto;
  height: clamp(42px, 5vw, 54px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-title);
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--red);
}

.site-nav .nav-cta {
  padding: 11px 18px;
  color: #fff;
  background: var(--red);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: 132px clamp(20px, 6vw, 86px) 108px;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 31, 31, 0.94) 0%, rgba(31, 31, 31, 0.74) 44%, rgba(31, 31, 31, 0.28) 100%),
    url("assets/roma/showroom-cucina-scavolini.jpeg") center / cover;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(45, 44, 44, 0), rgba(45, 44, 44, 0.92));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-lead-form {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 32px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.hero-lead-form .form-kicker {
  margin: 0;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-lead-form h2 {
  margin-bottom: 4px;
  color: var(--charcoal);
  font-size: 28px;
}

.hero-lead-form .button {
  width: 100%;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--red);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-title);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 300;
}

.showroom-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: clamp(12px, 2vw, 24px);
  padding: clamp(16px, 3vw, 30px);
  background: var(--paper);
}

.showroom-strip img {
  width: 100%;
  height: clamp(210px, 24vw, 360px);
  object-fit: cover;
}

.lead-section {
  background: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.proof-grid article {
  display: grid;
  justify-items: center;
  min-height: 280px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--off-white);
  text-align: center;
}

.proof-grid span {
  display: block;
  margin-bottom: 38px;
  color: var(--red);
  font-family: var(--font-accent);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
}

.proof-icon {
  width: 54px;
  height: 54px;
}

.proof-grid .proof-icon {
  display: block;
}

.proof-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.9;
}

.proof-grid h3 {
  margin-bottom: 14px;
}

.proof-grid p {
  margin-bottom: 0;
  color: var(--text);
}

.video-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--off-white);
}

.video-copy p {
  color: var(--text);
  font-size: 1.06rem;
}

.video-section video {
  width: 100%;
  max-height: 640px;
  background: #000;
  box-shadow: var(--shadow);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: var(--red);
}

.button.primary:hover {
  background: var(--red-soft);
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.button.secondary {
  color: var(--red);
  border-color: var(--red);
  background: #fff;
}

.hero-bottom {
  position: absolute;
  right: clamp(20px, 6vw, 86px);
  bottom: 32px;
  left: clamp(20px, 6vw, 86px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-bottom span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: rgba(255, 255, 255, 0.88);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.hero-bottom span:last-child {
  border-right: 0;
}

.promo-section {
  padding: clamp(34px, 6vw, 72px) clamp(20px, 6vw, 86px);
  background: var(--off-white);
}

.promo-card {
  display: grid;
  grid-template-columns: minmax(150px, 230px) minmax(280px, 1fr) auto;
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border: 2px solid var(--red);
  border-radius: 18px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.14);
}

.promo-logo {
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
}

.promo-logo img {
  width: 100%;
}

.promo-card .eyebrow {
  color: var(--red);
  font-size: 0.92rem;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.promo-card h2 {
  margin-bottom: 12px;
  color: var(--red);
}

.promo-card p:not(.eyebrow) {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 700;
}

.promo-action {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.promo-action span {
  color: var(--text);
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-band,
.section {
  padding: clamp(58px, 8vw, 108px) clamp(20px, 6vw, 86px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  background: var(--off-white);
}

.intro-band p:last-child {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.intro-text {
  display: grid;
  gap: 18px;
  padding-left: clamp(0px, 2vw, 34px);
  border-left: 4px solid var(--red);
}

.intro-text p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.48rem);
  font-weight: 400;
  line-height: 1.62;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.environment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.environment-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--charcoal);
}

.environment-card.large {
  grid-row: span 2;
  min-height: 742px;
}

.environment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.environment-card:hover img {
  transform: scale(1.035);
}

.environment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.72));
}

.environment-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: clamp(22px, 4vw, 42px);
  color: #fff;
}

.environment-card span {
  display: block;
  margin-bottom: 8px;
  color: #ff9a4d;
  font-family: var(--font-title);
  font-weight: 800;
  text-transform: uppercase;
}

.dark-section {
  color: #fff;
  background: var(--charcoal);
}

.dark-section h2 {
  color: #fff;
}

.dark-section .eyebrow {
  color: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.service-grid article {
  min-height: 300px;
  padding: 34px 28px;
  background: #353333;
}

.service-grid span {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 46px;
  color: var(--red-soft);
  font-family: var(--font-accent);
  font-size: 1.7rem;
  font-weight: 700;
}

.service-grid h3 {
  margin-bottom: 16px;
  color: #fff;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 300;
}

.story-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  background: var(--off-white);
}

.gallery-section {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--off-white);
}

.story-image {
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--charcoal);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy p {
  color: var(--text);
  font-size: 1.06rem;
}

.chat-section {
  background: var(--charcoal);
  color: #fff;
}

.chat-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(260px, 360px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.chat-icon {
  display: grid;
  width: clamp(84px, 10vw, 124px);
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #fff;
}

.chat-icon img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.chat-section .eyebrow {
  color: #fff;
}

.chat-section h2 {
  color: #fff;
}

.chat-section p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.26rem);
}

.chat-hours {
  display: grid;
  gap: 8px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.chat-hours span {
  color: var(--muted);
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.chat-hours strong {
  margin-bottom: 12px;
  color: var(--red-soft);
  font-family: var(--font-title);
  font-size: 1.55rem;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--red);
  font-family: var(--font-title);
  font-weight: 800;
  text-transform: uppercase;
}

.appointment-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1fr;
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
}

.reviews-section {
  overflow: hidden;
  background: var(--off-white);
}

.reviews-carousel {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 420ms ease;
}

.review-slide {
  flex: 0 0 100%;
  min-height: 330px;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(28px, 5vw, 58px);
  border: 2px solid var(--red);
  border-radius: 8px;
  background: #fff;
}

.review-slide p {
  max-width: 920px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  text-align: center;
}

.review-slide strong {
  color: var(--red);
  font-family: var(--font-title);
  font-size: 1.02rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.reviews-dots button {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c8c8c8;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.reviews-dots button[aria-current="true"] {
  background: var(--red);
  transform: scale(1.18);
}

.appointment-copy p {
  color: var(--text);
  font-size: 1.08rem;
}

.direct-contacts {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.direct-contacts a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 18px;
  color: var(--charcoal);
  border: 1px solid var(--line);
  font-family: var(--font-title);
  font-weight: 700;
}

.direct-contacts a:hover {
  color: var(--red);
  border-color: var(--red);
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  background: var(--off-white);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-family: var(--font-title);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.privacy-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--text);
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.35;
  text-transform: none;
}

.privacy-field input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--red);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d6d6d6;
  border-radius: 0;
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  outline: none;
  text-transform: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 42, 12, 0.12);
}

.privacy-field input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  padding: 0;
  box-shadow: none;
}

.form-note {
  margin: 0;
  color: #777;
  font-size: 0.92rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(300px, 1.6fr) auto;
  align-items: start;
  gap: 20px;
  padding: 34px clamp(20px, 6vw, 86px);
  color: #fff;
  background: #000;
}

.site-footer img {
  width: auto;
  height: 58px;
}

.site-footer .footer-scavolini {
  height: auto;
  width: min(220px, 100%);
  padding: 0;
  background: transparent;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-data {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer-data strong {
  color: #fff;
  font-family: var(--font-title);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--muted);
  font-family: var(--font-title);
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 16px 20px 26px;
    background: rgba(31, 31, 31, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-130%);
    transition: transform 180ms ease;
  }

  .site-nav.open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 0;
  }

  .site-nav .nav-cta {
    margin-top: 10px;
    text-align: center;
  }

  .hero-bottom,
  .promo-card,
  .intro-band,
  .story-section,
  .chat-panel,
  .appointment-section,
  .service-grid,
  .hero,
  .proof-grid,
  .video-section {
    grid-template-columns: 1fr;
  }

  .hero-bottom {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 50px;
  }

  .hero-bottom span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .environment-grid {
    grid-template-columns: 1fr;
  }

  .showroom-strip,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .environment-card.large,
  .environment-card {
    min-height: 420px;
  }

  .review-slide {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 72px;
  }

  .brand img {
    height: 42px;
  }

  .site-nav {
    top: 72px;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-inner,
  .hero-lead-form,
  .intro-band,
  .intro-copy,
  .intro-text,
  .video-copy,
  .promo-content {
    text-align: center;
  }

  .hero-inner {
    margin-inline: auto;
  }

  h1,
  .hero-copy {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-lead-form {
    justify-items: center;
  }

  .hero-lead-form label,
  .lead-form label {
    width: 100%;
    text-align: center;
  }

  .hero-lead-form .privacy-field,
  .lead-form .privacy-field {
    justify-content: center;
    width: min(100%, 420px);
    margin-inline: auto;
    text-align: left;
  }

  .intro-band {
    justify-items: center;
  }

  .intro-text {
    padding-left: 0;
    border-left: 0;
  }

  .showroom-strip,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .promo-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .promo-logo {
    max-width: 280px;
    margin: 0 auto;
  }

  .promo-action {
    justify-items: center;
    text-align: center;
  }

  .showroom-strip img {
    height: 260px;
  }

  .review-slide {
    min-height: 0;
  }

  .hero-copy,
  .section-heading,
  .hero-lead-form,
  .lead-form,
  .form-note,
  .proof-grid article,
  .environment-card div,
  .service-grid article,
  .story-copy,
  .chat-panel,
  .chat-hours,
  .appointment-copy,
  .review-slide,
  .footer-brand,
  .footer-data {
    text-align: center;
  }

  .chat-icon {
    display: none;
  }

  .direct-contacts,
  .footer-brand,
  .footer-data {
    align-items: center;
    justify-items: center;
  }

  .site-footer {
    justify-items: center;
    text-align: center;
  }

  h2 {
    font-size: 40px;
  }

  .field-row,
  .hero-actions,
  .form-actions,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .field-row,
  .site-footer {
    display: grid;
  }

  .button,
  .site-footer {
    width: 100%;
  }

  .site-footer {
    justify-items: center;
  }
}
