*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --plum: #5D3A5A;
  --plum-deep: #4A2D47;
  --plum-light: #7E5277;
  --amber: #E8B960;
  --amber-light: #F2CC7E;
  --amber-dark: #D4A24A;
  --cream: #FAF6F1;
  --cream-dark: #F0E9E0;
  --white: #FFFFFF;
  --text: #2A1F24;
  --text-light: #6B5560;
  --text-muted: #9B8590;
  --line: #E8DDD4;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  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 2rem;
}

/* ─── Header ─────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

#site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px rgba(93, 58, 90, 0.06);
}

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

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

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--plum);
  color: var(--amber);
  font-family: var(--font-display), serif;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 8px;
  transition: transform 0.3s var(--ease);
}

.logo:hover .logo-mark {
  transform: rotate(-8deg) scale(1.05);
}

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

#main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

#main-nav a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  transition: color 0.3s var(--ease);
}

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

#main-nav a:not(.btn):hover {
  color: var(--plum);
}

#main-nav a:not(.btn):hover::after {
  width: 100%;
}

/* ─── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn--amber {
  background: var(--amber);
  color: var(--plum-deep);
  border-color: var(--amber);
}

.btn--amber:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 185, 96, 0.35);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* ─── Mobile Nav Toggle ──────────────────── */
.nav-toggle {
  display: none;
  flex-direction: 3px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 5px;
}

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--plum);
  transition: all 0.3s var(--ease);
  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 {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 31, 36, 0.72) 0%,
    rgba(93, 58, 90, 0.55) 50%,
    rgba(42, 31, 36, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 72px;
}

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

.hero-title {
  font-family: var(--font-display), serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title .hero-line {
  display: block;
}

.hero-title em {
  font-style: italic;
  color: var(--amber-light);
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ─── Section shared ─────────────────────── */
section {
  padding: 7rem 0;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plum-light);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display), serif;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

/* ─── About ──────────────────────────────── */
.about {
  background: var(--white);
}

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

.about-image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.about-image:hover img {
  transform: scale(1.03);
}

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

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

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

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

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ─── Menu ───────────────────────────────── */
.menu {
  background: var(--cream);
}

.section-header {
  max-width: 600px;
  margin-bottom: 3.5rem;
}

.section-header .section-title {
  margin-bottom: 0;
}

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

.menu-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.35s var(--ease);
}

.menu-card:hover {
  border-color: var(--plum-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(93, 58, 90, 0.1);
}

.menu-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(93, 58, 90, 0.08);
  color: var(--plum);
  margin-bottom: 1.25rem;
  transition: background 0.3s var(--ease);
}

.menu-card:hover .menu-card-icon {
  background: var(--plum);
  color: var(--amber);
}

.menu-card-title {
  font-family: var(--font-display), serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.menu-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ─── Hours ──────────────────────────────── */
.hours {
  background: var(--plum);
  color: var(--white);
}

.hours .section-eyebrow {
  color: var(--amber);
}

.hours .section-title {
  color: var(--white);
  margin-bottom: 2.5rem;
}

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

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

.hours-time {
  font-weight: 400;
  color: var(--amber-light);
}

.hours-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.hours-image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 6/5;
}

.hours-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.hours-image:hover img {
  transform: scale(1.03);
}

/* ─── Location ───────────────────────────── */
.location {
  background: var(--white);
}

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

.location-address {
  font-style: normal;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.location-note {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.location-map {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 6/5;
  box-shadow: 0 4px 24px rgba(93, 58, 90, 0.1);
}

.location-map iframe {
  width: 100%;
  height: 100%;
}

/* ─── Contact ────────────────────────────── */
.contact {
  background: var(--cream);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.contact-item svg {
  flex-shrink: 0;
  color: var(--plum);
  margin-top: 0.15rem;
}

.contact-item a {
  color: var(--plum);
  transition: color 0.3s var(--ease);
}

.contact-item a:hover {
  color: var(--amber-dark);
}

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

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

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

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  resize: vertical;
}

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

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

.form-success {
  display: none;
  background: rgba(93, 58, 90, 0.08);
  color: var(--plum);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  margin-top: 0.5rem;
}

.form-success.visible {
  display: block;
  animation: fadeIn 0.4s var(--ease);
}

/* ─── Footer ─────────────────────────────── */
#site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.5);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.footer-brand .logo-mark {
  width: 28px;
  height: 28px;
  font-size: 0.875rem;
  border-radius: 6px;
}

.footer-name {
  font-family: var(--font-display), serif;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-address {
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.footer-copy {
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

/* ─── Animations ─────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* ─── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  #main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 246, 241, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 1.5rem 2rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
    pointer-events: none;
  }

  #main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

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

  #main-nav a {
    font-size: 0.9375rem;
  }

  .hero {
    min-height: 600px;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  section {
    padding: 4.5rem 0;
  }

  .about-grid,
  .hours-layout,
  .location-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image {
    aspect-ratio: 4/3;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    gap: 1.5rem;
  }

  .scroll-indicator {
    display: none;
  }
}

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

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }
}
