/* ==========================================================================
   GLOBAL VARIABLES & RESETS
   (mirrors the established base across pages, duplicated here so this page
   doesn't depend on another page's exact version number)
   ========================================================================== */
:root {
  --espresso:   #311300;
  --coffee:     #5c3820;
  --cream:      #F5EFE0;
  --driftwood:  #E8D9C5;
  --white:      #ffffff;
  --terracotta: #B9784F;
  --terracotta-a11y: #96603C;
  --terracotta-deep: #8C4128;
  --terracotta-glass: #D27F58;
  --peach:      #E8A87C;
  --denim:      #7B9EB0;
  --seamist:    #B5CEDD;
  --muted:      #9c7b6a;
  --font-head:  'Urbanist', system-ui, sans-serif;
  --font-body:  'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); -webkit-font-smoothing: antialiased; color: var(--espresso); overflow-x: hidden; }

*:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; border-radius: 3px; }

/* ==========================================================================
   CTA BUTTON — sea glass treatment
   ========================================================================== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--terracotta-a11y);
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 6px;
  min-height: 44px;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 8px 20px rgba(49,19,0,0.16);
  transition: background 0.35s ease-in-out, transform 0.45s ease-in-out, box-shadow 0.45s ease-in-out;
}
.cta-btn::before { display: none; }

.cta-btn:hover,
.cta-btn:focus-visible,
.cta-btn.is-pressed {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(185,120,79,0.35), 0 4px 10px rgba(49,19,0,0.2);
}

.header__actions .cta-btn, .header__drawer-cta {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

@media (prefers-reduced-transparency: reduce) {
  .cta-btn {
    background: var(--terracotta-a11y);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .cta-btn::before { display: none; }
}

.cta-btn--secondary {
  background: transparent;
  color: var(--espresso);
  border: 2px solid var(--espresso);
  padding: 14px 34px;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.cta-btn--secondary::before { display: none; }
.cta-btn--secondary:hover,
.cta-btn--secondary:focus-visible,
.cta-btn--secondary.is-pressed {
  opacity: 1;
  background: var(--espresso);
  color: var(--cream);
  box-shadow: 0 10px 20px rgba(49,19,0,0.25);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
main { padding-top: 130px; }
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; width: 100%;
  height: 130px;
  background: var(--cream);
  box-shadow: 0 1px 0 rgba(49,19,0,0.07);
  display: flex;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.header--hidden { transform: translateY(-100%); }
.header::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)'/%3E%3C/svg%3E");
  opacity: 0.05; mix-blend-mode: multiply;
}
.header::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 50% 120% at 88% -10%, rgba(181,206,221,.20) 0%, transparent 65%),
              radial-gradient(ellipse 35% 80%  at  3% 60%,  rgba(232,168,124,.12) 0%, transparent 55%);
}
.header__inner { position: relative; z-index: 2; max-width: 1220px; margin: 0 auto; padding: 0 44px; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.header__logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.header__logo-mark { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex-shrink: 0; box-shadow: 0 0 0 1.5px rgba(49,19,0,.12), 0 2px 8px rgba(49,19,0,.10); }
.header__logo-mark img { width: 46px; height: 46px; display: block; object-fit: cover; }
.header__logo-text { display: flex; flex-direction: column; line-height: 1; }
.header__logo-name { font-family: var(--font-body); font-weight: 600; font-size: 18px; letter-spacing: -.01em; color: var(--espresso); }
.header__logo-tag { font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--peach); margin-top: 2px; }

.header__nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; position: relative; z-index: 2; }
.header__nav-link { font-family: var(--font-body); font-size: 15px; font-weight: 500; color: rgba(49,19,0,.72); text-decoration: none; padding: 8px 15px; border-radius: 6px; transition: color .18s, background .18s; white-space: nowrap; }
.header__nav-link:hover { color: var(--espresso); background: rgba(49,19,0,.06); }
.header__nav-link.is-active { color: var(--terracotta-deep); font-weight: 600; }

.header__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; position: relative; z-index: 2; }

.header__burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; border-radius: 6px; transition: background .18s; }
.header__burger:hover { background: rgba(49,19,0,.07); }
.header__burger-bar { display: block; width: 22px; height: 2px; background: var(--espresso); border-radius: 2px; transform-origin: center; transition: transform .28s ease, opacity .18s; }
.header.is-open .header__burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header.is-open .header__burger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header.is-open .header__burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header__drawer { display: none; position: absolute; top: 100%; left: 0; right: 0; background: linear-gradient(180deg, var(--cream), var(--driftwood)); padding: 12px 24px 28px; flex-direction: column; gap: 2px; box-shadow: 0 12px 36px rgba(49,19,0,.12); border-bottom: 1px solid rgba(49,19,0,.08); z-index: 999; }
.header__drawer-cta { margin-top: 12px; width: 100%; }
.header__drawer.is-open { display: flex; }
.header__drawer-link { font-family: var(--font-body); font-size: 16px; font-weight: 500; color: rgba(49,19,0,.68); text-decoration: none; padding: 13px 10px; border-radius: 6px; border-bottom: 1px solid rgba(49,19,0,.07); transition: color .18s, background .18s; }
.header__drawer-link:last-of-type { border-bottom: none; }
.header__drawer-link:hover { color: var(--espresso); background: rgba(49,19,0,.05); }
.header__drawer-link.is-active { color: var(--terracotta-deep); font-weight: 600; }

@media (max-width: 860px) { .header__nav, .header__actions .cta-btn { display: none; } .header__burger { display: flex; } }
@media (max-width: 480px) { .header__inner { padding: 0 20px; } }

/* ==========================================================================
   SHARED EYEBROW UTILITIES
   ========================================================================== */
