/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #1a0a1e;
  background: #faf8f5;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Tokens ───────────────────────────────────────── */
:root {
  --plum:    #5B2C6F;
  --plum-dk: #3D1F4D;
  --plum-lt: #8B5FBF;
  --plum-bg: #F3ECF7;
  --amber:   #F59E0B;
  --amber-dk:#D97706;
  --amber-lt:#FCD34D;
  --cream:   #FAF8F5;
  --dark:    #1A0A1E;
  --mid:     #4A3050;
  --light:   #EDE5F5;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(91,44,111,.10);
  --shadow-lg: 0 12px 48px rgba(91,44,111,.16);
}

/* ── Typography ───────────────────────────────────── */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber-dk);
  margin-bottom: .75rem;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-title.text-left { text-align: left; }
.section-desc {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 60ch;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-desc { margin: 0 auto; }

/* ── Container ────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: background .25s, transform .2s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn--amber {
  background: var(--amber);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(245,158,11,.35);
}
.btn--amber:hover { background: var(--amber-dk); box-shadow: 0 6px 24px rgba(245,158,11,.45); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }

/* ── Skip Link ────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--plum); color: #fff;
  padding: .5rem 1rem; border-radius: 0 0 8px 8px;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ── NAV ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26,10,30,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,158,11,.15);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center;
  height: 64px; gap: 2rem;
}
.brand {
  display: flex; align-items: center; gap: .6rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-size: 1.15rem; color: #fff;
}
.brand-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--amber); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 900; letter-spacing: .02em;
}
.nav-links { display: flex; align-items: center; gap: 2rem; margin-left: auto; }
.nav-links a {
  color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--amber); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  margin-left: auto; padding: 4px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(26,10,30,.97);
    flex-direction: column; padding: 2rem;
    gap: 1.25rem;
    transform: translateY(-120%);
    transition: transform .35s ease;
  }
  .nav-links.open { transform: translateY(0); }
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.pexels.com/photos/18617705/pexels-photo-18617705.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1200') center/cover no-repeat;
  z-index: 0;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,10,30,.88) 0%, rgba(91,44,111,.72) 50%, rgba(26,10,30,.85) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
}
.hero-card {
  max-width: 720px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(16px);
}
.hero-card .eyebrow { color: var(--amber-lt); }
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 900; line-height: 1.08;
  color: #fff; margin-bottom: 1.25rem;
}
.hero-headline em { font-style: italic; color: var(--amber-lt); }
.hero-headline .text-amber { color: var(--amber); }
.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,.8);
  max-width: 52ch; line-height: 1.7; margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ── Floating Stat Cards ──────────────────────────── */
.hero-stats {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  display: none;
}
@media (min-width: 900px) {
  .hero-stats { display: block; }
  .stat-card {
    position: absolute;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    backdrop-filter: blur(14px);
    text-align: center;
    animation: float 4s ease-in-out infinite;
  }
  .stat-card--top  { top: 18%; right: 6%; animation-delay: 0s; }
  .stat-card--mid  { top: 52%; right: 3%; animation-delay: 1.3s; }
  .stat-card--bot  { bottom: 14%; right: 9%; animation-delay: 2.6s; }
  .stat-num {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem; font-weight: 900; color: var(--amber);
  }
  .stat-label {
    display: block;
    font-size: .7rem; font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase; color: rgba(255,255,255,.75);
    margin-top: .25rem;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
}

/* ── STRIP ────────────────────────────────────────── */
.strip {
  background: var(--plum);
  padding: 1.25rem 0;
  overflow: hidden;
}
.strip-inner {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 1rem 2.5rem;
}
.strip-item {
  display: flex; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.9); font-size: .9rem; font-weight: 500;
  white-space: nowrap;
}
.strip-icon { width: 20px; height: 20px; color: var(--amber); flex-shrink: 0; }

/* ── MENU ─────────────────────────────────────────── */
.menu { padding: 6rem 0; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.menu-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.menu-card-img {
  height: 220px;
  background-size: cover; background-position: center;
}
.menu-card-body { padding: 1.75rem; }
.menu-card-eyebrow {
  font-size: .7rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--plum-lt); margin-bottom: .5rem;
}
.menu-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: .75rem;
}
.menu-card-desc {
  font-size: .95rem; color: var(--mid); line-height: 1.7; margin-bottom: 1.25rem;
}
.menu-list li {
  position: relative; padding: .4rem 0 .4rem 1.25rem;
  font-size: .9rem; color: var(--mid);
  border-bottom: 1px solid var(--light);
}
.menu-list li:last-child { border-bottom: none; }
.menu-list li::before {
  content: '';
  position: absolute; left: 0; top: .7rem;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
}

