/* ==========================================================================
   GLOBAL VARIABLES & RESETS
   (mirrors HomePage-2.53.css — duplicated here so this page doesn't depend
   on the homepage's exact version number. See note to Sarah for why.)
   ========================================================================== */
: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 (same recipe as the homepage)
   ========================================================================== */
.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);
  box-shadow: none;
  color: var(--cream);
  box-shadow: 0 10px 20px rgba(49,19,0,0.25);
}

/* ==========================================================================
   HEADER (identical to homepage)
   ========================================================================== */
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; } }

/* ==========================================================================
   PRICE HERO
   ========================================================================== */
.price-hero { background: rgba(49,19,0,0.93); padding: 64px 60px 52px; width: 100%; text-align: center; }
.price-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 28px; max-width: 760px;
}
.price-hero-title .line { display: block; overflow: hidden; }
.price-hero-title .line-inner { display: block; }
.price-hero-title em { font-style: italic; font-weight: 500; }

.price-badge {
  display: inline-flex; flex-direction: row; align-items: center; gap: 16px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  margin: 0 0 28px;
}
.price-badge-label { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--driftwood); white-space: nowrap; }
.price-badge-label::after { content: ''; display: inline-block; width: 1px; height: 26px; background: rgba(232,217,197,0.3); vertical-align: middle; margin-left: 16px; }
.price-badge-amount { font-family: var(--font-head); font-size: 48px; font-weight: 800; color: var(--peach); line-height: 1; }

.price-hero-sub { font-size: 19px; font-weight: 500; color: var(--peach); max-width: 620px; margin: 0 auto 22px; letter-spacing: 0.01em; }
.price-hero-intro { font-size: 16px; font-weight: 400; color: var(--driftwood); max-width: 640px; margin: 0 auto 36px; line-height: 1.7; }
.price-hero-cta-wrap { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.price-hero .cta-btn--secondary { border-color: var(--cream); color: var(--cream); }
.price-hero .cta-btn--secondary:hover, .price-hero .cta-btn--secondary:focus-visible { background: var(--cream); color: var(--espresso); }

/* ==========================================================================
   INCLUDED SECTION
   ========================================================================== */
.included-sec { background: var(--cream); width: 100%; padding: 60px 60px 56px; }
.addon-sec { background: rgba(232,217,197,0.93); width: 100%; padding: 60px 60px 56px; }

.included-header { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.included-title { font-family: var(--font-head); font-size: clamp(30px, 3.6vw, 48px); font-weight: 800; color: var(--espresso); line-height: 1.16; margin-bottom: 14px; }
.included-title .line { display: block; overflow: hidden; }
.included-title .line-inner { display: block; }
.included-title em { font-style: italic; font-weight: 500; }
.included-sub { font-size: 17px; color: var(--coffee); line-height: 1.6; }

.included-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; max-width: 1140px; margin: 0 auto; }
.included-card {
  background: var(--white); border-radius: 12px; padding: 30px 26px;
  box-shadow: 0 4px 18px rgba(49,19,0,0.07); border: 1px solid rgba(49,19,0,0.06);
  flex: 1 1 280px; max-width: 320px;
}
.included-icon {
  width: 42px; height: 42px; border-radius: 10px; background: var(--driftwood); color: var(--terracotta-deep);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.included-card-title { font-family: var(--font-body); font-size: 17px; font-weight: 700; color: var(--espresso); margin-bottom: 8px; }
.included-card-desc { font-size: 15px; color: var(--coffee); line-height: 1.65; }
.included-card-desc a { color: var(--terracotta-deep); text-decoration: underline; text-decoration-color: rgba(140,65,40,0.4); text-underline-offset: 2px; }
.included-card-desc a:hover { color: var(--espresso); }

.included-closing { text-align: center; font-family: var(--font-head); font-size: 19px; font-style: italic; font-weight: 500; color: var(--terracotta-deep); margin-top: 48px; }

/* ==========================================================================
   ADD-ON SECTION
   ========================================================================== */
.addon-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; max-width: 1140px; margin: 0 auto 48px; }
.addon-card {
  background: var(--cream); border-radius: 10px; padding: 20px 22px;
  box-shadow: 0 3px 14px rgba(49,19,0,0.06); border: 1px solid rgba(49,19,0,0.06);
  flex: 1 1 300px; max-width: 340px;
  display: flex; align-items: flex-start; gap: 14px;
}
.addon-icon {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 9px; background: var(--driftwood); color: var(--terracotta-deep);
  display: flex; align-items: center; justify-content: center;
}
.addon-text { flex: 1; min-width: 0; }
.addon-card-title { font-family: var(--font-body); font-size: 15.5px; font-weight: 700; color: var(--espresso); margin-bottom: 4px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.addon-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--espresso); background: var(--peach); border-radius: 4px; padding: 2px 7px; }
.addon-card-desc { font-size: 14px; color: var(--driftwood); line-height: 1.55; }

