@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Raleway:wght@300;400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&display=swap');

/* ============================================================
   ROOT VARIABLES
============================================================ */
:root {
  --primary:      #1a0900;
  --gold:         #c9a050;
  --gold-light:   #e8d08a;
  --gold-dark:    #9e7a30;
  --cream:        #fdf8ef;
  --cream-dark:   #f0e8d5;
  --dark:         #0d0500;
  --text-dark:    #2c1a0e;
  --text-muted:   #7a6050;
  --white:        #ffffff;
  --border-gold:  rgba(201,160,80,.35);
  --shadow:       0 8px 40px rgba(26,9,0,.14);
  --shadow-lg:    0 20px 60px rgba(26,9,0,.22);
  --trans:        all .36s cubic-bezier(.25,.46,.45,.94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

a { transition: var(--trans); }

/* ============================================================
   UTILITIES
============================================================ */
.section-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}
.section-title span { color: var(--gold-dark); font-style: italic; }
.section-title.light { color: var(--white); }
.section-title.light span { color: var(--gold-light); }

.section-lead {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 560px;
}
.section-lead.light { color: rgba(255,255,255,.68); }

/* Ornamental divider */
.ornament {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.75rem;
}
.ornament.center { justify-content: center; }
/* Centered ornaments are symmetric: mirror the leading dash on the trailing side */
.ornament.center::after {
  content: '';
  flex: 0 0 50px;
  height: 1px;
  background: var(--gold);
}
.ornament.center.light::after { background: rgba(201,160,80,.6); }
.ornament .line {
  flex: 0 0 50px;
  height: 1px;
  background: var(--gold);
}
.ornament .diamond {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}
.ornament .diamond-lg {
  width: 11px; height: 11px;
  border: 2px solid var(--gold);
  transform: rotate(45deg);
}
.ornament.light .line   { background: rgba(201,160,80,.6); }
.ornament.light .diamond,
.ornament.light .diamond-lg { border-color: rgba(201,160,80,.6); background: rgba(201,160,80,.6); }

/* Buttons */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  border: 2px solid var(--gold);
  padding: .85rem 2.4rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: var(--trans);
  cursor: pointer;
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201,160,80,.35);
}
.btn-gold.on-dark:hover { color: var(--gold-light); border-color: var(--gold-light); }

.btn-outline-gold {
  display: inline-block;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
  padding: .85rem 2.4rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: var(--trans);
}
.btn-outline-gold:hover {
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
  transform: translateY(-3px);
}

/* ============================================================
   NAVBAR
============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  padding: 1.4rem 0;
  transition: var(--trans);
  background: transparent;
}
.site-nav.scrolled {
  background: var(--dark);
  padding: .75rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.35);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.brand-logo-img {
  max-height: 42px;
  max-width: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.navbar-brand .brand-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2.5px;
  line-height: 1;
}
.brand-sub {
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  margin-top: .2rem;
}

/* ── Desktop nav links ── */
.nav-desktop { list-style: none; padding: 0; gap: .25rem; }

.nav-desktop .nav-link {
  color: rgba(255,255,255,.88) !important;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .45rem 1rem !important;
  position: relative;
  text-decoration: none;
  display: inline-block;
}
.nav-desktop .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--trans);
}
.nav-desktop .nav-link:hover,
.nav-desktop .nav-link.active { color: var(--gold) !important; }
.nav-desktop .nav-link:hover::after,
.nav-desktop .nav-link.active::after { width: 55%; }

.nav-cta-btn {
  padding: .58rem 1.4rem !important;
  font-size: .7rem !important;
  letter-spacing: 2px !important;
}

/* ── Hamburger toggle button ── */
.menu-toggle {
  background: transparent;
  border: 1px solid var(--border-gold);
  width: 46px;
  height: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 8px 11px;
  cursor: pointer;
  position: relative;
  z-index: 3000;
  flex-shrink: 0;
  transition: border-color .3s;
}
.menu-toggle:hover { border-color: var(--gold); }
.menu-toggle:focus { outline: none; }

.menu-toggle .bar {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: transform .38s cubic-bezier(.23,1,.32,1),
              opacity   .28s ease,
              width     .3s ease;
}
.menu-toggle .bar-1 { width: 22px; }
.menu-toggle .bar-2 { width: 14px; align-self: flex-start; }
.menu-toggle .bar-3 { width: 18px; }

/* Animate to × when open */
.menu-toggle.is-open .bar-1 { width: 20px; transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open .bar-2 { opacity: 0; width: 0; }
.menu-toggle.is-open .bar-3 { width: 20px; transform: translateY(-7px) rotate(-45deg); }
.menu-toggle.is-open       { border-color: rgba(201,160,80,.15); }

/* ============================================================
   HERO — HOMEPAGE
============================================================ */
.hero {
  min-height: 100vh;
  background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,4,0,.84) 0%,
    rgba(8,4,0,.58) 55%,
    rgba(8,4,0,.82) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
}

.hero-eyebrow {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: block;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.03;
  margin-bottom: 1.4rem;
  text-shadow: 0 6px 30px rgba(0,0,0,.45);
}
.hero-title em {
  color: var(--gold-light);
  font-style: italic;
  display: block;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.6vw, 1.65rem);
  color: rgba(255,255,255,.78);
  font-style: italic;
  margin-bottom: 2.6rem;
}

