:root {
  --ink: #211a18;
  --muted: #716562;
  --paper: #fbf7f2;
  --cream: #f3e9df;
  --white: #fffdf9;
  --wine: #6f1d32;
  --wine-dark: #48101f;
  --blush: #d9a6a7;
  --gold: #b88a52;
  --line: rgba(33, 26, 24, 0.14);
  --shadow: 0 28px 70px rgba(56, 32, 28, 0.13);
  --radius: 28px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  background: var(--ink);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }

.demo-ribbon {
  padding: 8px 18px;
  text-align: center;
  color: #fff;
  background: var(--wine-dark);
  font-size: .75rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 247, 242, .9);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(1180px, calc(100% - 40px));
  height: 78px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: .02em;
}
.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  border-radius: 50% 50% 44% 56%;
  background: var(--wine);
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
}
.brand small {
  display: block;
  margin-top: -5px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: .56rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  position: relative;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
}
.main-nav a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  background: var(--wine);
  transition: transform .25s ease;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid var(--wine);
  border-radius: 999px;
  color: #fff;
  background: var(--wine);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(111, 29, 50, .22); }
.btn-outline { color: var(--wine); background: transparent; }
.btn-light { color: var(--wine-dark); border-color: white; background: white; }
.btn-sm { min-height: 42px; padding: 0 18px; }

.container { width: min(1180px, calc(100% - 40px)); margin: auto; }
.section { padding: 112px 0; }
.section-sm { padding: 72px 0; }
.section-tint { background: var(--cream); }
.section-dark { color: #fff; background: var(--wine-dark); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--wine);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { width: 26px; height: 1px; content: ""; background: currentColor; }
.section-dark .eyebrow { color: #e7bec5; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1.08; }
h1 { font-size: clamp(3.1rem, 7vw, 6.6rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2.4rem, 4.7vw, 4.7rem); letter-spacing: -.045em; }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); letter-spacing: -.025em; }
.lead { max-width: 650px; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.2rem); }
.section-dark .lead { color: rgba(255,255,255,.72); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 50px; }
.section-heading .lead { margin: 0; max-width: 430px; }

