:root {
  --charcoal: #2b2926;
  --charcoal-deep: #211f1d;
  --gold: #c9a45c;
  --gold-soft: #d7ba7e;
  --ink: #33302c;
  --stone: #6f6a63;
  --mist: #efe8db;
  --cream: #f7f2e9;
  --white: #ffffff;
  --serif: "Playfair Display", "Didot", "Times New Roman", serif;
  --sans: "Jost", "Avenir Next", "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  font-size: 17px;
}

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

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ---------- Clear peek-a-boo nav ---------- */
.nav-shell {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  color: var(--ink);
  transform: translateY(0);
  transition: transform 0.32s ease;
  will-change: transform;
}
.nav-shell.is-hidden {
  transform: translateY(-100%);
}
.nav-shell:hover,
.nav-shell:focus-within {
  transform: translateY(0);
}

header.nav {
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}
.nav-shell.is-over-dark header.nav {
  background: transparent;
}
.nav-shell.is-over-light header.nav {
  background: transparent;
}
header.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}
.nav-shell.is-over-dark .brand {
  color: var(--white);
  text-shadow: 0 1px 16px rgba(15, 13, 11, 0.65);
}
.nav-shell.is-over-light .brand {
  text-shadow: 0 1px 12px rgba(250, 246, 238, 0.72);
}
.brand-mark { height: 52px; width: 52px; }
.brand-name {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0.08em;
  line-height: 1.25;
}
.brand-name small {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.34em;
  color: var(--stone);
  font-weight: 400;
}
.nav-shell.is-over-dark .brand-name small { color: rgba(255, 255, 255, 0.74); }
nav.links { display: flex; gap: 28px; align-items: center; }
nav.links a {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  font-weight: 400;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.nav-shell.is-over-dark nav.links a {
  color: var(--white);
  text-shadow: 0 1px 14px rgba(15, 13, 11, 0.62);
}
.nav-shell.is-over-light nav.links a {
  text-shadow: 0 1px 12px rgba(250, 246, 238, 0.72);
}
nav.links a:hover { border-bottom-color: var(--gold); color: var(--charcoal); }
.nav-shell.is-over-dark nav.links a:hover { color: var(--gold-soft); }
nav.links a.nav-call {
  color: var(--gold);
}
.nav-shell.is-over-dark nav.links a.nav-call {
  color: var(--gold-soft);
}
nav.links a.btn {
  border: 1px solid var(--charcoal);
  padding: 11px 22px;
}
nav.links a.btn:hover { background: var(--charcoal); color: var(--gold-soft); }
.nav-shell.is-over-dark nav.links a.btn {
  border-color: rgba(255, 255, 255, 0.72);
}
.nav-shell.is-over-dark nav.links a.btn:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--charcoal);
  text-shadow: none;
}

/* Mobile bar: CTA + hamburger. Hidden until the nav collapses. */
.nav-mobile-actions { display: none; align-items: center; gap: 10px; }
.nav-mobile-cta {
  border: 1px solid var(--charcoal);
  padding: 9px 15px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  white-space: nowrap;
  color: var(--ink);
}
.nav-shell.is-over-dark .nav-mobile-cta {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  text-shadow: 0 1px 14px rgba(15, 13, 11, 0.62);
}
.nav-shell.is-over-light .nav-mobile-cta {
  text-shadow: 0 1px 12px rgba(250, 246, 238, 0.72);
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--charcoal);
  color: var(--ink);
  cursor: pointer;
}
.nav-shell.is-over-dark .nav-toggle {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}
.nav-toggle-bars {
  position: relative;
  display: block;
  width: 19px;
  height: 1.5px;
  background: currentColor;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 19px;
  height: 1.5px;
  background: currentColor;
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }
.nav-shell.nav-open .nav-toggle-bars { background: transparent; }
.nav-shell.nav-open .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav-shell.nav-open .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: max(760px, calc(100svh - 28px));
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(24, 20, 15, 0.62) 0%, rgba(24, 20, 15, 0.42) 45%, rgba(24, 20, 15, 0.06) 78%),
    linear-gradient(180deg, rgba(24, 20, 15, 0.10) 0%, rgba(24, 20, 15, 0.16) 65%, rgba(24, 20, 15, 0.52) 100%),
    url("assets/img/cx3-hero.jpg") center 55% / cover no-repeat;
}
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(296px, 356px);
  align-items: end;
  gap: clamp(40px, 7vw, 88px);
  padding-top: clamp(150px, 18vh, 220px);
  padding-bottom: clamp(64px, 12vh, 118px);
  width: 100%;
}
.hero-copy { max-width: 760px; }
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
  font-weight: 400;
}
.eyebrow.gold { color: var(--gold); }
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 6.2vw, 76px);
  line-height: 1.08;
  max-width: 14em;
}
.hero p.sub {
  margin-top: 22px;
  max-width: 34em;
  font-size: 18px;
  color: #efeae1;
}
.hero h1, .hero p.sub, .hero .eyebrow {
  text-shadow: 0 1px 18px rgba(15, 13, 11, 0.55), 0 1px 3px rgba(15, 13, 11, 0.4);
}
.cta-row { display: flex; gap: 18px; margin-top: 38px; flex-wrap: wrap; }
.button {
  display: inline-block;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 34px;
  font-weight: 400;
  transition: all 0.2s ease;
}
.button.gold { background: var(--gold); color: var(--charcoal-deep); }
.button.gold:hover { background: var(--gold-soft); }
.button.ghost { border: 1px solid rgba(255, 255, 255, 0.7); color: var(--white); }
.button.ghost:hover { background: var(--white); color: var(--charcoal); }
.button.dark { border: 1px solid var(--charcoal); color: var(--charcoal); }
.button.dark:hover { background: var(--charcoal); color: var(--gold-soft); }