/* ── ABOUT ────────────────────────────────────────── */
.about {
  padding: 6rem 0;
  background: var(--plum-bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem; align-items: center;
}
@media (min-width: 800px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}
.about-img { border-radius: var(--radius); overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-body .section-title { margin-top: .5rem; }
.about-body p { color: var(--mid); margin-bottom: 1rem; line-height: 1.75; }
.about-signature {
  display: flex; align-items: center; gap: .75rem;
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--light);
}
.sig-mark { width: 40px; height: 40px; flex-shrink: 0; }
.about-signature span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem; font-weight: 700; color: var(--dark);
}

/* ── GALLERY ──────────────────────────────────────── */
.gallery { padding: 6rem 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
.gallery-item { border-radius: var(--radius); overflow: hidden; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:nth-child(2),
.gallery-item:nth-child(4) { grid-row: span 2; }

/* ── VISIT ────────────────────────────────────────── */
.visit {
  padding: 6rem 0;
  background: var(--dark);
  color: #fff;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 800px) {
  .visit-grid { grid-template-columns: 1fr 1fr; }
}
.visit-info .section-title { color: #fff; }
.visit-details, .hours { margin-top: 1.5rem; line-height: 1.8; }
.visit-details p, .hours p { color: rgba(255,255,255,.75); }
.visit-details p:first-child, .hours p:first-child {
  font-weight: 600; color: var(--amber); margin-bottom: .25rem;
}
.visit-details a, .footer a {
  color: rgba(255,255,255,.8);
  transition: color .2s;
}
.visit-details a:hover, .footer a:hover { color: var(--amber); }
.visit-map {
  border-radius: var(--radius); overflow: hidden;
  min-height: 360px;
  box-shadow: var(--shadow-lg);
}

/* ── CONTACT ──────────────────────────────────────── */
.contact { padding: 6rem 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem; align-items: start;
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow);
}
@media (min-width: 800px) {
  .contact-inner { grid-template-columns: 1fr 1fr; }
}
.contact-text .section-title { margin-top: .5rem; }
.contact-text p { color: var(--mid); line-height: 1.75; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .8rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--plum); margin-bottom: .4rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--light);
  border-radius: 8px;
  font-family: inherit; font-size: 1rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--plum-lt);
  box-shadow: 0 0 0 3px rgba(91,44,111,.12);
}
.form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: #ecfdf5;
  color: #065f46;
  border-radius: 8px;
  font-weight: 500;
}

/* ── FOOTER ───────────────────────────────────────── */
.footer {
  background: var(--plum-dk);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-brand { display: flex; flex-direction: column; gap: .75rem; }
.footer-brand .brand { font-size: 1.3rem; }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav p, .footer-contact p {
  font-size: .8rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--amber); margin-bottom: .5rem;
}
.footer-nav a, .footer-contact a {
  font-size: .9rem; color: rgba(255,255,255,.7);
  transition: color .2s;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  display: flex; flex-wrap: wrap; gap: .5rem;
  font-size: .8rem; color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-bottom a:hover { color: var(--amber); }

/* ── Scroll Reveal (progressive enhancement) ─────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Default visible for no-JS / reduced-motion */
.reveal { opacity: 1; transform: none; }
