/* ==========================================================================
   CHOCHAN EVENTS & CATERING — Stylesheet
   Design language: deep navy ground + warm gold thread, editorial serif
   display type, tracked sans labels. The gold "ribbon" motif that runs
   through the brand photography is echoed as a drawn line under headings
   and between sections.
   ========================================================================== */

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

/* ---- Tokens ---- */
:root{
  --ink: #0b111c;
  --ink-2: #10192a;
  --ink-3: #16233a;
  --line: rgba(201,162,77,0.22);
  --line-soft: rgba(247,243,234,0.10);
  --gold: #c9a24d;
  --gold-light: #e8ca82;
  --gold-deep: #9c7a34;
  --cream: #f8f4ea;
  --cream-2: #f1ead9;
  --charcoal: #262b35;
  --ink-text: #3a3f4a;
  --muted-on-dark: #b9c0cf;
  --muted-on-cream: #6b6455;

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Jost', 'Segoe UI', Helvetica, Arial, sans-serif;

  --container: 1200px;
  --radius: 2px;
  --shadow-lg: 0 30px 70px -30px rgba(0,0,0,0.55);
  --shadow-sm: 0 10px 24px -14px rgba(0,0,0,0.35);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset ---- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--cream);
  color:var(--ink-text);
  font-family:var(--sans);
  font-weight:400;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--serif); font-weight:600; line-height:1.12; margin:0 0 0.5em; color:var(--charcoal); }
p{ margin:0 0 1em; }
button{ font-family:inherit; cursor:pointer; }
input,textarea,select{ font-family:inherit; }

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

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

.container{ max-width:var(--container); margin:0 auto; padding:0 28px; }
.container-narrow{ max-width:820px; margin:0 auto; padding:0 28px; }

section{ position:relative; }

/* ---- Reveal on scroll ---- */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-delay-1.is-visible{ transition-delay:.1s; }
.reveal-delay-2.is-visible{ transition-delay:.2s; }
.reveal-delay-3.is-visible{ transition-delay:.3s; }
.reveal-delay-4.is-visible{ transition-delay:.4s; }

/* ---- Eyebrow / labels ---- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-family:var(--sans);
  font-size:0.76rem;
  font-weight:600;
  letter-spacing:0.32em;
  text-transform:uppercase;
  color:var(--gold-deep);
}
.eyebrow::before{
  content:"";
  width:26px; height:1px;
  background:var(--gold);
}
.on-dark .eyebrow{ color:var(--gold-light); }

/* ---- Ribbon signature underline ---- */
.ribbon-underline{
  display:block;
  width:150px;
  height:14px;
  margin-top:14px;
}
.ribbon-underline path{
  fill:none;
  stroke:var(--gold);
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-dasharray:220;
  stroke-dashoffset:220;
  transition:stroke-dashoffset 1.1s var(--ease);
}
.reveal.is-visible .ribbon-underline path{ stroke-dashoffset:0; }