.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.6rem;
}
.hero-ornament::before,
.hero-ornament::after {
  content: '';
  flex: 0 0 90px;
  height: 1px;
}
.hero-ornament::before { background: linear-gradient(to right, transparent, var(--gold)); }
.hero-ornament::after  { background: linear-gradient(to left, transparent, var(--gold)); }
.hero-ornament i       { color: var(--gold); font-size: 1.15rem; }

.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll i { font-size: .8rem; }

@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-10px); }
}

/* ============================================================
   HIGHLIGHT CARDS (below hero)
============================================================ */
.highlight-strip {
  background: var(--dark);
  border-top: 1px solid rgba(201,160,80,.08);
}
.highlight-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.hl-card {
  flex: 1 1 360px;
  max-width: 460px;
  padding: 3.2rem 2.4rem;
  border-right: 1px solid rgba(201,160,80,.1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: var(--trans);
}
.hl-card:last-child { border-right: none; }
.hl-card::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: var(--trans);
  z-index: 0;
}
.hl-card:hover::after { transform: scaleY(1); }
.hl-card-inner { position: relative; z-index: 1; }

.hl-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(201,160,80,.1);
  position: absolute;
  top: 0; right: 1.25rem;
  line-height: 1;
  transition: var(--trans);
  pointer-events: none;
}
.hl-card:hover .hl-card-num { color: rgba(26,9,0,.12); }

.hl-card-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1.1rem;
  display: block;
  transition: var(--trans);
}
.hl-card:hover .hl-card-icon { color: var(--dark); }

.hl-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .55rem;
  transition: var(--trans);
}
.hl-card:hover h3 { color: var(--dark); }

.hl-card p {
  font-size: .87rem;
  color: rgba(255,255,255,.52);
  line-height: 1.75;
  margin: 0;
  transition: var(--trans);
}
.hl-card:hover p { color: rgba(26,9,0,.65); }

.hl-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1.4rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--trans);
}
.hl-card:hover .hl-card-arrow { color: var(--dark); gap: .75rem; }

/* ============================================================
   ABOUT / WHO WE ARE — HOMEPAGE
============================================================ */
.section-about {
  padding: 8rem 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.section-about .bg-word {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 22vw;
  font-weight: 800;
  color: rgba(201,160,80,.035);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.about-image-wrap {
  position: relative;
}
.about-image-wrap .img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: bottom;
  display: block;
}
.about-image-wrap .img-accent {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 210px;
  height: 210px;
  object-fit: cover;
  border: 8px solid var(--cream);
  box-shadow: var(--shadow);
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  right: -1rem; bottom: -1rem;
  border: 2px solid var(--gold);
  z-index: -1;
  transition: var(--trans);
}

.about-text { position: relative; z-index: 1; }

/* Centre the Who We Are header (badge · ornament · title) on all screens,
   with a symmetric ornament — a dash on both sides of the three dots */
.section-about .about-text .section-badge { display: block; text-align: center; }
.section-about .about-text .section-title { text-align: center; }
.section-about .about-text .ornament      { justify-content: center; }
.section-about .about-text .ornament::after {
  content: ''; flex: 0 0 50px; height: 1px; background: var(--gold);
}

.about-text blockquote {
  border-left: 4px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--cream-dark);
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: .3rem;
  display: block;
}

/* ============================================================
   FEATURED MENU — HOMEPAGE
============================================================ */
.section-featured {
  padding: 8rem 0;
  background: var(--dark);
  position: relative;
}
.section-featured::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(201,160,80,.015) 0,
    rgba(201,160,80,.015) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 20px 20px;
}

.feat-card {
  position: relative;
  overflow: hidden;
  background: #180900;
  border: 1px solid rgba(201,160,80,.08);
  transition: var(--trans);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.feat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(0,0,0,.55);
  border-color: rgba(201,160,80,.25);
}

.feat-card-img-wrap { position: relative; overflow: hidden; }
/* Square crop + focal point identical to the menu item cards (.menu-item-img).
   object-position is set inline per item from the admin focal-point picker. */
.feat-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 65%;
  display: block;
  transition: var(--trans);
}
.feat-card:hover .feat-card-img { transform: scale(1.09); }

.feat-card-cat {
  position: absolute;
  top: 1.1rem; left: 1.1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .3rem .85rem;
}

.feat-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.feat-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}
.feat-card-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.48);
  line-height: 1.7;
  flex: 1;
}
.feat-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(201,160,80,.12);
  padding-top: 1.1rem;
  margin-top: 1.25rem;
}
.feat-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.feat-card-link {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: var(--trans);
}
.feat-card-link:hover { color: var(--gold); gap: .7rem; }

/* ============================================================
   NEWS SECTION
============================================================ */
.section-news {
  padding: 8rem 0;
  background: var(--cream);
}

.news-card {
  background: var(--white);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--trans);
  box-shadow: 0 2px 20px rgba(26,9,0,.06);
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.news-img-wrap { overflow: hidden; }
.news-img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  display: block;
  transition: var(--trans);
}
.news-card:hover .news-img { transform: scale(1.06); }

.news-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-date {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .7rem;
}
.news-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: .7rem;
}
.news-excerpt {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}
.news-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.25rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-decoration: none;
  transition: var(--trans);
}
.news-link:hover { gap: .9rem; color: var(--primary); text-decoration: none; }

/* ============================================================
   NEWS ARTICLE (detail page)
============================================================ */
.news-article { padding: 5rem 0; }
.news-article-inner { max-width: 800px; margin: 0 auto; }
.news-article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.news-article-cat {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,160,80,.12);
  padding: .25rem .65rem;
}
.news-article-img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 2rem;
}
.news-article-body {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--text-dark);
}

