:root {
  --black: #0b0b0a;
  --charcoal: #151612;
  --cream: #f5f3ee;
  --cream-deep: #ebe6dc;
  --olive: #7f8760;
  --olive-dark: #626a48;
  --sage: #a8af8a;
  --wood: #c39569;
  --white: #ffffff;
  --muted: #6e7068;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --shadow: 0 25px 75px rgba(12, 12, 10, .18);
  --line-light: rgba(11, 11, 10, .14);
  --line-dark: rgba(255, 255, 255, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  color: var(--black);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.container {
  width: min(1200px, calc(100% - 42px));
  margin-inline: auto;
}
.section-light, .section-cream, .section-black { padding: 115px 0; }
.section-light { background: var(--cream); }
.section-cream { background: var(--cream-deep); }
.section-black { background: var(--black); color: var(--cream); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 12px; top: 12px; z-index: 1000;
  transform: translateY(-160%);
  padding: .7rem 1rem; background: var(--cream); color: var(--black);
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.16);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  position: fixed;
  background: rgba(8,8,7,.93);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 35px rgba(0,0,0,.2);
}
.nav-shell {
  min-height: 88px;
  display: grid;
  grid-template-columns: 210px 1fr 120px;
  align-items: center;
  gap: 2rem;
}
.brand { display: block; width: 190px; text-decoration: none; }
.brand img { width: 100%; height: auto; }
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}
.main-nav a {
  position: relative;
  text-decoration: none;
  font-size: .72rem;
  letter-spacing: .06em;
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -.45rem;
  width: 0; height: 1px; background: var(--sage);
  transition: width .25s ease;
}
.main-nav a:hover::after { width: 100%; }

.nav-whatsapp {
  justify-self: end;
  min-width: 112px;
  padding: .65rem .9rem;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  text-decoration: none;
  font-size: .71rem;
  font-weight: 700;
}
.nav-whatsapp svg { width: 16px; fill: currentColor; }
.nav-whatsapp:hover { color: var(--black); background: var(--cream); }
.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px; height: 44px; padding: 8px;
  border: 0; background: transparent;
}
.menu-toggle span {
  display: block; width: 25px; height: 1px;
  margin: 6px auto; background: currentColor;
}

/* Hero */
.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
}
.hero-media, .hero-overlay {
  position: absolute; inset: 0;
}
.hero-media {
  background: url("assets/images/hero-bar.webp") center 48% / cover no-repeat;
  transform: scale(1.015);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6,6,5,.94) 0%, rgba(6,6,5,.76) 42%, rgba(6,6,5,.18) 77%, rgba(6,6,5,.28) 100%),
    linear-gradient(0deg, rgba(6,6,5,.45), transparent 55%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
  padding-top: 100px;
}
.hero-copy { max-width: 700px; }
.eyebrow, .section-label {
  margin: 0 0 1.2rem;
  color: var(--olive);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .21em;
}
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.7rem, 8vw, 7.7rem);
  line-height: .83;
  letter-spacing: -.04em;
  font-weight: 600;
}
.hero h1 em {
  display: inline-block;
  color: var(--sage);
  font-weight: 500;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 2rem 0 0;
  color: rgba(245,243,238,.78);
  font-size: 1.02rem;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: .8rem;
  margin-top: 2.2rem;
}
.button {
  min-height: 51px;
  padding: .84rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center; justify-content: center;
  text-decoration: none;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .075em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-olive { background: var(--olive); color: white; }
.button-olive:hover { background: var(--olive-dark); }
.button-ghost { border-color: rgba(255,255,255,.46); color: white; }
.button-ghost:hover { background: var(--cream); color: var(--black); }
.button-dark { background: var(--black); color: white; }
.button-dark:hover { background: var(--olive-dark); }

.hero-social {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 2.4rem;
  font-size: .68rem;
  letter-spacing: .08em;
}
.hero-social a { text-decoration: none; }
.hero-social a:hover { color: var(--sage); }
.hero-social span { width: 28px; height: 1px; background: rgba(255,255,255,.35); }

.hero-badge {
  align-self: end;
  width: 240px;
  margin-bottom: 55px;
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,.27);
  background: rgba(8,8,7,.55);
  backdrop-filter: blur(10px);
}
.hero-badge img { width: 58px; margin-bottom: 1rem; filter: invert(1); opacity: .8; }
.hero-badge p { margin: 0; font-family: var(--serif); font-size: 1.3rem; line-height: 1.15; }
.hero-badge strong { color: var(--sage); font-weight: 500; }

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%; bottom: 24px;
  transform: translateX(-50%);
  display: grid; place-items: center; gap: .7rem;
  text-decoration: none;
  font-size: .55rem; letter-spacing: .18em;
}
.scroll-cue i { width: 1px; height: 34px; background: rgba(255,255,255,.5); }

