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

:root {
  --burgundy:    #7B2D3B;
  --burgundy-deep: #5C1F2C;
  --blush:       #F5E6E0;
  --blush-light: #FDF6F4;
  --cream:       #FDF8F6;
  --warm-white:  #FFFCFA;
  --text-dark:   #2A1F22;
  --text-mid:    #5C4A4E;
  --text-light:  #8A7478;
  --gold:        #C8956C;
  --gold-light:  #E8C4A0;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 8px rgba(123,45,59,0.06);
  --shadow-md:   0 8px 30px rgba(123,45,59,0.10);
  --shadow-lg:   0 20px 60px 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, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-dark);
}

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

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

/* ─── TYPOGRAPHY HELPERS ───────────────────────────────────── */
.accent { color: var(--burgundy); }

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  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;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 520px;
}

.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.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-md);
}

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

.btn--sm { padding: 10px 24px; font-size: 0.88rem; }
.btn--lg { padding: 16px 40px; font-size: 1rem; }

/* ─── HEADER / NAV ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,248,246,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(123,45,59,0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-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.15rem;
  font-weight: 600;
  color: var(--burgundy);
}

.logo-text { letter-spacing: -0.01em; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 50px;
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--burgundy);
  background: rgba(123,45,59,0.06);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger { position: relative; }
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after  { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  padding: 120px 0 0;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

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

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

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-dark);
}

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

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

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 18px;
  background: var(--blush);
  color: var(--burgundy);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

.hero-image { position: relative; }

.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: #fff;
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--burgundy);
  font-size: 0.95rem;
}

.hero-float-card svg { color: var(--burgundy); }

.hero-wave {
  margin-top: -1px;
  line-height: 0;
}

.hero-wave svg { display: block; width: 100%; height: auto; }

/* ─── HIGHLIGHTS ───────────────────────────────────────────── */
.highlights {
  background: var(--blush-light);
  padding: 80px 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.highlight-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.highlight-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blush);
  border-radius: 14px;
  margin-bottom: 20px;
}

.highlight-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.highlight-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── MENU ─────────────────────────────────────────────────── */
.menu-section {
  background: var(--blush-light);
  padding: 100px 0;
}

.menu-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.menu-cat {
  padding: 10px 24px;
  border: 2px solid var(--blush);
  background: transparent;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
}

.menu-cat:hover,
.menu-cat[aria-pressed="true"] {
  border-color: var(--burgundy);
  color: var(--burgundy);
  background: rgba(123,45,59,0.05);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}

.menu-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.menu-card-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.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: 24px;
}

.menu-card-body h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.menu-card-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── ABOUT ────────────────────────────────────────────────── */
.about-section {
  padding: 100px 0;
  background: var(--warm-white);
  overflow: hidden;
}

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

.about-images { position: relative; }

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--warm-white);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-pattern {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  background: repeating-linear-gradient(
    45deg,
    var(--blush) 0px,
    var(--blush) 4px,
    transparent 4px,
    transparent 8px
  );
  border-radius: var(--radius);
  opacity: 0.6;
  z-index: -1;
}

.about-content .section-title { margin-bottom: 24px; }

.about-text {
  color: var(--text-mid);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--blush);
}

.stat { flex: 1; }

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

.stat-divider {
  width: 1px;
  background: var(--blush);
  align-self: stretch;
}

/* ─── EXPERIENCE ───────────────────────────────────────────── */
.experience-section {
  padding: 100px 0 80px;
  background: var(--blush-light);
}

.experience-section .section-header { margin-bottom: 60px; }

.experience-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.exp-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.exp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.exp-item:hover img { transform: scale(1.05); }

.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,31,34,0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  opacity: 0;
  transition: var(--transition);
}

.exp-item:hover .exp-overlay { opacity: 1; }

.exp-overlay span {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
}

/* ─── VISIT ────────────────────────────────────────────────── */
.visit-section {
  padding: 100px 0;
  background: var(--warm-white);
}

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

.visit-info .section-title { margin-bottom: 28px; }

.visit-details {
  margin-bottom: 36px;
}

.visit-details p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 2;
}

.visit-details a {
  color: var(--burgundy);
  font-weight: 500;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.visit-details a:hover { color: var(--burgundy-deep); }

.visit-details svg { flex-shrink: 0; }

.visit-hours h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 12px;
}

.visit-hours p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.9;
}

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

/* ─── CONTACT ──────────────────────────────────────────────── */
.contact-section {
  padding: 100px 0;
  background: var(--burgundy);
}

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

.contact-text .section-eyebrow { color: var(--gold-light); }
.contact-text .section-title { color: #fff; margin-bottom: 16px; }
.contact-text .section-title .accent { color: var(--gold-light); }
.contact-sub { color: rgba(245,230,224,0.7); font-size: 1.05rem; }

.contact-form {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  padding: 44px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blush);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245,230,224,0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23F5E6E0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option { background: var(--burgundy); color: #fff; }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--gold-light);
  font-size: 0.95rem;
}

.form-success svg { flex-shrink: 0; }

/* ─── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--burgundy-deep);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
}

.footer-brand p {
  color: rgba(245,230,224,0.6);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 300px;
}

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-links ul li { margin-bottom: 12px; }

.footer-links a {
  color: rgba(245,230,224,0.6);
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--blush); }

.footer-links li:last-child { margin-bottom: 0; }

.footer-bottom {
  border-top: 1px solid rgba(245,230,224,0.1);
  padding: 24px 0;
}

.footer-bottom p {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(245,230,224,0.35);
}

/* ─── ANIMATIONS ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOBILE NAV ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-toggle { display: block; z-index: 1001; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--warm-white);
    box-shadow: var(--shadow-lg);
    padding: 90px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .main-nav.open { transform: translateX(0); }

  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }

  .main-nav a {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius);
  }

  .main-nav .btn--primary {
    margin-top: 16px;
    text-align: center;
    justify-content: center;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42,31,34,0.4);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: all;
  }
}

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { order: -1; max-width: 500px; margin: 0 auto; }
  .hero-float-card { left: 10px; bottom: 20px; }
  .highlights-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-secondary { right: 0; bottom: -20px; }
  .visit-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .experience-gallery { grid-template-columns: 1fr 1fr; }
  .exp-item:first-child { grid-row: span 2; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero { padding: 100px 0 0; }
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
  .about-stats { flex-direction: column; gap: 20px; }
  .stat-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .experience-gallery { grid-template-columns: 1fr; }
  .exp-item:first-child { grid-row: span 1; }
  .menu-grid { grid-template-columns: 1fr; }
}