.section-head{ max-width:640px; margin-bottom:52px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(2.1rem, 3.4vw, 3rem); margin-top:0.3em; }
.section-head p{ color:var(--muted-on-cream); font-size:1.05rem; margin-top:14px; }
.on-dark .section-head h2{ color:var(--cream); }
.on-dark .section-head p{ color:var(--muted-on-dark); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:16px 34px;
  font-family:var(--sans);
  font-size:0.82rem;
  font-weight:600;
  letter-spacing:0.14em;
  text-transform:uppercase;
  border-radius:var(--radius);
  border:1px solid transparent;
  transition:all .35s var(--ease);
  white-space:nowrap;
}
.btn-gold{
  background:linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color:#1a1406;
  box-shadow:0 14px 30px -14px rgba(201,162,77,0.6);
}
.btn-gold:hover{ transform:translateY(-2px); box-shadow:0 18px 34px -12px rgba(201,162,77,0.72); }
.btn-outline-dark{
  border-color:rgba(255,255,255,0.35);
  color:var(--cream);
}
.btn-outline-dark:hover{ border-color:var(--gold); color:var(--gold-light); }
.btn-outline-light{
  border-color:rgba(38,43,53,0.28);
  color:var(--charcoal);
}
.btn-outline-light:hover{ border-color:var(--gold-deep); color:var(--gold-deep); }
.btn-ghost{
  padding:0;
  border:none;
  color:var(--gold-deep);
  letter-spacing:0.12em;
  text-transform:uppercase;
  font-size:0.8rem;
  font-weight:600;
  border-bottom:1px solid var(--gold-deep);
  border-radius:0;
  padding-bottom:3px;
}
.btn-ghost:hover{ color:var(--gold); border-color:var(--gold); }
.btn-block{ width:100%; }
.btn-sm{ padding:12px 22px; font-size:0.74rem; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.announce-bar{
  background:var(--ink);
  color:var(--muted-on-dark);
  font-size:0.78rem;
  letter-spacing:0.04em;
}
.announce-bar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:9px;
  padding-bottom:9px;
  gap:16px;
  flex-wrap:wrap;
}
.announce-bar a{ color:var(--muted-on-dark); transition:color .25s; }
.announce-bar a:hover{ color:var(--gold-light); }
.announce-links{ display:flex; gap:22px; flex-wrap:wrap; }
.announce-links span{ opacity:.55; margin-right:4px; }

.site-header{
  position:sticky;
  top:0;
  z-index:200;
  background:rgba(11,17,28,0.92);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line-soft);
  transition:background .3s;
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:14px;
  padding-bottom:14px;
}
.brand{ display:flex; align-items:center; }
.brand img{ height:44px; width:auto; }

.main-nav{ display:flex; align-items:center; gap:40px; }
.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a{
  font-size:0.82rem;
  font-weight:500;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--muted-on-dark);
  position:relative;
  padding:6px 0;
  transition:color .25s;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:0; height:1px;
  background:var(--gold);
  transition:width .3s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"]{ color:var(--cream); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after{ width:100%; }

.nav-cta{ display:flex; align-items:center; gap:18px; }
.nav-phone{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:0.86rem;
  color:var(--cream);
  letter-spacing:0.02em;
}
.nav-phone svg{ width:16px; height:16px; color:var(--gold); flex-shrink:0; }

.nav-toggle{
  display:none;
  background:none;
  border:1px solid rgba(255,255,255,0.25);
  border-radius:3px;
  width:44px; height:40px;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}
.nav-toggle span{ display:block; width:20px; height:1.5px; background:var(--cream); transition:all .3s; }
.nav-toggle.open span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }

.mobile-nav{ display:none; }