/* Section headings */
.section-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 55px;
}
.section-heading.compact { grid-template-columns: 1fr; }
.section-heading h2,
.essence-copy h2,
.portfolio-copy h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.3vw, 5.2rem);
  line-height: .92;
  letter-spacing: -.025em;
  font-weight: 600;
}
.section-heading > p { margin: 0; color: var(--muted); }
.section-heading.on-dark > p { color: rgba(245,243,238,.58); }

/* Essence */
.essence-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(4rem, 8vw, 8rem);
  align-items: center;
}
.essence-copy .lead, .about-copy .lead {
  margin: 2rem 0 1rem;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.3;
}
.essence-copy > p:not(.section-label):not(.lead),
.about-copy > p:not(.section-label):not(.lead):not(.signature) { color: var(--muted); }
.arrow-link {
  display: inline-flex; gap: .7rem;
  margin-top: 1.5rem;
  padding-bottom: .25rem;
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
  font-size: .72rem; font-weight: 700; letter-spacing: .07em;
}
.arrow-link:hover { color: var(--olive-dark); }
.essence-image { margin: 0; position: relative; }
.essence-image img {
  width: 100%; max-height: 670px; object-fit: cover;
  box-shadow: var(--shadow);
}
.essence-image::before {
  content: ""; position: absolute;
  inset: -18px 28px 36px -18px;
  border: 1px solid rgba(127,135,96,.5);
  z-index: -1;
}
.essence-image figcaption {
  margin-top: .8rem;
  color: var(--muted);
  font-size: .68rem; letter-spacing: .08em;
}

/* Statement */
.statement { padding: 90px 0; }
.statement-row {
  display: grid;
  grid-template-columns: .28fr 1.72fr;
  gap: 3rem;
}
.statement blockquote {
  margin: 0;
  max-width: 970px;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: .98;
}
.statement blockquote em { color: var(--sage); font-weight: 500; }

