:root {
  --cream: oklch(97% 0.012 75);
  --cream-soft: oklch(93% 0.02 60);
  --wine: oklch(56% 0.24 345);
  --wine-deep: oklch(42% 0.22 345);
  --wine-soft: oklch(90% 0.07 345);
  --navy: oklch(45% 0.18 265);
  --navy-soft: oklch(90% 0.05 265);
  --ink: oklch(24% 0.01 40);
  --ink-soft: oklch(48% 0.01 40);
  --white: oklch(99% 0.003 75);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Lato', -apple-system, 'Segoe UI', sans-serif;
  font-weight: 300;
}

h1, h2, h3 { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-weight: 600; margin: 0; }

a { color: var(--wine); text-decoration: none; }
a:hover { color: var(--wine-deep); }

img, svg { max-width: 100%; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.kicker {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 8px 16px;
  border-radius: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 17px 34px;
  min-height: 44px;
  cursor: pointer;
  border: 1px solid var(--wine);
  transition: transform 200ms cubic-bezier(0.25, 0.1, 0.25, 1), background 200ms, box-shadow 200ms;
}
.btn-primary { background: var(--wine); color: var(--white); box-shadow: 0 4px 12px oklch(22% 0.10 350 / 0.18); }
.btn-primary:hover { background: var(--wine-deep); border-color: var(--wine-deep); color: var(--white); transform: scale(1.02); }
.btn-primary:active { transform: scale(0.96); }

.card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.badge {
  display: inline-block;
  border-radius: 8px;
  padding: 6px 14px;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-wine { background: var(--wine-soft); color: var(--wine-deep); }
.badge-navy { background: var(--navy-soft); color: var(--navy); }
.badge-muted { background: var(--cream-soft); color: var(--ink-soft); }

/* Header */
header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
}
.logo-word { font-family: 'Playfair Display', serif; font-weight: 600; font-style: italic; font-size: 24px; color: var(--wine); }

nav.main-nav { display: flex; align-items: center; gap: 34px; }
nav.main-nav a {
  font-family: 'Lato', sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink);
}
nav.main-nav a:hover { color: var(--wine); }

.header-actions { display: flex; align-items: center; gap: 20px; }

.lang-toggle { display: flex; align-items: center; gap: 10px; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.06em; }
.lang-toggle button { border: none; background: none; cursor: pointer; padding: 4px 2px; color: var(--ink-soft); border-bottom: 1px solid transparent; }
.lang-toggle button.active { color: var(--wine); border-bottom-color: var(--wine); }
.lang-toggle .sep { color: var(--cream-soft); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle svg { stroke: var(--ink); }

/* Hero */
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center;
  padding: 88px 24px 100px; max-width: 1180px; margin: 0 auto;
}
.hero-copy { display: flex; flex-direction: column; gap: 26px; align-items: flex-start; }
.hero-copy h1 { font-size: 54px; font-weight: 600; line-height: 1.15; }
.hero-copy p { font-size: 18px; color: var(--ink-soft); line-height: 1.7; max-width: 460px; margin: 0; font-weight: 300; }
.hero-ctas { margin-top: 8px; }

.hero-art { position: relative; height: 380px; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; box-shadow: 0 20px 50px -20px oklch(22% 0.10 350 / 0.35); }

/* Trust strip */
.trust-strip {
  max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px; padding: 0 24px 90px;
}
.trust-item {
  display: flex; flex-direction: column; gap: 8px; padding: 28px 26px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  border-top: 2px solid var(--wine);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.trust-item-navy { border-top-color: var(--navy); }
.trust-item .t-title { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 19px; }
.trust-item .t-sub { font-size: 14px; color: var(--ink-soft); line-height: 1.6; font-weight: 300; }

/* Reassurance */
.reassurance { background: var(--cream-soft); padding: 90px 0; }
.reassurance h2 { font-size: 32px; font-weight: 600; max-width: 560px; margin-bottom: 40px; }
.reassurance-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.reassurance-grid .card { padding: 30px; display: flex; flex-direction: column; gap: 10px; }
.reassurance-grid .r-title { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 19px; color: var(--wine); }
.reassurance-grid .r-body { font-size: 15px; color: var(--ink-soft); line-height: 1.65; font-weight: 300; }

/* Treatments */
.treatments { padding: 90px 24px; max-width: 1180px; margin: 0 auto; }
.treatments h2 { font-size: 32px; font-weight: 600; margin-bottom: 36px; }
.treat-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.treat-grid .card { padding: 30px; display: flex; flex-direction: column; gap: 12px; }
.treat-live { border-color: var(--wine); border-width: 1.5px; }
.treat-soon { opacity: 0.65; }
.treat-head { display: flex; align-items: center; justify-content: space-between; }
.treat-head .t-name { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 20px; }
.treat-desc { font-size: 15px; color: var(--ink-soft); line-height: 1.65; font-weight: 300; }
.treat-link { font-family: 'Lato', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--wine); border-bottom: 1px solid var(--wine-soft); align-self: flex-start; padding-bottom: 2px; }