@media (max-width: 960px){
  .nav-links, .nav-phone-desktop{ display:none; }
  .nav-toggle{ display:flex; }
  .main-nav{ gap:14px; }
  .mobile-nav{ display:block; }

  .mobile-nav{
    position:fixed;
    inset:0 0 0 auto;
    width:min(340px, 84vw);
    height:100vh;
    background:var(--ink-2);
    border-left:1px solid var(--line);
    transform:translateX(100%);
    transition:transform .4s var(--ease);
    z-index:300;
    padding:26px 26px 40px;
    overflow-y:auto;
  }
  .mobile-nav.open{ transform:translateX(0); }
  .mobile-nav-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:30px;}
  .mobile-nav-close{ background:none; border:1px solid rgba(255,255,255,0.25); color:var(--cream); width:36px; height:36px; border-radius:3px; }
  .mobile-nav a{
    display:block;
    padding:14px 0;
    border-bottom:1px solid var(--line-soft);
    font-family:var(--serif);
    font-size:1.35rem;
    color:var(--cream);
  }
  .mobile-nav a[aria-current="page"]{ color:var(--gold-light); }
  .mobile-nav .btn{ margin-top:26px; font-size:0.78rem; padding:15px 28px; }
  .mobile-nav a{ font-size:1.15rem; }
  .mobile-nav-contact{ margin-top:26px; font-size:0.86rem; color:var(--muted-on-dark); line-height:2; }
  .mobile-nav-contact a{ color:var(--gold-light); }
  .nav-scrim{
    position:fixed; inset:0; background:rgba(6,9,15,0.6); z-index:290;
    opacity:0; pointer-events:none; transition:opacity .35s;
  }
  .nav-scrim.open{ opacity:1; pointer-events:auto; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative;
  min-height:92vh;
  display:flex;
  align-items:center;
  color:var(--cream);
  background:
    linear-gradient(180deg, rgba(8,12,20,0.55) 0%, rgba(8,12,20,0.72) 45%, rgba(8,12,20,0.94) 100%),
    url('../images/hero-bg.jpg') center 30% / cover no-repeat;
  padding:170px 0 110px;
}
.hero-inner{ max-width:720px; }
.hero-kicker{ color:var(--gold-light); }
.hero h1{
  color:var(--cream);
  font-size:clamp(2.6rem, 6vw, 4.6rem);
  margin-top:0.35em;
  letter-spacing:0.005em;
}
.hero h1 em{ color:var(--gold-light); font-style:italic; font-weight:500; }
.hero-sub{
  color:var(--muted-on-dark);
  font-size:1.14rem;
  max-width:560px;
  margin:26px 0 38px;
}
.hero-actions{ display:flex; gap:18px; flex-wrap:wrap; }
.hero-pillars{
  margin-top:64px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  max-width:760px;
  padding-top:34px;
  border-top:1px solid var(--line);
}
.hero-pillar{ }
.hero-pillar .num{ font-family:var(--serif); font-style:italic; color:var(--gold); font-size:1.5rem; display:block; margin-bottom:6px;}
.hero-pillar h4{ color:var(--cream); font-size:1rem; font-family:var(--sans); font-weight:600; letter-spacing:0.02em; margin-bottom:4px;}
.hero-pillar p{ color:var(--muted-on-dark); font-size:0.86rem; margin:0; }

@media (max-width: 720px){
  .hero{ padding:150px 0 80px; min-height:auto; }
  .hero-pillars{ grid-template-columns:1fr; gap:20px; }
}

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */
.page-header{
  position:relative;
  color:var(--cream);
  padding:150px 0 90px;
  background:
    linear-gradient(180deg, rgba(8,12,20,0.68), rgba(8,12,20,0.92)),
    url('../images/services-bg.jpg') center / cover no-repeat;
  text-align:center;
}
.page-header .eyebrow{ justify-content:center; color:var(--gold-light); }
.page-header .eyebrow::before{ display:none; }
.page-header h1{ color:var(--cream); font-size:clamp(2.4rem, 5vw, 3.6rem); margin-top:0.3em; }
.page-header p{ color:var(--muted-on-dark); max-width:560px; margin:18px auto 0; }
.breadcrumb{
  margin-top:22px;
  font-size:0.78rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--muted-on-dark);
}
.breadcrumb a{ color:var(--gold-light); }
.breadcrumb span{ margin:0 8px; opacity:.5; }

/* ==========================================================================
   Sections — light / dark alternation
   ========================================================================== */
.section{ padding:110px 0; }
.section-sm{ padding:70px 0; }
.section.on-dark{ background:var(--ink); color:var(--muted-on-dark); }
.section.on-ink2{ background:var(--ink-2); color:var(--muted-on-dark); }
.section.on-cream2{ background:var(--cream-2); }

@media (max-width:720px){
  .section{ padding:74px 0; }
  .section-sm{ padding:54px 0; }
}