/* Experiences */
.feature-layout {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 16px;
}
.feature-main {
  position: relative; min-height: 720px; overflow: hidden; color: white;
}
.feature-main img { width: 100%; height: 100%; object-fit: cover; }
.feature-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,7,6,.96), rgba(7,7,6,.08) 62%);
}
.feature-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.4rem;
}
.feature-content > span, .text-card > span {
  color: var(--sage); font-size: .62rem; font-weight: 700; letter-spacing: .17em;
}
.feature-content h3, .text-card h3 {
  margin: .65rem 0 .7rem;
  font-family: var(--serif); line-height: 1; font-weight: 600;
}
.feature-content h3 { font-size: 3rem; }
.feature-content p { max-width: 640px; color: rgba(255,255,255,.75); }
.feature-content a, .text-card a {
  display: inline-flex; align-items: center; gap: .6rem;
  margin-top: 1.25rem;
  text-decoration: none; font-size: .7rem; font-weight: 700; letter-spacing: .07em;
}
.feature-content a b, .text-card a b { font-size: 1rem; }
.feature-side { display: grid; grid-template-rows: repeat(3, 1fr); gap: 16px; }
.text-card {
  min-height: 220px;
  padding: 1.8rem;
  border: 1px solid var(--line-light);
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.text-card h3 { font-size: 2.1rem; }
.text-card p { margin: 0; color: var(--muted); font-size: .84rem; }
.text-card a { color: var(--olive-dark); }
.dark-card { color: white; background: var(--charcoal); border-color: transparent; }
.dark-card p { color: rgba(255,255,255,.62); }
.dark-card a { color: var(--sage); }
.olive-card { color: white; background: var(--olive-dark); border-color: transparent; }
.olive-card > span { color: var(--cream); }
.olive-card p { color: rgba(255,255,255,.73); }
.olive-card a { color: white; }

.stations-title {
  display: flex; align-items: end; justify-content: space-between;
  gap: 2rem; margin: 95px 0 32px;
}
.stations-title h3 {
  margin: 0; font-family: var(--serif); font-size: 2.8rem; line-height: 1;
}
.station-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.station-card { background: var(--cream); border: 1px solid var(--line-light); }
.station-card figure {
  position: relative; margin: 0; overflow: hidden; aspect-ratio: 4 / 5;
  background: var(--black);
}
.station-card figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.station-card:hover figure img { transform: scale(1.035); }
.station-card figure span {
  position: absolute; left: 1rem; bottom: 1rem;
  padding: .42rem .65rem; background: rgba(8,8,7,.78); color: white;
  font-size: .58rem; font-weight: 700; letter-spacing: .15em;
}
.station-card > div { padding: 1.45rem; }
.station-card h3 {
  margin: 0 0 .6rem; font-family: var(--serif); font-size: 1.8rem; line-height: 1;
}
.station-card p { margin: 0; color: var(--muted); font-size: .8rem; }

/* Steps */
.process { background: var(--cream); }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.step { padding: 2.6rem 2.4rem 2.6rem 0; }
.step + .step { padding-left: 2.4rem; border-left: 1px solid var(--line-light); }
.step span { font-family: var(--serif); font-size: 1.4rem; color: var(--olive); }
.step h3 {
  margin: 1.7rem 0 .8rem; font-family: var(--serif); font-size: 2.1rem; line-height: 1;
}
.step p { margin: 0; color: var(--muted); font-size: .84rem; }

/* Services */
.service-list { border-top: 1px solid var(--line-dark); }
.service-row {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 2rem;
  align-items: center; padding: 2rem 0;
  border-bottom: 1px solid var(--line-dark);
}
.service-number { color: var(--olive); font-family: var(--serif); font-size: 1.25rem; }
.service-row h3 { margin: 0; font-family: var(--serif); font-size: 2.05rem; font-weight: 500; }
.service-row p { margin: .2rem 0 0; color: rgba(245,243,238,.55); font-size: .82rem; }
.service-row b {
  padding: .42rem .7rem; border: 1px solid rgba(255,255,255,.2); border-radius: 999px;
  color: rgba(245,243,238,.65); font-size: .59rem; font-weight: 600; letter-spacing: .08em;
}

/* Gallery */
.gallery-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px; gap: 14px;
}
.gallery-item {
  position: relative; grid-column: span 4;
  padding: 0; border: 0; background: var(--black); overflow: hidden; cursor: zoom-in;
}
.gallery-item.gallery-wide { grid-column: span 8; }
.gallery-item.gallery-tall { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease, opacity .45s ease;
}
.gallery-item:hover img { transform: scale(1.03); opacity: .88; }
.lightbox {
  width: min(1100px, calc(100% - 24px)); max-height: 92vh;
  padding: 0; border: 0; background: transparent; overflow: visible;
}
.lightbox::backdrop { background: rgba(0,0,0,.88); backdrop-filter: blur(4px); }
.lightbox img { max-width: 100%; max-height: 88vh; margin: auto; object-fit: contain; }
.lightbox-close {
  position: absolute; right: -4px; top: -48px;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4); background: #111; color: white;
  font-size: 1.5rem; cursor: pointer;
}

