:root {
  --navy: #426781;
  --sky: #89B9C5;
  --olive: #939959;
  --gold: #D1AD59;
  --rust: #B77E53;
  --timber: #8C7154;
  --paper: #F3EFE7;
  --warm-mid: #E4DED2;
  --brown: #4A3A2A;
  --ink: #2B2723;
  --body-c: #5A5249;
  --muted: #6B635A;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: clip;
}

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

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 300ms ease;
}
a:hover { color: var(--rust); }

::selection { background: var(--gold); color: var(--ink); }

h1, h2, h3 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  margin: 0;
}

em { font-style: italic; }

.kicker {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.kicker--gold { color: var(--gold); }

.btn {
  display: inline-block;
  padding: 16px 30px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  transition: background 250ms ease, color 250ms ease, border-color 250ms ease;
}
.btn--light { background: var(--paper); color: var(--ink); }
.btn--light:hover { background: var(--gold); color: var(--ink); }
.btn--outline-light { border-color: rgba(243,239,231,0.5); color: var(--paper); background: transparent; }
.btn--outline-light:hover { border-color: var(--paper); background: rgba(243,239,231,0.1); color: var(--paper); }
.btn--gold { background: var(--gold); color: var(--ink); border: 0; }
.btn--gold:hover { background: var(--paper); }

/* Reveal-on-scroll */
.reveal, [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms cubic-bezier(0.2,0.7,0.2,1), transform 900ms cubic-bezier(0.2,0.7,0.2,1);
}
.reveal.is-visible, [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 64px);
  transition: background 400ms ease, padding 400ms ease, box-shadow 400ms ease;
}
.nav.is-solid {
  background: rgba(243,239,231,0.96);
  box-shadow: 0 1px 0 rgba(43,39,35,0.10);
  padding: 14px clamp(20px, 5vw, 64px);
}
.nav__logo-link { display: flex; align-items: center; gap: 12px; }
.nav__logo { height: 26px; width: auto; filter: brightness(0) invert(1); transition: filter 400ms ease; }
.nav.is-solid .nav__logo { filter: none; }
.nav__links { display: flex; align-items: center; gap: clamp(16px, 2.6vw, 38px); }
.nav__link {
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--paper);
}
.nav.is-solid .nav__link { color: var(--ink); }
.nav__link:hover { color: var(--rust); }
.nav__link--pill {
  border: 1px solid rgba(243,239,231,0.55);
  padding: 10px 20px;
}
.nav.is-solid .nav__link--pill { border-color: rgba(43,39,35,0.3); }
.nav__link--pill:hover {
  background: var(--paper);
  color: var(--ink) !important;
  border-color: var(--paper);
}
.nav__menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px; height: 24px;
  background: transparent; border: 0; padding: 0; cursor: pointer;
}
.nav__bar {
  display: block; width: 100%; height: 1.5px;
  background: var(--paper);
  transition: transform 300ms ease, opacity 300ms ease, background 400ms ease;
}
.nav.is-solid .nav__bar { background: var(--ink); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 59;
  background: var(--ink);
  display: none;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 320ms ease;
}
.mobile-menu a {
  font-family: 'Instrument Serif', serif;
  font-size: 34px;
  color: var(--paper);
}
.mobile-menu a:hover { color: var(--rust); }
.mobile-menu__enquire { color: var(--gold) !important; }

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__menu-btn { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__img {
  position: absolute; inset: -8% 0 0 0;
  width: 100%; height: 116%;
  object-fit: cover; object-position: 50% 55%;
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(43,39,35,0.72) 0%, rgba(43,39,35,0.24) 45%, rgba(43,39,35,0.34) 100%);
}
.hero__content {
  position: relative;
  padding: 0 clamp(20px, 5vw, 64px) clamp(48px, 7vw, 88px);
  color: var(--paper);
  max-width: 1100px;
}
.hero__content .kicker { margin-bottom: 22px; }
.hero__title {
  font-size: clamp(52px, 8.4vw, 132px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero__title em { color: var(--warm-mid); }
.hero__sub {
  margin: 28px 0 0;
  max-width: 46ch;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.6;
  color: rgba(243,239,231,0.86);
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__scroll-label {
  position: absolute; bottom: 34px; right: clamp(20px, 5vw, 64px);
  writing-mode: vertical-rl;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(243,239,231,0.6);
}

/* ---------- Intro / pillars ---------- */
.intro {
  padding: clamp(90px, 12vw, 170px) clamp(20px, 5vw, 64px);
  max-width: 1180px;
  margin: 0 auto;
}
.intro__statement {
  margin: 0;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(30px, 4.2vw, 60px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  text-wrap: pretty;
  max-width: 20ch;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(28px, 4vw, 72px);
  margin-top: clamp(48px, 6vw, 90px);
  border-top: 1px solid #E0D8C9;
  padding-top: 40px;
}
.pillar__swatch { width: 14px; height: 14px; margin-bottom: 18px; }
.pillar__swatch--navy { background: var(--navy); }
.pillar__swatch--olive { background: var(--olive); }
.pillar__swatch--rust { background: var(--rust); }
.pillar h3 { font-family: 'Jost', sans-serif; margin: 0 0 10px; font-weight: 500; font-size: 17px; letter-spacing: 0.01em; }
.pillar p { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--body-c); }

/* ---------- Day in the home ---------- */
.day { background: var(--brown); color: var(--paper); }
.day__header {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 64px) 0;
  max-width: 1180px;
  margin: 0 auto;
}
.day__title {
  margin: 20px 0 0;
  font-size: clamp(38px, 5.6vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.day__title em { color: var(--olive); }
.day__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  gap: 0;
  margin-top: clamp(50px, 7vw, 96px);
  border-top: 1px solid rgba(243,239,231,0.14);
}
.day__text {
  padding: clamp(48px, 6vw, 96px) clamp(20px, 5vw, 72px);
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(243,239,231,0.14);
}
.day__text--bordered { border-top: 1px solid rgba(243,239,231,0.14); }
.day__time { font-size: 11.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--olive); margin-bottom: 20px; }
.day__text h3 { margin: 0 0 18px; font-size: clamp(28px, 3.4vw, 46px); line-height: 1.08; }
.day__text p { margin: 0; font-size: 16.5px; line-height: 1.68; color: rgba(243,239,231,0.72); max-width: 42ch; }
.day__product { margin-top: 28px; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.day__photo { position: relative; min-height: 56vh; overflow: hidden; border-top: 1px solid rgba(243,239,231,0.14); }
.day__photo--bordered { border-right: 1px solid rgba(243,239,231,0.14); }
.day__photo--top { border-top: 1px solid rgba(243,239,231,0.14); }
.day__photo img {
  position: absolute; inset: -8% 0;
  width: 100%; height: 116%;
  object-fit: cover;
  will-change: transform;
}

/* ---------- Room assembly (GSAP) ---------- */
.room { position: relative; height: 520vh; background: var(--warm-mid); }
.room__stage-wrap {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.room__heading {
  position: absolute; top: clamp(72px, 10vh, 120px); left: 0; right: 0;
  text-align: center; z-index: 6; padding: 0 20px;
}
.room__lines { position: relative; height: clamp(46px, 6.4vw, 88px); margin-top: 16px; }
.room__line {
  position: absolute; inset: 0; margin: 0;
  font-size: clamp(30px, 4.4vw, 64px);
  line-height: 1.1; letter-spacing: -0.015em;
  color: var(--ink);
  opacity: 0;
  visibility: hidden;
}
.room__line--em { font-style: italic; color: var(--navy); }

.room__stage {
  position: relative;
  width: min(1180px, 90vw);
  height: min(64vh, 660px);
}
.room__tile { position: absolute; overflow: hidden; }
.room__tile img { width: 100%; height: 100%; object-fit: cover; }
.room__tile--c {
  left: 50%; top: 50%; width: 42%; aspect-ratio: 5 / 4;
  transform: translate(-50%, -50%);
  box-shadow: 0 30px 70px -40px rgba(43,39,35,0.55);
  z-index: 3;
  opacity: 0;
}
.room__tile--tl { left: 0; top: 2%; width: 25%; aspect-ratio: 4 / 5; opacity: 0; }
.room__tile--tr { right: 0; top: 0; width: 27%; aspect-ratio: 4 / 3; opacity: 0; }
.room__tile--bl { left: 3%; bottom: 0; width: 27%; aspect-ratio: 3 / 2; opacity: 0; }
.room__tile--br { right: 1%; bottom: 3%; width: 24%; aspect-ratio: 1 / 1; opacity: 0; }
.room__tile--lm { left: 14%; top: 44%; width: 15%; aspect-ratio: 1 / 1; opacity: 0; }

.room__cap {
  position: absolute; z-index: 5;
  display: flex; align-items: center; gap: 9px;
  background: rgba(243,239,231,0.94);
  padding: 8px 14px;
  font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--body-c);
  opacity: 0;
  visibility: hidden;
}
.room__cap--0 { left: 27%; top: 12%; }
.room__cap--1 { right: 26%; bottom: 20%; }
.room__cap-dot { width: 9px; height: 9px; display: inline-block; }

.room__foot {
  position: absolute; bottom: clamp(34px, 6vh, 70px); left: 0; right: 0;
  text-align: center; padding: 0 20px;
  opacity: 0;
  visibility: hidden;
}
.room__foot p { margin: 0; font-size: 16.5px; line-height: 1.65; color: var(--body-c); }

/* ---------- Range grid ---------- */
.range { padding: clamp(90px, 12vw, 160px) clamp(20px, 5vw, 64px); max-width: 1400px; margin: 0 auto; }
.range__header {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 24px; border-bottom: 1px solid #E0D8C9; padding-bottom: 32px;
}
.range__header h2 { margin: 18px 0 0; font-size: clamp(36px, 5vw, 72px); line-height: 1.03; letter-spacing: -0.015em; }
.range__sub { margin: 0; max-width: 34ch; font-size: 15.5px; line-height: 1.65; color: var(--body-c); }
.range__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 3.4vw, 56px);
  margin-top: clamp(44px, 5vw, 72px);
}
.card { display: flex; flex-direction: column; }
.card__img-wrap { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--warm-mid); }
.card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms cubic-bezier(0.2,0.7,0.2,1); }
.card:hover .card__img-wrap img { transform: scale(1.045); }
.card__badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(243,239,231,0.92);
  padding: 7px 12px;
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--body-c);
}
.card h3 { margin: 20px 0 0; font-size: 26px; line-height: 1.15; }
.card p { margin: 10px 0 0; font-size: 15px; line-height: 1.62; color: var(--body-c); }
.card__meta { display: flex; align-items: center; gap: 9px; margin-top: 18px; }
.card__swatch { width: 15px; height: 15px; border: 1px solid rgba(43,39,35,0.14); display: inline-block; }
.card__finish { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--timber); margin-left: 6px; }
.card__link {
  margin-top: 22px; align-self: flex-start;
  font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 5px;
}
.card__link:hover { color: var(--rust); border-color: var(--rust); }