/* ============================================================
   NEWSLETTER
============================================================ */
.section-newsletter {
  padding: 6.5rem 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.section-newsletter::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201,160,80,.07);
  top: 50%; left: -150px;
  transform: translateY(-50%);
  pointer-events: none;
}
.section-newsletter::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,160,80,.07);
  top: 50%; right: -120px;
  transform: translateY(-50%);
  pointer-events: none;
}

.newsletter-form { position: relative; z-index: 1; }
.newsletter-input-wrap {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
}
.newsletter-input-wrap input {
  flex: 1;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(201,160,80,.3);
  border-right: none;
  color: var(--white);
  padding: 1rem 1.5rem;
  font-size: .9rem;
  font-family: 'Raleway', sans-serif;
  outline: none;
  transition: var(--trans);
}
.newsletter-input-wrap input::placeholder { color: rgba(255,255,255,.38); }
.newsletter-input-wrap input:focus {
  background: rgba(255,255,255,.15);
  border-color: var(--gold);
}
.newsletter-input-wrap button {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 1rem 2rem;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}
.newsletter-input-wrap button:hover {
  background: var(--white);
  color: var(--dark);
}

/* ── inline feedback message ── */
.nl-msg {
  min-height: 1.4em;
  margin-top: .75rem;
  font-size: .83rem;
  font-weight: 600;
  letter-spacing: .5px;
  transition: opacity .3s;
}
.nl-msg.nl-error { color: #ff8a7a; }
.nl-msg.nl-ok    { color: #8af0b8; }

.nl-fine-print {
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  margin-top: .4rem;
  letter-spacing: 1px;
}

/* ── subscribed state ── */
.nl-subscribed-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  animation: nlFadeIn .55s ease forwards;
}
@keyframes nlFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nl-check-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .5rem;
  box-shadow: 0 0 0 0 rgba(201,160,80,.5);
  animation: nlPulse 1s ease 0.3s 1 forwards;
}
@keyframes nlPulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,160,80,.5); }
  70%  { box-shadow: 0 0 0 18px rgba(201,160,80,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,160,80,0); }
}
.nl-check-icon i {
  font-size: 1.5rem;
  color: var(--dark);
}

.nl-sub-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.nl-sub-email {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin: 0;
  word-break: break-all;
}
.nl-sub-note {
  font-size: .83rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  margin: .25rem 0 .75rem;
}
.nl-new-reg-btn {
  background: transparent;
  border: 1px solid rgba(201,160,80,.4);
  color: rgba(255,255,255,.6);
  padding: .65rem 1.6rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s ease;
  font-family: 'Raleway', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.nl-new-reg-btn:hover {
  background: rgba(201,160,80,.12);
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--dark);
  padding: 5.5rem 0 0;
  border-top: 1px solid rgba(201,160,80,.08);
}

/* All footer links: never underlined, smooth gold hover */
.site-footer a { text-decoration: none; transition: var(--trans); }
.site-footer a:hover { text-decoration: none; color: var(--gold-light); }

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}
.footer-brand-sub {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: .3rem;
  margin-bottom: 1.25rem;
}
.footer-about {
  font-size: .87rem;
  color: rgba(255,255,255,.62);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

.footer-social { display: flex; gap: .65rem; flex-wrap: wrap; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,160,80,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .9rem;
  transition: var(--trans);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.6rem;
  padding-bottom: .75rem;
  position: relative;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--gold);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .7rem; }
.footer-links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .87rem;
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.footer-links a i { font-size: .6rem; color: var(--gold); transition: var(--trans); }
.footer-links a:hover { color: var(--gold-light); padding-left: .35rem; text-decoration: none; }
.footer-links a:hover i { color: var(--gold-light); }

.footer-contact-row {
  display: flex;
  gap: .9rem;
  margin-bottom: 1.1rem;
  font-size: .87rem;
  color: rgba(255,255,255,.62);
  align-items: flex-start;
}
.footer-contact-row i {
  color: var(--gold);
  width: 16px;
  flex-shrink: 0;
  margin-top: .15rem;
}
.footer-contact-row a {
  color: rgba(255,255,255,.62);
  text-decoration: none;
  transition: var(--trans);
}
.footer-contact-row a:hover { color: var(--gold-light); text-decoration: none; }

.footer-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
  color: rgba(255,255,255,.62);
}
.footer-hours-table th,
.footer-hours-table td {
  padding: .42rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  vertical-align: top;
}
.footer-hours-table th {
  text-align: left;
  font-weight: 400;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
}
.footer-hours-table td {
  text-align: right;
  white-space: nowrap;
}
.footer-hours-table tr:last-child th,
.footer-hours-table tr:last-child td { border-bottom: 0; }
.footer-hours-table tr.is-today th,
.footer-hours-table tr.is-today td { color: var(--gold-light); font-weight: 600; }
.footer-hours-table .fh-today {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: .05rem .35rem;
  border-radius: 3px;
  margin-left: .35rem;
  vertical-align: middle;
}
.footer-hours-table .fh-closed { color: #c97b7b; }

.footer-bottom {
  border-top: 1px solid rgba(201,160,80,.08);
  padding: 1.5rem 0;
  margin-top: 4rem;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.42);
  margin: 0;
}
.footer-bottom-link {
  color: rgba(255,255,255,.42);
  text-decoration: none;
  font-size: .8rem;
  transition: var(--trans);
}
.footer-bottom-link:hover { color: var(--gold-light); text-decoration: none; }

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero {
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  margin-top: 0;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,5,0,.55) 0%,
    rgba(13,5,0,.72) 100%
  );
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-badge {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .8rem;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  text-shadow: 0 4px 24px rgba(0,0,0,.45);
  margin-bottom: .8rem;
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}
.breadcrumb-item a { color: var(--gold); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--gold-light); }
.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,.5);
}

