:root {
  --wine-900: #4a0d19;
  --wine-700: #63101f;
  --wine-600: #7f1528;
  --wine-500: #952036;
  --rose-100: #fbede8;
  --rose-200: #f5d9cf;
  --rose-400: #e5a393;
  --rose-500: #db8974;
  --ink: #2b1c1d;
  --ink-soft: #6b5658;
  --bg: #fffdfc;
  --bg-alt: #fbf3f0;
  --border: #f0e0da;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(127, 21, 40, 0.1);
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--wine-600);
  line-height: 1.2;
  margin: 0 0 0.5em;
}
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
p { margin: 0 0 1em; color: var(--ink-soft); }

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

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--wine-600);
  color: #fff;
  box-shadow: 0 6px 18px rgba(127, 21, 40, 0.3);
}
.btn-primary:hover { background: var(--wine-700); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--wine-600);
  border-color: var(--rose-400);
}
.btn-ghost:hover { background: var(--rose-100); color: var(--wine-700); border-color: var(--wine-600); }

.btn-large { padding: 16px 38px; font-size: 1.05rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 252, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo { display: flex; align-items: center; }
.logo-img { height: 42px; width: auto; display: block; }

.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.nav a:hover { color: var(--wine-600); }

.nav-cta { margin-left: 24px; flex-shrink: 0; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--wine-600);
  border-radius: 2px;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--rose-100) 0%, #ffffff 100%);
  padding: 72px 0 56px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rose-500);
  margin: 0 0 12px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-style: italic;
  color: var(--wine-600);
}
.hero-sub { font-size: 1.05rem; max-width: 46ch; }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.hero-icon-img {
  width: min(320px, 80%);
  height: auto;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

/* Sections */
.section { padding: 64px 0; }
.section-alt { background: var(--bg-alt); }
.section-sub { max-width: 60ch; }

.about-inner .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.stat {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  border-top: 3px solid var(--rose-400);
}
.stat strong { display: block; font-family: var(--font-display); color: var(--wine-600); margin-bottom: 6px; }
.stat span { color: var(--ink-soft); font-size: 0.92rem; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
}
.service-icon { font-size: 1.8rem; margin-bottom: 10px; }
.service-card h3 { font-size: 1.1rem; }
.service-card p { font-size: 0.9rem; margin: 0; }

/* Booking */
.booking-section {
  background: var(--wine-600);
  color: #fff;
  text-align: center;
}
.booking-section h2 { color: #fff; font-style: italic; }
.booking-section .section-sub { color: var(--rose-200); margin: 0 auto 28px; }
.booking-inner { max-width: 640px; }
.booking-section .btn-primary {
  background: #fff;
  color: var(--wine-700);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.booking-section .btn-primary:hover { background: var(--rose-100); }
.booking-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--rose-200);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.contact-card h3 { font-size: 1.05rem; color: var(--wine-600); }
.contact-card p { margin: 0 0 6px; font-size: 0.95rem; }

/* Footer */
.site-footer {
  background: var(--wine-900);
  color: var(--rose-200);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}
.footer-logo { height: 30px; width: auto; opacity: 0.95; }
.footer-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-inner a { color: #fff; font-weight: 600; }
.footer-inner a:hover { color: var(--rose-200); }

/* Responsive */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 180px; }
  .about-inner .stats { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .menu-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px;
    display: none;
    gap: 16px;
  }
  .nav.open { display: flex; }
  .nav-cta { display: none; }
  .header-inner { flex-wrap: wrap; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
