/* ==========================================================================
   Advantage Design + Remodel - homepage concept
   Design language: Field Notes (assigned)
   Display: Martel (assigned)   Body: Nobile (assigned)
   Palette taken from their own brand material:
     #043954  their Elementor --e-global-color-primary / secondary (navy)
     #9f2842  their Elementor --e-global-color-accent (wine)
     #fafafa  their page ground, deepened here to #f2f3f5 for band separation
   ========================================================================== */

:root {
  /* Their brand */
  --navy:        #043954;
  --navy-deep:   #02283c;
  --navy-line:   #1c5273;
  --wine:        #9f2842;
  --wine-deep:   #7d1e33;
  --wine-lift:   #e08ea0;   /* same hue lifted for text on navy, 4.97:1 */

  /* Neutrals in their family */
  --ink:         #0c1720;
  --slate:       #4d5964;
  --slate-soft:  #5b6773;
  --mist:        #b9c6d1;   /* body text on navy, 7.02:1 */
  --paper:       #f2f3f5;
  --paper-2:     #e7eaee;
  --white:       #ffffff;
  --rule:        #d3d8de;
  --rule-dark:   rgba(255, 255, 255, 0.16);

  /* Type */
  --display: "Martel", Georgia, "Times New Roman", serif;
  --body:    "Nobile", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --wrap:      min(90%, 1180px);
  --wrap-wide: min(94%, 1480px);
  --gutter:    clamp(1.25rem, 4vw, 3rem);
  --nav-h:     76px;
  --band:      clamp(4.5rem, 9vw, 8.5rem);
  --band-tight: clamp(3.25rem, 6vw, 5.5rem);

  /* Motion */
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------- reset -- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--slate);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.15em; max-width: 68ch; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap      { width: var(--wrap);      margin-inline: auto; }
.wrap-wide { width: var(--wrap-wide); margin-inline: auto; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: var(--white);
  padding: 0.75rem 1.25rem; z-index: 400;
}
.skip:focus { left: 1rem; top: 1rem; }

/* ------------------------------------------------- the field-notes mark --
   One kicker system, used on every section. A hairline rule and a small
   letterspaced label, the way a margin note sits beside a page.           */

.mark {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.185em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 1.6rem;
}
.mark::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  flex: none;
}
.on-dark .mark,
.hero .mark { color: var(--wine-lift); }

/* ------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.6rem;
  min-height: 48px;
  font-family: var(--body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  background: var(--wine);
  color: var(--white);
  transition: background 0.3s var(--ease-soft), color 0.3s var(--ease-soft),
              border-color 0.3s var(--ease-soft), transform 0.3s var(--ease);
}
.btn:hover  { background: var(--wine-deep); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--white); }

.btn--ink {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ink:hover { background: var(--ink); color: var(--white); }

.btn__arrow { width: 14px; height: 14px; flex: none; }

.tlink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--wine);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(159, 40, 66, 0.35);
  transition: border-color 0.3s var(--ease-soft), color 0.3s var(--ease-soft);
}
.tlink:hover { border-bottom-color: var(--wine); }
.on-dark .tlink { color: var(--wine-lift); border-bottom-color: rgba(224, 142, 160, 0.4); }
.on-dark .tlink:hover { border-bottom-color: var(--wine-lift); }

/* ----------------------------------------------------------------- nav -- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  /* Scrim, not transparency: the nav floats over hero photography and the
     links must clear 4.5:1 against whatever pixel happens to be behind them. */
  background: linear-gradient(180deg, rgba(2, 40, 60, 0.88) 0%, rgba(2, 40, 60, 0.58) 100%);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease-soft), border-color 0.4s var(--ease-soft);
}
.nav.is-stuck {
  background: var(--navy);
  border-bottom-color: var(--navy-line);
}
.nav__inner {
  width: var(--wrap-wide);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__logo { display: block; flex: none; }
.nav__logo img {
  width: auto;
  height: 40px;
  max-width: 180px;
  object-fit: contain;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.1vw, 2.1rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease-soft);
}
.nav__links a:hover { border-bottom-color: var(--wine-lift); }
.nav__cta { display: none; }