.owner-contact-dock {
  position: absolute;
  right: max(32px, calc((100vw - 1180px) / 2 + 32px));
  bottom: clamp(64px, 12vh, 118px);
  justify-self: end;
  width: min(560px, calc(100vw - 64px));
  color: var(--white);
}
.owner-contact-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--gold-soft);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(15, 13, 11, 0.65);
}
.owner-contact-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.owner-contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(245, 239, 226, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 20px 48px rgba(13, 11, 9, 0.22);
}
.owner-link {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  color: var(--white);
  text-decoration: none;
  background: rgba(18, 16, 14, 0.58);
  transition: background 0.2s ease, transform 0.2s ease;
}
.owner-link:hover {
  background: rgba(18, 16, 14, 0.78);
  transform: translateX(-2px);
}
.owner-link img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 1px solid rgba(215, 186, 126, 0.76);
}
.owner-link strong,
.owner-link span {
  display: block;
}
.owner-link strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 12px rgba(15, 13, 11, 0.5);
}
.owner-role {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.owner-phone {
  margin-top: 4px;
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ---------- Sections ---------- */
section { padding: 110px 0; }
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.lede { font-size: 18px; color: var(--stone); }

/* intro */
.intro { background: var(--cream); }
.intro .cols {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.intro .badge-row {
  display: flex;
  gap: 34px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e8e4dd;
}
.badge { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--charcoal); font-weight: 400; }
.badge span { color: var(--gold); margin-right: 8px; }
.intro figure img { aspect-ratio: 4 / 5; object-fit: cover; }

/* weekly services */
.services { background: var(--mist); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
}
.svc {
  position: relative;
  aspect-ratio: 3 / 4.7;
  background-image:
    linear-gradient(180deg, rgba(20, 18, 15, 0.10) 18%, rgba(20, 18, 15, 0.52) 52%, rgba(20, 18, 15, 0.90) 100%),
    var(--tile);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 1px 3px rgba(30, 27, 23, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.svc:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(30, 27, 23, 0.22);
}
.svc-txt { padding: 0 20px 24px; width: 100%; }
.svc .kicker {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 400;
  margin-bottom: 10px;
  text-shadow: 0 1px 8px rgba(15, 13, 11, 0.7);
  min-height: 2.9em;
  display: flex;
  align-items: flex-end;
}
.svc h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.28;
  color: var(--white);
  margin-bottom: 9px;
  min-height: calc(19px * 1.28 * 3);
  display: flex;
  align-items: flex-end;
  text-shadow: 0 1px 10px rgba(15, 13, 11, 0.6);
}
.svc p {
  font-size: 13px;
  color: #ddd6ca;
  line-height: 1.55;
  min-height: calc(13px * 1.55 * 3);
}

/* inspection detail — full-bleed band */
.detail {
  background:
    linear-gradient(90deg, rgba(22, 19, 15, 0.78) 0%, rgba(22, 19, 15, 0.58) 46%, rgba(22, 19, 15, 0.12) 80%),
    url("assets/img/cx2-approach.jpg") center 40% / cover no-repeat;
  padding: 130px 0;
  color: var(--white);
}
.detail .eyebrow { color: var(--gold-soft); }
.detail h2 { color: var(--white); }
.detail-inner { max-width: 620px; }
.detail-inner > p { color: #e8e3da; }
.checklist { list-style: none; margin-top: 28px; }
.checklist li {
  padding: 14px 0 14px 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  position: relative;
  color: #f2ede3;
  text-shadow: 0 1px 8px rgba(15, 13, 11, 0.5);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 24px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

/* concierge */
.concierge { background: var(--mist); }
.concierge .lede { color: var(--stone); }
.con-feature {
  margin-top: 64px;
  background:
    linear-gradient(90deg, rgba(24, 20, 15, 0.72) 0%, rgba(24, 20, 15, 0.5) 48%, rgba(24, 20, 15, 0.06) 80%),
    url("assets/img/cx3-kitchen.jpg") center 60% / cover no-repeat;
  padding: 110px 0;
}
.con-panel {
  max-width: 660px;
  background: rgba(27, 24, 21, 0.66);
  backdrop-filter: blur(3px);
  padding: 44px 44px 40px;
}
.con-panel h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  color: var(--white);
  margin-bottom: 28px;
  text-shadow: 0 1px 12px rgba(15, 13, 11, 0.55);
}
.offer-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 44px; margin-bottom: 22px; }
.offer-list li {
  position: relative;
  padding: 9px 0 9px 26px;
  color: #f0e9dc;
  font-size: 15px;
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(15, 13, 11, 0.55);
}
.offer-list li::before {
  content: "\25C6";
  position: absolute;
  left: 0;
  top: 13px;
  font-size: 9px;
  color: var(--gold);
}
.con-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 10px;
}
.con {
  position: relative;
  aspect-ratio: 4 / 3.1;
  background-image:
    linear-gradient(180deg, rgba(20, 18, 15, 0.08) 20%, rgba(20, 18, 15, 0.5) 55%, rgba(20, 18, 15, 0.9) 100%),
    var(--tile);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 1px 3px rgba(30, 27, 23, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.con:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(30, 27, 23, 0.22);
}
.con-txt { padding: 0 24px 24px; width: 100%; }
.con h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 8px;
  min-height: calc(20px * 1.3 * 2);
  display: flex;
  align-items: flex-end;
  text-shadow: 0 1px 10px rgba(15, 13, 11, 0.6);
}
.con p {
  font-size: 13.5px;
  color: #ddd6ca;
  line-height: 1.55;
  min-height: calc(13.5px * 1.55 * 3);
}

/* faq */
.faq { background: var(--mist); }
.faq .faq-list { max-width: 780px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid rgba(43, 41, 38, 0.14);
  padding: 6px 0;
}
.faq details:first-child { border-top: 1px solid rgba(43, 41, 38, 0.14); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 4px;
  font-family: var(--serif);
  font-size: 21px;
  color: var(--charcoal);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.25s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 4px 22px;
  max-width: 44em;
  color: #56524c;
  line-height: 1.7;
}

/* about */
.about { background: var(--cream); }
.about .cols {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about img { aspect-ratio: 4 / 3; object-fit: cover; }
.signatures {
  margin-top: 34px;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--charcoal);
}
.signatures small {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 6px;
}

/* process */
.process { background: var(--cream); padding-top: 96px; padding-bottom: 96px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step {
  position: relative;
  aspect-ratio: 4 / 3.4;
  background-image:
    linear-gradient(180deg, rgba(20, 18, 15, 0.10) 22%, rgba(20, 18, 15, 0.52) 56%, rgba(20, 18, 15, 0.9) 100%),
    var(--tile);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 1px 3px rgba(30, 27, 23, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(30, 27, 23, 0.22); }
.step-txt { padding: 0 26px 26px; width: 100%; }
.step-num {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold-soft);
  display: block;
  margin-bottom: 8px;
  text-shadow: 0 1px 8px rgba(15, 13, 11, 0.6);
}
.step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 1px 10px rgba(15, 13, 11, 0.6);
}
.step p {
  font-size: 14px;
  color: #ddd6ca;
  line-height: 1.55;
  min-height: calc(14px * 1.55 * 3);
}

/* contact + inquiry form */
.contact { background: var(--cream); }
.contact .cols { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start; }
.contact-list { list-style: none; margin-top: 26px; }
.contact-list li { margin-bottom: 10px; }
.contact-list a { color: var(--charcoal); text-decoration: none; font-size: 17px; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.contact-list a:hover { color: var(--gold); }
.inquiry { background: var(--white); padding: 40px 36px; box-shadow: 0 1px 4px rgba(30, 27, 23, 0.08); display: grid; gap: 18px; }
.inquiry label { display: grid; gap: 7px; }
.inquiry label span { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); font-weight: 400; }
.inquiry input, .inquiry select, .inquiry textarea {
  font-family: var(--sans); font-size: 15px; font-weight: 300; color: var(--ink);
  border: 1px solid #ddd4c2; background: #fdfcf9; padding: 12px 14px; border-radius: 0;
}
.inquiry input:focus, .inquiry select:focus, .inquiry textarea:focus { outline: 1px solid var(--gold); border-color: var(--gold); }
.inquiry .button { border: 0; cursor: pointer; font-family: var(--sans); }
.form-note { font-size: 13px; color: var(--stone); }

/* founders */
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-self: start; }
.founder { position: relative; }
.founder img { aspect-ratio: 1 / 1.25; object-fit: cover; width: 100%; display: block; }
.founder.pending img { display: none; }
.founder.pending::before {
  content: attr(data-initials);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1.25;
  background: var(--charcoal);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 56px;
  letter-spacing: 0.08em;
}
.founder figcaption {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--charcoal);
}
.founder figcaption small {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 4px;
}
.founder .bio {
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #56524c;
}