/* ---------- Why we make it ---------- */
.why { background: var(--navy); color: var(--paper); padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 64px); }
.why__grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 90px);
  align-items: start;
}
.why h2 { margin: 18px 0 22px; font-size: clamp(32px, 4.2vw, 56px); line-height: 1.05; }
.why > .why__grid > div:first-child p { margin: 0; font-size: 16.5px; line-height: 1.68; color: rgba(243,239,231,0.8); max-width: 42ch; }
.why__list { display: flex; flex-direction: column; gap: 26px; }
.why__item { border-top: 1px solid rgba(243,239,231,0.24); padding-top: 22px; }
.why__label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sky); margin-bottom: 10px; }
.why__item p { margin: 0; font-size: 15.5px; line-height: 1.62; color: rgba(243,239,231,0.78); }

/* ---------- Story ---------- */
.story { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); align-items: stretch; }
.story__photo { position: relative; min-height: 68vh; overflow: hidden; }
.story__photo img { position: absolute; inset: -8% 0; width: 100%; height: 116%; object-fit: cover; will-change: transform; }
.story__content {
  padding: clamp(60px, 8vw, 130px) clamp(20px, 5vw, 90px);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--paper);
}
.story__content h2 { margin: 20px 0 24px; font-size: clamp(32px, 4.4vw, 62px); line-height: 1.04; letter-spacing: -0.015em; }
.story__content p { margin: 0 0 18px; font-size: 16.5px; line-height: 1.7; color: var(--body-c); max-width: 46ch; }
.story__tagline { margin-top: 34px; font-family: 'Instrument Serif', serif; font-style: italic; font-size: 24px; color: var(--navy); }