/* ── Illustrated cover variant: black overlay, centred light text (menu) ── */
.page-hero--cover {
  align-items: center;
  text-align: center;
  padding: 2.5rem 0;
  background-color: var(--dark);
  background-attachment: scroll;
}
.page-hero--cover::before {
  /* black cover over the illustrated banner — darker top/bottom keeps the
     fixed nav and breadcrumb readable, the centre stays rich for the title */
  background: linear-gradient(
    to bottom,
    rgba(8,4,0,.82) 0%,
    rgba(8,4,0,.64) 45%,
    rgba(8,4,0,.86) 100%
  );
}
.page-hero--cover .page-hero-content { margin: 0 auto; }
.page-hero--cover .breadcrumb        { justify-content: center; }

/* ============================================================
   MENU PAGE
============================================================ */
.menu-page { padding: 5.5rem 0 8rem; }

.menu-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 4rem;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(201,160,80,.3);
  color: var(--text-muted);
  padding: .6rem 1.7rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--trans);
  border-radius: 0;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.menu-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.menu-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}

.menu-item {
  background: var(--white);
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 16px rgba(26,9,0,.06);
  transition: var(--trans);
}
.menu-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
/* Fixed square image area — every item image renders as the same 1:1 square */
.menu-item-img,
.menu-item-img-ph {
  width: 100%;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center 65%;
  display: block;
}
.menu-item-img-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,160,80,.14), rgba(201,160,80,.04));
  color: var(--gold);
  font-size: 2.6rem;
}
.menu-item-body {
  padding: 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .4rem;
}
.menu-item-desc {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.menu-item-tags { margin-top: .6rem; }
.menu-tag {
  display: inline-block;
  background: rgba(201,160,80,.1);
  color: var(--gold-dark);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .18rem .55rem;
  margin-right: .3rem;
}
.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-dark);
  white-space: nowrap;
  margin-top: auto;
  padding-top: 1rem;
}

/* ============================================================
   MENU ITEM POPUP (shared modal)
============================================================ */
.menu-item,
.feat-card { cursor: pointer; }

.mi-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.mi-modal.open { opacity: 1; visibility: visible; }

.mi-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,5,0,.78);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.mi-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border-radius: 5px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  transform: translateY(18px) scale(.97);
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
}
.mi-modal.open .mi-modal-dialog { transform: translateY(0) scale(1); }

.mi-modal-close {
  position: absolute;
  top: .8rem; right: .8rem;
  z-index: 2;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(13,5,0,.45);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--trans);
}
.mi-modal-close:hover { background: var(--gold); color: var(--dark); }

.mi-modal-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  overflow: hidden;
  background: #f3ece0;
}
/* Popup mirrors the menu card: same square crop + focal point (object-position set inline by JS). */
.mi-modal-img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 65%; }

.mi-modal-body { padding: 1.75rem 2rem 2rem; overflow-y: auto; }
.mi-modal-cat {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .5rem;
}
.mi-modal-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0 0 .85rem;
}
.mi-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: 1rem;
}
.mi-modal-tags .menu-tag { margin-right: 0; }
.mi-modal-desc {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.mi-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(13,5,0,.08);
  padding-top: 1.25rem;
}
.mi-modal-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-dark);
}

/* ============================================================
   PRICE VARIANTS (Small / Medium / Large …)
============================================================ */
.price-variant {
  display: inline-flex;
  align-items: baseline;
  gap: .45rem;
  white-space: nowrap;
}
.price-variant .pv-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.price-variant .pv-amount {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold-dark);
}

/* menu page — stacked at the bottom of the card */
.menu-item-price.has-variants {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .3rem;
  font-size: 1.05rem;
}

