:root {
  --bg: #f7f1e6;
  --bg-alt: #efe4d3;
  --ink: #2a2118;
  --ink-soft: #6b5d4f;
  --line: #ddd0ba;
  --accent: #9a4b2e;
  --white: #fff;
  --radius: 4px;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--bg); line-height: 1.6; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  line-height: 1.2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: #7f3d24; }
.btn-outline { border-color: var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--white); }

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
  padding: 32px 64px;
}
.header-left { display: contents; }
.logo img { height: 100px; width: auto; flex-shrink: 0; }

@media (max-width: 780px) {
  .site-header { gap: 48px; padding: 20px 24px; }
  .logo img { height: 78px; }
}
.nav { display: flex; gap: 32px; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; }
.nav a:hover { color: var(--accent); }
.nav-cta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(154,75,46,0.4);
  white-space: nowrap;
}
.nav-cta:hover { border-color: var(--accent); }

@media (max-width: 780px) {
  .nav { display: none; }
}

/* Hero */
.hero {
  position: relative;
  margin: 0 16px;
}
.hero-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-gradient { display: none; }
.hero-panel {
  background: var(--ink);
  color: var(--white);
  padding: 32px 32px 40px;
  border-radius: 0 0 var(--radius) var(--radius);
}
.hero-panel .eyebrow { color: #cbb693; }
.hero-panel h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 30ch;
}

@media (min-width: 900px) {
  .hero { margin: 0 32px; height: 82vh; min-height: 520px; max-height: 720px; overflow: hidden; border-radius: var(--radius); }
  .hero-media { position: absolute; inset: 0; aspect-ratio: auto; border-radius: 0; }
  .hero-media img { object-position: center 40%; }
  .hero-gradient {
    display: block;
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.1));
  }
  .hero-panel {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    background: transparent;
    padding: 56px;
  }
}

/* Services */
.services { padding: 96px 32px; max-width: 1120px; margin: 0 auto; display: grid; gap: 32px; }
.services-head { max-width: 320px; }
.services-grid {
  display: grid;
  gap: 40px 48px;
}
.service-item h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; margin-bottom: 8px; }
.service-item h3 a:hover { color: var(--accent); }
.service-num { color: var(--accent); font-size: 0.72rem; letter-spacing: 0.2em; margin-bottom: 8px; }
.service-desc { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; margin-bottom: 10px; }
.service-link {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(154,75,46,0.4);
  padding-bottom: 2px;
}
.service-link:hover { border-color: var(--accent); }

/* Service detail pages */
.service-hero {
  display: grid;
  align-items: center;
  gap: 40px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 32px;
}
.service-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 2;
}
.service-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 20px;
}
.service-hero-copy .service-desc { font-size: 1.05rem; max-width: 42ch; }
.service-hero-media {
  order: 1;
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
}
.service-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.service-hero-copy .service-back {
  display: inline-block;
  margin-top: 28px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.service-hero-copy .service-back:hover { color: var(--accent); }

@media (min-width: 780px) {
  .service-hero { grid-template-columns: 1fr 1fr; gap: 64px; padding: 80px 32px; }
  .service-hero-copy { order: 1; }
  .service-hero-media { order: 2; }
}

.service-body { max-width: 720px; margin: 0 auto; padding: 80px 32px; }
.service-body-item { padding: 28px 0; border-top: 1px solid var(--line); }
.service-body-item:last-child { border-bottom: 1px solid var(--line); }
.service-body-item h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; margin-bottom: 10px; }
.service-body-item p { color: var(--ink-soft); line-height: 1.6; }

.service-crosslink { padding: 0 32px 96px; text-align: center; color: var(--ink-soft); }
.service-crosslink a { color: var(--accent); border-bottom: 1px solid rgba(154,75,46,0.4); }
.service-crosslink a:hover { border-color: var(--accent); }

@media (min-width: 780px) {
  .services { grid-template-columns: 4fr 8fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}

/* Gallery */
.gallery { padding: 0 32px 96px; max-width: 1120px; margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
  max-width: 480px;
}
.gallery-grid > div { overflow: hidden; border-radius: var(--radius); }
.gallery-grid img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.4s ease; }
.gallery-grid > div:hover img { transform: scale(1.04); }

@media (min-width: 780px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 160px;
    gap: 8px;
    max-width: none;
  }
  .gallery-grid img { aspect-ratio: auto; height: 100%; }
  .gallery-grid > div:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-grid > div:nth-child(4) { grid-column: span 2; }
}

/* Booking */
.booking { padding: 96px 32px; background: var(--bg-alt); text-align: center; }
.booking .section-title { max-width: 460px; margin: 0 auto 24px; }
.booking-phone { color: var(--ink-soft); margin-bottom: 40px; }
.booking-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* Footer */
.site-footer {
  padding: 64px 32px;
  border-top: 1px solid var(--line);
  margin-top: 32px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  display: grid;
  gap: 16px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.footer-name { color: var(--ink); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.site-footer a:hover { color: var(--accent); }
.footer-copy { font-size: 0.78rem; opacity: 0.7; }

/* Mobile sticky CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@media (max-width: 780px) {
  .mobile-cta { display: block; }
  .site-footer { padding-bottom: 96px; }
}