/* ---------- Enquire ---------- */
.enquire { background: var(--brown); color: var(--paper); padding: clamp(80px, 10vw, 150px) clamp(20px, 5vw, 64px); }
.enquire__grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(40px, 6vw, 100px);
}
.enquire h2 { margin: 18px 0 22px; font-size: clamp(34px, 4.6vw, 64px); line-height: 1.03; }
.enquire > .enquire__grid > div:first-child p { margin: 0 0 30px; font-size: 16.5px; line-height: 1.68; color: rgba(243,239,231,0.75); max-width: 40ch; }
.enquire__contact { display: flex; flex-direction: column; gap: 8px; font-size: 15.5px; }
.enquire__contact a { color: var(--olive); }
.enquire__contact a:hover { color: var(--gold); }

.enquire__thanks { border: 1px solid rgba(243,239,231,0.3); padding: 40px 34px; }
.enquire__thanks h3 { margin: 0 0 12px; font-size: 30px; }
.enquire__thanks p { margin: 0; font-size: 16px; line-height: 1.65; color: rgba(243,239,231,0.75); }

.enquire__form { display: flex; flex-direction: column; gap: 22px; }
.enquire__error { margin: -8px 0 0; font-size: 14px; line-height: 1.5; color: #E8B4A0; }
.enquire__error a { color: var(--gold); }
.field { display: flex; flex-direction: column; gap: 9px; }
.field__label { font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(243,239,231,0.6); }
.field__select, .field__input, .field__textarea {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(243,239,231,0.35);
  color: var(--paper);
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 300;
  padding: 10px 0;
  transition: border-color 250ms ease;
}
.field__select:focus, .field__input:focus, .field__textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field__select option { color: var(--ink); }
.field__textarea { resize: none; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 15px;
  background: transparent;
  border: 1px solid rgba(243,239,231,0.3);
  color: var(--paper);
  font-family: 'Jost', sans-serif; font-weight: 300; font-size: 13.5px;
  cursor: pointer;
  transition: border-color 200ms ease;
}
.chip.is-active { border-color: var(--gold); }
.chip__swatch { width: 12px; height: 12px; display: inline-block; }

/* ---------- FAQ ---------- */
.faq { padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 64px); max-width: 980px; margin: 0 auto; }
.faq h2 { margin: 0 0 40px; font-size: clamp(32px, 4.4vw, 60px); line-height: 1.05; }
.faq-item { border-top: 1px solid #E0D8C9; }
.faq-item__q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 26px 0;
  background: transparent; border: 0; cursor: pointer; text-align: left;
  font-family: 'Jost', sans-serif; font-weight: 400;
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--ink);
}
.faq-item__mark { font-family: 'Instrument Serif', serif; font-size: 28px; color: var(--rust); line-height: 1; flex-shrink: 0; }
.faq-item__a-wrap { max-height: 0; overflow: hidden; transition: max-height 480ms cubic-bezier(0.3,0.8,0.3,1); }
.faq-item__a-wrap p { margin: 0 0 28px; max-width: 62ch; font-size: 16px; line-height: 1.7; color: var(--body-c); }

