/* ============================================
   IULIUS FOOD & EVENTS — Landing Page
   ============================================ */

:root {
  --gold: #c9a961;
  --gold-dark: #a8893f;
  --gold-light: #e4cc92;
  --ink: #1a1612;
  --ink-soft: #2d2822;
  --cream: #faf7f2;
  --cream-dark: #f1ece3;
  --text: #3a342c;
  --text-muted: #6b645a;
  --line: #e5ded2;
  --white: #ffffff;

  --shadow-sm: 0 2px 8px rgba(26, 22, 18, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 22, 18, 0.08);
  --shadow-lg: 0 20px 60px rgba(26, 22, 18, 0.12);

  --radius: 8px;
  --radius-lg: 16px;

  --container: 1200px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

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

/* ============ TYPOGRAPHY HELPERS ============ */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 1px;
  background: var(--gold);
}
.eyebrow--light { color: var(--gold-light); }
.eyebrow--light::before { background: var(--gold-light); }

.section__title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 20px;
}
.section__title--light { color: var(--white); }
.section__title em { font-style: italic; color: var(--gold); }

.lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
}
.lede--light { color: rgba(255, 255, 255, 0.85); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .25s var(--ease);
  white-space: nowrap;
  text-align: center;
  font-family: inherit;
}

.btn--primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,0.55) 50%, transparent 75%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
  z-index: -1;
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 169, 97, 0.4);
}
.btn--primary:hover::after { transform: translateX(120%); }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--white); }

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

.btn--ghost {
  background: transparent;
  color: var(--ink);
  padding: 10px 18px;
  font-size: 13px;
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-dark); }

.btn--block { width: 100%; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(250, 247, 242, 0);
  transition: background .3s var(--ease), padding .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand__mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 18px;
  border-radius: 6px;
  letter-spacing: -0.02em;
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 18px; }
.brand__sub { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); margin-top: 3px; }

.nav--light .brand,
.hero ~ * .brand { color: inherit; }

.nav__links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.nav__links a {
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s var(--ease);
}
.nav__links a:hover { color: var(--gold-dark); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { flex-shrink: 0; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Nav appears light over the dark hero, then flips when scrolled past */
.nav:not(.is-scrolled) .brand,
.nav:not(.is-scrolled) .nav__links a { color: var(--white); }
.nav:not(.is-scrolled) .brand__sub { color: var(--gold-light); }
.nav:not(.is-scrolled) .brand__mark { background: rgba(255,255,255,0.08); color: var(--gold); }
.nav:not(.is-scrolled) .btn--ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
}
.nav:not(.is-scrolled) .btn--ghost:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}
.nav:not(.is-scrolled) .nav__toggle span { background: var(--white); }

/* ============ OPEN / CLOSED BADGE ============ */
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  backdrop-filter: blur(8px);
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.nav.is-scrolled .open-badge {
  background: rgba(26,22,18,0.04);
  border-color: var(--line);
  color: var(--ink);
}

.open-badge__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #999;
  position: relative;
  flex-shrink: 0;
}
.open-badge[data-state="open"] .open-badge__dot {
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: dotPulse 2s ease-out infinite;
}
.open-badge[data-state="closed"] .open-badge__dot { background: #f87171; }
.open-badge[data-state="loading"] .open-badge__dot {
  background: var(--gold);
  animation: loadingPulse 1.2s ease-in-out infinite;
}
@keyframes loadingPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50%      { opacity: 1;   transform: scale(1.1); }
}

@keyframes dotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: all .25s var(--ease);
}

/* When hero is visible, nav text stays dark (cream bg is light anyway) */

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
  color: var(--white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201, 169, 97, 0.25), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(201, 169, 97, 0.15), transparent 50%),
    linear-gradient(135deg, #1a1612 0%, #2d2822 50%, #1a1612 100%);
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23c9a961' stroke-opacity='0.04' stroke-width='1'%3E%3Cpath d='M30 0l30 30-30 30L0 30z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 40%, rgba(201, 169, 97, 0.3) 0%, transparent 40%);
  filter: blur(40px);
  opacity: 0.7;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 20px); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26,22,18,0.4) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero__title {
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

/* Line-by-line reveal */
.hero__line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
}
.hero__line-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: lineUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}
.hero__line:nth-child(2) .hero__line-inner { animation-delay: 0.45s; }
@keyframes lineUp {
  to { transform: translateY(0); opacity: 1; }
}