/* ---- Value pillars / feature grid ---- */
.pillars-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1px;
  background:var(--line-soft);
  border:1px solid var(--line-soft);
}
.pillar-card{
  background:var(--ink);
  padding:40px 32px;
  transition:background .35s;
}
.pillar-card:hover{ background:var(--ink-3); }
.pillar-icon{ width:38px; height:38px; color:var(--gold); margin-bottom:22px; }
.pillar-card h3{ color:var(--cream); font-size:1.3rem; margin-bottom:10px; }
.pillar-card p{ color:var(--muted-on-dark); font-size:0.92rem; margin:0; }
@media (max-width:960px){ .pillars-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .pillars-grid{ grid-template-columns:1fr; } }

/* ---- Split (image + text) ---- */
.split{
  display:grid;
  grid-template-columns:0.92fr 1fr;
  gap:70px;
  align-items:center;
}
.split.reverse{ grid-template-columns:1fr 0.92fr; }
.split.reverse .split-media{ order:2; }
.split-media{ position:relative; }
.split-media img{ width:100%; height:auto; border-radius:2px; box-shadow:var(--shadow-lg); }
.split-media-frame{
  position:absolute;
  inset:18px -18px -18px 18px;
  border:1px solid var(--gold);
  z-index:-1;
}
.split-copy p{ color:var(--muted-on-cream); font-size:1.03rem; }
.on-dark .split-copy p{ color:var(--muted-on-dark); }
.check-list{ margin:26px 0 34px; }
.check-list li{
  display:flex;
  gap:14px;
  padding:11px 0;
  border-bottom:1px solid rgba(38,43,53,0.1);
  font-size:0.98rem;
  color:var(--charcoal);
}
.on-dark .check-list li{ color:var(--cream); border-color:var(--line-soft); }
.check-list svg{ width:18px; height:18px; color:var(--gold-deep); flex-shrink:0; margin-top:3px; }
.on-dark .check-list svg{ color:var(--gold); }

@media (max-width:900px){
  .split, .split.reverse{ grid-template-columns:1fr; gap:40px; }
  .split.reverse .split-media{ order:0; }
  .split-media-frame{ display:none; }
}

/* ---- Process / steps (legitimate sequence) ---- */
.process{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:0;
  position:relative;
}
.process::before{
  content:"";
  position:absolute;
  top:26px; left:8%; right:8%;
  height:1px;
  background:repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
  opacity:.55;
}
.process-step{ padding:0 30px; position:relative; }
.process-step .step-index{
  font-family:var(--serif);
  font-style:italic;
  font-size:1.6rem;
  color:var(--gold);
  background:var(--cream);
  display:inline-block;
  padding-right:10px;
  position:relative;
  z-index:1;
}
.section.on-dark .process-step .step-index{ background:var(--ink); }
.process-step h3{ margin-top:20px; font-size:1.4rem; }
.process-step p{ color:var(--muted-on-cream); font-size:0.95rem; }
.on-dark .process-step p{ color:var(--muted-on-dark); }
@media (max-width:820px){
  .process{ grid-template-columns:1fr; gap:40px; }
  .process::before{ display:none; }
}

/* ---- Services overview cards (home) ---- */
.service-overview-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}
.service-overview-card{
  position:relative;
  overflow:hidden;
  border-radius:2px;
  min-height:360px;
  display:flex;
  align-items:flex-end;
  padding:40px;
  color:var(--cream);
  box-shadow:var(--shadow-sm);
}
.service-overview-card::before{
  content:"";
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  transition:transform .6s var(--ease);
  z-index:0;
}
.service-overview-card:hover::before{ transform:scale(1.06); }
.service-overview-card::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(8,12,20,0.15) 20%, rgba(8,12,20,0.92) 100%);
  z-index:0;
}
.service-overview-card.catering::before{ background-image:url('../images/gallery-photo.jpg'); }
.service-overview-card.events::before{ background-image:url('../images/about-photo.jpg'); background-position:top; }
.service-overview-card-body{ position:relative; z-index:1; }
.service-overview-card .eyebrow{ color:var(--gold-light); margin-bottom:14px; }
.service-overview-card h3{ color:var(--cream); font-size:1.9rem; margin-bottom:10px; }
.service-overview-card p{ color:var(--muted-on-dark); font-size:0.94rem; margin-bottom:20px; max-width:380px; }
@media (max-width:820px){ .service-overview-grid{ grid-template-columns:1fr; } }

