/* ========== Variables ========== */
:root {
  --ivory: #faf6f0;
  --cream: #f2ebe0;
  --charcoal: #2a2622;
  --charcoal-soft: #4a433c;
  --gold: #b8935a;
  --gold-light: #d8b98a;
  --line: #e4d9c8;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;

  --container-w: 1160px;
}

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

html { scroll-behavior: smooth; }

section[id], .menu-group-title[id] { scroll-margin-top: 110px; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}

.center { text-align: center; }
.services h2.center, .pricing h2.center, .gallery h2.center, .booking h2.center {
  margin-bottom: 12px;
}

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: var(--charcoal);
}

.btn-outline {
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: #fff;
}

/* ========== Announcement bar ========== */
.announce-bar {
  background: var(--charcoal);
  color: var(--gold-light);
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 8px 16px;
  text-transform: uppercase;
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--charcoal);
}
.logo span { color: var(--gold); }

.logo-link { display: inline-flex; align-items: center; }
.logo-img { height: 42px; width: auto; }
.footer-logo .logo-img { height: 46px; }

.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal-soft);
  position: relative;
  padding-bottom: 4px;
}
.main-nav a:hover { color: var(--gold); }

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown summary {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal-soft);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after {
  content: "▾";
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}
.nav-dropdown[open] summary::after { transform: rotate(180deg); }
.nav-dropdown summary:hover { color: var(--gold); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 240px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 16px 34px rgba(42, 38, 34, 0.14);
  padding: 10px;
  display: flex;
  flex-direction: column;
  z-index: 110;
}
.dropdown-menu a {
  padding: 10px 12px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--charcoal-soft);
  border-radius: 3px;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--cream); color: var(--gold); }

.header-cta { display: inline-block; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 13px 9px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--charcoal);
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #2a2622 0%, #4a3d2f 55%, #6b563a 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(216,185,138,0.15), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(216,185,138,0.12), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 0 24px;
  color: var(--ivory);
}

.hero .eyebrow { color: var(--gold-light); }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.05rem;
  color: #e7ded0;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-actions .btn-outline {
  border-color: var(--ivory);
  color: var(--ivory);
}
.hero-actions .btn-outline:hover {
  background: var(--ivory);
  color: var(--charcoal);
}

/* ========== Placeholder frames ========== */
.placeholder-frame {
  border: 1px dashed var(--gold);
  background: var(--cream);
  color: var(--charcoal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 20px;
  border-radius: 4px;
}

/* ========== About ========== */
.about { padding: 110px 0; }

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

.about-image .placeholder-frame {
  aspect-ratio: 4 / 5;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
}

.about-text h2 { font-size: clamp(1.6rem, 5vw, 2.1rem); margin-bottom: 20px; }
.about-text p { color: var(--charcoal-soft); margin-bottom: 20px; }
.about-established {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--gold);
  margin-top: 24px;
}

.about-points li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
  color: var(--charcoal-soft);
}
.about-points li::before {
  content: "✦";
  color: var(--gold);
  position: absolute;
  left: 0;
}

/* ========== Services (full menu, shown large) ========== */
.services {
  padding: 110px 0;
  background: var(--cream);
}
.services h2 { font-size: clamp(1.6rem, 5vw, 2.1rem); max-width: 560px; margin-left: auto; margin-right: auto; }

.pricing-note {
  color: var(--charcoal-soft);
  max-width: 560px;
  margin: 14px auto 0;
}

.menu-group-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3.2vw, 1.7rem);
  font-weight: 600;
  text-align: center;
  color: var(--charcoal);
  margin: 64px 0 8px;
}
.menu-group-title:first-of-type { margin-top: 44px; }

.menu-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}

.menu-card {
  border: none;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ivory);
  box-shadow: 0 10px 26px rgba(42, 38, 34, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(42, 38, 34, 0.16);
}
.menu-card img {
  width: 100%;
  height: auto;
  display: block;
}

