:root {
  --bark: #2a211c;
  --bark-deep: #1d1714;
  --bark-light: #382b24;
  --parchment: #f1e7d3;
  --paper-muted: #d6c7b0;
  --maple: #a7442f;
  --maple-bright: #c85b3e;
  --birch: #d49a42;
  --birch-light: #e9bd72;
  --pine: #708267;
  --pine-dark: #3f5143;
  --line: rgba(241, 231, 211, 0.2);
  --line-strong: rgba(241, 231, 211, 0.36);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", monospace;
  --max: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--parchment);
  background: var(--bark);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--bark-deep);
  background: var(--birch-light);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 76px;
  padding: 0 clamp(24px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(23, 17, 15, 0.84);
  backdrop-filter: blur(18px);
  transition: height 250ms ease, background 250ms ease;
}

.site-header.scrolled { height: 64px; background: rgba(23, 17, 15, 0.96); }

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: max-content;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.02em;
}

.brand-lockup { display: flex; flex-direction: column; gap: 0; line-height: 1.02; }
.brand-lockup strong { font-family: var(--serif); font-size: 20px; font-weight: 500; }
.brand-lockup small { margin-top: 4px; color: var(--birch-light); font-family: var(--mono); font-size: 7px; font-weight: 400; letter-spacing: 0.13em; text-transform: uppercase; }

.brand svg { width: 27px; fill: none; stroke: var(--birch); stroke-width: 1.5; }
.brand circle { fill: var(--birch); stroke: none; }

.desktop-nav { display: flex; align-items: center; gap: 26px; }
.desktop-nav a { color: var(--paper-muted); font-size: 12px; letter-spacing: 0.04em; transition: color 180ms ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--parchment); }

.nav-cta {
  justify-self: end;
  padding: 10px 17px;
  border: 1px solid var(--line-strong);
  font-size: 12px;
  transition: background 180ms ease, border-color 180ms ease;
}

.nav-cta:hover, .nav-cta:focus-visible { background: rgba(212, 154, 66, 0.1); border-color: var(--birch); }
.menu-toggle, .mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 890px;
  padding: 190px clamp(24px, 7vw, 108px) 78px;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 16%, rgba(112, 130, 103, 0.22), transparent 31%),
    linear-gradient(125deg, #19120f 0%, #211713 54%, #1c241e 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.17;
  background-image: url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; width: min(100%, var(--max)); margin: 0 auto; }
.hero-copy { max-width: min(840px, calc(100% - 320px)); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 25px;
  color: var(--birch-light);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span { display: block; width: 24px; height: 1px; background: currentColor; }

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(62px, 7.5vw, 110px);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.92;
}

h1 em, h2 em { color: var(--birch-light); font-weight: 400; }
h1 em { position: relative; }
h1 em::after {
  position: absolute;
  bottom: 0.02em;
  left: 2%;
  width: 98%;
  height: 0.06em;
  content: "";
  background: var(--maple-bright);
  transform: rotate(-1.2deg);
  transform-origin: left center;
}

