:root {
  --aged-parchment: #e8d8b0;
  --warm-ivory: #f6eedb;
  --deep-sepia: #4b2418;
  --burnt-umber: #6b3524;
  --antique-gold: #a9783a;
  --soft-limestone: #b8aa8c;
  --charcoal-brown: #241915;
  --warm-plaster: #d8c59a;
  --muted-clay: #8c5a3c;
  --shadow: rgba(36, 25, 21, 0.18);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--warm-ivory);
  color: var(--charcoal-brown);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 20% 10%, rgba(169, 120, 58, .22), transparent 32rem),
    radial-gradient(circle at 90% 30%, rgba(75, 36, 24, .08), transparent 36rem),
    linear-gradient(130deg, var(--warm-ivory), var(--aged-parchment));
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: .18;
  background-image:
    linear-gradient(90deg, rgba(75,36,24,.12) 1px, transparent 1px),
    linear-gradient(rgba(75,36,24,.10) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }

.serif {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  letter-spacing: -.035em;
}
.label {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  color: var(--burnt-umber);
}

.texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  mix-blend-mode: multiply;
  background:
    radial-gradient(circle at 18% 22%, rgba(169,120,58,.14), transparent 18rem),
    radial-gradient(circle at 82% 66%, rgba(75,36,24,.10), transparent 22rem),
    repeating-linear-gradient(0deg, rgba(36,25,21,.045), rgba(36,25,21,.045) 1px, transparent 1px, transparent 4px),
    repeating-linear-gradient(90deg, rgba(36,25,21,.025), rgba(36,25,21,.025) 1px, transparent 1px, transparent 7px);
  filter: saturate(.72) contrast(.95);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 18px;
  pointer-events: none;
}
.nav__inner {
  width: min(var(--max), calc(100vw - 32px));
  pointer-events: auto;
  border: 1px solid rgba(75,36,24,.16);
  background: rgba(246, 238, 219, .76);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(36,25,21,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
}
.logo {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.03em;
  color: var(--deep-sepia);
  font-size: 1.05rem;
  white-space: nowrap;
}
.nav__links { display: flex; align-items: center; gap: 16px; }
.nav__links a {
  font-size: .74rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(75,36,24,.82);
  padding: 8px 5px;
}
.nav__links a:hover { color: var(--antique-gold); }
.nav__toggle { display: none; background: transparent; border: 0; color: var(--deep-sepia); }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 128px 20px 64px;
}
.hero__light {
  position: absolute;
  inset: -20%;
  z-index: -1;
  background: radial-gradient(circle at var(--x, 42%) var(--y, 26%), rgba(255,255,255,.52), transparent 30rem);
  animation: drift 16s ease-in-out infinite alternate;
}
@keyframes drift { from { --x: 35%; --y: 20%; } to { --x: 70%; --y: 44%; } }
.hero__linework {
  position: absolute;
  inset: auto 0 5vh;
  display: flex;
  justify-content: space-between;
  align-items: end;
  opacity: .48;
  color: var(--deep-sepia);
  pointer-events: none;
}
.house-line { width: clamp(130px, 17vw, 260px); height: auto; }
.house-line path, .house-line rect, .house-line line, .house-line polyline {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 850;
  stroke-dashoffset: 850;
  animation: draw 4.8s cubic-bezier(.2,.8,.2,1) forwards .45s;
}
.house-line--right { transform: scaleX(-1); }
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero__content {
  position: relative;
  max-width: 1040px;
  text-align: center;
  z-index: 2;
}
.hero__kicker {
  margin: 0 0 26px;
  opacity: 0;
  transform: translateY(12px);
  animation: reveal .9s ease forwards .25s;
}
.hero h1 {
  margin: 0;
  color: var(--deep-sepia);
  font-size: clamp(3.2rem, 9vw, 9.8rem);
  line-height: .86;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(22px);
  animation: reveal 1.2s ease forwards .45s;
}
.hero__sub {
  margin: 28px auto 0;
  max-width: 760px;
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  line-height: 1.45;
  color: rgba(75,36,24,.9);
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 1s ease forwards .72s;
}
.hero__copy {
  margin: 18px auto 0;
  max-width: 720px;
  line-height: 1.78;
  color: rgba(36,25,21,.75);
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 1s ease forwards .9s;
}
.actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 1s ease forwards 1.05s;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(75,36,24,.24);
  color: var(--deep-sepia);
  background: rgba(246,238,219,.55);
  box-shadow: 0 14px 36px rgba(36,25,21,.08);
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); border-color: var(--antique-gold); background: rgba(255,255,255,.44); }
.button--dark { background: var(--deep-sepia); color: var(--warm-ivory); border-color: var(--deep-sepia); }
.button--dark:hover { background: var(--burnt-umber); color: var(--warm-ivory); }
.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(75,36,24,.68);
}
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