.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { height: 100%; object-fit: cover; object-position: center; }
.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(24,16,14,.82) 0%, rgba(24,16,14,.48) 43%, rgba(24,16,14,.05) 76%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  padding: 110px 0 80px;
  color: #fff;
}
.hero-content h1 { max-width: 780px; }
.hero .eyebrow { color: #f0cbd2; }
.hero-content .lead { margin: 28px 0 34px; color: rgba(255,255,255,.78); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 44px; color: rgba(255,255,255,.78); font-size: .82rem; }
.trust-row span { display: flex; align-items: center; gap: 9px; }
.trust-row span::before { color: #e9bcc5; content: "✦"; }

.page-hero { padding: 105px 0 72px; }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 70px; }
.page-hero h1 { font-size: clamp(3.3rem, 6.3vw, 6rem); }
.page-hero .lead { margin-top: 25px; }
.page-hero-image { overflow: hidden; min-height: 470px; border-radius: var(--radius); box-shadow: var(--shadow); }
.page-hero-image img { height: 100%; object-fit: cover; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.stat { padding: 34px; border-right: 1px solid var(--line); }
.stat:last-child { border: 0; }
.stat strong { display: block; margin-bottom: 5px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.stat span { color: var(--muted); font-size: .88rem; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 330px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-number { color: var(--gold); font-family: var(--serif); font-size: 1.25rem; }
.service-card p { margin: 14px 0 0; color: var(--muted); }
.service-price { margin-top: 26px; color: var(--wine); font-size: .86rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.split-media { position: relative; }
.split-media img { aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.split-copy p { color: var(--muted); }
.check-list { margin: 28px 0 32px; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 13px 0 13px 34px; border-bottom: 1px solid var(--line); }
.check-list li::before { position: absolute; left: 0; color: var(--wine); content: "✓"; font-weight: 800; }

.gallery-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 16px; }
.gallery-card { position: relative; overflow: hidden; min-height: 470px; border-radius: 22px; background: #ddd; }
.gallery-card img { height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-card:hover img { transform: scale(1.035); }
.gallery-caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 15px 17px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 16px;
  background: rgba(32,21,20,.68);
  backdrop-filter: blur(12px);
}
.gallery-caption strong { display: block; font-family: var(--serif); font-size: 1.2rem; font-weight: 400; }
.gallery-caption span { color: rgba(255,255,255,.72); font-size: .78rem; }

.price-list { border-top: 1px solid var(--line); }
.price-row { display: grid; grid-template-columns: 1fr auto; gap: 25px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.price-row h3 { font-size: 1.35rem; }
.price-row p { margin: 7px 0 0; color: var(--muted); font-size: .9rem; }
.price { color: var(--wine); font-family: var(--serif); font-size: 1.45rem; white-space: nowrap; }
.pricing-note { margin-top: 24px; color: var(--muted); font-size: .86rem; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: steps; }
.process-step { padding: 30px; border: 1px solid rgba(255,255,255,.18); border-radius: 22px; }
.process-step::before { display: block; margin-bottom: 38px; color: #e7bec5; content: "0" counter(steps); counter-increment: steps; font-family: var(--serif); font-size: 1.4rem; }
.process-step p { color: rgba(255,255,255,.68); }

.quote-band { padding: 85px 0; color: white; background: var(--wine); }
.quote-band .container { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.quote-band h2 { max-width: 760px; font-size: clamp(2.3rem, 4.5vw, 4.5rem); }

.bio-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.bio-grid img { border-radius: var(--radius); box-shadow: var(--shadow); }
.bio-copy p { color: var(--muted); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.value-card span { display: inline-grid; width: 42px; height: 42px; place-items: center; margin-bottom: 35px; color: white; border-radius: 50%; background: var(--wine); }
.value-card p { color: var(--muted); }

.faq-list { max-width: 860px; margin: auto; }
.faq { border-bottom: 1px solid var(--line); }
.faq button { width: 100%; padding: 24px 0; display: flex; justify-content: space-between; gap: 25px; border: 0; color: var(--ink); background: transparent; text-align: left; font-family: var(--serif); font-size: 1.25rem; cursor: pointer; }
.faq button::after { content: "+"; color: var(--wine); }
.faq button[aria-expanded="true"]::after { content: "−"; }
.faq-answer { display: none; padding: 0 45px 24px 0; color: var(--muted); }
.faq-answer.open { display: block; }

.booking-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; align-items: start; }
.booking-aside { position: sticky; top: 120px; }
.booking-card { overflow: hidden; min-height: 720px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.booking-placeholder { min-height: 720px; display: grid; place-items: center; padding: 45px; text-align: center; }
.contact-list { margin: 30px 0; padding: 0; list-style: none; }
.contact-list li { padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.contact-list strong { display: block; color: var(--ink); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.demo-note { padding: 18px; border: 1px solid rgba(111,29,50,.18); border-radius: 16px; color: var(--muted); background: rgba(111,29,50,.04); font-size: .82rem; }

.site-footer { padding: 70px 0 30px; color: rgba(255,255,255,.76); background: #211a18; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 45px; }
.footer-grid .brand { color: white; }
.footer-grid .brand small { color: rgba(255,255,255,.5); }
.footer-intro { max-width: 330px; margin-top: 20px; color: rgba(255,255,255,.56); }
.footer-col h3 { margin-bottom: 18px; color: white; font-family: var(--sans); font-size: .77rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a { display: block; margin: 9px 0; color: rgba(255,255,255,.63); text-decoration: none; }
.footer-col a:hover { color: white; }
.footer-bottom { margin-top: 55px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.13); font-size: .76rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .menu-toggle { display: grid; place-items: center; }
  .main-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    padding: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px; }
  .page-hero-grid, .split, .bio-grid, .booking-grid { grid-template-columns: 1fr; gap: 45px; }
  .booking-aside { position: static; }
  .service-grid, .value-grid, .process-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-card:first-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (max-width: 680px) {
  .container, .nav-shell, .hero-content { width: min(100% - 28px, 1180px); }
  .nav-shell { height: 68px; }
  .brand { font-size: 1.12rem; }
  .brand-mark { width: 34px; height: 34px; }
  .section { padding: 78px 0; }
  .section-sm { padding: 52px 0; }
  .hero { min-height: 770px; }
  .hero-media::after { background: linear-gradient(180deg, rgba(24,16,14,.42), rgba(24,16,14,.9) 72%); }
  .hero-media img { object-position: 62% center; }
  .hero-content { display: flex; flex-direction: column; justify-content: end; padding: 100px 0 55px; }
  .hero-content h1 { font-size: clamp(3rem, 15vw, 4.3rem); }
  .page-hero { padding: 75px 0 55px; }
  .page-hero-image { min-height: 360px; }
  .section-heading { display: block; }
  .section-heading .lead { margin-top: 20px; }
  .stats, .service-grid, .value-grid, .process-grid, .gallery-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .gallery-card:first-child { grid-column: auto; }
  .gallery-card { min-height: 390px; }
  .quote-band .container { align-items: start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

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