.eyebrow-light, .eyebrow-dark {
  display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; margin-bottom: 18px;
}
.eyebrow-light { color: var(--terracotta-deep); }
.eyebrow-dark { color: var(--peach); }
.eyebrow-light::before, .eyebrow-light::after { content: ''; width: 32px; height: 1px; background: var(--terracotta-deep); opacity: .5; display: block; }
.eyebrow-dark::before, .eyebrow-dark::after { content: ''; width: 32px; height: 1px; background: var(--peach); opacity: .5; display: block; }

/* ==========================================================================
   SECTION BLEND DIVIDERS
   ========================================================================== */
.section-blend { width: 100%; height: 90px; pointer-events: none; line-height: 0; overflow: hidden; }
.section-blend svg { display: block; width: 100%; height: 100%; }
@media (max-width: 860px) { .section-blend { height: 56px; } }

/* ==========================================================================
   MENU HERO
   ========================================================================== */
.menu-hero { background: rgba(49,19,0,0.93); padding: 80px 60px 72px; width: 100%; text-align: center; }
.menu-hero-title {
  font-family: var(--font-head); font-size: clamp(34px, 4.2vw, 58px); font-weight: 800;
  color: var(--cream); line-height: 1.14; margin: 0 auto 18px; max-width: 760px;
}
.menu-hero-title .line { display: block; overflow: hidden; }
.menu-hero-title .line-inner { display: block; }
.menu-hero-title em { font-style: italic; font-weight: 500; }

.menu-hero-sub { font-size: 19px; font-weight: 500; color: var(--peach); max-width: 620px; margin: 0 auto 22px; }
.menu-hero-intro { font-size: 16px; font-weight: 400; color: var(--driftwood); max-width: 640px; margin: 0 auto 36px; line-height: 1.7; }
.menu-hero-intro a { color: var(--cream); text-decoration: underline; text-decoration-color: rgba(245,239,224,0.45); text-underline-offset: 2px; }
.menu-hero-intro a:hover { color: var(--peach); }
.menu-hero-cta-wrap { display: flex; align-items: center; justify-content: center; }


/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: rgba(49,19,0,0.93); color: var(--cream); padding: 64px 60px 56px; }
.footer-inner { max-width: 1220px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 56px; align-items: start; }

.footer-map { height: 450px; border-radius: 12px; overflow: hidden; border: 1px solid rgba(245,239,224,.14); box-shadow: 0 10px 28px rgba(0,0,0,.3); }
.footer-map iframe { display: block; width: 100%; height: 100%; }

.footer-col { text-align: center; }
.footer-heading { font-family: var(--font-head); font-weight: 800; font-size: 26px; color: var(--cream); margin-bottom: 26px; }

.footer-area-list { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.footer-area-list li { font-size: 16px; font-weight: 400; color: var(--driftwood); }

.footer-contact { display: flex; flex-direction: column; align-items: center; }
.footer-email { color: var(--cream); text-decoration: none; font-size: 16px; margin-bottom: 14px; transition: color .2s; word-break: break-word; }
.footer-email:hover { color: var(--driftwood); }
.footer-phone { color: var(--cream); text-decoration: none; font-size: 18px; font-weight: 500; margin-bottom: 26px; transition: color .2s; }
.footer-phone:hover { color: var(--driftwood); }
.footer-cta { margin-bottom: 30px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--cream); text-decoration: none; font-size: 15px; font-style: normal; transition: color .2s; }
.footer-links a:hover { color: var(--driftwood); }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; gap: 44px; justify-items: center; }
  .footer-map { width: 100%; max-width: 480px; }
}
@media (max-width: 480px) {
  .site-footer { padding: 48px 24px 40px; }
}



