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

:root {
  --plum: #5B2C4A;
  --plum-deep: #3D1F35;
  --plum-light: #7D4063;
  --plum-muted: #A0607E;
  --amber: #C8923A;
  --amber-light: #E0AD5E;
  --amber-pale: #F5D9A0;
  --cream: #FAF6F1;
  --cream-dark: #F0E8DD;
  --warm-white: #FFFDF9;
  --charcoal: #2A2420;
  --text: #3A3030;
  --text-light: #6B5E5E;
  --text-muted: #9A8E8E;
  --border: #E8DDD4;
  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(91,44,74,0.06);
  --shadow-md: 0 4px 20px rgba(91,44,74,0.08);
  --shadow-lg: 0 12px 40px rgba(91,44,74,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--warm-white);
  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; }

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

/* ===== Typography ===== */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.2; color: var(--charcoal); }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

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

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

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

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

.btn-nav {
  background: var(--plum);
  color: #fff;
  padding: 10px 20px;
  font-size: 0.8125rem;
}
.btn-nav:hover { background: var(--plum-deep); }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,253,249,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.site-header.scrolled {
  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: 10px;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--plum);
}
.logo--light { color: #fff; }
.logo-mark { color: var(--amber); flex-shrink: 0; }

/* Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: var(--transition);
}
.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); }

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-list a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-list a:not(.btn):hover { color: var(--plum); background: rgba(91,44,74,0.06); }

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,253,249,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav-list.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-list a { padding: 14px 16px; font-size: 1rem; width: 100%; }
}

/* ===== Hero ===== */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--cream);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  min-height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
}

.hero-text { padding-right: 16px; }

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

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.hero-headline .accent { color: var(--plum); }

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

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

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.hero-meta svg {
  display: inline;
  vertical-align: -3px;
  margin-right: 6px;
  color: var(--plum-muted);
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 560px;
}

.hero-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-accent {
  position: absolute;
  bottom: -40px;
  left: -60px;
  z-index: 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}
.hero-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-accent-bar {
  position: absolute;
  top: 40px;
  right: -20px;
  width: 80px;
  height: 200px;
  background: var(--plum);
  border-radius: var(--radius);
  z-index: 1;
  opacity: 0.15;
}

/* Decorative pattern */
.hero-visual::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--amber-pale) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding-bottom: 80px;
  }
  .hero-text { padding-right: 0; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-meta { align-items: center; }
  .hero-visual { min-height: 420px; order: -1; }
  .hero-img-accent { left: -16px; bottom: -20px; }
  .hero-accent-bar { display: none; }
}

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

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

.about-image {
  position: relative;
}
.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 60%;
  height: 40%;
  background: var(--plum);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.08;
}

.about-content { max-width: 520px; }
.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1rem;
}
.about-content p:first-of-type {
  font-size: 1.0625rem;
  color: var(--text);
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--plum);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-content { max-width: 100%; }
  .about-stats { gap: 24px; }
}

/* ===== Menu ===== */
.menu {
  padding: 120px 0;
  background: var(--cream);
}

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

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

.menu-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--plum-muted);
}

.menu-card-icon {
  color: var(--plum);
  margin-bottom: 20px;
  opacity: 0.85;
}

.menu-card-title {
  font-size: 1.375rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--amber-pale);
}

.menu-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.menu-card-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 0.9375rem;
}
.menu-card-list li span:first-child {
  font-weight: 500;
  color: var(--charcoal);
}
.menu-card-list li span:last-child {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: right;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .menu-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

/* ===== Gallery ===== */
.gallery {
  padding: 120px 0;
  background: var(--warm-white);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.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.05); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,31,53,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: #fff;
  font-weight: 500;
}

.gallery-item--tall { grid-column: span 5; grid-row: span 2; }
.gallery-item--wide { grid-column: span 7; }
.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) { grid-column: span 4; }

.gallery-item--tall img,
.gallery-item--wide img {
  height: 100%;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--tall { grid-column: span 2; grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) { grid-column: span 1; }
  .gallery-item img { height: 240px; }
  .gallery-item--tall img { height: 360px; }
  .gallery-item--wide img { height: 240px; }
}

/* ===== Visit ===== */
.visit {
  padding: 120px 0;
  background: var(--plum-deep);
  color: #fff;
}

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

.visit .section-eyebrow { color: var(--amber-light); }
.visit .section-title { color: #fff; }
.visit .section-title .accent { color: var(--amber-light); }
.visit-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.0625rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.visit-detail-icon {
  color: var(--amber-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.visit-detail strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 4px;
}
.visit-detail span {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 480px;
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
}

@media (max-width: 900px) {
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 320px; }
  .visit-map iframe { min-height: 320px; }
}

/* ===== Contact ===== */
.contact {
  padding: 120px 0;
  background: var(--cream);
}

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

.contact-text p {
  color: var(--text-light);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.contact-form {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

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

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--warm-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(91,44,74,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

.form-success {
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(91,44,74,0.06);
  border: 1px solid rgba(91,44,74,0.15);
  border-radius: var(--radius);
  color: var(--plum);
  font-size: 0.9375rem;
  text-align: center;
}

@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-tagline {
  margin-top: 16px;
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 320px;
  color: rgba(255,255,255,0.5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--amber-light); }

.footer-contact p {
  font-size: 0.875rem;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.5);
}
.footer-contact a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--amber-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--amber-light); }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===== Scroll Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }
