: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; }

/* ---------- Top bar + nav ---------- */
.topbar {
  background: var(--charcoal-deep);
  color: #cfc9c0;
  font-size: 13px;
  letter-spacing: 0.12em;
}
.topbar .wrap {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar a { color: var(--gold-soft); text-decoration: none; }
.topbar a:hover { color: var(--white); }

header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.97);
  border-bottom: 1px solid #e5dcc9;
  backdrop-filter: blur(6px);
}
header.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}
.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.links { display: flex; gap: 34px; 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.links a:hover { border-bottom-color: var(--gold); color: var(--charcoal); }
nav.links a.btn {
  border: 1px solid var(--charcoal);
  padding: 11px 22px;
}
nav.links a.btn:hover { background: var(--charcoal); color: var(--gold-soft); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  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 { padding-bottom: 96px; width: 100%; }
.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); }

/* ---------- 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);
}

/* about */
.about { background: var(--mist); }
.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;
}

/* 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); }

  header.nav { transition: box-shadow 0.3s ease; }
  header.nav.scrolled { box-shadow: 0 6px 24px rgba(30, 27, 23, 0.09); }
}

/* ---------- 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; }
}
@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; }
  header.nav .wrap { flex-wrap: wrap; justify-content: center; gap: 10px 18px; }
  nav.links { flex-wrap: wrap; justify-content: center; gap: 8px 18px; }
  nav.links a:not(.btn) { font-size: 12px; padding: 4px 0; }
  nav.links a.btn { padding: 9px 16px; }
  .topbar .wrap { justify-content: center; flex-wrap: wrap; gap: 8px 20px; }
  .topbar .loc { display: none; }
  .hero { min-height: 72vh; }
  .svc-grid { grid-template-columns: 1fr; }
}

/* anchored sections clear the sticky header */
section[id] { scroll-margin-top: 96px; }
@media (max-width: 780px) {
  section[id] { scroll-margin-top: 170px; }
}