/* ---- CTA banner ---- */
.cta-banner{
  position:relative;
  color:var(--cream);
  text-align:center;
  padding:100px 0;
  background:
    linear-gradient(180deg, rgba(8,12,20,0.72), rgba(8,12,20,0.88)),
    url('../images/cta-bg.jpg') center / cover no-repeat;
}
.cta-banner h2{ color:var(--cream); font-size:clamp(2rem, 4vw, 2.9rem); max-width:680px; margin:0.3em auto 18px; }
.cta-banner p{ color:var(--muted-on-dark); max-width:520px; margin:0 auto 34px; }
.cta-banner .btn-row{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ---- Pricing cards ---- */
.pricing-toolbar{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px;
  margin-bottom:44px;
}
.pricing-note{
  display:inline-flex; align-items:center; gap:10px;
  font-size:0.85rem; color:var(--muted-on-cream);
  border:1px solid rgba(38,43,53,0.14);
  padding:10px 18px;
  border-radius:30px;
}
.on-dark .pricing-note{ color:var(--muted-on-dark); border-color:var(--line-soft); }
.pricing-note svg{ width:16px; height:16px; color:var(--gold-deep); }

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:26px;
}
.price-card{
  background:#fff;
  border:1px solid rgba(38,43,53,0.1);
  border-radius:3px;
  padding:38px 32px;
  display:flex;
  flex-direction:column;
  position:relative;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.price-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:var(--gold); }
.price-card.featured{ background:var(--ink); border-color:var(--gold); }
.price-card.featured::before{
  content:"Most Selected";
  position:absolute; top:0; right:32px; transform:translateY(-50%);
  background:var(--gold); color:#1a1406;
  font-size:0.68rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase;
  padding:6px 14px; border-radius:20px;
}
.price-card-tier{ font-size:0.78rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold-deep); font-weight:600; margin-bottom:10px;}
.price-card.featured .price-card-tier{ color:var(--gold-light); }
.price-card h3{ font-size:1.55rem; margin-bottom:6px; }
.price-card.featured h3{ color:var(--cream); }
.price-card .guests{ font-size:0.86rem; color:var(--muted-on-cream); margin-bottom:20px; }
.price-card.featured .guests{ color:var(--muted-on-dark); }
.price-range{ font-family:var(--serif); font-size:2.1rem; color:var(--charcoal); margin-bottom:4px; }
.price-card.featured .price-range{ color:var(--cream); }
.price-range small{ font-family:var(--sans); font-size:0.72rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--muted-on-cream); display:block; margin-top:6px; }
.price-card.featured .price-range small{ color:var(--muted-on-dark); }
.price-card hr{ border:none; border-top:1px solid rgba(38,43,53,0.1); margin:22px 0; }
.price-card.featured hr{ border-color:var(--line-soft); }
.price-features{ flex:1; margin-bottom:28px; }
.price-features li{
  display:flex; gap:10px; align-items:flex-start;
  font-size:0.9rem; padding:7px 0; color:var(--ink-text);
}
.price-card.featured .price-features li{ color:var(--muted-on-dark); }
.price-features svg{ width:16px; height:16px; color:var(--gold-deep); margin-top:3px; flex-shrink:0; }
.price-card.featured .price-features svg{ color:var(--gold); }

@media (max-width:1020px){ .pricing-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ .pricing-grid{ grid-template-columns:1fr; } }