.services-cta { margin-top: 56px; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 17, 14, 0.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

/* Booking note */
.booking-note {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 17, 14, 0.72);
  z-index: 210;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.booking-note.open { display: flex; }
.booking-note-box {
  position: relative;
  background: var(--ivory);
  border-radius: 6px;
  max-width: 480px;
  width: 100%;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  text-align: left;
}
.booking-note-box h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--charcoal);
}
.booking-note-box p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: var(--charcoal-soft);
}
.booking-note-box .btn { margin-top: 8px; width: 100%; text-align: center; }
.booking-note-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: var(--charcoal-soft);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
@media (max-width: 560px) {
  .booking-note-box { padding: 32px 24px; }
}

/* ========== Gallery ========== */
.gallery {
  padding: 110px 0;
  background: var(--ivory);
}
.gallery h2 { font-size: clamp(1.6rem, 5vw, 2.1rem); }

/* ========== Carousel ========== */
.carousel {
  position: relative;
  margin-top: 48px;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--charcoal);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(250, 246, 240, 0.85);
  color: var(--charcoal);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.carousel-btn:hover { background: var(--gold); color: #fff; }
.carousel-prev { left: 18px; }
.carousel-next { right: 18px; }

.carousel-dots {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-dot.active {
  background: var(--gold-light);
  transform: scale(1.25);
}

@media (max-width: 560px) {
  .carousel { aspect-ratio: 4 / 5; }
  .carousel-btn { width: 36px; height: 36px; }
}

/* ========== Booking ========== */
.booking { padding: 110px 0; }
.booking h2 { font-size: clamp(1.6rem, 5vw, 2.1rem); }

.booking-cta { margin-top: 48px; text-align: center; }

/* ========== Footer ========== */
.site-footer {
  background: var(--charcoal);
  color: #d8d2c8;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo { color: var(--ivory); margin-bottom: 14px; display: inline-block; }
.footer-logo span { color: var(--gold-light); }

.footer-col p { margin-bottom: 10px; font-size: 0.9rem; color: #b9b2a6; }
.footer-col a { font-size: 0.9rem; color: #b9b2a6; }
.footer-col a:hover { color: var(--gold-light); }

.footer-col h4 {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.social-links a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b9b2a6;
}
.social-links a svg { width: 16px; height: 16px; }
.social-links a:hover { border-color: var(--gold-light); color: var(--gold-light); }

.footer-bottom {
  text-align: center;
  padding: 22px 0;
  font-size: 0.8rem;
  color: #8b8478;
}

/* ========== Floating CTA ========== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: #fff;
  padding: 14px 22px;
  border-radius: 30px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(184, 147, 90, 0.4);
  z-index: 90;
  display: none;
}
.floating-cta.visible { display: block; }

/* ========== Responsive ========== */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -280px;
    height: 100vh;
    width: 260px;
    background: var(--ivory);
    flex-direction: column;
    padding: 100px 32px;
    gap: 24px;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.08);
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav a { font-size: 1rem; padding: 6px 0; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-dropdown summary { font-size: 1rem; padding: 6px 0; }
  .dropdown-menu {
    position: static;
    margin-top: 4px;
    padding: 0 0 0 16px;
    border: none;
    box-shadow: none;
    background: none;
  }
  .dropdown-menu a { font-size: 0.92rem; padding: 8px 0; }

  .about, .services, .gallery, .booking { padding: 72px 0; }
  .site-footer { padding-top: 56px; }
  .about-grid { gap: 36px; }

  .menu-list { gap: 28px; }
  .menu-group-title { margin-top: 48px; }
  .menu-group-title:first-of-type { margin-top: 36px; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }

  .announce-bar { font-size: 0.68rem; padding: 9px 12px; line-height: 1.5; }

  .logo-img { height: 32px; }
  .footer-logo .logo-img { height: 38px; }
  .header-inner { padding-top: 14px; padding-bottom: 14px; }

  .hero { min-height: 76vh; }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
  .hero-actions .btn { width: 100%; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .carousel { aspect-ratio: 4 / 5; }
  .carousel-btn { width: 40px; height: 40px; font-size: 0.9rem; }
  .carousel-prev { left: 10px; }
  .carousel-next { right: 10px; }

  .lightbox-close { top: 10px; right: 14px; width: 44px; height: 44px; font-size: 2rem; }

  .floating-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 0.72rem; }

  .btn { padding: 13px 24px; }
}