.addon-cta-wrap, .price-cta-wrap { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.addon-cta-wrap .cta-btn--secondary:focus-visible { outline: none; }

/* ==========================================================================
   QUOTE FORM SECTION (third-party embed wrapped in matching brand styling)
   ========================================================================== */
.quote-form-sec { background: rgba(232,217,197,0.93); width: 100%; padding: 56px 60px 60px; position: relative; }
.quote-form-header { text-align: center; max-width: 600px; margin: 0 auto 28px; }

/* Scroll hint cues */
.scroll-hint {
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  text-decoration: none; color: var(--driftwood);
  font-family: var(--font-body); font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  opacity: 0.66; transition: opacity .25s ease, color .25s ease;
}
.scroll-hint svg { width: 30px; height: 30px; }
.scroll-hint:hover { opacity: 1; color: var(--peach); }
.scroll-hint--down { margin-top: 30px; animation: hint-bob-down 3.4s ease-in-out infinite; }
.scroll-hint--up { display: flex; margin: 0 auto 22px; color: var(--driftwood); opacity: 0.66; animation: hint-bob-up 3.4s ease-in-out infinite; }
.scroll-hint--up:hover { color: var(--peach); opacity: 1; }
@keyframes hint-bob-down { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes hint-bob-up   { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (prefers-reduced-motion: reduce) { .scroll-hint { animation: none; } }
.quote-form-title { font-family: var(--font-head); font-size: clamp(28px, 3.2vw, 42px); font-weight: 800; color: var(--espresso); line-height: 1.16; margin-bottom: 10px; }
.quote-form-title .line { display: block; overflow: hidden; }
.quote-form-title .line-inner { display: block; }
.quote-form-title em { font-style: italic; font-weight: 500; }
.quote-form-sub { font-size: 15.5px; color: var(--coffee); line-height: 1.55; }

.quote-form-embed {
  max-width: 560px; margin: 0 auto;
  background: transparent;
  border-radius: 14px;
  overflow: hidden;
}
.quote-form-embed iframe {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 14px;
}

/* ==========================================================================
   PRICE CTA SECTION
   ========================================================================== */
.price-cta-sec { background: rgba(49,19,0,0.93); width: 100%; padding: 64px 60px 72px; text-align: center; }
.price-cta-title { font-family: var(--font-head); font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; color: var(--cream); margin-bottom: 16px; }
.price-cta-sub { font-size: 17px; color: var(--driftwood); max-width: 560px; margin: 0 auto 34px; line-height: 1.65; }

/* ==========================================================================
   SCROLL-REVEAL ANIMATIONS (same keyframes/pattern as homepage)
   ========================================================================== */
@keyframes anim-slide-r  { to { opacity:1; transform:translateX(0); } }
@keyframes anim-rise     { to { opacity:1; transform:translateY(0); } }
@keyframes anim-fade-up  { to { opacity:1; transform:translateY(0); } }

.bcc-js .eyebrow-dark, .bcc-js .eyebrow-light  { opacity: 0; transform: translateY(14px); }
.bcc-js .price-hero-title .line-inner,
.bcc-js .included-title .line-inner,
.bcc-js .quote-form-title .line-inner          { opacity: 0; transform: translateY(105%); }
.bcc-js .price-badge, .bcc-js .price-hero-sub,
.bcc-js .price-hero-intro, .bcc-js .included-sub,
.bcc-js .price-cta-title, .bcc-js .price-cta-sub,
.bcc-js .quote-form-sub                          { opacity: 0; transform: translateY(14px); }
.bcc-js .included-card, .bcc-js .addon-card      { opacity: 0; transform: translateY(20px); }

.bcc-js .eyebrow-dark.in, .bcc-js .eyebrow-light.in  { animation: anim-fade-up .7s cubic-bezier(.16,1,.3,1) forwards; }
.bcc-js .price-hero-title .line-inner.in,
.bcc-js .included-title .line-inner.in,
.bcc-js .quote-form-title .line-inner.in             { animation: anim-rise .8s cubic-bezier(.16,1,.3,1) forwards; }
.bcc-js .price-badge.in, .bcc-js .price-hero-sub.in,
.bcc-js .price-hero-intro.in, .bcc-js .included-sub.in,
.bcc-js .price-cta-title.in, .bcc-js .price-cta-sub.in,
.bcc-js .quote-form-sub.in                           { animation: anim-fade-up .7s cubic-bezier(.16,1,.3,1) forwards; }
.bcc-js .included-card.in, .bcc-js .addon-card.in       { animation: anim-fade-up .6s cubic-bezier(.16,1,.3,1) forwards; }

/* ==========================================================================
   FOOTER (identical to homepage)
   ========================================================================== */
.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; }
}

/* ==========================================================================
   RESPONSIVE — PRICING PAGE SECTIONS
   ========================================================================== */
@media (max-width: 860px) {
  .price-hero, .included-sec, .addon-sec, .price-cta-sec, .quote-form-sec { padding: 48px 28px 44px; }
}
@media (max-width: 540px) {
  .price-hero, .included-sec, .addon-sec, .price-cta-sec, .quote-form-sec { padding: 40px 18px 36px; }
  .price-badge-amount { font-size: 30px; }
}

/* ==========================================================================
   ACCESSIBILITY FALLBACKS
   ========================================================================== */
.bcc-js *:not(.cta-btn):not(.scroll-hint):not(.scroll-hint *) { 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; }


/* ============================================================
   ABOVE-THE-FOLD HERO — no load-in animation (show immediately)
   ============================================================ */
#bcc-price-hero .eyebrow-dark,
#bcc-price-hero .price-hero-title .line-inner,
#bcc-price-hero .price-badge,
#bcc-price-hero .price-hero-sub,
#bcc-price-hero .price-hero-intro {
  opacity: 1 !important; transform: none !important; animation: none !important;
}