/* FAQ */
.faq { background: var(--cream-soft); padding: 90px 0; }
.faq-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 0.6fr; gap: 56px; align-items: start; }
.faq-photo { width: 100%; height: 100%; min-height: 480px; object-fit: cover; border-radius: 20px; box-shadow: 0 20px 50px -20px oklch(22% 0.10 350 / 0.35); position: sticky; top: 100px; }
.faq h2 { font-size: 32px; font-weight: 600; }
.faq-intro { font-size: 16px; color: var(--ink-soft); line-height: 1.7; margin: 16px 0 40px; max-width: 620px; font-weight: 300; }
.faq-item {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px; padding: 24px 28px; margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.faq-q { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 18px; color: var(--wine); }
.faq-a { font-size: 15px; color: var(--ink-soft); line-height: 1.65; margin-top: 8px; font-weight: 300; }

.process { max-width: 1180px; margin: 68px auto 0; padding: 0 24px; }
.process h3 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 23px; margin-bottom: 30px; }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }
.process-step { display: flex; flex-direction: column; gap: 10px; }
.process-num { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 20px; color: var(--wine); font-style: italic; }
.process-title { font-family: 'Lato', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.03em; }
.process-body { font-size: 14px; color: var(--ink-soft); line-height: 1.6; font-weight: 300; }

/* Booking */
.booking { padding: 96px 24px; max-width: 1180px; margin: 0 auto; }
.booking-head { max-width: 560px; margin-bottom: 44px; }
.booking-head h2 { font-size: 32px; font-weight: 600; }
.booking-head p { font-size: 16px; color: var(--ink-soft); margin-top: 14px; font-weight: 300; }
.booking-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: start; }

form.booking-form { display: flex; flex-direction: column; gap: 18px; }
form.booking-form label { font-family: 'Lato', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); }
form.booking-form input, form.booking-form textarea {
  border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 8px; padding: 14px 16px;
  font-family: 'Lato', sans-serif; font-size: 15px; background: rgba(0, 0, 0, 0.03); color: var(--ink);
  width: 100%; margin-top: 8px; transition: border-color 200ms, background 200ms;
}
form.booking-form textarea { resize: vertical; min-height: 110px; }
form.booking-form input:focus, form.booking-form textarea:focus { outline: none; border-color: var(--wine); background: var(--white); }

.side-cards { display: flex; flex-direction: column; gap: 18px; }
.side-cards .card { padding: 28px; display: flex; flex-direction: column; gap: 10px; }
.side-cards .s-title { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 17px; }
.side-cards .s-body { font-size: 14px; color: var(--ink-soft); line-height: 1.65; font-weight: 300; }

/* Footer */
footer { background: var(--ink); padding: 64px 24px 34px; }
.footer-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 44px; }
.footer-logo { font-family: 'Playfair Display', serif; font-weight: 600; font-style: italic; font-size: 22px; color: var(--white); }
.footer-blurb { font-size: 14px; color: oklch(78% 0.008 40); max-width: 280px; line-height: 1.7; margin-top: 14px; font-weight: 300; }
.footer-col-title { font-family: 'Lato', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); margin-bottom: 12px; }
.footer-line { font-size: 14px; color: oklch(78% 0.008 40); margin-top: 7px; font-weight: 300; }
.footer-bottom { max-width: 1180px; margin: 44px auto 0; padding-top: 22px; border-top: 1px solid oklch(38% 0.015 40); font-size: 12px; color: oklch(60% 0.008 40); letter-spacing: 0.03em; }

@media (max-width: 900px) {
  .hero, .booking-grid, .footer-grid, .faq-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; height: 240px; }
  .hero-copy h1 { font-size: 38px; }
  .trust-strip, .reassurance-grid, .treat-grid, .process-grid { grid-template-columns: 1fr; }
  .faq-photo { order: -1; min-height: 260px; position: static; }
  nav.main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; padding: 8px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a { padding: 16px 24px; width: 100%; }
  .menu-toggle { display: block; }
  header { flex-wrap: wrap; position: relative; }
}
