/* ==========================================================================
   Oasis Eatery — Design Tokens
   ========================================================================== */
:root {
  --cream-white: #fffdf8;
  --cream: #fbf3e6;
  --cream-dark: #f2e2c8;
  --espresso: #362317;
  --espresso-light: #5c4530;
  --amber: #c07a2e;
  --amber-dark: #9c5f1f;
  --amber-light: #e5ac67;
  --rust: #a8442c;
  --rust-dark: #8a3521;
  --sage: #6b7a52;
  --line: rgba(54, 35, 23, 0.1);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;

  --shadow-sm: 0 2px 10px rgba(54, 35, 23, 0.08);
  --shadow-md: 0 10px 30px rgba(54, 35, 23, 0.12);
  --shadow-lg: 0 25px 60px rgba(54, 35, 23, 0.18);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;

  --bar-h: 44px;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--bar-h) + var(--nav-h) + 12px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--espresso);
  background: var(--cream-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.15; color: var(--espresso); }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
}

section { padding: 96px 0; position: relative; }
@media (max-width: 760px) { section { padding: 64px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--amber);
  display: inline-block;
}

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 600; }
.section-head p { margin-top: 16px; font-size: 1.05rem; color: var(--espresso-light); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--espresso); color: var(--cream-white);
  padding: 10px 16px; border-radius: 8px; z-index: 1000;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px; font-weight: 600; font-size: 0.98rem;
  border: 2px solid transparent; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-primary { background: var(--rust); color: var(--cream-white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--rust-dark); box-shadow: var(--shadow-md); }

.btn-secondary { background: transparent; border-color: var(--espresso); color: var(--espresso); }
.btn-secondary:hover { background: var(--espresso); color: var(--cream-white); }

.btn-ghost { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.5); color: var(--cream-white); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,0.28); }

.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

/* ==========================================================================
   Top Notification Bar
   ========================================================================== */
.notice-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  height: var(--bar-h);
  background: linear-gradient(90deg, var(--espresso), var(--espresso-light));
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; padding: 0 16px; text-align: center; gap: 10px;
}
.notice-bar a {
  color: var(--amber-light); font-weight: 700; text-decoration: underline;
  text-underline-offset: 3px; white-space: nowrap;
}
.notice-bar a:hover { color: var(--cream-white); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.site-header {
  position: fixed; top: var(--bar-h); left: 0; right: 0; z-index: 1050;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255, 253, 248, 0.75);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 6px 24px rgba(54,35,23,0.06); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: conic-gradient(from 210deg, var(--amber), var(--rust), var(--amber-light), var(--amber));
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-white); font-size: 1.1rem; box-shadow: var(--shadow-sm);
}

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.95rem; font-weight: 500; color: var(--espresso-light);
  position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0%;
  background: var(--amber); transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--espresso); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none; background: none; border: none; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--espresso); transition: all 0.3s var(--ease); }