/* home featured cards — stacked on the left of the footer */
.feat-card-price.has-variants {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.feat-card-price.has-variants .pv-amount { font-size: 1.05rem; }

/* popup — larger, wraps across the footer */
.mi-modal-price.has-variants {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.75rem;
  width: 100%;
}
.mi-modal-price.has-variants .price-variant {
  flex-direction: column;
  align-items: flex-start;
  gap: .1rem;
}
.mi-modal-price.has-variants .pv-label { font-size: .63rem; }
.mi-modal-price.has-variants .pv-amount { font-size: 1.5rem; }

/* ============================================================
   LOCATIONS PAGE
============================================================ */
/* ============================================================
   STORE / LOCATION PAGE
============================================================ */
.store-page { padding: 5.5rem 0 8rem; background: var(--cream); }

/* ── Info card (left column) ── */
.store-info-card {
  background: var(--white);
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 2px 16px rgba(26,9,0,.06);
  border-top: 3px solid var(--gold);
}

.store-status-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .3rem .85rem;
  margin-bottom: 2rem;
}
.store-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.store-status-open          { background: rgba(39,174,96,.1);   color: #1e7e44; }
.store-status-open          .store-status-dot { background: #27ae60; }
.store-status-temporarily-closed { background: rgba(192,57,43,.1); color: #a93226; }
.store-status-temporarily-closed .store-status-dot { background: #c0392b; }
.store-status-coming-soon   { background: rgba(41,128,185,.1);  color: #1a6ea0; }
.store-status-coming-soon   .store-status-dot { background: #2980b9; }
.store-status-open-seasonally { background: rgba(201,160,80,.12); color: var(--gold-dark); }
.store-status-open-seasonally .store-status-dot { background: var(--gold); }

.store-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.store-detail-icon {
  width: 36px; height: 36px;
  background: rgba(201,160,80,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: .9rem;
}
.store-detail-text {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-top: .5rem;
}
.store-detail-text a:hover { color: var(--gold-dark); }

.store-directions-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  padding: .75rem 1.75rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--primary);
  background: var(--gold);
  transition: var(--trans);
}
.store-directions-btn:hover {
  background: var(--gold-dark);
  color: #fff;
  text-decoration: none;
}

/* ── Hours card (right column) ── */
.store-hours-card {
  background: var(--white);
  height: 100%;
  box-shadow: 0 2px 16px rgba(26,9,0,.06);
  overflow: hidden;
}

.store-hours-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--cream-dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}
.store-hours-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

.store-hours-list { padding: .5rem 0; }

.store-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 2rem;
  border-bottom: 1px solid rgba(240,232,213,.7);
  transition: background .2s;
}
.store-hours-row:last-child { border-bottom: none; }
.store-hours-row.is-today {
  background: rgba(201,160,80,.07);
}

.shrow-day {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: .65rem;
}
.store-hours-row.is-today .shrow-day { color: var(--gold-dark); }

.shrow-today-tag {
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--primary);
  padding: .15rem .5rem;
}

.shrow-time {
  font-size: .88rem;
  color: var(--text-muted);
  font-weight: 500;
}
.store-hours-row.is-today .shrow-time { color: var(--gold-dark); font-weight: 700; }

.shrow-closed {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c0392b;
}
.shrow-unknown { color: var(--cream-dark); }

/* ── Map ── */
.store-map-wrap {
  margin-top: 3rem;
  box-shadow: 0 2px 16px rgba(26,9,0,.08);
  overflow: hidden;
}
.store-map-iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: none;
}

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-story { padding: 7rem 0; background: var(--cream); }
.about-story .img-frame {
  position: relative;
}
.about-story .img-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: bottom;
  display: block;
}
.about-story .img-frame::after {
  content: '';
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  right: -1rem; bottom: -1rem;
  border: 2px solid var(--gold);
  z-index: -1;
}

/* Centre the "Where It All Began" header with a symmetric ornament (dash on both sides of the dots) */
.about-story .section-badge { display: block; text-align: center; }
.about-story .section-title { text-align: center; }
.about-story .ornament      { justify-content: center; }
.about-story .ornament::after {
  content: ''; flex: 0 0 50px; height: 1px; background: var(--gold);
}

.values-section { padding: 7rem 0; background: var(--dark); }
.value-card {
  text-align: center;
  padding: 2.75rem 2rem;
  border: 1px solid rgba(201,160,80,.1);
  height: 100%;
  transition: var(--trans);
}
.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
}
.value-icon {
  width: 72px; height: 72px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.65rem;
  color: var(--gold);
  transition: var(--trans);
}
.value-card:hover .value-icon {
  background: var(--gold);
  color: var(--dark);
}
.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .65rem;
}
.value-desc {
  font-size: .86rem;
  color: rgba(255,255,255,.48);
  line-height: 1.75;
  margin: 0;
}

.timeline-section { padding: 7rem 0; background: var(--cream-dark); }
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border-gold);
}
.tl-item {
  display: flex;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: flex-start;
  position: relative;
  width: 100%;
}
.tl-item:nth-child(even) { flex-direction: row-reverse; }
.tl-content {
  flex: 1;
  background: var(--white);
  padding: 2rem;
  box-shadow: 0 2px 20px rgba(26,9,0,.06);
  transition: var(--trans);
}
.tl-content:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.tl-year {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: 2px;
  margin-bottom: .5rem;
}
.tl-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem;
}
.tl-desc {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.tl-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 1.5rem;
  width: 14px; height: 14px;
  background: var(--gold);
  border: 3px solid var(--cream-dark);
  border-radius: 50%;
  z-index: 1;
}

.team-section { padding: 7rem 0; background: var(--cream); }
.team-card {
  text-align: center;
  transition: var(--trans);
}
.team-card:hover { transform: translateY(-8px); }
.team-img-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--gold);
  transition: var(--trans);
  position: relative;
}
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .25rem;
}
.team-role {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.team-bio {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: .75rem;
}

/* ============================================================
   FRANCHISE PAGE
============================================================ */
.franchise-section { padding: 7rem 0; }
.franchise-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 58px; height: 58px;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .45rem;
}
.step-content p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.invest-card {
  background: var(--white);
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--cream-dark);
  transition: var(--trans);
  height: 100%;
}
.invest-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.invest-card .amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: .3rem;
  line-height: 1;
}
.invest-card .invest-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.invest-card .invest-desc {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-page { padding: 5.5rem 0 8rem; background: var(--cream); }
.contact-info-card {
  background: var(--dark);
  padding: 3rem;
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.contact-info-item i {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,160,80,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-item h5 {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .3rem;
}
.contact-info-item p {
  font-size: .87rem;
  color: rgba(255,255,255,.5);
  margin: 0;
  line-height: 1.7;
}

.contact-form-card {
  background: var(--white);
  padding: 3rem;
  box-shadow: var(--shadow);
}
.contact-form-card .form-control {
  border: 1px solid rgba(201,160,80,.25);
  border-radius: 0;
  padding: .9rem 1.2rem;
  font-size: .9rem;
  line-height: 1.5;
  /* Size to the padding instead of Bootstrap's fixed height, so the selected
     option text in dropdowns isn't vertically clipped. */
  height: auto;
  color: var(--text-dark);
  font-family: 'Raleway', sans-serif;
  transition: var(--trans);
}
.contact-form-card .form-control:focus {
  border-color: var(--gold);
  box-shadow: none;
}
.contact-form-card label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .4rem;
}

/* ============================================================
   BACK TO TOP
============================================================ */
#back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--trans);
  z-index: 999;
}
#back-to-top.show {
  opacity: 1;
  transform: translateY(0);
}
#back-to-top:hover {
  background: var(--primary);
  color: var(--white);
}

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }
.reveal.d4 { transition-delay: .48s; }
.reveal.d5 { transition-delay: .60s; }