/* CTA band */
.cta-band {
  position: relative;
  padding: 150px 0;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(24, 22, 20, 0.55), rgba(24, 22, 20, 0.55)),
    url("assets/img/cta-chalet.jpg") center 72% / cover no-repeat;
}
.cta-band h2 { color: var(--white); max-width: 18em; margin: 0 auto 18px; }
.cta-band p { max-width: 36em; margin: 0 auto 36px; color: #e8e3da; }

/* contact / footer */
footer {
  background: var(--charcoal-deep);
  color: #b4aca0;
  padding: 90px 0 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #3a3733;
}
footer h4 {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 400;
  margin-bottom: 20px;
}
footer a { color: #d9d4cb; text-decoration: none; }
footer a:hover { color: var(--gold-soft); }
footer ul { list-style: none; }
footer li { margin-bottom: 12px; font-size: 15px; }
.foot-note {
  padding-top: 28px;
  font-size: 13px;
  letter-spacing: 0.06em;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: #7c766d;
}

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .reveal.in { opacity: 1; transform: none; }

  .hero .eyebrow, .hero h1, .hero p.sub, .hero .cta-row {
    animation: heroUp 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }
  .hero h1 { animation-delay: 0.15s; }
  .hero p.sub { animation-delay: 0.3s; }
  .hero .cta-row { animation-delay: 0.45s; }
  @keyframes heroUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: none; }
  }

  figure { overflow: hidden; }
  figure img { transition: transform 0.8s ease; }
  figure:hover img { transform: scale(1.035); }
  .con-photos img { transition: transform 0.8s ease; }
  .con-photos img:hover { transform: scale(1.03); }

  .nav-shell { transition: transform 0.32s ease; }
  .nav-toggle-bars,
  .nav-toggle-bars::before,
  .nav-toggle-bars::after { transition: transform 0.24s ease, top 0.24s ease, background 0.18s ease; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .con-grid { grid-template-columns: repeat(2, 1fr); }
  nav.links { gap: 20px; }
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: clamp(142px, 18vh, 178px);
  }
  .owner-contact-dock {
    position: static;
    right: auto;
    bottom: auto;
    justify-self: start;
    width: min(100%, 520px);
  }
  .owner-contact-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .owner-link {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }
  .owner-link img {
    width: 54px;
    height: 54px;
  }
  .owner-link strong {
    font-size: 18px;
  }
  .owner-phone {
    font-size: 11px;
    letter-spacing: 0.16em;
  }
  .owner-role {
    font-size: 10px;
    letter-spacing: 0.06em;
  }
}
@media (max-width: 780px) {
  section { padding: 72px 0; }
  .intro .cols, .about .cols, .contact .cols { grid-template-columns: 1fr; gap: 44px; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .offer-list { grid-template-columns: 1fr; }
  .detail { padding: 84px 0; }
  .con-feature { padding: 72px 0; }
  .con-grid, .con-photos { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 40px; }
  /* Collapse the link row into a hamburger drawer: logo, CTA, toggle. */
  header.nav { position: relative; }
  header.nav .wrap { gap: 12px; padding-top: 10px; padding-bottom: 10px; }
  .nav-mobile-actions { display: flex; }
  .brand { gap: 11px; }
  .brand-mark { height: 38px; width: 38px; }
  .brand-name { font-size: 15px; white-space: nowrap; }
  .brand-name small { font-size: 8.5px; letter-spacing: 0.28em; }

  nav.links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: block;
    padding: 4px 0 8px;
    background: var(--charcoal-deep);
    border-top: 1px solid rgba(201, 164, 92, 0.34);
    box-shadow: 0 18px 40px rgba(15, 13, 11, 0.34);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
  }
  .nav-shell.nav-open nav.links {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  nav.links a { display: block; padding: 14px 32px; border-bottom: 0; }
  .nav-shell.is-over-dark nav.links a,
  .nav-shell.is-over-light nav.links a {
    color: var(--white);
    text-shadow: none;
  }
  .nav-shell.is-over-dark nav.links a:hover,
  .nav-shell.is-over-light nav.links a:hover { color: var(--gold-soft); }
  nav.links a + a { border-top: 1px solid rgba(245, 239, 226, 0.14); }
  nav.links a.btn { display: none; }

  /* Open drawer and bar read as one solid block. */
  .nav-shell.nav-open header.nav { background: var(--charcoal-deep); }
  .nav-shell.nav-open .brand,
  .nav-shell.nav-open .nav-mobile-cta,
  .nav-shell.nav-open .nav-toggle { color: var(--white); text-shadow: none; }
  .nav-shell.nav-open .brand-name small { color: rgba(255, 255, 255, 0.74); }
  .nav-shell.nav-open .nav-mobile-cta,
  .nav-shell.nav-open .nav-toggle { border-color: rgba(255, 255, 255, 0.72); }
  .intro .badge-row {
    flex-wrap: wrap;
    gap: 14px 22px;
  }
  /* conversion: form first when the contact section stacks */
  .contact .cols { display: flex; flex-direction: column; }
  .contact form.inquiry { order: -1; }
  .inquiry {
    min-width: 0;
    padding: 32px 24px;
  }
  .inquiry input, .inquiry select, .inquiry textarea {
    min-width: 0;
    width: 100%;
  }
  .hero {
    min-height: max(100svh, 940px);
    align-items: flex-end;
    background-position: 66% 30%;
  }
  .hero .wrap {
    padding-top: 96px;
    padding-bottom: max(34px, env(safe-area-inset-bottom));
  }
  .hero .eyebrow { margin-bottom: 14px; }
  .hero h1 { font-size: clamp(35px, 10.4vw, 42px); line-height: 1.03; }
  .hero p.sub { margin-top: 18px; font-size: 16px; line-height: 1.6; }
  .hero .cta-row { margin-top: 24px; gap: 12px; }
  .hero .button { padding: 13px 24px; font-size: 11.5px; letter-spacing: 0.18em; }
  .owner-contact-kicker {
    margin-bottom: 10px;
    font-size: 10.5px;
    letter-spacing: 0.22em;
  }
  .owner-contact-panel {
    grid-template-columns: 1fr;
  }
  .owner-link {
    grid-template-columns: 50px minmax(0, 1fr);
    padding: 11px 12px;
  }
  .owner-link img {
    width: 50px;
    height: 50px;
  }
  .owner-link strong {
    font-size: 17px;
  }
  .svc-grid { grid-template-columns: 1fr; }
}

/* Below this the wordmark can't hold one line beside the CTA and toggle,
   so the mark carries the brand on its own. */
@media (max-width: 520px) {
  .brand-name { display: none; }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(33px, 9.8vw, 39px);
  }
  .hero p.sub {
    font-size: 15.5px;
  }
}

/* anchored sections clear the sticky header */
section[id] { scroll-margin-top: 120px; }
@media (max-width: 780px) {
  section[id] { scroll-margin-top: 78px; }
}
@media (max-width: 780px) and (prefers-reduced-motion: no-preference) {
  nav.links { transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s; }
}