@media (max-width: 920px) {
  .nav-links { position: fixed; top: calc(var(--bar-h) + var(--nav-h)); left: 0; right: 0;
    background: var(--cream-white); flex-direction: column; align-items: flex-start;
    padding: 24px; gap: 20px; box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: all 0.3s var(--ease); border-bottom: 1px solid var(--line);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-secondary { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding-top: calc(var(--bar-h) + var(--nav-h) + 72px);
  padding-bottom: 96px;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 900px 600px at 85% -10%, rgba(192,122,46,0.22), transparent 60%),
    radial-gradient(ellipse 700px 500px at -10% 110%, rgba(168,68,44,0.16), transparent 60%),
    var(--cream);
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5; mix-blend-mode: multiply;
  background-image: radial-gradient(rgba(54,35,23,0.045) 1px, transparent 1px);
  background-size: 3px 3px;
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
@media (max-width: 940px) { .hero-inner { grid-template-columns: 1fr; text-align: center; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cream-white); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 18px 8px 8px; box-shadow: var(--shadow-sm); font-size: 0.88rem; font-weight: 600;
  margin-bottom: 26px;
}
.hero-badge .stars { color: var(--amber); }
.hero-badge .pill { background: var(--espresso); color: var(--cream-white); border-radius: 999px; padding: 3px 10px; font-size: 0.75rem; }

.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 600; letter-spacing: -0.01em; }
.hero .tagline { font-family: var(--font-display); font-style: italic; color: var(--amber-dark); font-size: clamp(1.15rem, 2vw, 1.5rem); margin-top: 10px; }
.hero .lead { margin-top: 22px; font-size: 1.12rem; color: var(--espresso-light); max-width: 54ch; }
@media (max-width: 940px) { .hero .lead { margin-inline: auto; } }

.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
@media (max-width: 940px) { .hero-tags { justify-content: center; } }
.tag-chip {
  background: var(--cream-white); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; font-size: 0.85rem; font-weight: 600; color: var(--espresso-light);
  display: inline-flex; align-items: center; gap: 8px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
@media (max-width: 940px) { .hero-actions { justify-content: center; } }

.hero-stats { display: flex; gap: 36px; margin-top: 52px; }
@media (max-width: 940px) { .hero-stats { justify-content: center; } }
.stat .num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; color: var(--rust); }
.stat .label { font-size: 0.82rem; color: var(--espresso-light); letter-spacing: 0.02em; }

.hero-visual {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--amber) 0%, var(--rust) 55%, var(--espresso) 130%);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.hero-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(54,35,23,0.35), transparent 40%);
}
.hero-visual-card {
  position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 3;
  background: rgba(255,253,248,0.92); backdrop-filter: blur(10px);
  border-radius: var(--radius-md); padding: 18px 20px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px;
}
.hero-visual-card .icon { font-size: 1.6rem; }
.hero-visual-card strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.hero-visual-card span { font-size: 0.82rem; color: var(--espresso-light); }

/* ==========================================================================
   Marquee strip
   ========================================================================== */
.marquee-strip {
  background: var(--espresso); color: var(--cream); padding: 16px 0; overflow: hidden;
}
.marquee-track { display: flex; gap: 48px; white-space: nowrap; animation: marquee 28s linear infinite; width: max-content; }
.marquee-track span { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; opacity: 0.85; }
.marquee-track span::after { content: "•"; margin-left: 48px; color: var(--amber-light); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   Reveal Animations
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal-scale] { opacity: 0; transform: scale(0.94); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-reveal-scale].in-view { opacity: 1; transform: scale(1); }
.stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ==========================================================================
   About
   ========================================================================== */
.about { background: var(--cream-white); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

.about-art { position: relative; aspect-ratio: 1/1; }
.about-art .blob {
  position: absolute; inset: 6%; border-radius: 42% 58% 64% 36% / 45% 40% 60% 55%;
  background: linear-gradient(150deg, var(--amber-light), var(--amber) 55%, var(--rust));
  box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center;
  animation: blobmorph 12s ease-in-out infinite alternate;
}
@keyframes blobmorph {
  0% { border-radius: 42% 58% 64% 36% / 45% 40% 60% 55%; }
  100% { border-radius: 58% 42% 38% 62% / 55% 60% 40% 45%; }
}
.about-art svg { width: 46%; height: 46%; }
.about-art .float-badge {
  position: absolute; top: 6%; right: -4%; background: var(--cream-white);
  border-radius: 50%; width: 108px; height: 108px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; box-shadow: var(--shadow-md); text-align: center;
  animation: floaty 5s ease-in-out infinite;
}
.about-art .float-badge strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--rust); }
.about-art .float-badge span { font-size: 0.65rem; color: var(--espresso-light); letter-spacing: 0.04em; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.about-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 22px; }
.about-copy p { color: var(--espresso-light); font-size: 1.05rem; margin-bottom: 18px; }
.about-copy p strong { color: var(--espresso); }

.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.fact-card {
  background: var(--cream); border-radius: var(--radius-sm); padding: 18px 20px;
  border: 1px solid var(--line);
}
.fact-card .icon { font-size: 1.4rem; margin-bottom: 8px; display: block; }
.fact-card strong { display: block; font-family: var(--font-display); font-size: 1rem; margin-bottom: 2px; }
.fact-card span { font-size: 0.85rem; color: var(--espresso-light); }

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.why { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--cream-white); border-radius: var(--radius-md); padding: 32px 26px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.why-card .icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(155deg, var(--amber-light), var(--amber));
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  margin-bottom: 20px; color: var(--cream-white); box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease);
}
.why-card:hover .icon-wrap { transform: rotate(-8deg) scale(1.06); }
.why-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.why-card p { color: var(--espresso-light); font-size: 0.96rem; }

