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

:root {
  --plum:        #6B3A5D;
  --plum-dark:   #4E2A44;
  --plum-light:  #8B5A7A;
  --plum-bg:     #F7F0F4;
  --amber:       #D4A04A;
  --amber-light: #E8C078;
  --amber-dark:  #B8862E;
  --bg:          #FAFAF8;
  --surface:     #FFFFFF;
  --text:        #1A1A1A;
  --text-muted:  #6B6B6B;
  --text-light:  #999999;
  --border:      #E8E4E0;
  --border-light:#F0ECE8;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow-sm:   0 1px 3px rgba(107,58,93,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 20px rgba(107,58,93,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg:   0 12px 40px rgba(107,58,93,0.12), 0 4px 16px rgba(0,0,0,0.06);
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;
  --font-serif:  'Playfair Display', 'Georgia', serif;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--plum); color: #fff; padding: 0.5rem 1rem;
  border-radius: var(--radius-sm); z-index: 1000; font-size: 0.875rem;
}
.skip-link:focus { top: 1rem; }

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

/* ── Typography ─────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--plum);
}

.section-title--center { text-align: center; }

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

.section-desc--center { margin: 0 auto 3rem; text-align: center; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--amber {
  background: var(--amber);
  color: #fff;
  border: 1.5px solid var(--amber);
}
.btn--amber:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--plum);
  border: 1.5px solid var(--plum);
}
.btn--outline:hover {
  background: var(--plum);
  color: #fff;
  transform: translateY(-1px);
}

.btn--full { width: 100%; }

/* ── Header ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,250,248,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(250,250,248,0.95);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.logo-mark {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--plum);
  line-height: 1;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--amber);
  transition: var(--transition);
}

.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.nav-toggle-line {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,58,93,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.hero-card__content {
  padding: 4rem 3rem 4rem 0;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--plum);
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-card__image {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.hero-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 20px 20px 0;
}

/* Floating stat cards */
.hero-stats {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 2;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  animation: float 4s ease-in-out infinite;
  min-width: 130px;
}

.stat-card:nth-child(2) { animation-delay: -1.3s; }
.stat-card:nth-child(3) { animation-delay: -2.6s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--plum);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ── About ──────────────────────────────────────────── */
.about {
  padding: 8rem 0;
  background: var(--bg);
}

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

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
}

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

.about-img--large { grid-column: 1 / -1; }
.about-img--large img { width: 100%; height: 380px; object-fit: cover; }
.about-img--small img { width: 100%; height: 220px; object-fit: cover; }

.about-content .section-title { margin-bottom: 1.5rem; }

.about-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text);
}

.about-features svg {
  color: var(--amber);
  flex-shrink: 0;
}

/* ── Menu ───────────────────────────────────────────── */
.menu {
  padding: 8rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.menu-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.menu-category {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

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

.menu-category__header {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.menu-category__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.375rem;
}

.menu-category__subtitle {
  font-size: 0.8125rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.menu-list { display: flex; flex-direction: column; gap: 1.5rem; }

.menu-item { display: flex; flex-direction: column; gap: 0.25rem; }

.menu-item__name {
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--text);
  letter-spacing: 0.01em;
}

.menu-item__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.menu-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 3rem;
  font-style: italic;
}

/* ── Gallery ────────────────────────────────────────── */
.gallery {
  padding: 8rem 0;
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  margin-top: 4rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.gallery-item:hover img { transform: scale(1.03); }

.gallery-item--wide { grid-column: span 6; }
.gallery-item:not(.gallery-item--wide) { grid-column: span 3; }

.gallery-item--wide img { height: 320px; }
.gallery-item:not(.gallery-item--wide) img { height: 320px; }

/* ── Visit ──────────────────────────────────────────── */
.visit {
  padding: 8rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border-light);
}

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

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.visit-detail { display: flex; gap: 1rem; }

.visit-detail dt {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--plum);
  flex-shrink: 0;
  min-width: 80px;
}

.visit-detail dd {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.visit-detail a {
  color: var(--text-muted);
  transition: var(--transition);
}

.visit-detail a:hover { color: var(--amber-dark); }

.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.visit-map iframe {
  width: 100%;
  height: 480px;
  display: block;
}

/* ── Contact ────────────────────────────────────────── */
.contact {
  padding: 8rem 0;
  background: var(--plum-bg);
}

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

.contact-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 1.25rem;
  max-width: 420px;
}

.contact-form-wrap {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

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

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-group label {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(107,58,93,0.08);
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--plum);
  padding: 1rem;
  background: rgba(107,58,93,0.06);
  border-radius: var(--radius-sm);
  margin-top: 0.5rem;
}

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
  padding: 5rem 0 2rem;
  background: var(--text);
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text { color: #fff; }
.footer-brand p {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9375rem;
  transition: var(--transition);
}

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

.footer-contact li {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-contact a {
  transition: var(--transition);
}

.footer-contact a:hover { color: var(--amber-light); }

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-card { grid-template-columns: 1fr; }
  .hero-card__content { padding: 3rem 2rem; }
  .hero-card__image { min-height: 350px; }
  .hero-card__image img { border-radius: 0 0 20px 20px; }
  .hero-stats { display: none; }
  .about-grid { gap: 3rem; }
  .menu-categories { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 6; }
  .gallery-item:not(.gallery-item--wide) { grid-column: span 3; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }

  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(250,250,248,0.98);
    backdrop-filter: blur(12px);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .main-nav a { font-size: 1.125rem; }

  .hero { padding-top: 72px; min-height: auto; padding-bottom: 4rem; }
  .hero-card { gap: 0; }
  .hero-card__content { padding: 2rem 1.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }

  .about { padding: 5rem 0; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img--large img { height: 280px; }
  .about-img--small img { height: 180px; }

  .menu { padding: 5rem 0; }
  .menu-categories { grid-template-columns: 1fr; }
  .menu-category { padding: 2rem; }

  .gallery { padding: 5rem 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item:not(.gallery-item--wide) { grid-column: span 1; }
  .gallery-item--wide img,
  .gallery-item:not(.gallery-item--wide) img { height: 220px; }

  .visit { padding: 5rem 0; }
  .visit-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .visit-map iframe { height: 300px; }

  .contact { padding: 5rem 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.75rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero-card__content { padding: 1.5rem 1.25rem; }
  .hero-headline { font-size: 1.5rem; }
  .section-title { font-size: 1.75rem; }
  .about-images { grid-template-columns: 1fr; }
  .about-img--small { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
}

/* ── Animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  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);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
