:root {
  --cream: #f4efe6;
  --paper: #fbf8f2;
  --white: #fffdf9;
  --olive: #62664a;
  --olive-dark: #343829;
  --ink: #1b1c17;
  --muted: #726d63;
  --line: #d9d1c3;
  --sand: #cdbda4;
  --shadow: 0 28px 70px rgba(43, 39, 30, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Inter, sans-serif; line-height: 1.65; }
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link { position: fixed; left: 1rem; top: -6rem; z-index: 999; background: #fff; padding: 0.8rem 1rem; }
.skip-link:focus { top: 1rem; }

.announcement {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 0.5rem 1rem;
  background: var(--olive-dark);
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.58rem;
  font-weight: 600;
  text-align: center;
}

.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 clamp(1.25rem, 5vw, 5.5rem);
  background: rgba(251, 248, 242, 0.96);
  border-bottom: 1px solid rgba(27, 28, 23, 0.08);
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(14px);
}

.brand, .footer-brand { display: inline-flex; flex-direction: column; line-height: 1; text-decoration: none; }
.brand-mark { font-family: Italiana, serif; font-size: 2.45rem; letter-spacing: 0.15em; }
.brand-sub { margin-top: 0.48rem; font-size: 0.56rem; font-weight: 600; letter-spacing: 0.5em; }

.site-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.6rem); }
.site-nav a, .site-footer nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.64rem;
  font-weight: 600;
}
.site-nav a:not(.nav-cta):hover { color: var(--olive); }
.nav-cta { padding: 0.9rem 1.2rem; background: var(--olive-dark); color: white !important; }

.menu-button { display: none; border: 0; background: transparent; padding: 0.5rem; }
.menu-button span { display: block; width: 25px; height: 1.5px; background: var(--ink); margin: 6px; }

.section-anchor { scroll-margin-top: 92px; }
.section-pad { padding: clamp(5rem, 8vw, 8.5rem) clamp(1.25rem, 7vw, 7rem); }
.muted-section { background: var(--cream); }

.eyebrow {
  margin: 0 0 1rem;
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.64rem;
  font-weight: 600;
}
.eyebrow.light { color: rgba(255, 255, 255, 0.78); }

h1, h2, h3 { margin-top: 0; }
h1, h2, h3, .brand-statement p, .story-note strong, .signature { font-family: "Cormorant Garamond", serif; }
h1 { font-size: clamp(4rem, 7.3vw, 7.3rem); line-height: 0.82; font-weight: 400; letter-spacing: -0.045em; margin-bottom: 2rem; }
h1 em, h2 em { font-weight: 400; }
h2 { font-size: clamp(3rem, 5.6vw, 5.8rem); line-height: 0.92; font-weight: 400; letter-spacing: -0.035em; margin-bottom: 1.6rem; }
h3 { font-size: 2rem; line-height: 1.02; font-weight: 500; margin-bottom: 0.8rem; }