.hero__lede,
.hero__cta,
.hero__meta,
.hero .eyebrow {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero .eyebrow  { animation-delay: 0.1s; }
.hero__lede     { animation-delay: 0.75s; }
.hero__cta      { animation-delay: 0.9s; }
.hero__meta     { animation-delay: 1.05s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Mouse-tracking glow */
.hero__glow {
  position: absolute;
  pointer-events: none;
  width: 600px; height: 600px;
  left: var(--mx, 50%); top: var(--my, 50%);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,169,97,0.22) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  z-index: 1;
  mix-blend-mode: screen;
  filter: blur(20px);
}
.hero.is-hovered .hero__glow { opacity: 1; }

.hero__lede {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}
.hero__cta .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.hero__cta .btn--outline:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.hero__meta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__meta-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--gold);
  font-weight: 600;
}
.hero__meta-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.hero__meta-divider {
  width: 1px; height: 32px;
  background: rgba(255,255,255,0.2);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 46px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}
@keyframes scroll {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 18px); }
}

/* ============ STARS ============ */
.stars {
  display: inline-flex;
  gap: 3px;
}
.stars span {
  width: 16px; height: 16px;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.stars--sm span { width: 12px; height: 12px; }

/* ============ SECTIONS ============ */
.section {
  padding: 100px 0;
  position: relative;
}
.section--muted { background: var(--cream-dark); }

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section__head .eyebrow { padding-left: 0; }
.section__head .eyebrow::before { display: none; }
.section__lede { margin: 0 auto; }

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

/* ============ ABOUT ============ */
.checklist {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 14px;
}
.checklist li {
  position: relative;
  padding-left: 36px;
  font-weight: 500;
  color: var(--ink);
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231a1612' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.about__image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__image-inner {
  position: absolute;
  inset: -10% 0;
  background:
    linear-gradient(135deg, rgba(201,169,97,0.15) 0%, rgba(26,22,18,0.25) 100%),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=800&q=80') center/cover;
  transform: translateY(var(--parallax, 0));
  transition: transform .15s linear;
  will-change: transform;
}
.about__image:hover .about__image-inner { filter: brightness(1.05); }

.about__badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about__badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.about__badge-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============ SERVICES ============ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), transform .4s var(--ease);
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}
.service:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service > * { transform: translateZ(20px); }
.service .service__icon { transform: translateZ(40px); }
.service__icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  border-radius: 12px;
  margin-bottom: 24px;
}
.service h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.service p {
  color: var(--text-muted);
  margin-bottom: 20px;
}
.service__price {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding-top: 16px;
  border-top: 1px solid var(--line);
  width: 100%;
}
.service--featured {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--white);
  border-color: transparent;
}
.service--featured h3 { color: var(--white); }
.service--featured p { color: rgba(255,255,255,0.75); }
.service--featured .service__price {
  color: var(--gold);
  border-top-color: rgba(255,255,255,0.15);
}
.service__ribbon {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ============ MENU ============ */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  padding: 6px;
  background: var(--cream-dark);
  border-radius: 50px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.menu-tab {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  color: var(--text);
  transition: all .25s var(--ease);
  font-family: inherit;
}
.menu-tab:hover { color: var(--ink); }
.menu-tab.is-active {
  background: var(--ink);
  color: var(--gold);
}

.menu {
  max-width: 900px;
  margin: 0 auto;
}
.menu-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  animation: fadeIn .4s var(--ease);
}
.menu-panel.is-active { display: grid; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Stagger items inside the active panel */
.menu-panel.is-active .menu-item {
  opacity: 0;
  animation: itemIn .6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.menu-panel.is-active .menu-item:nth-child(1)  { animation-delay: .05s; }
.menu-panel.is-active .menu-item:nth-child(2)  { animation-delay: .12s; }
.menu-panel.is-active .menu-item:nth-child(3)  { animation-delay: .19s; }
.menu-panel.is-active .menu-item:nth-child(4)  { animation-delay: .26s; }
.menu-panel.is-active .menu-item:nth-child(5)  { animation-delay: .33s; }
.menu-panel.is-active .menu-item:nth-child(6)  { animation-delay: .40s; }
.menu-panel.is-active .menu-item:nth-child(7)  { animation-delay: .47s; }
.menu-panel.is-active .menu-item:nth-child(8)  { animation-delay: .54s; }
.menu-panel.is-active .menu-item:nth-child(n+9){ animation-delay: .60s; }
@keyframes itemIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-item {
  transition: transform .25s var(--ease);
}
.menu-item:hover { transform: translateX(4px); }
.menu-item:hover h4 { color: var(--gold-dark); }
.menu-item h4 { transition: color .2s var(--ease); }

.menu-item {
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--line);
}
.menu-item__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.menu-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
}
.menu-item__dots {
  flex: 1;
  border-bottom: 2px dotted var(--line);
  margin-bottom: 6px;
}
.menu-item__price {
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 16px;
  flex-shrink: 0;
}
.menu-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.menu__note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 48px;
  font-style: italic;
}