/* ---------- Footer ---------- */
.footer { background: var(--warm-mid); padding: clamp(60px, 7vw, 100px) clamp(20px, 5vw, 64px) 40px; }
.footer__grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px; align-items: start;
}
.footer__brand { display: flex; flex-direction: column; gap: 18px; }
.footer__brand img { width: 120px; height: auto; }
.footer__brand p { margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--body-c); max-width: 30ch; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__heading { font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--timber); }
.footer__col a, .footer__col span { font-size: 15px; }
.footer__col span { color: var(--body-c); }
.footer__bottom {
  max-width: 1400px; margin: 60px auto 0;
  border-top: 1px solid #D5CBB9;
  padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: 12.5px; color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, [data-reveal] { transition: none; }
  html { scroll-behavior: auto; }
}

/* Placed last so it wins the cascade over the unconditional 2-column rule above */
@media (max-width: 760px) {
  .day__grid { grid-template-columns: 1fr; }

  /* Force text-then-photo order per beat when the grid stacks to one column */
  .day__grid > *:nth-child(1) { order: 1; } /* text — early */
  .day__grid > *:nth-child(2) { order: 2; } /* photo — early */
  .day__grid > *:nth-child(3) { order: 4; } /* photo — mid-morning */
  .day__grid > *:nth-child(4) { order: 3; } /* text — mid-morning */
  .day__grid > *:nth-child(5) { order: 5; } /* text — evening */
  .day__grid > *:nth-child(6) { order: 6; } /* photo — evening */
  .day__grid > *:nth-child(7) { order: 8; } /* photo — night */
  .day__grid > *:nth-child(8) { order: 7; } /* text — night */
}