.hero {
  min-height: calc(100vh - 126px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
  background: var(--cream);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(4rem, 9vw, 9rem) clamp(2rem, 7vw, 7rem);
}
.hero-lede { max-width: 600px; margin: 0 0 2rem; color: #4f4c45; font-family: "Cormorant Garamond", serif; font-size: clamp(1.4rem, 2vw, 2rem); line-height: 1.35; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.4rem; }
.hero-note { max-width: 560px; margin: 2rem 0 0; color: var(--muted); font-size: 0.78rem; line-height: 1.7; }
.hero-visual { position: relative; margin: 0; min-height: 690px; overflow: hidden; background: #d6c9b7; }
.hero-visual img { width: 100%; height: 100%; min-height: 690px; object-fit: cover; object-position: center 24%; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 62%, rgba(24, 25, 18, 0.42)); pointer-events: none; }
.hero-visual figcaption { position: absolute; left: 2rem; right: 2rem; bottom: 1.8rem; z-index: 2; color: white; display: flex; justify-content: space-between; gap: 1rem; text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.62rem; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--olive-dark);
  padding: 0.9rem 1.4rem;
  background: transparent;
  color: var(--olive-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--olive-dark); color: white; }
.button-light { background: var(--white); border-color: var(--white); color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 0.7rem; border-bottom: 1px solid currentColor; padding-bottom: 0.28rem; text-decoration: none; text-transform: uppercase; letter-spacing: 0.13em; font-size: 0.64rem; font-weight: 600; }

.brand-statement { padding: clamp(3rem, 6vw, 5.5rem) clamp(1.25rem, 8vw, 8rem); background: var(--olive-dark); color: white; text-align: center; }
.brand-statement p { max-width: 1050px; margin: 0 auto; font-size: clamp(2.1rem, 4.3vw, 4.8rem); line-height: 1; font-style: italic; }

.vision { display: grid; grid-template-columns: minmax(300px, 0.75fr) minmax(520px, 1.25fr); gap: clamp(4rem, 8vw, 9rem); align-items: start; }
.vision-heading { position: sticky; top: 150px; max-width: 560px; }
.vision-heading p:not(.eyebrow) { color: var(--muted); font-size: 0.98rem; }
.story-collage { display: grid; grid-template-columns: 1fr 0.78fr; grid-template-rows: auto auto auto; gap: 1rem; }
.story-image { margin: 0; overflow: hidden; background: #d8cebf; }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-image-a { grid-row: 1 / span 2; min-height: 720px; }
.story-image-a img { object-position: 50% 35%; }
.story-image-b { min-height: 340px; }
.story-image-b img { object-position: 50% 45%; }
.story-note { min-height: 360px; padding: clamp(2rem, 4vw, 4rem); background: var(--cream); display: flex; flex-direction: column; justify-content: center; }
.story-note span { color: var(--olive); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.61rem; font-weight: 600; }
.story-note strong { display: block; margin-top: 1rem; font-size: clamp(2.5rem, 4vw, 4.5rem); line-height: 0.95; font-weight: 400; font-style: italic; }
.story-image-c { grid-column: 1 / -1; min-height: 430px; }
.story-image-c img { object-position: center 52%; }

.section-heading { max-width: 780px; margin: 0 auto 4rem; text-align: center; }
.section-heading p { color: var(--muted); }
.type-grid { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.type-card { padding: 2.5rem 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 253, 249, 0.38); }
.type-card > span, .process-card > span { color: var(--olive); font-family: "Cormorant Garamond", serif; font-size: 1.25rem; }
.type-card p, .process-card p { color: var(--muted); font-size: 0.88rem; }

.editorial-break { min-height: 720px; position: relative; overflow: hidden; display: flex; align-items: flex-end; background: #cfc3b1; }
.editorial-break > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.editorial-break::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22, 24, 17, 0.72), rgba(22, 24, 17, 0.12) 72%); }
.editorial-break-copy { position: relative; z-index: 2; max-width: 760px; padding: clamp(3rem, 8vw, 8rem); color: white; }
.editorial-break-copy h2 { margin-bottom: 1.3rem; }
.editorial-break-copy p:last-child { max-width: 560px; color: rgba(255, 255, 255, 0.84); }

.process-grid { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.process-card { min-height: 290px; padding: 2.5rem 2rem; background: var(--white); }

.about { display: grid; grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 1.05fr); gap: clamp(4rem, 9vw, 10rem); align-items: center; }
.about-visual { position: relative; min-height: 680px; background: #d6cabc; box-shadow: var(--shadow); overflow: hidden; }
.about-visual img { width: 100%; height: 100%; min-height: 680px; object-fit: cover; object-position: center 30%; }
.about-badge { position: absolute; left: 1.5rem; bottom: 1.5rem; padding: 0.8rem 1rem; background: rgba(251, 248, 242, 0.92); text-transform: uppercase; letter-spacing: 0.13em; font-size: 0.58rem; font-weight: 600; }
.about-copy { max-width: 620px; }
.about-copy p:not(.eyebrow) { color: var(--muted); }
.signature { margin: 1.6rem 0 0.7rem; color: var(--olive-dark); font-size: 2.2rem; font-style: italic; }

.offer-banner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 7vw, 7rem); background: var(--olive-dark); color: white; }
.offer-banner > div { max-width: 900px; }
.offer-banner h2 { margin-bottom: 1rem; }
.offer-banner p:last-child { max-width: 680px; color: rgba(255, 255, 255, 0.72); }
.offer-banner .button { flex: 0 0 auto; }

.availability-grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.availability-card { padding: 2.2rem; background: var(--white); border: 1px solid var(--line); box-shadow: 0 18px 45px rgba(48, 43, 32, 0.08); }
.availability-card h3 { font-size: 1.85rem; }
.time-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.65rem; }
.time-button { min-height: 50px; border: 1px solid var(--olive); background: transparent; color: var(--olive-dark); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.67rem; font-weight: 600; cursor: pointer; }
.time-button:hover, .time-button:focus-visible, .time-button.selected { background: var(--olive); color: white; outline: none; }
.availability-empty { max-width: 760px; margin: 0 auto; padding: 2rem; text-align: center; border: 1px solid var(--line); background: var(--white); }