.menu-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 0;
  color: var(--text-muted);
  font-size: 14px;
}
.menu-loading__spinner {
  width: 32px; height: 32px;
  border: 3px solid var(--cream-dark);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.menu-empty {
  text-align: center;
  padding: 40px 0;
  color: var(--text-muted);
  font-style: italic;
}

/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden;
  padding: 28px 0;
  background: var(--ink);
  color: var(--gold);
  border-top: 1px solid rgba(201,169,97,0.18);
  border-bottom: 1px solid rgba(201,169,97,0.18);
  position: relative;
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }

.marquee__track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
  width: max-content;
}
.marquee__dot {
  color: var(--gold);
  font-style: normal;
  font-size: 0.7em;
  opacity: 0.6;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ EVENTS ============ */
.events {
  color: var(--white);
  overflow: hidden;
}
.events__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,22,18,0.92), rgba(45,40,34,0.92)),
    url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1600&q=80') center/cover fixed;
}
.events__content {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0;
}
.event-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,169,97,0.2);
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all .3s var(--ease);
}
.event-card:hover {
  background: rgba(201,169,97,0.1);
  border-color: var(--gold);
  transform: translateY(-6px);
}
.event-card:hover .event-card__icon {
  transform: scale(1.15) rotate(-6deg);
}
.event-card__icon {
  transition: transform .35s var(--ease);
}
.event-card__icon { font-size: 32px; margin-bottom: 12px; }
.event-card h4 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}
.event-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.events__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ============ REVIEWS ============ */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.review blockquote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 20px 0 24px;
  flex: 1;
  font-style: italic;
  position: relative;
}
.review blockquote::before {
  content: '“';
  position: absolute;
  top: -30px; left: -8px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.review__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.review__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
}
.review__name {
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
}
.review__source {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============ CONTACT ============ */
.grid-2--contact { gap: 60px; align-items: start; }

.contact-list {
  list-style: none;
  display: grid;
  gap: 20px;
  margin: 32px 0 40px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-list__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--cream-dark);
  color: var(--gold-dark);
  border-radius: 10px;
}
.contact-list strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  margin-bottom: 2px;
}
.contact-list a, .contact-list span {
  color: var(--text-muted);
  font-size: 15px;
}
.contact-list a:hover { color: var(--gold-dark); }

.contact-form {
  display: grid;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 6px;
}
.contact-form span {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,97,0.15);
}
.contact-form textarea { resize: vertical; }

.form-note {
  font-size: 14px;
  color: var(--gold-dark);
  min-height: 20px;
  text-align: center;
}

.map {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.map iframe {
  width: 100%; height: 100%;
  border: 0;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 24px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer .brand__name { color: var(--white); }
.footer__brand p { margin-top: 20px; max-width: 300px; font-size: 14px; }
.footer__col h5 {
  color: var(--white);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__col a, .footer__col span {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.footer__col a:hover { color: var(--gold); }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  padding: 0;
  transition: all .25s var(--ease);
}
.socials a:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay { transition-delay: .15s; }
.reveal--delay-2 { transition-delay: .3s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .services,
  .reviews,
  .events__grid { grid-template-columns: 1fr 1fr; }

  .grid-2 { grid-template-columns: 1fr; gap: 48px; }
  .map { position: static; aspect-ratio: 4/3; }

  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }

  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    gap: 8px;
  }
  .nav__links.is-open a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .menu-panel { grid-template-columns: 1fr; gap: 24px; }

  .section { padding: 70px 0; }

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

@media (max-width: 640px) {
  .services,
  .reviews,
  .events__grid { grid-template-columns: 1fr; }

  .hero { padding: 100px 0 60px; }
  .hero__meta { gap: 20px; }
  .hero__meta-divider { display: none; }

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

  .btn { width: 100%; }
  .hero__cta .btn, .events__cta .btn { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