/* ==========================================================================
   FAQ PAGE
   ========================================================================== */
a { color: inherit; }
.bcc-faq-wrap { max-width: 100%; overflow-x: hidden; }

/* ---- Hero / intro ---- */
.faq-hero { background: var(--espresso); color: var(--cream); padding: 88px 24px 76px; text-align: center; }
.faq-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--peach); margin-bottom: 18px; }
.faq-eyebrow::before, .faq-eyebrow::after { content: ''; width: 26px; height: 1px; background: var(--peach); opacity: .6; }
.faq-hero h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(26px, 4vw, 52px); line-height: 1.15; margin-bottom: 18px; }
.faq-hero p { font-size: 18px; color: var(--driftwood); max-width: 620px; margin: 0 auto; }
.faq-hero .faq-cta-btn { margin-top: 32px; }

/* ---- Category sections ---- */
.faq-category { max-width: 820px; margin: 0 auto; padding: 64px 24px 8px; }
.faq-category h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(24px, 3vw, 32px); color: var(--espresso); margin-bottom: 28px; padding-bottom: 14px; border-bottom: 2px solid var(--terracotta); display: inline-block; }

/* ---- Accordion ---- */
.faq-item { background: var(--white); border: 1px solid rgba(49,19,0,0.08); border-radius: 10px; margin-bottom: 14px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-body); font-weight: 600; font-size: 16.5px; color: var(--espresso); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: #C9A876; color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 600; line-height: 1; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.faq-item[open] summary .faq-icon { transform: rotate(225deg); }
.faq-item-body { overflow: hidden; }
.faq-item-body-inner { padding: 0 24px 22px; font-size: 15.5px; color: var(--coffee); }
.faq-item-body-inner p { margin-bottom: 12px; }
.faq-item-body-inner p:last-child { margin-bottom: 0; }
.faq-item-body-inner strong { color: var(--espresso); }
.faq-item-body-inner a, .faq-item-body-inner a strong { color: var(--terracotta-deep); text-decoration: underline; text-decoration-color: rgba(182,89,55,.4); }
.faq-item-body-inner a:hover { text-decoration-color: var(--terracotta-deep); }

/* ---- SEO content block ---- */
.faq-seo-block { max-width: 820px; margin: 64px auto 0; padding: 44px 24px; background: var(--driftwood); border-radius: 14px; }
.faq-seo-block h2 { font-family: var(--font-head); font-weight: 800; font-size: 24px; color: var(--espresso); margin-bottom: 16px; }
.faq-seo-block p { font-size: 15.5px; color: var(--coffee); margin-bottom: 14px; }
.faq-seo-block p:last-child { margin-bottom: 0; }

/* ---- Closing CTA ---- */
.faq-cta { text-align: center; padding: 80px 24px 96px; }
.faq-cta h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(26px, 3.4vw, 36px); color: var(--espresso); margin-bottom: 14px; }
.faq-cta p { font-size: 16px; color: var(--coffee); margin-bottom: 28px; }
.faq-cta-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-body); font-size: 15px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--white); background: var(--terracotta-a11y); text-decoration: none; padding: 16px 36px; border-radius: 6px; transition: opacity .3s ease, transform .3s ease, box-shadow .3s ease; box-shadow: 0 6px 14px rgba(49,19,0,.25); }
.faq-cta-btn:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(49,19,0,.3); }

@media (max-width: 640px) {
  .faq-hero { padding: 64px 20px 56px; }
  .faq-hero h1 { font-size: clamp(20px, 6vw, 32px); }
  .faq-category { padding: 48px 18px 8px; }
  .faq-item summary { padding: 16px 18px; font-size: 15.5px; }
  .faq-item-body-inner { padding: 0 18px 18px; }
}


/* ==========================================================================
   ACCESSIBILITY FALLBACKS
   ========================================================================== */
.bcc-js *:not(.cta-btn) { opacity: 1 !important; transform: none !important; animation: none !important; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* IMAGE PLACEHOLDERS (temporary, for routing real photography in later) */
.bcc-img-placeholder {
  background-color: var(--driftwood);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--coffee);
  font-family: sans-serif;
  font-size: 0.85rem;
  line-height: 1.4;
  min-height: 80px;
}
.bcc-img-placeholder-text { padding: 8px; }