.faq-list { max-width: 960px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq details { padding: 1.35rem 0; border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; gap: 1rem; cursor: pointer; list-style: none; font-family: "Cormorant Garamond", serif; font-size: clamp(1.45rem, 2.3vw, 2rem); }
.faq summary::after { content: "+"; color: var(--olive); }
.faq details[open] summary::after { content: "–"; }
.faq details p { max-width: 760px; color: var(--muted); }

.contact { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(4rem, 8vw, 9rem); align-items: start; }
.contact-copy { position: sticky; top: 150px; max-width: 520px; }
.contact-copy > p:not(.eyebrow) { color: var(--muted); }
.contact-details { display: flex; flex-direction: column; gap: 0.35rem; margin: 2rem 0; }
.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-links a { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); text-decoration: none; text-transform: uppercase; font-size: 0.65rem; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: clamp(1.5rem, 4vw, 3rem); background: var(--cream); border: 1px solid var(--line); }
.contact-form label { display: flex; flex-direction: column; gap: 0.5rem; color: #4c4942; text-transform: uppercase; letter-spacing: 0.11em; font-size: 0.59rem; font-weight: 600; }
.contact-form .full-field, .contact-form button, .form-status { grid-column: 1 / -1; }
.contact-form input, .contact-form select, .contact-form textarea { min-height: 50px; border: 0; border-bottom: 1px solid #bdb4a6; border-radius: 0; background: transparent; padding: 0.75rem 0; color: var(--ink); outline: none; }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--olive-dark); }
.contact-form .button { margin-top: 0.5rem; }
.form-status { margin: 0; color: var(--muted); font-size: 0.78rem; }

.site-footer { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem; padding: 3.5rem clamp(1.25rem, 7vw, 7rem); background: #202219; color: white; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.site-footer p { grid-column: 1 / -1; margin: 0; color: rgba(255, 255, 255, 0.5); font-size: 0.68rem; }
.footer-brand small { margin-top: 0.7rem; font-family: "Cormorant Garamond", serif; font-size: 1rem; font-style: italic; }

.reveal, .reveal.visible { opacity: 1; transform: none; }
.mobile-book-button { display: none; }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-left: 3rem; padding-right: 3rem; }
  .vision { grid-template-columns: 1fr; }
  .vision-heading, .contact-copy { position: static; max-width: 760px; }
  .type-grid, .process-grid { grid-template-columns: 1fr 1fr; }
  .about { gap: 4rem; }
}

@media (max-width: 900px) {
  .announcement { font-size: 0.54rem; }
  .site-header { height: 78px; }
  .menu-button { display: block; }
  .site-nav { position: absolute; top: 78px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 1rem 1.25rem 1.5rem; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 18px 36px rgba(31, 28, 22, 0.1); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.9rem 0; border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
  .nav-cta { margin-top: 0.7rem; text-align: center; border-bottom: 0 !important; }
  .section-anchor { scroll-margin-top: 78px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { min-height: 600px; padding: 5rem 2rem; }
  .hero-visual { min-height: 650px; }
  .hero-visual img { min-height: 650px; }
  .story-collage { grid-template-columns: 1fr 1fr; }
  .story-image-a { min-height: 620px; }
  .about, .contact { grid-template-columns: 1fr; }
  .about-copy { max-width: 760px; }
  .offer-banner { align-items: flex-start; flex-direction: column; }
  .availability-grid { grid-template-columns: 1fr 1fr; }
  .site-footer { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { padding-bottom: 68px; }
  .announcement { min-height: 40px; padding-inline: 1.4rem; line-height: 1.5; }
  .site-header { padding-inline: 1.2rem; }
  .brand-mark { font-size: 2rem; }
  .brand-sub { font-size: 0.48rem; }
  h1 { font-size: clamp(3.6rem, 16vw, 5.1rem); }
  h2 { font-size: clamp(2.9rem, 13vw, 4.4rem); }
  .hero-copy { min-height: 560px; padding: 4rem 1.3rem 3.5rem; }
  .hero-lede { font-size: 1.35rem; }
  .hero-actions { align-items: stretch; width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-visual, .hero-visual img { min-height: 520px; }
  .hero-visual img { object-position: center 28%; }
  .hero-visual figcaption { left: 1.1rem; right: 1.1rem; bottom: 1rem; }
  .brand-statement { padding-block: 3.5rem; }
  .vision { gap: 3rem; }
  .vision-heading { position: static; }
  .story-collage { display: block; }
  .story-image, .story-note { margin-bottom: 0.8rem; }
  .story-image-a { min-height: 560px; }
  .story-image-b, .story-image-c { min-height: 360px; }
  .story-note { min-height: 310px; }
  .type-grid, .process-grid, .availability-grid { grid-template-columns: 1fr; }
  .editorial-break { min-height: 650px; }
  .editorial-break::after { background: linear-gradient(0deg, rgba(22, 24, 17, 0.78), rgba(22, 24, 17, 0.08)); }
  .editorial-break-copy { padding: 3rem 1.25rem; }
  .about-visual, .about-visual img { min-height: 520px; }
  .offer-banner { padding: 3.5rem 1.25rem; }
  .offer-banner .button { width: 100%; }
  .availability-card { padding: 1.4rem; }
  .time-grid { grid-template-columns: 1fr 1fr; }
  .contact-form { display: block; padding: 1.3rem; }
  .contact-form label { margin-bottom: 1rem; }
  .contact-form .button { width: 100%; }
  .site-footer nav { flex-direction: column; gap: 0.8rem; }
  .mobile-book-button { display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 100; padding: 1rem; padding-bottom: calc(1rem + env(safe-area-inset-bottom)); background: var(--olive-dark); color: white; text-align: center; text-decoration: none; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.65rem; font-weight: 600; box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.16); }
}