.burger {
  display: none;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  background: none; border: 0; padding: 0;
  cursor: pointer;
  color: var(--white);
}
.burger span {
  display: block; position: relative;
  width: 24px; height: 1.5px; background: currentColor;
  transition: background 0.2s linear;
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0;
  width: 24px; height: 1.5px; background: currentColor;
  transition: transform 0.32s var(--ease), top 0.32s var(--ease);
}
.burger span::before { top: -7px; }
.burger span::after  { top:  7px; }

/* ---------------------------------------------------------- mobile menu --
   The close control lives INSIDE the drawer so it shares the drawer's
   stacking context and can never be painted over by it.                   */

.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  padding: 1.25rem var(--gutter) 2.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-1.25%);
  transition: opacity 0.36s var(--ease-soft), transform 0.36s var(--ease),
              visibility 0s linear 0.36s;
}
.drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition-delay: 0s;
}
.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(var(--nav-h) - 1.25rem);
}
.drawer__top img { width: auto; height: 38px; max-width: 170px; object-fit: contain; }
.drawer__close {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--white);
}
.drawer__close svg { width: 22px; height: 22px; }
.drawer__links {
  list-style: none;
  margin: clamp(1.5rem, 6vw, 3rem) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.drawer__links a {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 7vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-dark);
}
.drawer__foot {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-start;
}
.drawer__phone {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

/* ---------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  background: var(--navy);
  color: var(--mist);
}
.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + clamp(2.5rem, 6vw, 5rem)) clamp(1.5rem, 5vw, 5.5rem)
           clamp(3rem, 6vw, 5rem) max(var(--gutter), calc((100vw - min(94vw, 1480px)) / 2));
}
.hero__h1 {
  color: var(--white);
  font-size: clamp(2.45rem, 4.05vw, 4.05rem);
  line-height: 1.09;
  letter-spacing: -0.03em;
  max-width: 15ch;
  margin-bottom: 1.5rem;
}
.hero__h1 b { font-weight: 700; color: var(--wine-lift); }
.hero__sub {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.66;
  color: var(--mist);
  max-width: 46ch;
  margin-bottom: 2.3rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.hero__note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule-dark);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #98a6b4;
}
.hero__media { position: relative; overflow: hidden; min-height: 46vh; }
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 40, 60, 0.68) 0%, rgba(2, 40, 60, 0.28) 9%, rgba(2, 40, 60, 0) 20%),
    linear-gradient(90deg, rgba(4, 57, 84, 0.62) 0%, rgba(4, 57, 84, 0) 48%);
  pointer-events: none;
}
.hero__caption {
  position: absolute;
  left: 0; bottom: 0;
  z-index: 2;
  background: var(--navy);
  padding: 0.85rem 1.35rem 0.85rem 1.15rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mist);
  max-width: 100%;
}

/* --------------------------------------------------------------- bands -- */

.band { padding-block: var(--band); }
.band--tight { padding-block: var(--band-tight); }
.band--paper { background: var(--paper); }
.band--white { background: var(--white); }
.band--navy  { background: var(--navy);      color: var(--mist); }
.band--deep  { background: var(--navy-deep); color: var(--mist); }
.on-dark h2, .on-dark h3, .on-dark h4 { color: var(--white); }

.h-sec {
  font-size: clamp(1.85rem, 3.1vw, 2.9rem);
  line-height: 1.16;
}
.lede {
  font-size: clamp(1.0625rem, 1.35vw, 1.1875rem);
  line-height: 1.7;
}

/* ---------------------------------------------------------------- intro -- */

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.intro__body p { max-width: 60ch; }
.intro__quote {
  margin: 2.25rem 0 0;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 600;
  max-width: 34ch;
}
.intro__quote span {
  display: block;
  margin-top: 0.9rem;
  font-family: var(--body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--slate-soft);
}

/* ------------------------------------------------------------ full band -- */

.plate-band {
  position: relative;
  height: clamp(300px, 52vh, 560px);
  overflow: hidden;
}
.plate-band img {
  position: absolute;
  inset: -12% 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  will-change: transform;
}

/* -------------------------------------------------------------- ledger --
   The order of the work. Numbers carry the sequence, which is the
   information, so they are set rather than decorative.                    */

.ledger { display: grid; grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.ledger__aside { position: sticky; top: calc(var(--nav-h) + 2.5rem); }
.ledger__aside p { color: var(--mist); max-width: 34ch; }
.ledger__shot { margin: 2.25rem 0 0; border: 1px solid var(--rule-dark); }
.ledger__shot img { width: 100%; height: auto; }
.ledger__shot figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #98a6b4;
  border-top: 1px solid var(--rule-dark);
}

.entries { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule-dark); }
.entry {
  display: grid;
  grid-template-columns: 4.25rem minmax(0, 1fr);
  gap: 0 1.5rem;
  padding: clamp(1.4rem, 2.4vw, 1.9rem) 0;
  border-bottom: 1px solid var(--rule-dark);
}
.entry__no {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--wine-lift);
  letter-spacing: 0.02em;
  padding-top: 0.15rem;
}
.entry__h {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.65vw, 1.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.32;
  margin-bottom: 0.5rem;
}
.entry p { color: var(--mist); max-width: 62ch; margin: 0; font-size: 1rem; }

