/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --burgundy:    #7B2D3B;
  --burgundy-deep: #5C1F2B;
  --blush:       #F2D0CC;
  --blush-light: #FDF0EE;
  --blush-mid:   #F7DDD9;
  --cream:       #FFF9F8;
  --white:       #FFFFFF;
  --text-dark:   #2A1F22;
  --text-mid:    #5C4A4E;
  --text-light:  #8A7478;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 4px 24px rgba(123,45,59,0.08);
  --shadow-lg:   0 12px 48px rgba(123,45,59,0.12);
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--burgundy);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-size: 0.875rem;
}
.skip-link:focus { top: 16px; }

/* ── Typography ───────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.accent { color: var(--burgundy); }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--burgundy);
  color: #fff;
  border-color: var(--burgundy);
}
.btn-primary:hover {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-ghost {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn-ghost:hover {
  background: var(--burgundy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ── Header ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,249,248,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(123,45,59,0.08);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(123,45,59,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--burgundy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burgundy);
  transition: width 0.3s;
  border-radius: 2px;
}
.nav-list a:hover { color: var(--burgundy); }
.nav-list a:hover::after { width: 100%; }

.btn-nav {
  background: var(--burgundy);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
}
.btn-nav::after { display: none; }
.btn-nav:hover { background: var(--burgundy-deep); color: #fff !important; }

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle .bar {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255,249,248,0.98);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--text-dark);
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--burgundy); }
.btn-nav-mobile {
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background: var(--burgundy);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  padding-top: 72px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--blush-light) 50%, var(--blush-mid) 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
  flex: 1;
}

.hero-content { max-width: 520px; }

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-dark);
}
.hero-headline em {
  font-style: italic;
  color: var(--burgundy);
}

.hero-body {
  font-size: 1.125rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--blush);
}

/* Hero images */
.hero-visual { position: relative; }
.hero-img-stack { position: relative; }
.hero-img { border-radius: var(--radius); overflow: hidden; }
.hero-img--main {
  width: 100%;
  aspect-ratio: 600/750;
  box-shadow: var(--shadow-lg);
}
.hero-img--float {
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 55%;
  aspect-ratio: 400/300;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream);
}
.hero-accent {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: var(--burgundy);
  border-radius: 50%;
  opacity: 0.08;
  z-index: -1;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ── About ────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 560/640;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.about-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  width: 56px;
  height: 56px;
  background: var(--burgundy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.about-content { max-width: 480px; }
.about-content > p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1.0625rem;
}

.about-values {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.value-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--blush-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
}
.value strong {
  display: block;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.value span {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ── Menu ─────────────────────────────────────────── */
.menu {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--blush-light) 100%);
}

.menu-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.menu-lead {
  color: var(--text-mid);
  font-size: 1.0625rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.menu-card-img {
  aspect-ratio: 400/280;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); }
.menu-card-body { padding: 28px; }
.menu-card-body h3 {
  font-size: 1.375rem;
  margin-bottom: 10px;
}
.menu-card-body p {
  color: var(--text-mid);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ── Gallery ──────────────────────────────────────── */
.gallery {
  padding: 120px 0;
  background: var(--cream);
}

.gallery-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 64px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 500/380;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ── Visit ────────────────────────────────────────── */
.visit {
  padding: 120px 0;
  background: var(--white);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.visit-info { max-width: 480px; }
.visit-address {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin: 24px 0;
  line-height: 1.8;
}

.visit-hours { margin: 32px 0; }
.visit-hours h3 {
  font-size: 1.125rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.visit-hours ul li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--blush-light);
  font-size: 0.9375rem;
}
.visit-hours ul li span:first-child { color: var(--text-mid); }
.visit-hours ul li span:last-child { font-weight: 500; color: var(--text-dark); }

.visit-contact { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-mid);
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.contact-row:hover { color: var(--burgundy); }
.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--blush-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  flex-shrink: 0;
}

.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 480px;
  box-shadow: var(--shadow);
}

/* ── CTA ──────────────────────────────────────────── */
.cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.cta .container { position: relative; z-index: 1; }
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta .section-eyebrow { color: var(--blush); }
.cta-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: #fff;
  margin-bottom: 20px;
}
.cta-title em { color: var(--blush); }
.cta-body {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  margin-bottom: 36px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta .btn-ghost {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.cta .btn-ghost:hover {
  background: #fff;
  color: var(--burgundy);
  border-color: #fff;
}

/* ── Contact ──────────────────────────────────────── */
.contact {
  padding: 120px 0;
  background: var(--blush-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-content { max-width: 440px; }
.contact-content > p {
  color: var(--text-mid);
  font-size: 1.0625rem;
  margin-top: 16px;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--blush);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(123,45,59,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 16px;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
}

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  padding: 48px 0;
  background: var(--text-dark);
  color: rgba(255,255,255,0.6);
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.footer-copy { font-size: 0.875rem; }

/* ── Reveal Animation ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .about-grid { gap: 48px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 24px;
    gap: 48px;
  }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero-body { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-img--float { left: 50%; transform: translateX(-30%); bottom: -30px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-content { max-width: 100%; }
  .about-badge { right: 16px; }

  .menu-grid { grid-template-columns: 1fr; max-width: 480px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .visit-grid { grid-template-columns: 1fr; }
  .visit-info { max-width: 100%; }
  .visit-map { min-height: 320px; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-content { max-width: 100%; }
  .contact-form-wrap { padding: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-headline { font-size: 2.125rem; }
  .hero-img--float { width: 70%; left: 50%; transform: translateX(-40%); }
  .gallery-grid { grid-template-columns: 1fr; }
  .btn { padding: 12px 24px; font-size: 0.875rem; }
}