.section {
  position: relative;
  padding: clamp(76px, 11vw, 150px) 20px;
}
.section__inner { max-width: var(--max); margin: 0 auto; }
.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}
.section h2 {
  margin: 0;
  color: var(--deep-sepia);
  font-size: clamp(2.4rem, 5.5vw, 6rem);
  line-height: .95;
  text-wrap: balance;
}
.lead {
  margin: 0;
  color: rgba(36,25,21,.76);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.8;
}
.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(75,36,24,.16);
  border-radius: 34px;
  background: rgba(246, 238, 219, .55);
  box-shadow: 0 30px 90px rgba(36,25,21,.09);
}
.archival-card {
  min-height: 360px;
  padding: clamp(26px, 4vw, 48px);
  display: grid;
  align-content: end;
}
.archival-card p { max-width: 580px; margin: 12px 0 0; line-height: 1.8; color: rgba(36,25,21,.75); }
.archival-card h3 { margin: 0; font-size: clamp(1.8rem, 3vw, 3.2rem); color: var(--deep-sepia); }

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}
.service {
  position: relative;
  min-height: 270px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(75,36,24,.16);
  background: rgba(246, 238, 219, .62);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(36,25,21,.07);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.service::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(169,120,58,.16);
  border-radius: 20px;
  pointer-events: none;
}
.service:hover { transform: translateY(-8px); box-shadow: 0 34px 90px rgba(36,25,21,.14); border-color: rgba(169,120,58,.42); }
.service__icon {
  width: 54px; height: 54px; border-radius: 999px;
  display: grid; place-items: center;
  border: 1px solid rgba(75,36,24,.18);
  color: var(--deep-sepia);
}
.service h3 { margin: 50px 0 12px; color: var(--deep-sepia); font-size: 1.45rem; line-height: 1.08; }
.service p { margin: 0; line-height: 1.72; color: rgba(36,25,21,.72); }

.philosophy {
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 44px;
  background:
    linear-gradient(180deg, rgba(36,25,21,.1), rgba(36,25,21,.72)),
    url('../images/lime-plaster.svg') center/cover no-repeat,
    var(--warm-plaster);
  color: var(--warm-ivory);
  padding: clamp(32px, 6vw, 70px);
  box-shadow: 0 34px 100px rgba(36,25,21,.18);
}
.philosophy h2 { color: var(--warm-ivory); max-width: 820px; }
.philosophy p { max-width: 760px; margin-top: 22px; color: rgba(246,238,219,.86); }