.hero-lede { max-width: 670px; margin-bottom: 35px; color: var(--paper-muted); font-size: clamp(17px, 1.45vw, 20px); font-weight: 300; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button:disabled { cursor: wait; opacity: 0.65; transform: none; }
.button-primary { color: var(--bark-deep); background: var(--birch); }
.button-primary:hover, .button-primary:focus-visible { background: var(--birch-light); }
.button-ghost { gap: 15px; border-color: var(--line-strong); }
.button-ghost:hover, .button-ghost:focus-visible { border-color: var(--paper-muted); background: rgba(241, 231, 211, 0.05); }
.button-block { width: 100%; }

.hero-note {
  position: absolute;
  top: 5px;
  right: 0;
  width: 285px;
  padding: 24px;
  border: 1px solid rgba(233, 189, 114, 0.24);
  background: rgba(33, 23, 19, 0.36);
  backdrop-filter: blur(8px);
}

.note-kicker { margin-bottom: 28px; color: #a9b99e; font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; }
.note-quote { margin-bottom: 32px; font-family: var(--serif); font-size: 22px; font-style: italic; line-height: 1.35; }
.hero-note dl { margin: 0; }
.hero-note dl div { display: flex; justify-content: space-between; padding: 10px 0; border-top: 1px solid var(--line); }
.hero-note dt { color: var(--paper-muted); font-size: 11px; }
.hero-note dd { margin: 0; color: var(--birch-light); font-family: var(--mono); font-size: 10px; }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(680px, 100%);
  margin-top: 74px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-facts > div { display: flex; align-items: center; gap: 14px; padding: 16px 22px; border-right: 1px solid var(--line); }
.hero-facts > div:first-child { padding-left: 0; }
.hero-facts > div:last-child { border-right: 0; }
.hero-facts strong { color: var(--birch-light); font-family: var(--serif); font-size: 30px; font-weight: 400; line-height: 1; }
.hero-facts span { color: var(--paper-muted); font-size: 10px; letter-spacing: 0.06em; line-height: 1.45; text-transform: uppercase; }

.vertical-note {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 78px;
  margin: 0;
  color: rgba(201, 186, 162, 0.42);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.17em;
  writing-mode: vertical-rl;
}

.contour { position: absolute; z-index: 1; border: 1px solid rgba(212, 154, 66, 0.11); border-radius: 47% 53% 61% 39% / 38% 42% 58% 62%; pointer-events: none; }
.contour::before, .contour::after { position: absolute; content: ""; border: 1px solid rgba(212, 154, 66, 0.1); border-radius: inherit; }
.contour::before { inset: 24px; }
.contour::after { inset: 54px; }
.contour-one { right: -90px; bottom: -120px; width: 620px; height: 570px; transform: rotate(18deg); }
.contour-two { top: 145px; right: 17%; width: 270px; height: 230px; transform: rotate(-22deg); }
.leaf-glow { position: absolute; z-index: 0; right: 3%; bottom: -4%; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(167, 68, 47, 0.18), transparent 68%); }

.first-look { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(380px, 0.65fr); min-height: 720px; background: #d8b471; color: var(--bark-deep); }
.first-look figure { position: relative; min-height: 720px; margin: 0; overflow: hidden; }
.first-look figure::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, transparent 68%, rgba(29, 23, 20, 0.16)); pointer-events: none; }
.first-look figure img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.first-look figcaption { position: absolute; z-index: 2; bottom: 24px; left: 28px; padding: 8px 12px; color: var(--parchment); background: rgba(29, 23, 20, 0.76); font-family: var(--mono); font-size: 8px; letter-spacing: 0.12em; text-transform: uppercase; }
.first-look-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(32px, 6vw, 88px); }
.first-look-copy .eyebrow { color: #7f321f; }
.first-look-copy h2 { margin-bottom: 25px; font-family: var(--serif); font-size: clamp(48px, 5vw, 76px); font-weight: 400; letter-spacing: -0.045em; line-height: 0.98; }
.first-look-copy h2 em { color: #7f321f; font-weight: 400; }
.first-look-copy > p:not(.eyebrow) { max-width: 520px; color: #5e4738; font-size: 15px; }
.first-look-copy dl { margin: 38px 0 0; border-top: 1px solid rgba(42, 33, 28, 0.28); }
.first-look-copy dl div { display: flex; justify-content: space-between; gap: 30px; padding: 15px 0; border-bottom: 1px solid rgba(42, 33, 28, 0.28); }
.first-look-copy dt { color: #735944; font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; }
.first-look-copy dd { margin: 0; font-family: var(--serif); font-size: 17px; text-align: right; }

.name-story { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(55px, 9vw, 145px); align-items: center; padding: 95px clamp(24px, 7vw, 108px); color: var(--bark-deep); background: #f0e6d2; }
.name-story-term { width: min(100%, 430px); justify-self: end; }
.name-story .eyebrow { color: var(--maple); }
.name-story h2 { margin: 18px 0 10px; font-family: var(--serif); font-size: clamp(46px, 5vw, 72px); font-weight: 400; letter-spacing: -0.045em; line-height: 1; }
.name-story-term > p:last-child { max-width: 380px; color: #756253; font-size: 14px; }
.name-story blockquote { position: relative; max-width: 820px; margin: 0; padding: 10px 0 10px clamp(30px, 5vw, 70px); border-left: 1px solid rgba(143, 56, 37, 0.42); }
.name-story blockquote::before { position: absolute; top: -34px; left: 24px; color: rgba(143, 56, 37, 0.14); content: "“"; font-family: var(--serif); font-size: 130px; line-height: 1; }
.name-story blockquote p { position: relative; margin: 0; font-family: var(--serif); font-size: clamp(28px, 3vw, 44px); line-height: 1.16; }

.section { padding: 130px clamp(24px, 7vw, 108px); }
.section-heading { width: min(100%, var(--max)); margin: 0 auto 62px; }
.section-heading h2, .arrangement-intro h2, .space-heading h2, .duo-copy h2, .availability-copy h2, .inquiry-intro h2, .hosts-copy h2 {
  max-width: 850px;
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(45px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}
.section-heading > p:last-child, .arrangement-intro > p:last-child { max-width: 620px; color: var(--paper-muted); font-weight: 300; }

.rhythm-section { background: #21130d; color: var(--parchment); }
.rhythm-section .eyebrow { color: var(--birch-light); }
.rhythm-section h2 em { color: var(--birch-light); }
.rhythm-section .section-heading > p:last-child { color: #c9bba5; }

.rhythm-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(22px, 3vw, 48px); width: min(100%, var(--max)); margin: 0 auto; }
.rhythm-card { min-width: 0; }
.rhythm-image { position: relative; width: 100%; min-width: 0; aspect-ratio: 3 / 2; margin: 0 0 24px; overflow: hidden; background: #120d0b; }
.rhythm-image img { display: block; width: 100%; max-width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1); }
.studio-photo { object-position: 42% center; }
.rhythm-image-monadnock img { object-position: center 48%; }
.rhythm-card:hover .rhythm-image img { transform: scale(1.025); }
.rhythm-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(transparent 62%, rgba(18, 13, 11, 0.68)); pointer-events: none; }
.rhythm-image figcaption { position: absolute; z-index: 2; right: 13px; bottom: 10px; left: 13px; color: rgba(241, 231, 211, 0.78); font-family: var(--mono); font-size: 7px; letter-spacing: 0.08em; text-transform: uppercase; }
.rhythm-meta { display: flex; gap: 13px; align-items: center; margin-bottom: 16px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; }
.rhythm-meta .card-number { color: #9e8672; }
.rhythm-meta .time { color: var(--birch-light); }
.rhythm-card h3 { max-width: 340px; margin-bottom: 12px; font-family: var(--serif); font-size: clamp(27px, 2.5vw, 36px); font-weight: 400; line-height: 1.05; }
.rhythm-card p { max-width: 350px; color: #c9bba5; font-size: 14px; }

.gallery-section { padding: 130px clamp(24px, 7vw, 108px); background: #121a15; }
.gallery-heading { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 80px; align-items: end; width: min(100%, var(--max)); margin: 0 auto 58px; }
.gallery-heading h2 { max-width: 760px; margin-bottom: 0; font-family: var(--serif); font-size: clamp(45px, 5vw, 72px); font-weight: 400; letter-spacing: -0.045em; line-height: 1.02; }
.gallery-heading h2 em { color: #a9b89d; font-weight: 400; }
.gallery-heading > p { max-width: 500px; margin-bottom: 7px; color: #c1cabd; font-size: 14px; font-weight: 300; }
.gallery-heading .eyebrow { color: var(--birch-light); }
.photo-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; width: min(100%, var(--max)); margin: 0 auto; }
.photo-grid figure { position: relative; grid-column: span 4; min-height: 310px; margin: 0; overflow: hidden; background: var(--bark-deep); }
.photo-grid figure.photo-feature { grid-column: span 8; grid-row: span 2; min-height: 632px; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease; }
.photo-grid figure:hover img { transform: scale(1.025); filter: saturate(1.08); }
.photo-grid figcaption { position: absolute; right: 0; bottom: 0; left: 0; display: flex; align-items: center; gap: 14px; padding: 38px 20px 17px; color: var(--parchment); background: linear-gradient(transparent, rgba(17, 12, 10, 0.88)); font-size: 12px; }
.photo-grid figcaption span { color: var(--birch-light); font-family: var(--mono); font-size: 9px; }
.photo-grid figure:nth-child(4), .photo-grid figure:nth-child(5) { grid-column: span 6; min-height: 360px; }

.duo-section { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr); min-height: 720px; background: var(--maple); }
.duo-copy { display: flex; flex-direction: column; justify-content: center; padding: 90px clamp(24px, 7vw, 108px); }
.duo-copy .eyebrow { color: var(--bark-deep); }
.duo-copy h2 em { color: var(--bark-deep); }
.duo-copy > p:not(.eyebrow) { max-width: 530px; color: rgba(241, 231, 211, 0.83); font-size: 17px; font-weight: 300; }
.text-link { display: inline-flex; align-items: center; gap: 10px; width: max-content; margin-top: 20px; padding-bottom: 3px; border-bottom: 1px solid rgba(241, 231, 211, 0.6); font-size: 13px; }
.duo-spaces { display: flex; min-width: 0; flex-direction: column; justify-content: center; gap: 20px; padding: 60px clamp(24px, 5vw, 72px); border-left: 1px solid rgba(33, 23, 19, 0.2); background: #9d3e2c; }
.duo-space-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.duo-space-grid figure { min-width: 0; margin: 0; overflow: hidden; background: var(--bark-deep); }
.duo-space-grid img { display: block; width: 100%; max-width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.duo-space-grid figcaption { display: flex; flex-direction: column; min-height: 150px; padding: 22px; }
.duo-space-grid figcaption span, .duo-shared span { color: var(--birch-light); font-family: var(--mono); font-size: 8px; letter-spacing: 0.11em; text-transform: uppercase; }
.duo-space-grid figcaption strong { margin: 13px 0 9px; font-family: var(--serif); font-size: 22px; font-weight: 400; line-height: 1.08; }
.duo-space-grid figcaption small { margin-top: auto; color: #c8b8a2; font-size: 11px; }
.duo-shared { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 20px; border: 1px solid rgba(241, 231, 211, 0.32); }
.duo-shared strong { font-family: var(--serif); font-size: 16px; font-weight: 400; text-align: right; }

.arrangement-section { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 110px; width: min(100%, calc(var(--max) + 216px)); margin: 0 auto; color: var(--bark-deep); background: #e9dfcc; }
.arrangement-intro { align-self: start; position: sticky; top: 110px; }
.arrangement-intro .eyebrow, .arrangement-intro h2 em { color: var(--maple); }
.arrangement-intro > p:last-child { color: #6b5b50; }
.steps { position: relative; margin: 15px 0 0; padding: 0; list-style: none; }
.steps::before { position: absolute; top: 24px; bottom: 80px; left: 20px; width: 1px; content: ""; background: repeating-linear-gradient(to bottom, var(--maple) 0 5px, transparent 5px 12px); opacity: 0.62; }
.steps li { position: relative; display: grid; grid-template-columns: 42px 1fr; gap: 25px; min-height: 210px; }
.step-dot { position: relative; z-index: 2; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--maple); border-radius: 50%; color: var(--maple); background: #e9dfcc; font-family: var(--mono); font-size: 11px; }
.step-label { margin: 2px 0 10px; color: var(--maple); font-family: var(--mono); font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; }
.steps h3 { margin-bottom: 9px; font-family: var(--serif); font-size: 26px; font-weight: 400; }
.steps li > div:last-child > p:last-child { max-width: 570px; color: #6b5b50; font-size: 14px; font-weight: 300; }

.space-section { padding: 130px clamp(24px, 7vw, 108px); border-top: 1px solid var(--line); background: #19211c; }
.space-heading { width: min(100%, var(--max)); }
.space-heading .eyebrow { color: #9eac91; }
.space-heading h2 em { color: #a9b89d; }
.space-layout { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(70px, 9vw, 135px); width: min(100%, var(--max)); margin: 75px auto 0; }
.specs { align-self: start; }
.spec-row { display: grid; grid-template-columns: 0.65fr 1.35fr; gap: 20px; padding: 19px 0; border-bottom: 1px solid rgba(169, 184, 157, 0.2); }
.spec-row span { color: #bfc7b8; font-size: 13px; }
.spec-row strong { justify-self: end; color: var(--birch-light); font-family: var(--mono); font-size: 11px; font-weight: 400; text-align: right; }
.fine-print { margin-top: 17px; color: #aeb8a8; font-size: 10px; }
.price-card { padding: 42px; border: 1px solid rgba(169, 184, 157, 0.32); background: rgba(112, 130, 103, 0.07); }
.price-label { color: #a9b89d; font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; }
.price { margin-top: 12px; font-family: var(--serif); font-size: 76px; line-height: 1; }
.price > span { font-size: 34px; vertical-align: 29px; }
.price-period { margin-bottom: 28px; color: #bfc7b8; font-size: 12px; }
.price-equation { display: grid; grid-template-columns: 1fr auto 1fr; gap: 14px; align-items: center; margin-bottom: 18px; padding: 18px 0; border-top: 1px solid rgba(169, 184, 157, 0.22); border-bottom: 1px solid rgba(169, 184, 157, 0.22); }
.price-equation > div { display: flex; flex-direction: column; gap: 3px; }
.price-equation span { color: #aeb8a8; font-family: var(--mono); font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; }
.price-equation strong { font-family: var(--serif); font-size: 19px; font-weight: 400; }
.price-equation b { color: var(--birch); font-family: var(--serif); font-size: 24px; font-weight: 400; }
.price-addition { display: flex; align-items: baseline; gap: 10px; padding: 22px 0; border-top: 1px solid rgba(169, 184, 157, 0.22); border-bottom: 1px solid rgba(169, 184, 157, 0.22); }
.price-addition strong { font-family: var(--serif); font-size: 29px; font-weight: 400; }
.price-addition span { color: #bfc7b8; font-size: 11px; }
.price-card ul { margin: 28px 0; padding: 0; list-style: none; }
.price-card li { position: relative; margin-bottom: 11px; padding-left: 20px; color: #c4ccbe; font-size: 13px; }
.price-card li::before { position: absolute; left: 0; content: "—"; color: var(--birch); }
.price-note { color: #aeb8a8; font-size: 10px; }

.hosts-section { display: grid; grid-template-columns: 0.35fr 1.05fr 0.6fr; gap: 70px; align-items: center; width: min(100%, calc(var(--max) + 216px)); margin: 0 auto; background: var(--parchment); color: var(--bark); }
.hosts-section .eyebrow { color: var(--maple); }
.hosts-section h2 em { color: var(--maple); }
.hosts-mark { color: rgba(167, 68, 47, 0.16); font-family: var(--serif); font-size: clamp(140px, 18vw, 270px); font-style: italic; line-height: 0.7; text-align: center; }
.hosts-copy > p:last-child { max-width: 620px; color: #6c5c51; font-size: 15px; }
.hosts-section blockquote { margin: 0; padding: 25px 0 25px 30px; border-left: 1px solid rgba(167, 68, 47, 0.5); color: #5f4f44; font-family: var(--serif); font-size: 22px; font-style: italic; line-height: 1.45; }

.availability-section { padding: 130px clamp(24px, 7vw, 108px); color: var(--bark-deep); background: #d9c39f; }
.availability-copy, .week-grid { width: min(100%, var(--max)); margin-right: auto; margin-left: auto; }
.availability-copy > p:last-child { max-width: 620px; color: #665344; }
.availability-copy .eyebrow, .availability-copy h2 em { color: #8f3825; }
.week-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 55px; }
.week-card { display: flex; flex-direction: column; align-items: flex-start; min-height: 170px; padding: 22px; border: 1px solid rgba(42, 33, 28, 0.28); color: inherit; background: rgba(241, 231, 211, 0.16); cursor: pointer; text-align: left; transition: border-color 180ms ease, background 180ms ease, transform 180ms ease; }
.week-card:hover, .week-card:focus-visible { border-color: var(--maple); background: rgba(241, 231, 211, 0.42); transform: translateY(-3px); }
.week-card.featured { border-color: rgba(143, 56, 37, 0.65); background: rgba(167, 68, 47, 0.11); }
.week-card.booked { position: relative; opacity: 0.58; cursor: not-allowed; }
.week-card.booked strong { text-decoration: line-through; text-decoration-thickness: 1px; }
.week-card.booked:hover { border-color: rgba(42, 33, 28, 0.28); background: rgba(241, 231, 211, 0.16); transform: none; }
.week-card span { color: #8f3825; font-family: var(--mono); font-size: 9px; letter-spacing: 0.13em; text-transform: uppercase; }
.week-card strong { margin-top: 22px; font-family: var(--serif); font-size: 21px; font-weight: 400; }
.week-card i { margin-top: auto; color: #6b5748; font-size: 10px; font-style: normal; }

.faq-section { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(60px, 9vw, 140px); padding: 130px max(24px, calc((100vw - var(--max)) / 2)); color: var(--bark-deep); background: #f1e8d8; }
.faq-intro { align-self: start; position: sticky; top: 105px; }
.faq-intro .eyebrow, .faq-intro h2 em { color: var(--maple); }
.faq-intro h2 { margin-bottom: 22px; font-family: var(--serif); font-size: clamp(45px, 5vw, 72px); font-weight: 400; letter-spacing: -0.045em; line-height: 1.02; }
.faq-intro > p:last-child { max-width: 430px; color: #6d5d51; font-size: 14px; }
.faq-list { border-top: 1px solid rgba(42, 33, 28, 0.24); }
.faq-list details { border-bottom: 1px solid rgba(42, 33, 28, 0.24); }
.faq-list summary { display: grid; grid-template-columns: 1fr auto; gap: 25px; align-items: center; padding: 25px 0; cursor: pointer; font-family: var(--serif); font-size: 24px; line-height: 1.2; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(42, 33, 28, 0.34); border-radius: 50%; color: var(--maple); font-family: var(--sans); font-size: 18px; transition: transform 180ms ease, background 180ms ease; }
.faq-list details[open] summary span { color: var(--parchment); background: var(--maple); transform: rotate(45deg); }
.faq-list details > p { max-width: 720px; margin: -5px 50px 25px 0; color: #6d5d51; font-size: 14px; }

.inquiry-section { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: clamp(50px, 9vw, 130px); padding: 130px max(24px, calc((100vw - var(--max)) / 2)); background: var(--bark-deep); }
.inquiry-intro { align-self: start; position: sticky; top: 105px; }
.inquiry-intro > p:not(.eyebrow) { max-width: 470px; color: var(--paper-muted); }
.inquiry-aside { display: flex; flex-direction: column; gap: 8px; margin-top: 42px; }
.inquiry-aside span { color: #aab9a1; font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; }
.inquiry-aside span::before { margin-right: 10px; content: "✓"; color: var(--birch); }
.inquiry-form { padding: clamp(28px, 5vw, 55px); border: 1px solid var(--line); background: rgba(33, 23, 19, 0.45); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 28px; row-gap: 30px; }
.form-grid > label, .form-grid fieldset { min-width: 0; }
.form-grid label > span, .form-grid legend { display: block; margin-bottom: 8px; color: var(--birch-light); font-family: var(--mono); font-size: 9px; letter-spacing: 0.13em; text-transform: uppercase; }
.form-grid small { color: #776e65; font-size: 8px; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  padding: 12px 2px;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  outline: 0;
  color: var(--parchment);
  background: transparent;
  font-size: 14px;
  transition: border-color 180ms ease;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--birch); }
.form-grid input::placeholder, .form-grid textarea::placeholder { color: #746a61; }
.form-grid select { appearance: auto; }
.form-grid select option { color: var(--bark); background: var(--parchment); }
.form-grid textarea { resize: vertical; }
.full-width { grid-column: 1 / -1; }
.form-grid fieldset { display: flex; flex-wrap: wrap; gap: 12px 20px; margin: 0; padding: 0; border: 0; }
.form-grid fieldset legend { width: 100%; }
.radio-label { display: inline-flex; align-items: center; gap: 8px; }
.radio-label input { width: 15px; height: 15px; accent-color: var(--birch); }
.radio-label span { margin: 0 !important; color: var(--paper-muted) !important; font-family: var(--sans) !important; font-size: 12px !important; letter-spacing: 0 !important; text-transform: none !important; }
.consent-row { display: flex; align-items: center; gap: 9px; margin-top: 27px; color: #8d8177; font-size: 11px; }
.consent-row input { accent-color: var(--birch); }
.form-footer { display: flex; align-items: center; gap: 20px; margin-top: 28px; }
.form-footer .button { gap: 50px; border: 0; }
.form-status { margin: 0; color: var(--paper-muted); font-size: 12px; }
.form-status.error { color: #df866d; }
.form-status.success { color: #a9b89d; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

#first-look, #rhythm, #arrangement, #space, #availability, #faq, #inquire { scroll-margin-top: 64px; }

.site-footer { display: grid; grid-template-columns: 1fr auto auto; gap: 35px; align-items: center; padding: 36px clamp(24px, 5vw, 72px); border-top: 1px solid var(--line); background: #110c0a; }
.footer-brand { font-size: 18px; }
.site-footer > p { margin: 0; color: #82766c; font-size: 10px; }
.back-to-top { color: var(--paper-muted); font-size: 10px; }
.copyright { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid rgba(241, 231, 211, 0.08); }
.mobile-booking-bar { display: none; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto auto; gap: 14px; }
  .hero { min-height: 850px; }
  .hero-copy { max-width: calc(100% - 280px); }
  .hero-note { right: -20px; width: 250px; }
  .arrangement-section { grid-template-columns: 1fr 1.3fr; gap: 65px; }
  .week-grid { grid-template-columns: repeat(3, 1fr); }
  .hosts-section { grid-template-columns: 0.25fr 1fr; }
  .hosts-section blockquote { grid-column: 2; }
  .first-look { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .site-header { height: 64px; padding: 0 20px; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; flex-direction: column; gap: 4px; justify-self: end; width: 36px; padding: 8px; border: 0; background: transparent; }
  .menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 1px; background: var(--parchment); transition: transform 180ms ease, opacity 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
  .mobile-nav { position: absolute; z-index: 99; top: 64px; right: 0; left: 0; display: flex; flex-direction: column; gap: 0; width: 100vw; height: calc(100vh - 64px); padding: 35px 24px; background: #17110f; }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a { padding: 17px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 25px; }
  .brand { font-size: 20px; }
  .brand-lockup small { display: none; }
  .hero { min-height: auto; padding: 145px 24px 60px; }
  .hero-copy { max-width: 100%; }
  .hero-note { position: relative; top: auto; right: auto; width: 100%; margin-top: 48px; }
  .hero-facts { margin-top: 36px; }
  .hero-facts > div { display: block; padding: 14px 10px; }
  .hero-facts > div:first-child { padding-left: 10px; }
  .hero-facts strong, .hero-facts span { display: block; }
  .hero-facts span { margin-top: 7px; }
  .vertical-note { display: none; }
  .section, .space-section, .availability-section { padding: 90px 24px; }
  .name-story { grid-template-columns: 1fr; gap: 42px; padding: 75px 24px; }
  .name-story-term { justify-self: start; }
  .name-story blockquote { padding-left: 28px; }
  .rhythm-grid { grid-template-columns: minmax(0, 1fr); }
  .rhythm-card + .rhythm-card { margin-top: 28px; }
  .first-look { grid-template-columns: 1fr; }
  .first-look figure { min-height: 0; aspect-ratio: 4 / 3; }
  .first-look-copy { padding: 75px 24px; }
  .duo-section { grid-template-columns: minmax(0, 1fr); }
  .gallery-section { padding: 90px 24px; }
  .gallery-heading { grid-template-columns: 1fr; gap: 15px; }
  .photo-grid figure, .photo-grid figure.photo-feature, .photo-grid figure:nth-child(4), .photo-grid figure:nth-child(5) { grid-column: 1 / -1; grid-row: auto; min-height: 0; aspect-ratio: 4 / 3; }
  .photo-grid figure.photo-feature { aspect-ratio: 3 / 2; }
  .duo-copy, .duo-spaces { padding: 80px 24px; }
  .duo-spaces { border-top: 1px solid rgba(33, 23, 19, 0.2); border-left: 0; }
  .arrangement-section { grid-template-columns: 1fr; gap: 55px; }
  .arrangement-intro, .inquiry-intro { position: static; }
  .space-layout { grid-template-columns: 1fr; gap: 55px; margin-top: 50px; }
  .hosts-section { grid-template-columns: 1fr; gap: 35px; }
  .hosts-mark { display: none; }
  .hosts-section blockquote { grid-column: auto; }
  .week-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-section { grid-template-columns: 1fr; gap: 50px; padding: 90px 24px; }
  .faq-intro { position: static; }
  .inquiry-section { grid-template-columns: 1fr; gap: 55px; padding: 90px 24px; }
  .inquiry-form { padding: 28px 22px; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer > p:not(.copyright) { display: none; }
  body { padding-bottom: 66px; }
  .mobile-booking-bar { position: fixed; z-index: 120; right: 0; bottom: 0; left: 0; display: flex; align-items: center; justify-content: space-between; gap: 15px; min-height: 66px; padding: 10px 20px; border-top: 1px solid rgba(233, 189, 114, 0.38); color: var(--parchment); background: rgba(29, 23, 20, 0.98); box-shadow: 0 -12px 30px rgba(17, 12, 10, 0.2); }
  .mobile-booking-bar span { color: #c7b8a2; font-family: var(--mono); font-size: 7px; letter-spacing: 0.08em; text-transform: uppercase; }
  .mobile-booking-bar strong { color: var(--birch-light); font-size: 11px; white-space: nowrap; }
}

@media (max-width: 520px) {
  h1 { font-size: clamp(56px, 17vw, 72px); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .hero-facts > div:nth-child(2) { border-right: 0; }
  .hero-facts > div:nth-child(3) { grid-column: 1 / -1; border-top: 1px solid var(--line); }
  .duo-space-grid { grid-template-columns: minmax(0, 1fr); }
  .duo-shared { align-items: flex-start; flex-direction: column; }
  .duo-shared strong { text-align: left; }
  .spec-row { grid-template-columns: 0.8fr 1.2fr; }
  .price-card { padding: 30px 24px; }
  .week-grid { grid-template-columns: 1fr; }
  .week-card { min-height: 130px; }
  .faq-list summary { font-size: 21px; }
  .faq-list details > p { margin-right: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .full-width { grid-column: auto; }
  .form-footer { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; }
  .back-to-top { justify-self: start; }
}

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