/* ============================================================
   FULL-SCREEN MOBILE OVERLAY MENU
============================================================ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;

  /* entry state */
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility .45s ease;
}
.mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* faint decorative word behind links */
.overlay-bg-word {
  position: absolute;
  bottom: -3rem;
  right: -2rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(7rem, 22vw, 16rem);
  font-weight: 800;
  color: rgba(201,160,80,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* left gold accent bar */
.overlay-accent-line {
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), rgba(201,160,80,0));
  pointer-events: none;
}

/* ── top bar ── */
.overlay-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2rem 1.6rem 2.5rem;
  border-bottom: 1px solid rgba(201,160,80,.08);
  flex-shrink: 0;

  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .4s ease .05s, transform .4s ease .05s;
}
.mobile-overlay.is-open .overlay-top {
  opacity: 1;
  transform: translateY(0);
}

.overlay-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .6rem;
  line-height: 1;
  text-decoration: none;
}
.overlay-brand .brand-wrap-col {
  display: flex;
  flex-direction: column;
}
.overlay-brand .brand-name {
  font-size: 1.35rem;
  letter-spacing: 2.5px;
}
.overlay-brand .brand-sub {
  text-align: left;
}
.overlay-brand .brand-logo-img {
  max-height: 38px;
  max-width: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

/* close × button inside overlay */
.overlay-close {
  width: 44px; height: 44px;
  background: rgba(201,160,80,.08);
  border: 1px solid rgba(201,160,80,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background .3s, border-color .3s;
}
.overlay-close:hover { background: var(--gold); border-color: var(--gold); }
.overlay-close:focus { outline: none; }
.overlay-close span {
  position: absolute;
  width: 18px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: background .3s;
}
.overlay-close:hover span { background: var(--dark); }
.overlay-close span:nth-child(1) { transform: rotate(45deg); }
.overlay-close span:nth-child(2) { transform: rotate(-45deg); }

/* ── nav links ── */
.overlay-nav {
  flex: 1;
  padding: 1.5rem 2rem 1rem 2.5rem;
  overflow-y: auto;
  display: flex;
  align-items: center;
}
.overlay-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.overlay-nav-item {
  border-bottom: 1px solid rgba(201,160,80,.07);
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .42s ease, transform .42s ease;
}
/* Staggered reveal */
.mobile-overlay.is-open .overlay-nav-item:nth-child(1) { opacity:1; transform:translateX(0); transition-delay:.12s; }
.mobile-overlay.is-open .overlay-nav-item:nth-child(2) { opacity:1; transform:translateX(0); transition-delay:.18s; }
.mobile-overlay.is-open .overlay-nav-item:nth-child(3) { opacity:1; transform:translateX(0); transition-delay:.24s; }
.mobile-overlay.is-open .overlay-nav-item:nth-child(4) { opacity:1; transform:translateX(0); transition-delay:.30s; }
.mobile-overlay.is-open .overlay-nav-item:nth-child(5) { opacity:1; transform:translateX(0); transition-delay:.36s; }
.mobile-overlay.is-open .overlay-nav-item:nth-child(6) { opacity:1; transform:translateX(0); transition-delay:.42s; }

.overlay-nav-item a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .95rem .9rem;
  margin: 0 -.9rem;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(255,255,255,.8);
  position: relative;
  -webkit-tap-highlight-color: transparent;
  transition: color .3s, background .3s, transform .15s ease;
}
.overlay-nav-item a:hover,
.overlay-nav-item a.active { color: var(--gold); text-decoration: none; }
.overlay-nav-item a:hover { background: rgba(201,160,80,.07); }
/* Tap feedback on touch screens */
.overlay-nav-item a:active {
  background: rgba(201,160,80,.16);
  transform: scale(.98);
}
.overlay-nav-item a.active { background: rgba(201,160,80,.1); }

.ol-num {
  font-family: 'Raleway', sans-serif;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(201,160,80,.45);
  flex-shrink: 0;
  width: 22px;
}
.overlay-nav-item a.active .ol-num,
.overlay-nav-item a:hover .ol-num { color: var(--gold); }

.ol-label {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 5.5vw, 2.4rem);
  font-weight: 700;
  flex: 1;
  line-height: 1.1;
}

.ol-arrow {
  color: rgba(201,160,80,.3);
  font-size: .75rem;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s, transform .3s, color .3s;
}
.overlay-nav-item a:hover .ol-arrow,
.overlay-nav-item a.active .ol-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--gold);
}

/* ── bottom bar ── */
.overlay-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.4rem 2rem 1.6rem 2.5rem;
  border-top: 1px solid rgba(201,160,80,.08);
  flex-shrink: 0;

  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s ease .48s, transform .4s ease .48s;
}
.mobile-overlay.is-open .overlay-bottom {
  opacity: 1;
  transform: translateY(0);
}