/* ---- Simple text/legal pages ---- */
.legal-content{ padding:100px 0 120px; }
.legal-content h2{ font-size:1.55rem; margin-top:2.2em; }
.legal-content h2:first-of-type{ margin-top:0; }
.legal-content p, .legal-content li{ color:var(--ink-text); font-size:1rem; }
.legal-content ul{ margin:0 0 1.2em; padding-left:0; }
.legal-content li{ padding-left:26px; position:relative; margin-bottom:10px; }
.legal-content li::before{
  content:"";
  position:absolute; left:0; top:11px;
  width:8px; height:1px; background:var(--gold-deep);
}
.legal-updated{
  display:inline-block;
  font-size:0.8rem;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--gold-deep);
  border:1px solid rgba(201,162,77,0.35);
  padding:8px 16px;
  border-radius:30px;
  margin-bottom:20px;
}
.legal-toc{
  background:var(--cream-2);
  border:1px solid rgba(38,43,53,0.08);
  padding:26px 30px;
  margin:36px 0 48px;
  border-radius:3px;
}
.legal-toc p{ font-family:var(--sans); font-weight:600; letter-spacing:0.06em; text-transform:uppercase; font-size:0.78rem; color:var(--gold-deep); margin-bottom:14px; }
.legal-toc ol{ margin:0; padding-left:20px; columns:2; column-gap:30px; }
.legal-toc li{ font-size:0.92rem; margin-bottom:8px; padding-left:0; }
.legal-toc li::before{ display:none; }
.legal-toc a{ color:var(--ink-text); }
.legal-toc a:hover{ color:var(--gold-deep); }
@media (max-width:640px){ .legal-toc ol{ columns:1; } }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:0;
  border:1px solid rgba(38,43,53,0.1);
  border-radius:3px;
  overflow:hidden;
}
.contact-info{
  background:var(--ink);
  color:var(--cream);
  padding:56px 50px;
}
.contact-info h3{ color:var(--cream); font-size:1.6rem; }
.contact-info > p{ color:var(--muted-on-dark); margin-bottom:36px; }
.contact-rows{ display:flex; flex-direction:column; gap:26px; }
.contact-row{ display:flex; gap:18px; align-items:flex-start; }
.contact-row .ic{
  width:42px; height:42px; flex-shrink:0;
  border:1px solid var(--line);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.contact-row .ic svg{ width:18px; height:18px; color:var(--gold); }
.contact-row h4{ color:var(--cream); font-family:var(--sans); font-size:0.78rem; letter-spacing:0.1em; text-transform:uppercase; font-weight:600; margin-bottom:6px; }
.contact-row p, .contact-row a{ color:var(--muted-on-dark); font-size:0.98rem; margin:0; }
.contact-row a:hover{ color:var(--gold-light); }

.contact-panel{ background:var(--cream-2); padding:56px 50px; }
.contact-panel h3{ font-size:1.4rem; margin-bottom:22px; }
.hours-table{ width:100%; border-collapse:collapse; margin-bottom:36px; }
.hours-table tr{ border-bottom:1px solid rgba(38,43,53,0.1); }
.hours-table tr:last-child{ border-bottom:none; }
.hours-table td{ padding:12px 0; font-size:0.94rem; }
.hours-table td:first-child{ color:var(--charcoal); font-weight:500; }
.hours-table td:last-child{ text-align:right; color:var(--muted-on-cream); }
.service-area-tags{ display:flex; flex-wrap:wrap; gap:10px; }
.service-area-tags span{
  font-size:0.8rem;
  padding:8px 14px;
  border:1px solid rgba(38,43,53,0.16);
  border-radius:30px;
  color:var(--charcoal);
}
@media (max-width:900px){
  .contact-grid{ grid-template-columns:1fr; }
  .contact-info, .contact-panel{ padding:44px 30px; }
}

/* ---- FAQ ---- */
.faq-list{ max-width:820px; margin:0 auto; }
.faq-item{ border-bottom:1px solid rgba(38,43,53,0.12); }
.faq-q{
  width:100%;
  background:none; border:none;
  display:flex; align-items:center; justify-content:space-between;
  gap:20px;
  padding:26px 0;
  text-align:left;
  font-family:var(--serif);
  font-size:1.2rem;
  color:var(--charcoal);
}
.faq-q .plus{
  width:26px; height:26px; flex-shrink:0;
  border:1px solid var(--gold-deep);
  border-radius:50%;
  position:relative;
}
.faq-q .plus::before, .faq-q .plus::after{
  content:""; position:absolute; background:var(--gold-deep);
  top:50%; left:50%; transform:translate(-50%,-50%);
}
.faq-q .plus::before{ width:10px; height:1.4px; }
.faq-q .plus::after{ width:1.4px; height:10px; transition:opacity .3s; }
.faq-item.open .plus::after{ opacity:0; }
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s var(--ease);
}
.faq-a p{ padding-bottom:26px; color:var(--muted-on-cream); max-width:680px; }
.faq-item.open .faq-a{ max-height:300px; }