/* Portfolio */
.portfolio-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(4rem, 8vw, 8rem);
  align-items: center;
}
.portfolio-preview {
  position: relative; padding: 26px; background: #111; box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}
.portfolio-preview::after {
  content: ""; position: absolute; inset: 28px -25px -26px 25px;
  border: 1px solid rgba(127,135,96,.55); z-index: -1;
}
.portfolio-preview img { width: 100%; }
.portfolio-page {
  position: absolute; right: 1.5rem; bottom: 1rem;
  color: rgba(255,255,255,.64); font-size: .55rem; letter-spacing: .18em;
}
.portfolio-copy > p:not(.section-label) { color: var(--muted); margin: 1.5rem 0 1.8rem; }
.portfolio-copy small { display: block; margin-top: .8rem; color: var(--muted); }

/* About */
.about-grid {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(4rem, 8vw, 8rem);
  align-items: center;
}
.signature {
  margin-top: 2rem; color: var(--olive-dark);
  font-family: var(--serif); font-style: italic; font-size: 2.2rem;
}
.about-brand { display: grid; grid-template-columns: 1fr; gap: 15px; }
.about-brand-main { background: var(--cream); box-shadow: var(--shadow); }
.about-brand-main img { width: 100%; }
.brand-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.brand-mini img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: contain; background: var(--cream);
  padding: 1.5rem;
}

/* Marquee */
.marquee { padding: 24px 0; background: var(--olive); color: white; overflow: hidden; }
.marquee-track {
  width: max-content; display: flex; align-items: center; gap: 2.3rem;
  white-space: nowrap; animation: marquee 28s linear infinite;
  font-family: var(--serif); font-size: 1.8rem; letter-spacing: .04em;
}
.marquee-track i { font-size: .72rem; font-style: normal; }

/* Contact */
.contact-grid {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(4rem, 8vw, 8rem);
  align-items: start;
}
.contact-copy h2 em { color: var(--sage); font-weight: 500; }
.contact-copy > p:not(.section-label) { color: rgba(245,243,238,.58); }
.contact-links { margin-top: 2.5rem; border-top: 1px solid var(--line-dark); }
.contact-links a {
  padding: 1rem 0; border-bottom: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  text-decoration: none;
}
.contact-links span { color: var(--olive); font-size: .58rem; letter-spacing: .17em; }
.contact-links strong { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; }
.contact-links a:hover strong { color: var(--sage); }

.quote-form { padding: 2.1rem; background: var(--cream); color: var(--black); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.field-full { grid-column: 1 / -1; }
.quote-form label { display: grid; gap: .35rem; }
.quote-form label > span {
  font-size: .62rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
}
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; padding: .75rem .1rem;
  border: 0; border-bottom: 1px solid rgba(11,11,10,.22);
  border-radius: 0; background: transparent; color: var(--black); outline: none;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--olive); }
.quote-form textarea { resize: vertical; }
.form-button { width: 100%; margin-top: 1.6rem; }
.form-message { margin: .7rem 0 0; color: var(--muted); font-size: .65rem; text-align: center; }