.before-after-wrap { margin-top: 44px; }
.ba {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(75,36,24,.18);
  box-shadow: 0 34px 100px rgba(36,25,21,.16);
  aspect-ratio: 16/9;
  min-height: 360px;
  background: var(--soft-limestone);
  touch-action: none;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba__handle {
  position: absolute;
  top: 0; bottom: 0; left: var(--pos, 50%);
  width: 3px;
  background: rgba(246,238,219,.9);
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(75,36,24,.2), 0 0 30px rgba(36,25,21,.25);
}
.ba__knob {
  position: absolute;
  top: 50%; left: var(--pos, 50%);
  transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  border-radius: 999px;
  background: rgba(246,238,219,.92);
  border: 1px solid rgba(75,36,24,.24);
  box-shadow: 0 18px 50px rgba(36,25,21,.18);
  display: grid; place-items: center;
  color: var(--deep-sepia);
  cursor: ew-resize;
  user-select: none;
}
.ba__label {
  position: absolute;
  top: 20px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(36,25,21,.68);
  color: var(--warm-ivory);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.ba__label--before { left: 20px; }
.ba__label--after { right: 20px; }
.ba__range {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  cursor: ew-resize;
}
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.tab, .filter {
  border: 1px solid rgba(75,36,24,.18);
  background: rgba(246,238,219,.54);
  color: var(--deep-sepia);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.tab:hover, .filter:hover { transform: translateY(-1px); border-color: rgba(169,120,58,.45); }
.tab.is-active, .filter.is-active { background: var(--deep-sepia); color: var(--warm-ivory); border-color: var(--deep-sepia); }

.gallery-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 34px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.gallery-card {
  grid-column: span 4;
  position: relative;
  min-height: 310px;
  border: 0;
  padding: 0;
  overflow: hidden;
  text-align: left;
  border-radius: 30px;
  cursor: pointer;
  background: var(--soft-limestone);
  box-shadow: 0 20px 70px rgba(36,25,21,.1);
  transition: transform .32s ease, opacity .25s ease;
}
.gallery-card:nth-child(1), .gallery-card:nth-child(6) { grid-column: span 7; min-height: 410px; }
.gallery-card:nth-child(2), .gallery-card:nth-child(7) { grid-column: span 5; min-height: 410px; }
.gallery-card:hover { transform: translateY(-6px); }
.gallery-card img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; filter: sepia(.45) saturate(.75); transition: transform .8s ease, filter .5s ease; }
.gallery-card:hover img { transform: scale(1.05); filter: sepia(.08) saturate(.95); }
.gallery-card__caption {
  position: absolute;
  inset: auto 16px 16px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(36,25,21,.65);
  color: var(--warm-ivory);
  backdrop-filter: blur(12px);
  transform: translateY(8px);
  opacity: .92;
}
.gallery-card__caption h3 { margin: 4px 0 8px; font-size: 1.3rem; }
.gallery-card__caption p { margin: 0; color: rgba(246,238,219,.78); line-height: 1.5; }
.gallery-card__caption .label { color: rgba(246,238,219,.75); }

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 36px; }
.gallery-page { padding-top: 130px; }
.gallery-page .intro { max-width: 820px; }
.gallery-page h1 { margin: 0; color: var(--deep-sepia); font-size: clamp(3.2rem, 8vw, 8.5rem); line-height: .86; }
.gallery-page .lead { margin-top: 24px; }
.hidden { display: none !important; }

.legacy {
  max-width: 910px;
  margin: 0 auto;
  text-align: center;
}
.legacy p { margin-top: 24px; }
.contact-panel {
  text-align: center;
  padding: clamp(36px, 7vw, 80px);
}
.contact-panel h2 { max-width: 900px; margin: 0 auto; }
.contact-panel p { margin: 22px auto 0; max-width: 700px; }
.contact-panel .actions { opacity: 1; transform: none; animation: none; }

.footer {
  padding: 48px 20px;
  border-top: 1px solid rgba(75,36,24,.15);
  background: rgba(36,25,21,.94);
  color: var(--warm-ivory);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}
.footer p { margin: 8px 0 0; color: rgba(246,238,219,.68); line-height: 1.6; }
.footer a { color: var(--warm-plaster); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(36,25,21,.82);
  backdrop-filter: blur(12px);
}
.lightbox.is-open { display: grid; }
.lightbox__panel {
  width: min(1100px, 100%);
  max-height: 92svh;
  display: grid;
  grid-template-columns: 1fr 340px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--warm-ivory);
  box-shadow: 0 40px 120px rgba(0,0,0,.4);
}
.lightbox__image { min-height: 540px; background: var(--soft-limestone); }
.lightbox__image img { width: 100%; height: 100%; object-fit: cover; }
.lightbox__content { padding: 28px; position: relative; }
.lightbox__content h2 { margin: 8px 0 12px; font-size: 2rem; color: var(--deep-sepia); }
.lightbox__content p { line-height: 1.7; color: rgba(36,25,21,.74); }
.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid rgba(75,36,24,.18);
  background: rgba(246,238,219,.8);
  border-radius: 999px;
  width: 42px; height: 42px;
  cursor: pointer;
}
.lightbox__nav { position: absolute; bottom: 24px; right: 24px; display: flex; gap: 10px; }
.lightbox__nav button {
  border: 1px solid rgba(75,36,24,.18);
  background: var(--deep-sepia);
  color: var(--warm-ivory);
  border-radius: 999px;
  width: 44px; height: 44px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav__inner { border-radius: 24px; align-items: flex-start; }
  .nav__toggle { display: block; padding: 6px; }
  .nav__links {
    display: none;
    position: absolute;
    left: 18px; right: 18px; top: 78px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(75,36,24,.16);
    background: rgba(246,238,219,.94);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(36,25,21,.14);
  }
  .nav.is-open .nav__links { display: flex; }
  .split { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .gallery-head { display: block; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card, .gallery-card:nth-child(1), .gallery-card:nth-child(2), .gallery-card:nth-child(6), .gallery-card:nth-child(7) { grid-column: span 1; min-height: 340px; }
  .lightbox__panel { grid-template-columns: 1fr; overflow-y: auto; }
  .lightbox__image { min-height: 330px; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__linework { opacity: .28; }
}

@media (max-width: 560px) {
  .hero { padding-inline: 16px; }
  .actions { flex-direction: column; }
  .button { width: 100%; }
  .ba { aspect-ratio: 4/5; min-height: 450px; }
  .section { padding-inline: 16px; }
}

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

/* Visual upgrade: photographic heritage imagery layered with a warm heritage palette. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(36,25,21,.82) 0%, rgba(75,36,24,.58) 34%, rgba(246,238,219,.14) 66%, rgba(36,25,21,.22) 100%),
    url('../images/albert-court-exterior.webp') center/cover no-repeat;
  transform: scale(1.04);
  animation: heroImageDrift 18s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 18% 22%, rgba(246,238,219,.22), transparent 28rem),
    linear-gradient(180deg, rgba(36,25,21,.08), rgba(36,25,21,.35));
  pointer-events: none;
}
@keyframes heroImageDrift {
  from { transform: scale(1.04) translate3d(-.6%, -.4%, 0); }
  to { transform: scale(1.09) translate3d(.8%, .6%, 0); }
}
.hero > .texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  mix-blend-mode: multiply;
  background:
    radial-gradient(circle at 18% 22%, rgba(169,120,58,.14), transparent 18rem),
    radial-gradient(circle at 82% 66%, rgba(75,36,24,.10), transparent 22rem),
    repeating-linear-gradient(0deg, rgba(36,25,21,.045), rgba(36,25,21,.045) 1px, transparent 1px, transparent 4px),
    repeating-linear-gradient(90deg, rgba(36,25,21,.025), rgba(36,25,21,.025) 1px, transparent 1px, transparent 7px);
  filter: saturate(.72) contrast(.95);
}
.hero__content {
  width: min(920px, calc(100vw - 40px));
  margin-right: auto;
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
  text-align: left;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(246,238,219,.22);
  border-radius: clamp(28px, 4vw, 48px);
  background: linear-gradient(135deg, rgba(36,25,21,.58), rgba(75,36,24,.28));
  box-shadow: 0 42px 120px rgba(0,0,0,.24);
  backdrop-filter: blur(9px);
}
.hero .actions { justify-content: flex-start; }
.hero h1,
.hero__sub { color: var(--warm-ivory); text-shadow: 0 2px 34px rgba(0,0,0,.32); }
.hero__copy { color: rgba(246,238,219,.86); }
.hero__kicker,
.hero .label { color: rgba(232,216,176,.86); }
.hero__linework { color: var(--warm-ivory); opacity: .16; }
.scroll-cue { color: rgba(246,238,219,.76); }
.hero .button { background: rgba(246,238,219,.9); color: var(--deep-sepia); border-color: rgba(246,238,219,.34); }
.hero .button--dark { background: var(--warm-ivory); color: var(--deep-sepia); border-color: var(--warm-ivory); }
.hero .button:hover { background: #fff9eb; }

.nav__inner {
  background: rgba(246,238,219,.84);
  border-color: rgba(75,36,24,.22);
}

.philosophy {
  background:
    linear-gradient(180deg, rgba(36,25,21,.08), rgba(36,25,21,.78)),
    url('../images/lime-stone-detail.webp') center/cover no-repeat,
    var(--warm-plaster);
}

.archival-card {
  background:
    linear-gradient(135deg, rgba(246,238,219,.82), rgba(232,216,176,.54)),
    url('../images/lime-stone-detail.webp') center/cover no-repeat;
}


.gallery-card img {
  filter: sepia(.26) saturate(.86) contrast(.96);
}
.gallery-card:hover img {
  filter: sepia(.04) saturate(1) contrast(1.02);
}
.gallery-card__caption {
  background: linear-gradient(135deg, rgba(36,25,21,.76), rgba(75,36,24,.58));
  border: 1px solid rgba(246,238,219,.14);
}

.before-after-wrap .ba {
  background: #2d231e;
}
.ba img {
  filter: contrast(1.02) saturate(.94);
}

@media (max-width: 900px) {
  .hero__content {
    width: min(100%, calc(100vw - 32px));
    margin: 0 auto;
    text-align: center;
  }
  .hero .actions { justify-content: center; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(36,25,21,.76), rgba(75,36,24,.58), rgba(36,25,21,.5)),
      url('../images/albert-court-exterior.webp') center/cover no-repeat;
  }
}


/* County Land Developments real-world content upgrade. */
.body-copy {
  margin: 18px 0 0;
  color: rgba(36,25,21,.72);
  line-height: 1.8;
  font-size: 1rem;
}
.spaced { margin-top: 22px; }
.section--compact { padding-top: clamp(46px, 7vw, 96px); }
.split--visual { align-items: center; }
.hero__facts {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 1s ease forwards 1.18s;
}
.hero__facts div {
  padding: 14px 16px;
  border: 1px solid rgba(246,238,219,.18);
  border-radius: 18px;
  background: rgba(246,238,219,.08);
}
.hero__facts span,
.project-card .label {
  display: block;
}
.hero__facts span {
  color: rgba(232,216,176,.72);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.hero__facts strong {
  display: block;
  margin-top: 6px;
  color: rgba(246,238,219,.94);
  font-weight: 500;
  line-height: 1.25;
}
.image-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 42px;
  box-shadow: 0 34px 100px rgba(36,25,21,.16);
  border: 1px solid rgba(75,36,24,.15);
  background: var(--soft-limestone);
}
.image-panel img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; filter: sepia(.16) saturate(.92); }
.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(36,25,21,.72));
}
.image-panel__caption {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(36,25,21,.58);
  border: 1px solid rgba(246,238,219,.18);
  backdrop-filter: blur(12px);
  color: var(--warm-ivory);
}
.image-panel__caption .label { color: rgba(232,216,176,.82); }
.image-panel__caption h3 { margin: 4px 0 0; font-size: clamp(1.6rem, 3vw, 2.7rem); }
.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.project-card {
  grid-column: span 4;
  display: grid;
  grid-template-rows: 240px 1fr;
  overflow: hidden;
  border: 1px solid rgba(75,36,24,.16);
  border-radius: 30px;
  background: rgba(246,238,219,.68);
  box-shadow: 0 24px 70px rgba(36,25,21,.08);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}