/* ==========================================================================
   404 Page
   ========================================================================== */
.error-page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:var(--cream);
  padding:170px 24px 100px;
  background:
    linear-gradient(180deg, rgba(8,12,20,0.6), rgba(8,12,20,0.94)),
    url('../images/hero-bg.jpg') center / cover no-repeat;
}
.error-code{
  font-family:var(--serif);
  font-style:italic;
  font-size:clamp(6rem, 18vw, 11rem);
  color:var(--gold);
  line-height:1;
  margin-bottom:0.1em;
}
.error-page h1{ color:var(--cream); font-size:clamp(1.6rem,3vw,2.2rem); }
.error-page p{ color:var(--muted-on-dark); max-width:480px; margin:14px auto 36px; }
.error-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background:var(--ink); color:var(--muted-on-dark); padding-top:90px; }
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 0.8fr 0.8fr 1fr;
  gap:50px;
  padding-bottom:60px;
  border-bottom:1px solid var(--line-soft);
}
.footer-brand img{ height:42px; margin-bottom:20px; }
.footer-brand p{ font-size:0.92rem; color:var(--muted-on-dark); max-width:300px; }
.footer-col h4{
  color:var(--cream); font-family:var(--sans); font-size:0.78rem;
  letter-spacing:0.14em; text-transform:uppercase; font-weight:600; margin-bottom:22px;
}
.footer-col ul{ display:flex; flex-direction:column; gap:13px; }
.footer-col a{ font-size:0.92rem; color:var(--muted-on-dark); transition:color .25s; }
.footer-col a:hover{ color:var(--gold-light); }
.footer-col address{ font-style:normal; font-size:0.92rem; line-height:1.8; }
.footer-bottom{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px;
  padding:26px 0; font-size:0.8rem; color:rgba(185,192,207,0.65);
}
.footer-bottom .legal-links{ display:flex; gap:22px; flex-wrap:wrap; }
.footer-bottom a{ color:rgba(185,192,207,0.65); }
.footer-bottom a:hover{ color:var(--gold-light); }

@media (max-width:900px){
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:560px){
  .footer-grid{ grid-template-columns:1fr; }
}

/* ---- Back to top ---- */
.to-top{
  position:fixed;
  right:26px; bottom:26px;
  width:48px; height:48px;
  border-radius:50%;
  background:var(--gold);
  color:#1a1406;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 24px -8px rgba(0,0,0,0.5);
  opacity:0; pointer-events:none;
  transform:translateY(10px);
  transition:opacity .3s, transform .3s;
  z-index:150;
  border:none;
}
.to-top.show{ opacity:1; pointer-events:auto; transform:translateY(0); }
.to-top svg{ width:18px; height:18px; }

/* ---- Misc utility ---- */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.divider-gold{ width:60px; height:1px; background:var(--gold); margin:20px auto; }
