:root {
  --cream: #f4efe7;
  --cream-2: #ece3d6;
  --sand: #d9cbb6;
  --espresso: #2b2621;
  --charcoal: #1c1a17;
  --gold: #b08d57;
  --gold-soft: #c7a878;
  --text: #33302b;
  --muted: #7a736a;
  --max: 1200px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', -apple-system, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }

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

/* Typography */
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.5px;
  color: var(--espresso);
}
.section-title.light { color: var(--cream); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.eyebrow.dark { color: var(--gold); }
.eyebrow.center { text-align: center; display: block; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 16px 34px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all .35s ease;
}
.btn-light { background: var(--cream); color: var(--espresso); border-color: var(--cream); }
.btn-light:hover { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-dark { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
.btn-dark:hover { background: transparent; color: var(--espresso); }
.btn-nav { background: var(--espresso); color: var(--cream); padding: 12px 26px; }
.btn-nav:hover { background: var(--gold); }

.link-underline {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--espresso);
  text-decoration: none;
  padding-bottom: 4px;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.link-underline:hover::after { transform: scaleX(1); }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
  padding: 22px 0;
}
.nav-inner {
  width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; flex-direction: column; line-height: 1; text-decoration: none; color: var(--cream); }
.brand-mark { font-family: var(--serif); font-size: 1.5rem; letter-spacing: 0.34em; font-weight: 600; }
.brand-sub { font-size: 0.6rem; letter-spacing: 0.5em; text-transform: uppercase; margin-top: 4px; opacity: .85; }
.main-nav { display: flex; gap: 34px; }
.main-nav a {
  color: var(--cream); text-decoration: none; text-transform: uppercase;
  letter-spacing: 0.18em; font-size: 0.74rem; font-weight: 400; transition: color .3s ease;
}
.main-nav a:hover { color: var(--gold-soft); }

.site-header.scrolled { background: var(--cream); padding: 14px 0; box-shadow: 0 1px 0 rgba(0,0,0,.06); }
.site-header.scrolled .brand,
.site-header.scrolled .main-nav a { color: var(--espresso); }
.site-header.scrolled .main-nav a:hover { color: var(--gold); }
.site-header.scrolled .nav-toggle span { background: var(--espresso); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--cream); transition: all .3s ease; }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-media {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #b9a488 0%, #8a7358 45%, #4b3f31 100%);
  transform: scale(1.05); animation: slowZoom 18s ease-in-out infinite alternate;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 40%, rgba(255,255,255,.12), transparent 55%);
}
@keyframes slowZoom { to { transform: scale(1.15); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,17,14,.35), rgba(20,17,14,.55)); }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; color: var(--cream); }
.hero-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.8rem, 7vw, 5.6rem); line-height: 1.02; letter-spacing: 1px; margin: 14px 0 32px;
}
.scroll-cue { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-cue span { display: block; width: 1px; height: 54px; background: rgba(244,239,231,.6); position: relative; overflow: hidden; }
.scroll-cue span::after { content: ""; position: absolute; top: -54px; left: 0; width: 100%; height: 54px; background: var(--cream); animation: scrollDown 2.2s ease-in-out infinite; }
@keyframes scrollDown { 0% { top: -54px; } 60%,100% { top: 54px; } }

/* Intro */
.intro { padding: clamp(80px, 12vw, 160px) 0; background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.intro-text p { font-size: 1.15rem; color: var(--text); margin-bottom: 28px; max-width: 46ch; }

/* Services */
.services { padding: clamp(70px, 10vw, 140px) 0; background: var(--cream-2); }
.services-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card { text-decoration: none; color: var(--espresso); display: block; background: var(--cream); overflow: hidden; transition: transform .4s ease, box-shadow .4s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(43,38,33,.12); }
.service-img { aspect-ratio: 3/4; background-size: cover; background-position: center; }
.service-img-1 { background: linear-gradient(160deg, #d8c3a5, #a98b64); }
.service-img-2 { background: linear-gradient(160deg, #cbb79c, #8f7856); }
.service-img-3 { background: linear-gradient(160deg, #ddcbb4, #b39872); }
.service-img-4 { background: linear-gradient(160deg, #c2a983, #6f5a3f); }
.service-body { padding: 26px 24px 30px; }
.service-body h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; margin-bottom: 8px; }
.service-body p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }
.services-cta { text-align: center; margin-top: 56px; }

/* Experience */
.experience { position: relative; min-height: 70vh; display: flex; align-items: center; overflow: hidden; }
.experience-media { position: absolute; inset: 0; background: linear-gradient(120deg, #5c4c3a, #2e2519); }
.experience-media::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 70% 30%, rgba(255,255,255,.08), transparent 50%); }
.experience-overlay { position: absolute; inset: 0; background: rgba(20,17,14,.35); }
.experience-content { position: relative; z-index: 2; color: var(--cream); text-align: center; max-width: 780px; }
.experience-content p { font-size: 1.15rem; margin-top: 24px; opacity: .92; }

/* Escape */
.escape { padding: clamp(70px, 10vw, 140px) 0; background: var(--cream); }
.escape-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.escape-img { aspect-ratio: 4/5; background: linear-gradient(160deg, #d6c2a3, #7d654a); }
.escape-copy p { font-size: 1.12rem; margin: 24px 0 34px; max-width: 46ch; }

/* Glow */
.glow { padding: clamp(70px, 10vw, 130px) 0 0; background: var(--cream-2); }
.glow-head { text-align: center; margin-bottom: 48px; }
.glow-handle { display: inline-block; margin-top: 12px; text-decoration: none; letter-spacing: 0.24em; text-transform: uppercase; font-size: 0.8rem; color: var(--gold); }
.glow-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.glow-tile { aspect-ratio: 1; filter: grayscale(.1); transition: transform .5s ease, filter .5s ease; }
.glow-tile:hover { transform: scale(1.04); filter: grayscale(0); z-index: 1; }
.glow-1 { background: linear-gradient(135deg, #d9c6a9, #a2855f); }
.glow-2 { background: linear-gradient(135deg, #c9b295, #7f684a); }
.glow-3 { background: linear-gradient(135deg, #e0d0b6, #b0946c); }
.glow-4 { background: linear-gradient(135deg, #cbb491, #6d573d); }
.glow-5 { background: linear-gradient(135deg, #d3bd9c, #967a55); }
.glow-6 { background: linear-gradient(135deg, #bfa47e, #5f4b33); }

/* Reviews */
.reviews { padding: clamp(70px, 10vw, 140px) 0; background: var(--cream); }
.reviews .eyebrow { margin-bottom: 48px; font-family: var(--serif); font-size: 1.4rem; letter-spacing: 0.14em; text-transform: none; color: var(--espresso); font-weight: 500; }
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.review { background: var(--cream-2); padding: 34px 28px; display: flex; flex-direction: column; gap: 16px; }
.stars { color: var(--gold); letter-spacing: 3px; font-size: 0.9rem; }
.review blockquote { font-family: var(--serif); font-size: 1.18rem; line-height: 1.4; color: var(--espresso); }
.review figcaption { margin-top: auto; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.72rem; color: var(--muted); }

/* Contact */
.contact { padding: clamp(70px, 10vw, 140px) 0; background: var(--espresso); color: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-copy p { margin-top: 24px; opacity: .85; font-size: 1.12rem; max-width: 44ch; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; }
.contact-form span { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.68rem; opacity: .7; }
.contact-form input, .contact-form select, .contact-form textarea {
  background: transparent; border: 1px solid rgba(244,239,231,.28); color: var(--cream);
  padding: 14px 16px; font-family: var(--sans); font-size: 0.95rem; font-weight: 300;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold-soft); }
.contact-form select option { color: #222; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .btn { align-self: flex-start; margin-top: 8px; }
.form-status { font-size: 0.9rem; color: var(--gold-soft); min-height: 1em; }

/* Footer */
.site-footer { background: var(--charcoal); color: var(--cream); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .brand-mark { color: var(--cream); }
.footer-brand p { margin-top: 16px; opacity: .6; max-width: 26ch; }
.footer-col h4 { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem; font-weight: 500; margin-bottom: 18px; opacity: .8; }
.footer-col a, .footer-col span { display: block; color: var(--cream); text-decoration: none; opacity: .6; margin-bottom: 10px; font-size: 0.92rem; transition: opacity .3s ease; }
.footer-col a:hover { opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(244,239,231,.12); padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 0.78rem; opacity: .5; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 900px) {
  .intro-grid, .escape-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .glow-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav, .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); padding: 24px 28px; gap: 18px; box-shadow: 0 12px 24px rgba(0,0,0,.12);
  }
  .main-nav.open a { color: var(--espresso); }
}
@media (max-width: 560px) {
  .services-grid, .reviews-grid, .glow-grid, .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .glow-grid { grid-template-columns: repeat(2, 1fr); }
}