/* Footer + floating */
.site-footer { padding: 36px 0; background: #050505; color: rgba(245,243,238,.62); }
.footer-grid {
  display: grid; grid-template-columns: 220px 1fr auto; gap: 2rem; align-items: center;
  font-size: .66rem;
}
.footer-logo { width: 200px; }
.footer-logo img { width: 100%; }
.footer-grid p { margin: .15rem 0; }
.footer-grid a { text-decoration: none; }
.footer-right { text-align: right; }

.floating-whatsapp {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  min-height: 54px; padding: .8rem 1rem;
  border-radius: 999px; background: #246b4c; color: white;
  display: flex; align-items: center; gap: .55rem;
  box-shadow: 0 15px 36px rgba(0,0,0,.25);
  text-decoration: none; font-size: .69rem; font-weight: 700;
  transition: transform .2s ease;
}
.floating-whatsapp:hover { transform: translateY(-3px); }
.floating-whatsapp svg { width: 22px; fill: currentColor; }

/* Reveal */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@keyframes marquee { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1020px) {
  .nav-shell { grid-template-columns: 190px 1fr auto; }
  .menu-toggle { display: block; }
  .nav-whatsapp { margin-left: auto; }
  .main-nav {
    position: fixed; inset: 88px 0 auto;
    padding: 1.2rem 22px 2rem;
    background: rgba(8,8,7,.98);
    display: none; flex-direction: column; align-items: stretch; gap: .7rem;
    border-top: 1px solid var(--line-dark);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .65rem 0; font-size: .8rem; }

  .hero { min-height: 760px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6,6,5,.94), rgba(6,6,5,.64) 70%, rgba(6,6,5,.28)),
      linear-gradient(0deg, rgba(6,6,5,.52), transparent 55%);
  }

  .section-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-heading > p { max-width: 650px; }

  .essence-grid, .portfolio-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .essence-copy, .about-copy, .portfolio-copy { max-width: 760px; }
  .essence-image { max-width: 780px; margin-left: auto; }
  .portfolio-preview { max-width: 720px; }
  .about-brand { max-width: 780px; }

  .feature-layout { grid-template-columns: 1fr; }
  .feature-main { min-height: 620px; }
  .feature-side { grid-template-columns: repeat(3, 1fr); grid-template-rows: none; }
  .station-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 200px 1fr; }
  .footer-right { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1200px); }
  .section-light, .section-cream, .section-black { padding: 82px 0; }

  .nav-shell { min-height: 74px; grid-template-columns: 155px 1fr auto; gap: .4rem; }
  .brand { width: 150px; }
  .main-nav { inset: 74px 0 auto; }
  .nav-whatsapp {
    min-width: 48px; width: 48px; height: 48px; padding: 0;
    border-radius: 50%; font-size: 0;
  }
  .nav-whatsapp svg { width: 20px; }
  .menu-toggle { width: 40px; }

  .hero { min-height: 760px; }
  .hero-media { background-position: 55% center; }
  .hero-overlay {
    background: linear-gradient(90deg, rgba(6,6,5,.94), rgba(6,6,5,.64)),
                linear-gradient(0deg, rgba(6,6,5,.6), transparent);
  }
  .hero-inner { padding-top: 85px; }
  .hero h1 { font-size: clamp(3.6rem, 17vw, 5.1rem); }
  .hero-copy > p:not(.eyebrow) { font-size: .9rem; }
  .hero-actions { flex-direction: column; max-width: 340px; }
  .button { width: 100%; }
  .hero-social { flex-wrap: wrap; }
  .scroll-cue { display: none; }

  .section-heading h2, .essence-copy h2, .portfolio-copy h2, .about-copy h2, .contact-copy h2 {
    font-size: 3.1rem;
  }
  .statement-row { grid-template-columns: 1fr; gap: 1rem; }
  .statement blockquote { font-size: 2.8rem; }

  .essence-grid { gap: 3.5rem; }
  .essence-image::before { inset: -12px 18px 24px -10px; }

  .feature-main { min-height: 520px; }
  .feature-content { padding: 1.6rem; }
  .feature-content h3 { font-size: 2.5rem; }
  .feature-side { grid-template-columns: 1fr; }
  .text-card { min-height: 245px; }
  .stations-title { display: block; margin-top: 70px; }
  .stations-title h3 { font-size: 2.3rem; }
  .station-grid { grid-template-columns: 1fr; }

  .steps { grid-template-columns: 1fr; border-bottom: 0; }
  .step { padding: 1.9rem 0; border-bottom: 1px solid var(--line-light); }
  .step + .step { padding-left: 0; border-left: 0; }

  .service-row { grid-template-columns: 45px 1fr; gap: 1rem; }
  .service-row b { grid-column: 2; justify-self: start; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .gallery-item, .gallery-item.gallery-wide { grid-column: auto; }
  .gallery-item.gallery-tall { grid-row: auto; }

  .portfolio-preview { padding: 12px; }
  .brand-mini { grid-template-columns: 1fr 1fr; }

  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .quote-form { padding: 1.35rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-logo { width: 190px; }
  .footer-right { grid-column: auto; }

  .floating-whatsapp {
    width: 58px; height: 58px; padding: 0;
    justify-content: center; right: 14px; bottom: 14px;
  }
  .floating-whatsapp span { display: none; }
}
