*{box-sizing:border-box}
:root{
  --bg:#f5f2ee;
  --surface:#ffffff;
  --surface-2:#ede7e1;
  --text:#171513;
  --muted:#71685e;
  --line:#ddd4cb;
  --accent:#9f907f;
  --accent-dark:#7f7163;
  --shadow:0 20px 60px rgba(22,17,13,.08);
}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Inter",sans-serif;
  line-height:1.65;
}
img{display:block;width:100%}
a{text-decoration:none}
.container{
  width:min(1160px, calc(100% - 40px));
  margin:0 auto;
}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(245,242,238,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,.05);
}
.header-inner{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--text);
}
.brand-icon{
  width:50px;
  height:50px;
  border-radius:50%;
  overflow:hidden;
  background:#fff;
  box-shadow:0 4px 20px rgba(0,0,0,.08);
  flex:none;
}
.brand-icon img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.brand-text{
  font-family:"Cormorant Garamond",serif;
  font-size:1.55rem;
  font-weight:700;
  letter-spacing:.02em;
}
.main-nav{
  display:flex;
  align-items:center;
  gap:24px;
}
.main-nav a{
  color:var(--text);
  font-size:.95rem;
  font-weight:600;
}
.nav-cta{
  padding:12px 18px;
  border-radius:999px;
  background:var(--text);
  color:#fff !important;
}
.hero{
  padding:82px 0 60px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:44px;
  align-items:center;
}
.eyebrow{
  margin:0 0 12px;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.73rem;
  font-weight:700;
  color:var(--accent-dark);
}
.hero-copy h1,
.section-heading h2,
.results-copy h2,
.booking-copy h2,
.site-footer h3{
  font-family:"Cormorant Garamond",serif;
}
.hero-copy h1{
  font-size:clamp(3.2rem, 8vw, 6.5rem);
  line-height:.95;
  margin:0 0 20px;
}
.hero-copy p{
  max-width:580px;
  color:var(--muted);
  font-size:1.08rem;
  margin:0 0 28px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 20px;
  border:none;
  border-radius:999px;
  background:var(--text);
  color:#fff;
  font:inherit;
  font-weight:700;
  cursor:pointer;
}
.button-secondary{
  background:transparent;
  border:1px solid var(--line);
  color:var(--text);
}
.hero-card{
  background:linear-gradient(180deg, #faf8f5 0%, #ece6df 100%);
  border:1px solid var(--line);
  border-radius:28px;
  padding:34px;
  box-shadow:var(--shadow);
}
.hero-card img{
  border-radius:18px;
}
.intro-strip{
  padding:8px 0 30px;
}
.intro-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.intro-block{
  background:rgba(255,255,255,.72);
  border:1px solid var(--line);
  border-radius:22px;
  padding:24px 22px;
}
.intro-number{
  display:inline-block;
  margin-bottom:10px;
  color:var(--accent-dark);
  font-weight:700;
}
.intro-block h3{
  font-family:"Cormorant Garamond",serif;
  font-size:1.9rem;
  margin:0 0 6px;
}
.intro-block p{
  margin:0;
  color:var(--muted);
}
.section{
  padding:82px 0;
}
.section-heading{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  margin-bottom:34px;
}
.section-heading h2,
.results-copy h2,
.booking-copy h2{
  margin:0;
  font-size:clamp(2.6rem, 5vw, 4.5rem);
  line-height:1;
}
.section-note{
  max-width:360px;
  color:var(--muted);
}
.services-layout{
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:30px;
  align-items:stretch;
}
.services-list{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.service-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 24px;
  border-bottom:1px solid var(--line);
  font-size:1rem;
}
.service-row:last-child{border-bottom:none}
.service-row strong{
  font-family:"Cormorant Garamond",serif;
  font-size:2rem;
  font-weight:700;
}
.featured{
  background:linear-gradient(90deg, #f1ede8 0%, #faf8f5 100%);
}
.service-image-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.service-image-card img{
  height:100%;
  object-fit:cover;
}
.results-section{
  background:#efebe6;
}
.results-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:34px;
  align-items:center;
}
.results-copy p:not(.eyebrow){
  color:var(--muted);
  max-width:420px;
  margin:0 0 28px;
}
.results-card{
  margin:0;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:28px;
  padding:20px;
  box-shadow:var(--shadow);
}
.results-card img{
  border-radius:18px;
}
.gallery-section{
  background:var(--bg);
}
.gallery-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:320px 320px;
  gap:18px;
}
.gallery-grid figure{
  margin:0;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px;
}
.gallery-grid img{
  width:100%;
  height:100%;
  object-fit:contain;
  background:#f7f3ee;
  border-radius:14px;
}
.gallery-tall{
  grid-row:1 / span 2;
}
.booking-section{
  background:linear-gradient(180deg, #111 0%, #171513 100%);
  color:#fff;
}
.booking-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:36px;
  align-items:start;
}
.booking-copy p:not(.eyebrow){
  color:#c8c0b8;
  max-width:420px;
}
.booking-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.09);
  border-radius:26px;
  padding:26px;
}
.booking-form label{
  display:grid;
  gap:8px;
  font-size:.92rem;
  font-weight:600;
}
.booking-form .full{
  grid-column:1 / -1;
}
input,select,textarea{
  width:100%;
  padding:13px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.13);
  background:rgba(255,255,255,.06);
  color:#fff;
  font:inherit;
}
textarea{resize:vertical}
.form-message{
  color:#c8c0b8;
  margin:0;
  min-height:24px;
}
.site-footer{
  padding:30px 0;
  background:#0d0c0b;
  color:#fff;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:24px;
}
.site-footer h3{
  margin:0 0 6px;
  font-size:2rem;
}
.site-footer p{
  margin:4px 0;
  color:#bbb0a6;
}
.footer-placeholder{
  text-align:right;
}
@media (max-width: 900px){
  .main-nav a:not(.nav-cta){display:none}
  .hero-grid,.services-layout,.results-grid,.booking-grid{
    grid-template-columns:1fr;
  }
  .intro-grid{
    grid-template-columns:1fr;
  }
  .gallery-grid{
    grid-template-columns:1fr;
    grid-template-rows:420px 320px 320px;
  }
  .gallery-tall{
    grid-row:auto;
  }
  .booking-form{
    grid-template-columns:1fr;
  }
  .booking-form .full{
    grid-column:auto;
  }
  .footer-inner{
    flex-direction:column;
  }
  .footer-placeholder{
    text-align:left;
  }
}