/* ------------------------------------------------------------ services -- */

.svc {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4.25rem);
  border-top: 1px solid var(--rule);
}
.svc:last-of-type { border-bottom: 1px solid var(--rule); }
.svc--flip .svc__media { order: 2; }
.svc__media img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.svc__no {
  font-family: var(--body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.185em;
  text-transform: uppercase;
  color: var(--wine);
  display: block;
  margin-bottom: 0.9rem;
}
.svc__h {
  font-size: clamp(1.5rem, 2.35vw, 2.15rem);
  line-height: 1.18;
  margin-bottom: 0.85rem;
}
.svc__body { max-width: 52ch; margin-bottom: 1.5rem; }

/* ------------------------------------------------------------- gallery --
   Plates, numbered because the index is how a notebook refers back.       */

.plates {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 2rem);
}
.plate { margin: 0; }
.plate img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--paper-2);
}
.plate--tall img { aspect-ratio: 3 / 4; }
.plate figcaption {
  display: flex;
  gap: 0.85rem;
  margin-top: 0.9rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--rule);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--slate-soft);
}
.plate figcaption b {
  flex: none;
  font-family: var(--body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wine);
  padding-top: 0.15rem;
}

/* ------------------------------------------------------------- reviews -- */

.reviews {
  column-count: 2;
  column-gap: clamp(2rem, 5vw, 4.5rem);
}
.review {
  margin: 0;
  padding: clamp(1.6rem, 3vw, 2.25rem) 0;
  border-top: 1px solid var(--rule-dark);
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.review p {
  font-family: var(--display);
  font-size: clamp(1.0625rem, 1.35vw, 1.2rem);
  line-height: 1.56;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.1rem;
  max-width: 46ch;
}
.review figcaption {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--wine-lift);
}
.review figcaption span { display: block; margin-top: 0.35rem; color: #98a6b4; letter-spacing: 0.15em; }

/* ------------------------------------------------------------- on file -- */

.file__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(2rem, 5vw, 4.5rem);
  margin-top: 2.5rem;
}
.file__row {
  display: grid;
  grid-template-columns: minmax(0, 10.5rem) minmax(0, 1fr);
  gap: 0.35rem 1.5rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--rule);
}
.file__k {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wine);
  padding-top: 0.28rem;
}
.file__v { font-size: 1rem; line-height: 1.62; color: var(--slate); }

/* ---------------------------------------------------------------- area -- */

.area { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(1.75rem, 4vw, 4rem); align-items: start; }
.towns { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
.towns li {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 600;
  color: var(--ink);
  padding: 0.85rem 0;
  border-top: 1px solid var(--rule);
}

/* ----------------------------------------------------------------- cta -- */

.cta { text-align: left; }
.cta__h { font-size: clamp(2rem, 3.6vw, 3.35rem); line-height: 1.12; max-width: 16ch; margin-bottom: 1.35rem; }
.cta__lines {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 3rem;
  margin: 2.25rem 0 0;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule-dark);
}
.cta__line { display: flex; flex-direction: column; gap: 0.3rem; }
.cta__k {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.17em;
  text-transform: uppercase; color: #98a6b4;
}
.cta__v {
  display: inline-flex; align-items: center; min-height: 44px;
  font-family: var(--display); font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 600; color: var(--white); text-decoration: none;
  border-bottom: 1px solid transparent;
}
a.cta__v:hover { border-bottom-color: var(--wine-lift); }