.project-card:nth-child(1),
.project-card:nth-child(4) { grid-column: span 6; }
.project-card:hover { transform: translateY(-6px); box-shadow: 0 34px 90px rgba(36,25,21,.14); border-color: rgba(169,120,58,.38); }
.project-card__image { overflow: hidden; background: var(--soft-limestone); }
.project-card__image img { width: 100%; height: 100%; object-fit: cover; filter: sepia(.18) saturate(.88) contrast(.98); transition: transform .8s ease, filter .4s ease; }
.project-card:hover img { transform: scale(1.05); filter: sepia(.04) saturate(1); }
.project-card__body { padding: 24px; }
.project-card__body h3 { margin: 8px 0 12px; color: var(--deep-sepia); font-size: 1.85rem; line-height: 1.05; }
.project-card__body p:last-child { margin: 0; color: rgba(36,25,21,.72); line-height: 1.68; }
.gallery-head .lead { max-width: 520px; }
.contact-panel { background: linear-gradient(135deg, rgba(246,238,219,.72), rgba(232,216,176,.5)), url('../images/french-stone-farm-pigeonnier.webp') center/cover no-repeat; }
.contact-panel .texture { opacity: .1; }

@media (max-width: 900px) {
  .hero__facts { grid-template-columns: 1fr; }
  .image-panel, .image-panel img { min-height: 380px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card,
  .project-card:nth-child(1),
  .project-card:nth-child(4) { grid-column: span 1; }
  .project-card { grid-template-rows: 220px 1fr; }
  .gallery-head .lead { max-width: none; margin-top: 18px; }
}


/* Project-specific visual upgrade v3. */
.hero::before { background-position: center center; }
.project-card__image img[src$="squash-court-floor.webp"] { object-position: center 52%; }
.gallery-card img[src$="squash-court-floor.webp"],
.gallery-card img[src$="squash-court-before.webp"] { object-position: center 50%; }
.gallery-card img[src$="albert-court-interior-blue-carpet.webp"] { object-position: center 52%; }
.gallery-card img[src$="french-stone-farm-pigeonnier.webp"] { object-position: center 48%; }

/* V5 refinement: single hero before/after comparison with supporting project story. */
.before-after-wrap--single { display: grid; gap: 28px; }
.comparison-story {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.comparison-story__card {
  position: relative;
  padding: 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(75,36,24,.12);
  background: linear-gradient(180deg, rgba(246,238,219,.78), rgba(255,255,255,.72));
  box-shadow: 0 16px 40px rgba(36,25,21,.06);
}
.comparison-story__card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.15rem, 1.1rem + .5vw, 1.5rem);
}
.comparison-story__card p:last-child {
  margin-bottom: 0;
  color: rgba(36,25,21,.78);
}
@media (max-width: 900px) {
  .comparison-story { grid-template-columns: 1fr; }
}