.overlay-contact-info {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
/* Clickable phone (tel:) — pill with hover + tap feedback */
.overlay-phone {
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .3px;
  color: rgba(255,255,255,.7);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .9rem;
  margin-left: -.9rem;
  border: 1px solid rgba(201,160,80,.22);
  border-radius: 999px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: var(--trans);
}
.overlay-phone i { color: var(--gold); width: 13px; }
.overlay-phone:hover {
  color: var(--dark);
  background: var(--gold);
  border-color: var(--gold);
}
.overlay-phone:hover i { color: var(--dark); }
.overlay-phone:active {
  transform: scale(.96);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.overlay-phone:active i { color: var(--dark); }

.overlay-social { display: flex; gap: .6rem; }
.overlay-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,160,80,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  font-size: .85rem;
  transition: var(--trans);
}
.overlay-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* prevent body scroll when overlay is open */
body.menu-open { overflow: hidden; }

/* ── hamburger must sit above overlay ── */
.menu-toggle { z-index: 2100; }

/* ============================================================
   RESPONSIVE
============================================================ */

/* ── Large (≤1199px): tighten desktop nav spacing ── */
@media (max-width: 1199px) {
  .nav-desktop .nav-link { padding: .45rem .7rem !important; font-size: .74rem; }
  .nav-cta-btn { padding: .55rem 1rem !important; }
}

/* ── Medium / Tablet (≤991px) ── */
@media (max-width: 991px) {
  .highlight-cards {
    grid-template-columns: repeat(2,1fr);
  }
  .hl-card:nth-child(2)   { border-right: none; }
  .hl-card:nth-child(3)   { border-top: 1px solid rgba(201,160,80,.1); border-right: none; grid-column: span 2; }
  .hl-card:last-child      { border-bottom: none; }

  /* keep the overlay image + gold overlay lines on smaller screens too */
  .about-image-wrap .img-accent {
    width: 150px; height: 150px;
    right: 1.25rem; bottom: -1.75rem;
    border-width: 6px;
  }

  /* Centre the Who We Are header + text with a symmetric ornament (dash on both sides of the dots) */
  .section-about .about-text           { text-align: center; }
  .section-about .about-text .ornament { justify-content: center; }
  .section-about .about-text .ornament::after {
    content: ''; flex: 0 0 50px; height: 1px; background: var(--gold);
  }
  .section-about .about-text blockquote { border-left: none; padding-left: 0; }

  .timeline::before { display: none; }
  .tl-item, .tl-item:nth-child(even) { flex-direction: column; gap: 1rem; }
  .tl-dot  { display: none; }
  .about-stats { gap: 1.75rem; }

  .page-hero { background-attachment: scroll; min-height: 42vh; }
  .hero      { background-attachment: scroll; }
  /* Our Story image — compact, centred, full (not a cropped strip) with its frame */
  .about-story .img-frame { width: 290px; max-width: 100%; margin-left: auto; margin-right: auto; }
  .about-story .img-frame img { height: auto; object-fit: contain; }
  .about-story .img-frame::after { top: 1rem; left: 1rem; right: -0.85rem; bottom: -0.85rem; }
}

/* ── Small (≤767px) ── */
@media (max-width: 767px) {
  /* Global type scale */
  .hero-title              { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .hero-subtitle           { font-size: 1rem; }
  .page-hero-title         { font-size: clamp(2rem, 8vw, 2.8rem); }
  .section-title           { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .section-lead            { font-size: .93rem; }

  /* Hero buttons stack */
  .hero-cta                { flex-direction: column; align-items: center; }
  .hero-cta .btn-gold,
  .hero-cta .btn-outline-gold { width: 100%; max-width: 280px; text-align: center; }

  /* Highlight cards: single column */
  .highlight-cards         { grid-template-columns: 1fr; }
  .hl-card                 { border-right: none; border-bottom: 1px solid rgba(201,160,80,.1); }
  .hl-card:nth-child(3)    { grid-column: auto; border-top: none; }
  .hl-card:last-child      { border-bottom: none; }

  /* About section — compact, centred image with its frame + overlay */
  .about-image-wrap { width: 290px; max-width: 100%; margin-left: auto; margin-right: auto; }
  .about-image-wrap .img-main { height: auto; object-fit: contain; }
  .about-image-wrap .img-accent { width: 120px; height: 120px; right: -0.6rem; bottom: -1.25rem; border-width: 5px; }
  .about-image-wrap::before { top: 1rem; left: 1rem; right: -0.85rem; bottom: -0.85rem; }

  .section-about, .section-featured, .section-news { padding: 4.5rem 0; }
  .about-stats             { gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
  .stat-number             { font-size: 2.2rem; }

  /* Menu items: keep the square aspect on small screens too */
  .menu-item-img,
  .menu-item-img-ph        { height: auto; aspect-ratio: 1 / 1; }

  /* Menu filter: wrap nicely */
  .menu-filter             { gap: .4rem; }
  .filter-btn              { padding: .5rem 1.1rem; font-size: .68rem; }

  /* Newsletter */
  .newsletter-input-wrap   { flex-direction: column; }
  .newsletter-input-wrap input {
    border-right: 1px solid rgba(201,160,80,.3);
    border-bottom: none;
  }
  .newsletter-input-wrap button { width: 100%; padding: .95rem; }
  .section-newsletter      { padding: 4.5rem 0; }

  /* Franchise steps */
  .franchise-step          { gap: 1rem; }
  .step-num                { width: 48px; height: 48px; font-size: 1.2rem; }

  /* Contact */
  .contact-form-card,
  .contact-info-card        { padding: 1.75rem; }

  /* Sections with padded pages */
  .menu-page, .store-page, .contact-page { padding: 3.5rem 0 5rem; }

  /* Timeline */
  .tl-content              { padding: 1.5rem; }

  /* Investment cards */
  .invest-card             { padding: 1.75rem; }

  /* Footer columns tighten */
  .site-footer             { padding: 3.5rem 0 0; }
  .footer-bottom           { margin-top: 2.5rem; }
}

/* ── Extra-small (≤480px) ── */
@media (max-width: 480px) {
  .hero-title              { font-size: 2.1rem; }
  .hero-ornament::before,
  .hero-ornament::after    { flex: 0 0 35px; }
  .hero-scroll             { display: none; }

  /* Page hero shorter on tiny screens */
  .page-hero               { min-height: 34vh; }
  .page-hero-badge         { font-size: .62rem; }

  /* News cards: reduce padding */
  .news-body               { padding: 1.5rem; }

  /* Store page */
  .store-info-card         { padding: 1.75rem; }
  .store-hours-row         { padding: .75rem 1.25rem; }
  .store-hours-header      { padding: 1.25rem; }
  .store-map-iframe        { height: 280px; }

  /* overlay nav label slightly smaller */
  .ol-label                { font-size: 1.5rem; }

  /* Team img */
  .team-img-wrap           { width: 150px; height: 150px; }

  /* Feat card on homepage — keep the 1:1 menu-card crop on mobile too */
  .feat-card-img           { height: auto; aspect-ratio: 1 / 1; }

  /* Highlight card padding */
  .hl-card                 { padding: 2.2rem 1.5rem; }

  /* About section less padding */
  .section-about, .values-section, .timeline-section, .team-section { padding: 4rem 0; }
  .about-story, .franchise-section { padding: 4rem 0; }
}

/* ══════════════════════════════════════════
   HOME — VISIT OUR STORE
═══════════════════════════════════════════ */
.section-store { padding: 6rem 0; background: var(--cream); }

.home-store-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 6px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 2px 24px rgba(26,9,0,.07);
  border-top: 3px solid var(--gold);
}

.home-store-card .store-status-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.home-store-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
}

.home-store-line {
  font-size: 1.05rem;
  margin-bottom: .6rem;
  color: var(--ink, #2b1d12);
}
.home-store-line i { color: var(--gold); }
.home-store-line a { color: inherit; text-decoration: none; }
.home-store-line a:hover { color: var(--gold-dark); }

.home-store-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 575px) {
  .section-store { padding: 4rem 0; }
  .home-store-card { padding: 2rem 1.25rem; }
  .home-store-actions { flex-direction: column; }
  .home-store-actions .btn-gold,
  .home-store-actions .btn-outline-gold { width: 100%; }
}

/* ── Highlight strip on small screens: keep only the two middle cards
      (Visit Us in Toronto + Since 1978) and close the gap to the next section ── */
@media (max-width: 767px) {
  .hl-card:first-child,
  .hl-card:last-child   { display: none; }
  .hl-card              { padding: 2.2rem 1.5rem; border-bottom: 1px solid rgba(201,160,80,.1); }
  .hl-card:nth-child(3) { border-bottom: none; padding-bottom: 1.4rem; }
  .section-about        { padding-top: 2.4rem; }
}

/* ══════════════════════════════════════════
   UNSUBSCRIBE PAGE
═══════════════════════════════════════════ */
.unsubscribe-page {
  min-height: 68vh;
  padding: 9rem 0 5.5rem;
  background:
    linear-gradient(rgba(245,240,232,.92), rgba(245,240,232,.96)),
    url('../uploads/ai/storybg.png') center/cover no-repeat;
}

.unsubscribe-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(201,160,80,.25);
  box-shadow: 0 18px 55px rgba(26,9,0,.12);
  padding: 3rem;
  text-align: center;
  position: relative;
}

.unsubscribe-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.unsubscribe-icon.is-neutral {
  background: rgba(201,160,80,.12);
  color: var(--gold-dark);
}
.unsubscribe-icon.is-success {
  background: rgba(39,174,96,.12);
  color: #1e874b;
}

.unsubscribe-card h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  line-height: 1.1;
  color: var(--ink, #2b1d12);
  margin: 1rem 0 1.2rem;
}

.unsubscribe-copy {
  max-width: 560px;
  margin: 0 auto 1.6rem;
  color: var(--muted, #7a6050);
  line-height: 1.8;
  font-size: 1rem;
}

.unsubscribe-alert {
  text-align: left;
  margin: 1.25rem 0 1.6rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--gold);
  background: #fdf8ef;
  color: var(--ink, #2b1d12);
}
.unsubscribe-alert strong,
.unsubscribe-alert span {
  display: block;
}
.unsubscribe-alert span {
  margin-top: .25rem;
  color: var(--muted, #7a6050);
  line-height: 1.6;
}
.unsubscribe-alert.is-success {
  border-left-color: #27ae60;
  background: rgba(39,174,96,.08);
}
.unsubscribe-alert.is-warning {
  border-left-color: #e67e22;
  background: rgba(230,126,34,.08);
}

.unsubscribe-form {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.unsubscribe-submit {
  border: 0;
  display: inline-block;
  padding: .85rem 1.4rem;
  cursor: pointer;
}

@media (max-width: 575px) {
  .unsubscribe-page {
    padding: 7.5rem 0 4rem;
  }
  .unsubscribe-card {
    padding: 2rem 1.25rem;
  }
}