.instagram-link{
  color:#fff;
  text-decoration:underline;
  text-underline-offset:4px;
  font-weight:600;
}
.instagram-link:hover{
  color:#d7c9ba;
}

/* Expanded gallery layout */
.gallery-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
  grid-auto-rows:360px;
}
.gallery-grid .gallery-tall{
  grid-row:span 2;
}
@media (max-width: 900px){
  .gallery-grid{
    grid-template-columns:1fr;
    grid-auto-rows:380px;
  }
  .gallery-grid .gallery-tall{
    grid-row:auto;
  }
}


.statement-piece{
  color:#fff;
  font-weight:700;
  font-size:1.02rem;
  letter-spacing:.01em;
}


.booking-cta{
  max-width:860px;
  margin:0 auto;
  text-align:center;
  padding:24px 0;
}
.booking-cta h2{
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(3rem,6vw,5.5rem);
  line-height:1;
  margin:0 0 20px;
}
.booking-cta p:not(.eyebrow){
  max-width:680px;
  margin:0 auto 30px;
  color:#c8c0b8;
  font-size:1.08rem;
}
.instagram-book-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:0 28px;
  border-radius:999px;
  background:linear-gradient(135deg,#f7f2ed 0%,#d7c8ba 100%);
  color:#171513;
  font-weight:800;
  letter-spacing:.01em;
  box-shadow:0 14px 34px rgba(0,0,0,.22);
  transition:transform .2s ease, box-shadow .2s ease;
}
.instagram-book-button:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(0,0,0,.28);
}
.instagram-handle{
  display:block;
  margin-top:14px;
  color:#a99d92;
  font-size:.92rem;
  letter-spacing:.04em;
}
/* Booking flow: shared by homepage and QR landing page. */
[hidden]{display:none!important}
#book{scroll-margin-top:90px}
.booking-section .eyebrow{color:#d5c4b3}
.booking-intro{text-align:center;max-width:700px;margin:0 auto 36px}
.booking-intro h1,.booking-intro h2{font-family:"Cormorant Garamond",serif;font-size:clamp(2.7rem,6vw,4.8rem);line-height:1.05;margin:10px 0 18px}
.booking-intro p{color:#d0c7bd}
#booking-flow{max-width:850px;margin:auto}
#booking-flow button{font:inherit;cursor:pointer}
#booking-flow button:focus-visible,a:focus-visible{outline:3px solid #ad8053;outline-offset:5px}
.booking-mode{display:flex;border:1px solid #77695c;border-radius:999px;padding:5px;max-width:510px;margin:0 auto 32px}
.booking-mode button{flex:1;border:0;background:transparent;color:#e4dbd1;border-radius:999px;padding:13px 16px;font-weight:600!important}
.booking-mode button[aria-pressed=true]{background:#eee5db;color:#171513}
#booking-flow h3{font-family:"Cormorant Garamond",serif;font-size:1.8rem;line-height:1.2;margin:0 0 16px}
#return-options{text-align:center;border-bottom:1px solid #51483f;padding-bottom:24px;margin-bottom:28px}
.return-choices{display:flex;gap:12px;justify-content:center}
.return-choices button{border:1px solid #817164;background:transparent;border-radius:16px;color:#eee5db;min-width:105px;padding:10px 20px}
.return-choices strong{font-family:"Cormorant Garamond",serif;font-size:2rem;padding-right:5px}
.return-choices button[aria-pressed=true]{background:#eee5db;color:#171513;border-color:#eee5db}
.booking-note{font-size:.875rem;color:#c7bbaf;line-height:1.6}
.location-heading{display:flex;align-items:baseline;justify-content:space-between;gap:16px}
.location-heading>span{font-size:.875rem;color:#c7bbaf}
.location-choices{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.location-choices button{display:flex;flex-direction:column;text-align:left;gap:12px;padding:28px;background:#f6f1eb;border:2px solid transparent;border-radius:22px;color:#171513;transition:transform .2s,border-color .2s}
.location-choices button:hover{transform:translateY(-3px)}
.location-choices button[aria-pressed=true]{border-color:#b48d68;background:#e4d4c4;box-shadow:0 0 0 3px #171513,0 0 0 4px #b48d68}
.choice-label{font-size:.75rem;letter-spacing:.12em;font-weight:600}
.location-choices strong{font-family:"Cormorant Garamond",serif;font-size:2rem;line-height:1.05}
.location-choices button>span:not(.choice-label){font-size:.95rem}
.choice-action{margin-top:auto;padding-top:14px;border-top:1px solid #cdbfb0;width:100%;display:flex;justify-content:space-between;font-weight:600}
.week-panel{margin-top:28px;border:1px solid #64574b;border-radius:22px;padding:26px;background:#26211d}
.week-navigation{display:flex;align-items:center;justify-content:space-between;gap:14px;text-align:center}
.week-navigation button{width:44px;height:44px;flex-shrink:0;border:1px solid #a79788;background:transparent;color:white;border-radius:50%}
.week-navigation button:disabled{opacity:.3;cursor:default!important}
#week-title{font-size:1.65rem!important;margin-top:8px!important}
.week-days{display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:6px;margin:20px 0}
.week-days>div{text-align:center;padding:10px 2px;border:1px solid #64574b;border-radius:10px}
.week-days span{display:block;font-size:.75rem}.week-days strong{font-size:1.2rem}.week-days .target-day{background:#e4d4c4;color:#171513}
#booking-availability{border-top:1px solid #64574b;padding-top:12px}
#booking-availability .button{background:#eee5db;color:#171513}
.booking-page .booking-section{min-height:calc(100vh - 82px);padding:48px 0 64px}
.booking-page .brand-text{font-size:1.35rem}
@media(max-width:600px){.location-choices{grid-template-columns:1fr}.location-heading{display:block;margin-bottom:16px}.location-heading h3{margin-bottom:8px!important}.location-choices button{padding:24px}.week-panel{padding:18px 12px}.booking-mode button{font-size:.875rem!important;padding:12px 8px}.brand-text{font-size:1.1rem}.header-inner{gap:10px}.main-nav{gap:0}.nav-cta{padding:10px 14px}.brand-icon{width:40px;height:40px}.return-choices button{min-width:0;flex:1;padding:10px}.booking-page .brand-text{font-size:1.1rem}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}.location-choices button{transition:none}}
.live-availability{padding:12px 0 20px}.live-availability h3{margin-top:24px!important}.slot-list{display:flex;flex-wrap:wrap;gap:10px}.slot-button{border:1px solid #bcaa98;background:#f6f1eb;color:#171513;border-radius:12px;padding:12px 16px;min-height:48px}.slot-button:hover{background:#e4d4c4}.client-booking-form{display:grid;gap:18px;max-width:580px}.client-booking-form label{display:grid;gap:8px}.client-booking-form input{background:#fff;color:#171513;border:1px solid #bcaa98}.client-booking-form .button{justify-self:start}.bot-field{position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden}.button:disabled{opacity:.55;cursor:wait}.booking-page h1,.booking-page h2{font-family:"Cormorant Garamond",Georgia,serif}