/* V8.5 contact form refinement */
.contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid rgba(75,36,24,.14);
  border-radius: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(circle at 10% 10%, rgba(169,120,58,.14), transparent 22rem),
    linear-gradient(135deg, rgba(246,238,219,.86), rgba(255,250,237,.74));
  box-shadow: 0 28px 90px rgba(36,25,21,.10);
  overflow: hidden;
}
.contact-copy {
  position: sticky;
  top: 120px;
}
.contact-copy a {
  color: var(--deep-sepia);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(75,36,24,.14);
  border-radius: 28px;
  background: rgba(255,255,255,.58);
  box-shadow: 0 22px 70px rgba(36,25,21,.08);
  backdrop-filter: blur(10px);
}
.form-row {
  display: grid;
  gap: 8px;
}
.form-row label {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(75,36,24,.82);
  font-weight: 700;
}
.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(75,36,24,.18);
  border-radius: 18px;
  background: rgba(246,238,219,.72);
  color: var(--charcoal-brown);
  padding: 14px 15px;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-row textarea {
  resize: vertical;
  min-height: 150px;
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(169,120,58,.72);
  box-shadow: 0 0 0 4px rgba(169,120,58,.13);
  background: rgba(255,250,237,.92);
}
.contact-submit {
  width: max-content;
  min-width: 190px;
  justify-content: center;
}
.form-note {
  margin: 0;
  font-size: .9rem;
  color: rgba(36,25,21,.62);
}
@media (max-width: 860px) {
  .contact-shell {
    grid-template-columns: 1fr;
  }
  .contact-copy {
    position: static;
  }
  .contact-submit {
    width: 100%;
  }
}