/* -------------------------------------------------------------- footer -- */

.foot { background: var(--navy-deep); color: var(--mist); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; }
.foot__top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--rule-dark);
}
.foot__logo img { width: auto; height: 44px; max-width: 190px; object-fit: contain; margin-bottom: 1.35rem; }
.foot__blurb { font-size: 0.9375rem; max-width: 34ch; color: var(--mist); }
.foot__h {
  font-family: var(--body); font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.17em; text-transform: uppercase; color: var(--wine-lift);
  margin-bottom: 1.15rem;
}
.foot__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.foot__list a, .foot__list span {
  display: flex; align-items: center; min-height: 44px;
  font-size: 0.9375rem; color: var(--mist); text-decoration: none;
}
.foot__list a:hover { color: var(--white); }
.foot__bottom {
  padding-top: 1.75rem;
  display: flex; flex-wrap: wrap; gap: 0.75rem 2rem;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: #8b98a6;
}
.foot__bottom p { max-width: none; margin: 0; }

/* ----------------------------------------------------------------- 404 -- */

.err {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--navy);
  color: var(--mist);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
}
.err__no {
  font-family: var(--display);
  font-size: clamp(5rem, 17vw, 12rem);
  font-weight: 800;
  line-height: 0.86;
  color: rgba(224, 142, 160, 0.22);
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.err__h { font-size: clamp(1.85rem, 3.6vw, 3rem); line-height: 1.14; color: var(--white); margin-bottom: 1.15rem; }
.err__b { max-width: 46ch; margin-bottom: 2.25rem; color: var(--mist); }

/* --------------------------------------------------------------- reveal -- */

html.js .q { opacity: 0; }

/* ------------------------------------------------------------ responsive -- */

@media (max-width: 1080px) {
  .ledger { grid-template-columns: minmax(0, 1fr); }
  .ledger__aside { position: static; }
  .area { grid-template-columns: minmax(0, 1fr); }
  .intro__grid { grid-template-columns: minmax(0, 1fr); }
  .file__grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 900px) {
  :root { --nav-h: 66px; }

  .nav__links { display: none; }
  .burger { display: flex; }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    height: auto;
  }
  .hero__text {
    order: 2;
    padding: clamp(2.5rem, 8vw, 3.75rem) var(--gutter) clamp(3rem, 9vw, 4rem);
  }
  .hero__media {
    order: 1;
    min-height: 0;
    height: min(66vh, 480px);
    padding-top: var(--nav-h);
  }
  .hero__media::after {
    background: linear-gradient(180deg, rgba(4, 57, 84, 0.72) 0%, rgba(4, 57, 84, 0) 46%);
  }
  .hero__h1 { font-size: clamp(2.15rem, 8.2vw, 3rem); max-width: 18ch; }
  .hero__caption { display: none; }

  .svc { grid-template-columns: minmax(0, 1fr); }
  .svc--flip .svc__media { order: 0; }

  .plates { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews { column-count: 1; }
  .foot__top { grid-template-columns: minmax(0, 1fr); }
  .towns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .hero__note { gap: 0.4rem 1.5rem; }
  .plates { grid-template-columns: minmax(0, 1fr); }
  .plate img, .plate--tall img { aspect-ratio: 4 / 3; }
  .entry { grid-template-columns: minmax(0, 1fr); gap: 0.35rem; }
  .entry__no { padding-top: 0; }
  .file__row { grid-template-columns: minmax(0, 1fr); }
  .file__k { padding-top: 0; }
  .towns { grid-template-columns: minmax(0, 1fr); }
  .cta__lines { flex-direction: column; gap: 1.35rem; }
}