/* ==========================================================================
   Menu / Favourites
   ========================================================================== */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .menu-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .menu-grid { grid-template-columns: 1fr; } }

.dish-card {
  border-radius: var(--radius-md); padding: 30px 24px; position: relative; overflow: hidden;
  background: var(--cream-white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dish-icon {
  width: 64px; height: 64px; border-radius: 50%; margin-bottom: 18px;
  background: radial-gradient(circle at 35% 30%, var(--amber-light), var(--amber) 70%);
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
  box-shadow: inset 0 -6px 12px rgba(54,35,23,0.15);
}
.dish-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.dish-card p { color: var(--espresso-light); font-size: 0.93rem; }
.dish-card .badge {
  position: absolute; top: 18px; right: 18px; background: var(--rust); color: var(--cream-white);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em; padding: 5px 10px; border-radius: 999px;
  text-transform: uppercase;
}
.menu-note {
  margin-top: 34px; text-align: center; color: var(--espresso-light); font-size: 0.92rem;
  font-style: italic;
}

/* ==========================================================================
   Dining Experience
   ========================================================================== */
.experience { background: linear-gradient(155deg, var(--espresso), #241609); color: var(--cream); overflow: hidden; }
.experience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 860px) { .experience-grid { grid-template-columns: 1fr; } }
.experience .eyebrow { color: var(--amber-light); }
.experience .eyebrow::before { background: var(--amber-light); }
.experience h2 { color: var(--cream-white); }
.experience p { color: rgba(251,243,230,0.78); font-size: 1.05rem; margin-top: 18px; }
.experience-points { margin-top: 30px; display: flex; flex-direction: column; gap: 18px; }
.experience-point { display: flex; gap: 16px; align-items: flex-start; }
.experience-point .num {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(229,172,103,0.5);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display);
  color: var(--amber-light); flex-shrink: 0; font-size: 0.95rem;
}
.experience-point strong { display: block; margin-bottom: 4px; color: var(--cream-white); }
.experience-point span { color: rgba(251,243,230,0.7); font-size: 0.92rem; }

.experience-clock {
  position: relative; aspect-ratio: 1/1; max-width: 380px; margin-inline: auto; width: 100%;
}
.experience-clock .ring {
  position: absolute; inset: 0; border-radius: 50%; border: 1px dashed rgba(229,172,103,0.35);
  animation: spin 40s linear infinite;
}
.experience-clock .ring2 { inset: 10%; border-color: rgba(229,172,103,0.2); animation-duration: 60s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.experience-clock .core {
  position: absolute; inset: 18%; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--amber-light), var(--amber) 60%, var(--rust));
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.experience-clock .core strong { font-family: var(--font-display); font-size: 2.2rem; color: var(--espresso); }
.experience-clock .core span { font-size: 0.8rem; color: var(--espresso); opacity: 0.8; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews { background: var(--cream); }
.rating-summary {
  display: flex; align-items: center; gap: 28px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px; background: var(--cream-white); border-radius: var(--radius-md);
  padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.rating-big { text-align: center; }
.rating-big .num { font-family: var(--font-display); font-size: 3.2rem; color: var(--rust); font-weight: 600; }
.rating-big .stars { color: var(--amber); font-size: 1.3rem; margin: 4px 0; }
.rating-big .count { color: var(--espresso-light); font-size: 0.9rem; }
.rating-divider { width: 1px; height: 60px; background: var(--line); }
.rating-source { display: flex; gap: 10px; align-items: center; font-size: 0.9rem; color: var(--espresso-light); }
.rating-source strong { color: var(--espresso); }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .review-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--cream-white); border-radius: var(--radius-md); padding: 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review-card .quote-mark { font-family: var(--font-display); font-size: 3rem; color: var(--amber-light); line-height: 1; margin-bottom: 6px; }
.review-card .stars { color: var(--amber); margin-bottom: 12px; letter-spacing: 2px; }
.review-card p { font-size: 0.98rem; color: var(--espresso-light); margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer .avatar {
  width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(155deg, var(--amber-light), var(--rust));
  color: var(--cream-white); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600;
}
.reviewer strong { font-size: 0.92rem; display: block; }
.reviewer span { font-size: 0.78rem; color: var(--espresso-light); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 800px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--cream-white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; transition: box-shadow 0.3s var(--ease);
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 1.02rem; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; position: relative; transition: transform 0.3s var(--ease);
}
.faq-item summary .plus::before, .faq-item summary .plus::after {
  content: ""; position: absolute; background: var(--amber-dark);
}
.faq-item summary .plus::before { width: 12px; height: 2px; }
.faq-item summary .plus::after { width: 2px; height: 12px; transition: opacity 0.2s ease; }
.faq-item[open] summary .plus { transform: rotate(180deg); background: var(--amber); border-color: var(--amber); }
.faq-item[open] summary .plus::before, .faq-item[open] summary .plus::after { background: var(--cream-white); }
.faq-item[open] summary .plus::after { opacity: 0; }
.faq-item .faq-a { padding: 0 24px 22px; color: var(--espresso-light); font-size: 0.96rem; max-width: 68ch; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { background: var(--espresso); color: var(--cream); }
.contact .eyebrow { color: var(--amber-light); }
.contact .eyebrow::before { background: var(--amber-light); }
.contact .section-head h2 { color: var(--cream-white); }
.contact .section-head p { color: rgba(251,243,230,0.75); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start; background: rgba(255,253,248,0.06);
  border: 1px solid rgba(255,253,248,0.14); border-radius: var(--radius-sm); padding: 20px;
  transition: background 0.3s ease;
}
.contact-card:hover { background: rgba(255,253,248,0.1); }
.contact-card .icon {
  width: 44px; height: 44px; border-radius: 12px; background: rgba(229,172,103,0.16);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-card strong { display: block; margin-bottom: 4px; color: var(--cream-white); }
.contact-card span, .contact-card a { color: rgba(251,243,230,0.75); font-size: 0.94rem; }
.contact-card a:hover { color: var(--amber-light); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 4px; }
.hours-table td { padding: 3px 0; font-size: 0.9rem; color: rgba(251,243,230,0.75); }
.hours-table td:last-child { text-align: right; color: var(--cream-white); font-weight: 500; }
.hours-table tr.today td { color: var(--amber-light); font-weight: 600; }

.map-frame {
  border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,253,248,0.14); aspect-ratio: 4/3.4;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.contact-actions { display: flex; gap: 14px; margin-top: 20px; flex-wrap: wrap; }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
  background: linear-gradient(140deg, var(--amber) 0%, var(--rust) 60%, var(--espresso) 130%);
  color: var(--cream-white); text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1.5px, transparent 1.5px);
  background-size: 26px 26px; opacity: 0.4;
}
.final-cta-inner { position: relative; z-index: 2; }
.final-cta h2 { color: var(--cream-white); font-size: clamp(2rem, 4.4vw, 3rem); }
.final-cta p { margin-top: 16px; font-size: 1.1rem; opacity: 0.92; max-width: 56ch; margin-inline: auto; }
.final-cta .hero-actions { justify-content: center; margin-top: 34px; }
.final-cta .btn-primary { background: var(--espresso); }
.final-cta .btn-primary:hover { background: #241609; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: #241609; color: rgba(251,243,230,0.7); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }
.footer-brand .brand { color: var(--cream-white); margin-bottom: 14px; }
.footer-brand p { font-size: 0.92rem; max-width: 42ch; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(251,243,230,0.2);
  display: flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease);
}
.footer-social a:hover { background: var(--amber); border-color: var(--amber); transform: translateY(-3px); }
.footer-col h4 { color: var(--cream-white); font-size: 0.95rem; margin-bottom: 18px; letter-spacing: 0.03em; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; font-size: 0.92rem; }
.footer-col a:hover { color: var(--amber-light); }
.footer-bottom {
  border-top: 1px solid rgba(251,243,230,0.12); padding-top: 26px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem;
}
.footer-bottom .disclaimer { max-width: 60ch; opacity: 0.75; }

/* ==========================================================================
   Misc
   ========================================================================== */
::selection { background: var(--amber); color: var(--cream-white); }

.back-to-top {
  position: fixed; right: 24px; bottom: 24px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--rust); color: var(--cream-white); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); border: none; font-size: 1.2rem; z-index: 900;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all 0.3s var(--ease);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--rust-dark); transform: translateY(-4px); }
