/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }

/* ── Custom Properties ── */
:root {
  --plum-700: #5B2C6F;
  --plum-800: #3d1f47;
  --plum-900: #2a1530;
  --amber-400: #F59E0B;
  --amber-500: #d97706;
  --white: #ffffff;
  --off-white: #faf9f7;
  --line: rgba(91, 44, 111, 0.10);
  --line-dark: rgba(255, 255, 255, 0.12);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ── Section Shared ── */
.section { padding: 120px 0; }
.section--light { background: var(--off-white); }
.section--plum { background: var(--plum-700); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-500);
  margin-bottom: 16px;
}
.section-eyebrow--light { color: var(--amber-300); }
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  color: var(--plum-900);
  margin-bottom: 20px;
}
.section-title--light { color: var(--white); }
.section-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: rgba(42, 21, 48, 0.6);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn--full { width: 100%; }
.btn-primary {
  background: var(--amber-400);
  color: var(--plum-900);
}
.btn-primary:hover { background: var(--amber-500); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 1px 24px rgba(91,44,111,0.07); }
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--plum-900);
}
.nav-logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--plum-700);
  position: relative;
  flex-shrink: 0;
}
.nav-logo-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber-400);
}
.nav-logo-text { font-family: 'Playfair Display', Georgia, serif; font-style: italic; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(42,21,48,0.65);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--amber-400);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--plum-900); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--plum-700) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--plum-800) !important; transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle-line {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--plum-900);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.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: rotate(-45deg) translate(4px, -5px); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    transition: all 0.4s var(--ease-out);
  }
  .nav-links.open {
    max-height: 400px;
    border-bottom-color: var(--line);
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 16px 24px;
    font-size: 15px;
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    margin: 16px 24px 24px;
    display: block !important;
    text-align: center;
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--plum-900);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/38447625/pexels-photo-38447625.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42,21,48,0.88) 0%, rgba(91,44,111,0.72) 50%, rgba(42,21,48,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}
.hero-greeting {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.hero-greeting-line {
  width: 40px;
  height: 1px;
  background: var(--amber-400);
  flex-shrink: 0;
}
.hero-greeting-text {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-400);
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 640px;
}
.hero-title-em {
  font-style: italic;
  color: var(--amber-400);
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Floating stat cards */
.hero-stats {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  display: none;
}
@media (min-width: 1024px) {
  .hero-stats { display: block; }
  .stat-card {
    position: absolute;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 20px 24px;
    pointer-events: auto;
  }
  .stat-card--left {
    top: 18%;
    right: 8%;
    text-align: right;
  }
  .stat-card--right {
    top: 52%;
    right: 4%;
    text-align: right;
  }
  .stat-card--bottom {
    bottom: 14%;
    right: 18%;
    text-align: right;
  }
  .stat-card-label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--amber-400);
    margin-bottom: 6px;
  }
  .stat-card-value {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 4px;
  }
  .stat-card-sub {
    display: block;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
  }
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  z-index: -1;
}
.about-content { padding-top: 8px; }
.about-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(42,21,48,0.65);
  margin-bottom: 20px;
}
.about-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about-signature-line {
  width: 40px;
  height: 1px;
  background: var(--amber-400);
  flex-shrink: 0;
}
.about-signature-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: var(--plum-700);
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { max-width: 480px; }
}

/* ── Menu ── */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 48px;
  background: var(--off-white);
  border-radius: 100px;
  padding: 4px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.menu-tab {
  flex: 1;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(42,21,48,0.5);
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
  text-align: center;
}
.menu-tab:hover { color: var(--plum-900); }
.menu-tab.active {
  background: var(--white);
  color: var(--plum-900);
  box-shadow: 0 1px 8px rgba(91,44,111,0.08);
}
.menu-panel { transition: opacity 0.3s ease; }
.menu-panel.hidden { display: none; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.menu-item {
  background: var(--white);
  padding: 28px 32px;
  transition: background 0.2s ease;
}
.menu-item:hover { background: var(--off-white); }
.menu-item-top { display: flex; flex-direction: column; gap: 6px; }
.menu-item-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--plum-900);
  letter-spacing: -0.01em;
}
.menu-item-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(42,21,48,0.5);
  line-height: 1.5;
}
.menu-note {
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  color: rgba(42,21,48,0.35);
  margin-top: 32px;
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .menu-grid { grid-template-columns: 1fr; }
  .menu-tabs { flex-direction: column; border-radius: 12px; }
  .menu-tab { border-radius: 8px; }
}

/* ── Hours ── */
.hours-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hours-content { padding-right: 20px; }
.hours-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  max-width: 360px;
}
.hours-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px 44px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hours-row:last-child { border-bottom: none; }
.hours-day {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}
.hours-time {
  font-size: 14px;
  font-weight: 300;
  color: var(--amber-400);
}

@media (max-width: 768px) {
  .hours-layout { grid-template-columns: 1fr; gap: 48px; }
  .hours-content { padding-right: 0; }
  .hours-card { padding: 28px 24px; }
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item--large { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 1; }
.gallery-item:nth-child(4) { grid-column: span 6; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 3; grid-row: span 1; }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item, .gallery-item--large { grid-column: span 1; grid-row: span 1; }
  .gallery-item { height: 200px; }
  .gallery-item--large { grid-column: span 2; height: 260px; }
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(42,21,48,0.6);
  margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: all 0.2s ease;
}
.contact-detail:hover { border-color: var(--amber-400); transform: translateY(-2px); }
.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--plum-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.contact-detail span { display: flex; flex-direction: column; gap: 2px; }
.contact-detail-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(42,21,48,0.4);
}
.contact-detail-value {
  font-size: 14px;
  font-weight: 400;
  color: var(--plum-900);
  line-height: 1.5;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px;
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(42,21,48,0.5);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 300;
  color: var(--plum-900);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  outline: none;
  transition: border-color 0.2s ease;
  font-family: inherit;
  border-radius: 0;
}
.form-input::placeholder { color: rgba(42,21,48,0.25); }
.form-input:focus { border-bottom-color: var(--amber-400); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 400;
  color: var(--plum-700);
}
.form-success.hidden { display: none; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 28px 24px; }
}

/* ── Footer ── */
.footer {
  background: var(--plum-900);
  padding: 64px 0 40px;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 40px; text-align: center; }
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--plum-700);
  position: relative;
  flex-shrink: 0;
}
.footer-logo-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber-400);
}
.footer-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: var(--white);
}
.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.footer-links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
  letter-spacing: 0.02em;
}
.footer-links a:hover { color: var(--amber-400); }
.footer-copy {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  max-width: 500px;
}
.footer-copy p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
  margin-bottom: 4px;
}
.footer-copy a { color: rgba(255,255,255,0.4); transition: color 0.2s ease; }
.footer-copy a:hover { color: var(--amber-400); }

/* ── Scroll reveal (progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}