/* V8.7 dedicated contact page */
.contact-page-section {
  padding-top: 130px;
}
.contact-page-hero {
  max-width: 980px;
  text-align: center;
}
.contact-page-hero h1 {
  font-size: clamp(4rem, 10vw, 10rem);
  margin-bottom: 20px;
}
.contact-page-hero .lead {
  margin-inline: auto;
}
.contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid rgba(75,36,24,.14);
  border-radius: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(circle at 10% 10%, rgba(169,120,58,.14), transparent 22rem),
    linear-gradient(135deg, rgba(246,238,219,.86), rgba(255,250,237,.74));
  box-shadow: 0 28px 90px rgba(36,25,21,.10);
  overflow: hidden;
}
.contact-copy {
  position: sticky;
  top: 120px;
}
.contact-copy a {
  color: var(--deep-sepia);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(75,36,24,.14);
  border-radius: 28px;
  background: rgba(255,255,255,.58);
  box-shadow: 0 22px 70px rgba(36,25,21,.08);
  backdrop-filter: blur(10px);
}
.form-row {
  display: grid;
  gap: 8px;
}
.form-row label {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(75,36,24,.82);
  font-weight: 700;
}
.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(75,36,24,.18);
  border-radius: 18px;
  background: rgba(246,238,219,.72);
  color: var(--charcoal-brown);
  padding: 14px 15px;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-row textarea {
  resize: vertical;
  min-height: 150px;
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(169,120,58,.72);
  box-shadow: 0 0 0 4px rgba(169,120,58,.13);
  background: rgba(255,250,237,.92);
}
.contact-submit {
  width: max-content;
  min-width: 190px;
  justify-content: center;
}
.form-note {
  margin: 0;
  font-size: .9rem;
  color: rgba(36,25,21,.62);
}
@media (max-width: 860px) {
  .contact-shell {
    grid-template-columns: 1fr;
  }
  .contact-copy {
    position: static;
  }
  .contact-submit {
    width: 100%;
  }
}


/* V8.8 refined secure contact page */
.contact-atelier {
  position: relative;
  min-height: 100svh;
  padding: 140px 20px 80px;
  overflow: hidden;
}
.contact-atelier::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(36,25,21,.76), rgba(75,36,24,.28) 45%, rgba(246,238,219,.22)),
    url('../images/stone-farm-gate-golden.webp') center/cover no-repeat;
  filter: saturate(.95) contrast(.96);
}
.contact-atelier::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 20% 18%, rgba(246,238,219,.48), transparent 28rem),
    linear-gradient(180deg, rgba(36,25,21,.14), rgba(36,25,21,.34));
  pointer-events: none;
}
.contact-atelier__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .18;
  mix-blend-mode: multiply;
  background:
    repeating-linear-gradient(0deg, rgba(36,25,21,.045), rgba(36,25,21,.045) 1px, transparent 1px, transparent 4px),
    repeating-linear-gradient(90deg, rgba(36,25,21,.025), rgba(36,25,21,.025) 1px, transparent 1px, transparent 7px);
}
.contact-atelier__intro {
  width: min(1050px, calc(100vw - 40px));
  margin: 0 auto 42px;
  text-align: center;
  color: var(--warm-ivory);
}
.contact-atelier__intro .label {
  color: rgba(232,216,176,.9);
}
.contact-atelier__intro h1 {
  margin: 0 auto 22px;
  max-width: 980px;
  font-size: clamp(4.2rem, 9vw, 9.2rem);
  line-height: .84;
  letter-spacing: -.07em;
  color: var(--warm-ivory);
  text-shadow: 0 28px 80px rgba(0,0,0,.32);
}
.contact-atelier__intro .lead {
  max-width: 820px;
  margin-inline: auto;
  color: rgba(246,238,219,.9);
}
.contact-atelier__grid {
  width: min(var(--max), calc(100vw - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(360px, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: stretch;
}
.contact-card,
.contact-form-panel {
  border: 1px solid rgba(246,238,219,.24);
  border-radius: clamp(28px, 4vw, 48px);
  background: linear-gradient(135deg, rgba(246,238,219,.88), rgba(255,250,237,.72));
  box-shadow: 0 42px 120px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
}
.contact-card {
  padding: clamp(26px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-card h2 {
  margin: 16px 0 18px;
  font-size: clamp(2.1rem, 3.5vw, 4.2rem);
  line-height: .95;
  letter-spacing: -.055em;
}
.contact-card p {
  color: rgba(36,25,21,.74);
}
.contact-lines {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(75,36,24,.14);
}
.contact-lines span {
  display: block;
  margin-bottom: 5px;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--burnt-umber);
  font-weight: 700;
}
.contact-lines a {
  color: var(--deep-sepia);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.contact-lines p {
  margin: 0;
}
.contact-form-panel {
  padding: clamp(22px, 4vw, 40px);
}
.form-heading {
  margin-bottom: 22px;
}
.form-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.2vw, 5.2rem);
  line-height: .9;
  letter-spacing: -.06em;
}
.contact-form--secure {
  background: rgba(255,255,255,.54);
  border-color: rgba(75,36,24,.12);
}
.field-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.contact-form--secure .form-row input,
.contact-form--secure .form-row textarea {
  background: rgba(246,238,219,.82);
}
.contact-form--secure .form-row textarea::placeholder {
  color: rgba(36,25,21,.42);
}
.contact-atelier--confirmation {
  display: grid;
  place-items: center;
}
.confirmation-panel {
  padding: clamp(30px, 5vw, 66px);
  border: 1px solid rgba(246,238,219,.26);
  border-radius: clamp(30px, 4vw, 54px);
  background: linear-gradient(135deg, rgba(36,25,21,.72), rgba(75,36,24,.38));
  box-shadow: 0 42px 120px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
}
.confirmation-actions {
  justify-content: center;
  margin-top: 28px;
}
@media (max-width: 900px) {
  .contact-atelier__grid {
    grid-template-columns: 1fr;
  }
  .contact-atelier__intro h1 {
    font-size: clamp(3.5rem, 17vw, 6rem);
  }
}
@media (max-width: 560px) {
  .contact-atelier {
    padding-inline: 16px;
  }
  .contact-atelier__grid,
  .contact-atelier__intro {
    width: 100%;
  }
}


/* V9.3 mobile navigation title alignment fix */
@media (max-width: 760px) {
  .nav {
    padding: 12px;
  }

  .nav__inner {
    width: calc(100vw - 24px);
    min-height: 56px;
    padding: 10px 14px;
    border-radius: 999px;
    align-items: center !important;
    justify-content: space-between;
    position: relative;
  }

  .nav .logo,
  .nav__inner .logo {
    display: flex;
    align-items: center;
    min-height: 34px;
    max-width: calc(100vw - 118px);
    margin: 0;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
  }

  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    margin-left: auto;
    line-height: 1;
  }

  .nav__links {
    left: 12px;
    right: 12px;
    top: 68px;
  }

  .nav.is-open .nav__inner {
    border-radius: 24px;
  }
}

@media (max-width: 390px) {
  .nav .logo,
  .nav__inner .logo {
    max-width: calc(100vw - 104px);
    font-size: .92rem;
    letter-spacing: -.02em;
  }
}


/* V9.4 true responsive nav alignment fix
   The original breakpoint at 900px set .nav__inner to align-items:flex-start.
   This caused the logo to sit incorrectly at tablet / reduced desktop widths.
   This override applies from the same breakpoint downwards. */
@media (max-width: 900px) {
  .nav {
    padding: 12px;
  }

  .nav__inner {
    width: min(var(--max), calc(100vw - 24px));
    min-height: 56px;
    padding: 10px 14px;
    border-radius: 999px;
    align-items: center !important;
    justify-content: space-between;
    position: relative;
    gap: 12px;
  }

  .nav__inner .logo,
  .nav .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 36px;
    max-width: calc(100vw - 128px);
    margin: 0;
    line-height: 1.05;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    flex: 1 1 auto;
  }

  .nav__toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 36px;
    margin-left: auto;
    padding: 6px 8px;
    line-height: 1;
  }

  .nav__links {
    left: 12px;
    right: 12px;
    top: 68px;
  }

  .nav.is-open .nav__inner {
    border-radius: 24px;
  }
}

@media (max-width: 420px) {
  .nav__inner .logo,
  .nav .logo {
    max-width: calc(100vw - 112px);
    font-size: .92rem;
    letter-spacing: -.02em;
  }
}


/* V10.4 large-screen hero containment fix */
.hero__panel {
  box-sizing: border-box;
  overflow: hidden;
}

.hero__panel h1,
.hero h1,
.hero-title {
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

/* Wide desktop/iMac fix: keep the title inside the glass panel. */
@media (min-width: 1100px) {
  .hero__panel {
    width: min(100%, 930px);
  }

  .hero__panel h1,
  .hero h1,
  .hero-title {
    font-size: clamp(5.8rem, 8vw, 8.9rem) !important;
    line-height: .88 !important;
    letter-spacing: -.065em;
  }
}

@media (min-width: 1500px) {
  .hero__panel {
    width: min(100%, 980px);
  }

  .hero__panel h1,
  .hero h1,
  .hero-title {
    font-size: clamp(6rem, 6.7vw, 9.25rem) !important;
  }
}

/* Extra-wide screens need a firm ceiling. */
@media (min-width: 1850px) {
  .hero__panel {
    width: min(100%, 1040px);
  }

  .hero__panel h1,
  .hero h1,
  .hero-title {
    font-size: 9.4rem !important;
    line-height: .88 !important;
  }
}

/* Keep the heading comfortable below desktop widths too. */
@media (max-width: 900px) {
  .hero__panel {
    overflow: hidden;
  }

  .hero__panel h1,
  .hero h1,
  .hero-title {
    font-size: clamp(4.5rem, 17vw, 7.2rem) !important;
    line-height: .88 !important;
    letter-spacing: -.065em;
  }
}

@media (max-width: 520px) {
  .hero__panel h1,
  .hero h1,
  .hero-title {
    font-size: clamp(3.6rem, 15.8vw, 5.6rem) !important;
    line-height: .9 !important;
  }
}


/* V11.1 transformation heading spacing fix */
#before-after .split {
  align-items: start;
}

#before-after .transformation-title {
  max-width: 780px;
  text-wrap: balance;
  line-height: .9;
}

@media (min-width: 960px) {
  #before-after .split {
    grid-template-columns: minmax(440px, 1.08fr) minmax(360px, .92fr);
    gap: clamp(44px, 7vw, 112px);
  }

  #before-after .transformation-title {
    font-size: clamp(4.6rem, 6.2vw, 7.4rem);
    letter-spacing: -.06em;
  }
}

@media (min-width: 1350px) {
  #before-after .transformation-title {
    font-size: clamp(5.1rem, 5.7vw, 7.8rem);
  }
}

@media (max-width: 959px) {
  #before-after .transformation-title {
    font-size: clamp(4rem, 13vw, 6.2rem);
    max-width: 720px;
  }
}

@media (max-width: 560px) {
  #before-after .transformation-title {
    font-size: clamp(3.4rem, 14vw, 4.8rem);
    line-height: .93;
  }
}


/* V11.2 mobile hero panel containment fix */
@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 72px;
    overflow-x: hidden;
  }

  .hero__content {
    width: calc(100% - 32px);
    max-width: calc(100vw - 32px);
    margin-inline: auto;
    padding: clamp(34px, 9vw, 48px) clamp(22px, 7vw, 34px);
    box-sizing: border-box;
    overflow: hidden;
  }

  .hero__kicker {
    font-size: .66rem;
    line-height: 1.55;
    letter-spacing: .24em;
    max-width: 100%;
  }

  .hero__content h1 {
    font-size: clamp(3.55rem, 18.5vw, 5.25rem) !important;
    line-height: .88 !important;
    letter-spacing: -.075em;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero__sub {
    font-size: clamp(1.2rem, 6.2vw, 1.8rem);
    line-height: 1.1;
  }

  .hero__copy {
    max-width: 100%;
    font-size: clamp(1rem, 4.45vw, 1.24rem);
    line-height: 1.72;
    text-align: left;
  }

  .hero__content .actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero__content .button {
    width: 100%;
    justify-content: center;
  }

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

@media (max-width: 430px) {
  .hero__content {
    width: calc(100% - 24px);
    max-width: calc(100vw - 24px);
    padding: 34px 20px 32px;
  }

  .hero__content h1 {
    font-size: clamp(3.25rem, 17vw, 4.55rem) !important;
    line-height: .9 !important;
    letter-spacing: -.075em;
  }

  .hero__copy {
    font-size: 1.02rem;
    line-height: 1.68;
  }
}

@media (max-width: 380px) {
  .hero__content h1 {
    font-size: 3.25rem !important;
  }

  .hero__copy {
    font-size: .98rem;
  }
}


/* V11.3 hard mobile hero title fix */
@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero {
    width: 100%;
    overflow-x: clip;
  }

  .hero__content {
    width: calc(100vw - 40px) !important;
    max-width: calc(100vw - 40px) !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 34px 22px 32px !important;
    box-sizing: border-box !important;
  }

  .hero__content h1,
  .hero h1,
  .hero-title {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    font-size: clamp(3.05rem, 13.6vw, 4.45rem) !important;
    line-height: .91 !important;
    letter-spacing: -.072em !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    text-wrap: normal !important;
  }

  .hero__sub {
    font-size: clamp(1.15rem, 4.9vw, 1.45rem) !important;
    line-height: 1.16 !important;
    text-align: center;
  }

  .hero__copy {
    font-size: clamp(.98rem, 4.05vw, 1.1rem) !important;
    line-height: 1.64 !important;
    text-align: left !important;
  }
}

@media (max-width: 430px) {
  .hero__content {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    padding: 32px 18px 30px !important;
  }

  .hero__content h1,
  .hero h1,
  .hero-title {
    font-size: clamp(2.82rem, 12.9vw, 3.55rem) !important;
    line-height: .92 !important;
    letter-spacing: -.07em !important;
  }
}

@media (max-width: 390px) {
  .hero__content h1,
  .hero h1,
  .hero-title {
    font-size: 2.78rem !important;
    letter-spacing: -.068em !important;
  }
}

@media (max-width: 360px) {
  .hero__content h1,
  .hero h1,
  .hero-title {
    font-size: 2.55rem !important;
    letter-spacing: -.064em !important;
  }
}
