/* =========================================================
   SurCare Insurance & My Brew Thang — shared stylesheet
   Shell: cream + forest green. Accents: violet (SurCare),
   rose (My Brew Thang). Both derived from the SurCare logo.
   ========================================================= */

:root {
  /* Shell */
  --green-deep: #1B3A28;
  --green-darker: #142D1F;
  --green-mid: #2F5B3E;
  --cream: #FAF3E7;
  --latte: #F0E4D2;
  --ink: #22281F;
  --muted: #5C5647;
  --muted-soft: #857D6C;
  --hairline: #E6D9C4;

  /* Logo-derived accents */
  --violet: #9B1FB8;
  --violet-deep: #7E1A96;
  --violet-soft: #D9A8E8;
  --rose: #C23B6B;
  --rose-deep: #A32F58;
  --rose-soft: #E8A6BF;
  --lime: #8DC63F;
  --emerald: #00A860;

  /* Default accent (homepage / neutral) */
  --accent: var(--violet);
  --accent-deep: var(--violet-deep);
  --accent-soft: var(--violet-soft);
  --accent-tint: rgba(155, 31, 184, 0.1);

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Karla', system-ui, sans-serif;

  --text-hero: clamp(2.35rem, 5.6vw, 3.85rem);
  --text-2xl: clamp(1.9rem, 4.2vw, 2.8rem);
  --text-xl: clamp(1.45rem, 2.8vw, 1.95rem);
  --text-lg: 1.2rem;
  --text-base: 1rem;
  --text-sm: 0.9rem;
  --text-xs: 0.8rem;

  /* Space */
  --gutter: clamp(1.5rem, 6vw, 5rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);
  --max: 1160px;
  --max-narrow: 730px;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(27, 58, 40, 0.07);
  --shadow-md: 0 16px 44px -20px rgba(27, 58, 40, 0.3);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Per-page accent themes */
.theme-coffee {
  --accent: var(--rose);
  --accent-deep: var(--rose-deep);
  --accent-soft: var(--rose-soft);
  --accent-tint: rgba(194, 59, 107, 0.1);
}
.theme-insurance {
  --accent: var(--violet);
  --accent-deep: var(--violet-deep);
  --accent-soft: var(--violet-soft);
  --accent-tint: rgba(155, 31, 184, 0.1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
h1 { font-size: var(--text-hero); letter-spacing: -0.022em; }
h2 { font-size: var(--text-2xl); letter-spacing: -0.016em; color: var(--green-deep); }
h3 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: 700; line-height: 1.35; }

p { max-width: 66ch; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
strong { font-weight: 700; }

:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 5px; }

.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: var(--max-narrow); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }
.center { text-align: center; }
.center p { margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--green-deep); color: var(--cream);
  padding: 12px 20px; z-index: 300; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- Labels ---------- */
.eyebrow {
  display: inline-block; font-size: var(--text-xs); font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.eyebrow--onDark { color: var(--accent-soft); }

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(250, 243, 231, 0.1);
  border: 1px solid rgba(250, 243, 231, 0.3);
  color: var(--cream); padding: 7px 17px; border-radius: 999px;
  font-size: var(--text-sm); font-weight: 500; margin-bottom: 1.5rem;
}
.pill svg { width: 16px; height: 16px; color: var(--accent-soft); }

.lede { font-size: var(--text-lg); color: var(--muted); }
.dark .lede, .lede--onDark { color: var(--latte); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px; border-radius: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-sm);
  border: 1.5px solid transparent; cursor: pointer; text-align: center;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease), color 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-deep); box-shadow: var(--shadow-md); color: #fff; }
.btn-green { background: var(--green-deep); color: var(--cream); }
.btn-green:hover { background: var(--green-darker); color: var(--cream); }
.btn-outline { border-color: var(--green-deep); color: var(--green-deep); }
.btn-outline:hover { background: var(--green-deep); color: var(--cream); }
.btn-ghost { border-color: rgba(250, 243, 231, 0.45); color: var(--cream); }
.btn-ghost:hover { background: rgba(250, 243, 231, 0.13); color: var(--cream); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 2rem; }
.center .btn-row { justify-content: center; }

.textlink { font-weight: 700; color: var(--accent); border-bottom: 1.5px solid currentColor; padding-bottom: 1px; }
.dark .textlink { color: var(--accent-soft); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 243, 231, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled { border-color: var(--hairline); box-shadow: var(--shadow-sm); }
.header-inner {
  max-width: var(--max); margin-inline: auto;
  padding: 12px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 11px; color: var(--green-deep); flex-shrink: 0; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand-text { line-height: 1.1; }
.brand-name {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 1.06rem; letter-spacing: -0.01em; white-space: nowrap;
}
.brand-sub {
  display: block; font-family: var(--font-body); font-size: 0.63rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted-soft);
}

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  font-size: var(--text-sm); font-weight: 500; color: var(--green-deep);
  padding-block: 4px; border-bottom: 2px solid transparent; white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.nav a:hover { color: var(--accent); }
.nav a[aria-current="page"] { border-color: var(--accent); color: var(--accent); }
.nav .btn { margin-left: 0.4rem; padding: 11px 22px; }
.nav .btn[aria-current="page"] { border-bottom-color: transparent; color: #fff; }

.nav-toggle {
  display: none; background: none;
  border: 1.5px solid var(--hairline); border-radius: 9px;
  width: 44px; height: 44px; cursor: pointer;
  align-items: center; justify-content: center; color: var(--green-deep);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--hairline);
    padding: 0.25rem var(--gutter) 1.75rem;
    box-shadow: var(--shadow-md); display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 15px 0; border-bottom: 1px solid var(--hairline); font-size: 1.05rem; }
  .nav a[aria-current="page"] { border-bottom-color: var(--hairline); }
  .nav .btn { margin: 1.35rem 0 0; width: 100%; padding: 15px; border-bottom: none; }
}

/* When a brand is served on its own domain, "/" already IS this page. Hide the
   duplicate nav entry and promote "Home" to the current item. Driven by a class
   set in the document head so the correct state renders on first paint. */
.is-brand-root [data-nav="self"] { display: none; }
.is-brand-root .nav a[data-nav="home"] { border-color: var(--accent); color: var(--accent); }
@media (max-width: 900px) {
  .is-brand-root .nav a[data-nav="home"] { border-bottom-color: var(--hairline); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--green-deep); color: var(--cream);
  padding-block: clamp(3.75rem, 8vw, 6.5rem) clamp(4.25rem, 9vw, 7.5rem);
}
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.hero::after {
  right: -170px; bottom: -220px; width: 560px; height: 560px;
  background: radial-gradient(circle at 50% 50%, var(--accent-soft) 0%, rgba(0,0,0,0) 68%);
  opacity: 0.3;
}
.hero::before {
  right: 60px; top: -230px; width: 460px; height: 460px;
  background: radial-gradient(circle at 50% 50%, var(--lime) 0%, rgba(0,0,0,0) 66%);
  opacity: 0.2;
}
.hero .wrap, .hero .wrap-narrow { position: relative; z-index: 1; }
.hero h1 { color: var(--cream); }
.hero h1 + p { margin-top: 1.25rem; }
.hero p { color: var(--latte); font-size: var(--text-lg); }
.hero-inner { max-width: 680px; }
.hero--short { padding-block: clamp(3rem, 6vw, 4.5rem) clamp(3.25rem, 7vw, 5rem); }
.hero--short h1 { font-size: var(--text-2xl); }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem;
  margin-top: 2rem; font-size: var(--text-sm); color: var(--latte);
}
.hero-meta li { display: flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 16px; height: 16px; color: var(--lime); flex-shrink: 0; }

/* ---------- Two doors ---------- */
.doors { display: grid; grid-template-columns: repeat(auto-fit, minmax(305px, 1fr)); gap: clamp(1.25rem, 2.5vw, 2rem); }
.door {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--hairline);
  border-radius: var(--radius-lg); padding: clamp(1.75rem, 3.4vw, 2.6rem);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.door:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.door--coffee { --accent: var(--rose); --accent-deep: var(--rose-deep); --accent-soft: var(--rose-soft); }
.door--insurance { --accent: var(--violet); --accent-deep: var(--violet-deep); --accent-soft: var(--violet-soft); }
.door-icon {
  width: 56px; height: 56px; border-radius: 15px;
  display: grid; place-items: center; margin-bottom: 1.5rem;
  background: var(--accent-tint); color: var(--accent); flex-shrink: 0;
}
.door--coffee .door-icon { background: rgba(194, 59, 107, 0.1); }
.door--insurance .door-icon { background: rgba(155, 31, 184, 0.1); }
.door-icon svg { width: 29px; height: 29px; }
.door h2 { font-size: var(--text-xl); }
.door > p { margin-top: 0.85rem; color: var(--muted); }
.door-list { margin-top: 1.5rem; display: grid; gap: 0.62rem; }
.door-list li { position: relative; padding-left: 1.6rem; font-size: var(--text-sm); color: var(--muted); }
.door-list li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
}
.door .btn-row { margin-top: auto; padding-top: 2rem; }

/* ---------- Bands ---------- */
.band { background: var(--latte); }
.band-white { background: #fff; }
.dark { background: var(--green-deep); color: var(--cream); }
.dark h2, .dark h3, .dark h4 { color: var(--cream); }
.dark p { color: var(--latte); }

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: 3rem; }
.pillar-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 1rem;
  background: rgba(141, 198, 63, 0.16); color: var(--lime);
}
.pillar-icon svg { width: 23px; height: 23px; }
.pillar h3 { margin-bottom: 0.4rem; }
.pillar p { font-size: var(--text-sm); }
.band .pillar h3 { color: var(--green-deep); }
.band .pillar p { color: var(--muted); }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(1.25rem, 2.5vw, 1.75rem); margin-top: 3rem; }
.card-grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); max-width: 860px; margin-inline: auto; }
.card {
  background: #fff; border: 1px solid var(--hairline);
  border-top: 3px solid var(--lime); border-radius: var(--radius);
  padding: 1.85rem 1.6rem;
}
.band-white .card { background: var(--cream); }
.card--soon { border-top-color: var(--muted-soft); background: #FBF7EF; }
.card .tag {
  display: inline-block; font-size: var(--text-xs); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.6rem;
}
.card--soon .tag { color: var(--muted-soft); }
.card h3 { color: var(--green-deep); margin-bottom: 0.45rem; font-size: 1.14rem; }
.card p { font-size: var(--text-sm); color: var(--muted); }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 290px 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse { grid-template-columns: 1fr 290px; }
@media (max-width: 820px) {
  .split, .split--reverse { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .split p, .split--reverse p { margin-inline: auto; }
  .split .btn-row, .split--reverse .btn-row { justify-content: center; }
  .split--reverse .split-media { grid-row: 1; }
}
.portrait-frame {
  width: 270px; height: 270px; border-radius: 50%;
  border: 5px solid var(--accent-soft); overflow: hidden;
  background: var(--green-mid); box-shadow: var(--shadow-md);
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Event card ---------- */
.event-card {
  background: var(--cream); border: 1px solid var(--hairline);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex; gap: clamp(1.25rem, 3vw, 2rem); align-items: flex-start;
  text-align: left; box-shadow: var(--shadow-md);
}
.dark .event-card h3, .dark .event-card p { color: inherit; }
.event-date {
  background: var(--accent); color: #fff; border-radius: 14px;
  padding: 13px 14px 15px; text-align: center; flex-shrink: 0; min-width: 84px;
}
.event-month { display: block; font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.12em; line-height: 1.4; }
.event-day { display: block; font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; line-height: 1.05; }
.event-year { display: block; font-size: 0.7rem; font-weight: 500; opacity: 0.88; }
.event-body h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--green-deep); margin-bottom: 0.5rem; }
.event-body > p { color: var(--muted); font-size: var(--text-sm); }
.event-meta { margin-top: 1.1rem; display: grid; gap: 0.5rem; }
.event-meta li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: var(--text-sm); color: var(--muted); }
.event-meta svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 3.5px; color: var(--accent); }
.event-note { margin-top: 1.1rem; font-size: var(--text-sm); font-style: italic; color: var(--accent); }
.event-card .btn-row { margin-top: 1.5rem; }
@media (max-width: 620px) { .event-card { flex-direction: column; } }

/* ---------- Steps ---------- */
.steps { display: grid; margin-top: 3rem; counter-reset: step; }
.step { display: grid; grid-template-columns: 52px 1fr; gap: 1.5rem; padding-block: 1.75rem; border-top: 1px solid var(--hairline); }
.step:last-child { border-bottom: 1px solid var(--hairline); }
.dark .step { border-color: rgba(240, 228, 210, 0.2); }
.step-num {
  counter-increment: step; width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent); color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem;
}
.step-num::before { content: counter(step); }
.step h3 { color: var(--green-deep); margin-bottom: 0.3rem; }
.step p { font-size: var(--text-sm); color: var(--muted); }
.dark .step h3 { color: var(--cream); }
.dark .step p { color: var(--latte); }

/* ---------- Timeline ---------- */
.timeline { margin-top: 3rem; }
.timeline-item {
  display: grid; grid-template-columns: 145px 1fr; gap: 1.75rem;
  padding-block: 1.6rem; border-top: 1px solid rgba(240, 228, 210, 0.22); align-items: start;
}
.timeline-item:last-child { border-bottom: 1px solid rgba(240, 228, 210, 0.22); }
.timeline-when { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--accent-soft); }
.timeline-what h3 { margin-bottom: 0.3rem; }
.timeline-what p { font-size: var(--text-sm); }
@media (max-width: 620px) { .timeline-item { grid-template-columns: 1fr; gap: 0.35rem; } }

/* ---------- Quotes ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(1.25rem, 2.5vw, 1.75rem); margin-top: 3rem; }
.quote-card {
  background: #fff; border: 1px solid var(--hairline);
  border-left: 4px solid var(--accent); border-radius: var(--radius); padding: 1.85rem 1.75rem;
}
.quote-card blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; line-height: 1.5; color: var(--ink); }
.quote-card figcaption { margin-top: 1rem; font-size: var(--text-sm); font-weight: 700; color: var(--green-deep); }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 2.5rem; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 1.25rem;
  padding: 1.35rem 0; cursor: pointer; list-style: none;
  font-family: var(--font-body); font-weight: 700; font-size: 1.04rem; color: var(--green-deep);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex-shrink: 0; width: 11px; height: 11px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(45deg); transition: transform 0.25s var(--ease); margin-right: 4px;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item > p { padding-bottom: 1.4rem; color: var(--muted); font-size: var(--text-sm); }

/* ---------- Lead magnet ---------- */
.leadmag {
  background: var(--accent); color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.25rem, 5vw, 3.75rem) clamp(1.5rem, 4vw, 3rem);
}
.leadmag h2, .leadmag h3 { color: #fff; }
.leadmag p { color: rgba(255, 255, 255, 0.9); }
.leadmag em { font-style: italic; }
.signup { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }
.signup input[type="email"] {
  flex: 1 1 250px; min-width: 0; padding: 14px 16px; border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.55); background: #fff;
  font-family: var(--font-body); font-size: var(--text-base); color: var(--ink);
}
.signup input::placeholder { color: var(--muted-soft); }
.signup .btn { flex-shrink: 0; }
.signup-note { margin-top: 1rem; font-size: var(--text-xs); color: rgba(255, 255, 255, 0.85); }
.leadmag .signup-note { margin-inline: auto; }
.form-msg { margin-top: 1rem; font-size: var(--text-sm); font-weight: 700; }

/* ---------- Booking / forms ---------- */
.booking {
  background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem); margin-top: 2.5rem; text-align: left;
}
.placeholder-box {
  border: 2px dashed var(--accent-soft); border-radius: var(--radius);
  padding: 2.25rem 1.5rem; text-align: center; background: #FDFAF4;
}
.placeholder-box strong { display: block; color: var(--green-deep); font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }
.placeholder-box p { font-size: var(--text-sm); color: var(--muted); margin: 0.5rem auto 0; }

.field { display: grid; gap: 0.4rem; margin-bottom: 1rem; }
.field label { font-size: var(--text-sm); font-weight: 700; color: var(--green-deep); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--hairline); border-radius: 10px;
  font-family: var(--font-body); font-size: var(--text-base); background: var(--cream); color: var(--ink);
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); outline: none; background: #fff; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.form-divider { margin: 2rem 0 1.5rem; padding-top: 1.6rem; border-top: 1px solid var(--hairline); }
.form-divider h3 { color: var(--green-deep); }
.form-divider p { font-size: var(--text-sm); color: var(--muted); margin-top: 0.25rem; }
.contact-form .btn { width: 100%; }

.contact-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 1.75rem; margin-top: 3rem; text-align: left; }
.contact-item .eyebrow { margin-bottom: 0.35rem; }
.contact-item p { font-size: var(--text-sm); }
.contact-item a { font-size: var(--text-sm); color: var(--latte); border-bottom: 1px solid rgba(240, 228, 210, 0.4); }
.contact-item a:hover { color: #fff; }

/* ---------- Social ---------- */
.social-row { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }
.social-btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 22px;
  border-radius: 10px; border: 1.5px solid rgba(250, 243, 231, 0.4); color: var(--cream);
  font-size: var(--text-sm); font-weight: 700;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.social-btn:hover { background: rgba(250, 243, 231, 0.13); transform: translateY(-2px); }
.social-btn svg { width: 19px; height: 19px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-darker); color: var(--latte); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; font-size: var(--text-sm); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: var(--cream); margin-bottom: 1rem; }
.site-footer .brand-sub { color: var(--rose-soft); }
.site-footer p { color: rgba(240, 228, 210, 0.8); max-width: 36ch; }
.footer-col h4 {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--rose-soft); margin-bottom: 1rem;
}
.footer-col li { margin-bottom: 0.62rem; }
.footer-col a { color: rgba(240, 228, 210, 0.85); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.75rem; border-top: 1px solid rgba(240, 228, 210, 0.16);
  display: grid; gap: 0.85rem; font-size: var(--text-xs); color: rgba(240, 228, 210, 0.62);
}
.footer-bottom p { max-width: 88ch; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}


/* ---------- Contextual brand lockups ---------- */
.brand-mark { width: 40px; height: 40px; flex-shrink: 0; color: var(--green-deep); }
.theme-coffee .brand-mark { color: var(--rose-deep); }
.brand-amp { font-weight: 400; font-style: italic; opacity: 0.45; padding-inline: 1px; }
.brand-name--pair { font-size: 0.98rem; }
.theme-insurance .site-header .brand-sub { color: var(--violet); }
.theme-coffee .site-header .brand-sub { color: var(--rose-deep); }
.site-footer .brand-mark { color: var(--cream); }
.theme-coffee .site-footer .brand-mark { color: var(--rose-soft); }
@media (max-width: 430px) {
  .brand-name--pair { font-size: 0.84rem; }
  .brand-mark { width: 34px; height: 34px; }
}

/* ---------- Event disclosure panel ---------- */
.disclosure {
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--violet);
  border-radius: 10px;
  background: #fff;
  padding: 1.6rem 1.75rem;
}
.disclosure h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--green-deep);
  margin: 0 0 0.9rem;
  letter-spacing: 0.01em;
}
.disclosure ul { margin: 0; padding-left: 1.1rem; list-style: none; }
.disclosure ul li {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 0.7rem;
  padding-left: 0.85rem;
}
.disclosure ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet-soft);
}
.disclosure ul li:last-child { margin-bottom: 0; }
.disclosure ul li strong { color: var(--ink); font-weight: 600; }
.disclosure > p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--muted-soft, var(--muted));
  padding-top: 0.9rem;
  border-top: 1px solid var(--hairline);
}
@media (max-width: 560px) {
  .disclosure { padding: 1.25rem 1.15rem; }
  .disclosure ul { padding-left: 0; }
}

/* ---------- Booking section heading ---------- */
.booking-head {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-deep);
  text-align: center;
  margin: 0 0 1.35rem;
}
/* Offset anchor targets so the sticky header doesn't cover them */
#contact, #book-calendar, #events, #coverage, #faq, #about { scroll-margin-top: 96px; }

/* ---------- Tally embedded message form ---------- */
.tally-wrap { margin-top: 1.25rem; }
.tally-wrap iframe { display: block; width: 100%; border: 0; background: transparent; }

/* ================= PHOTOGRAPHY (My Brew Thang) ================= */

/* Hero with a photo alongside the copy */
.hero-split {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 400px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-split .hero-inner { max-width: 620px; }
.hero-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0,0,0,0.3);
  transform: rotate(-1.4deg);
}
.hero-photo img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 4 / 5; object-fit: cover; object-position: center 42%;
}
/* Insurance hero portrait: mirrored tilt + a violet cast so it reads SurCare, not coffee */
.hero-photo--insurance {
  transform: rotate(1.2deg);
  box-shadow: 0 22px 50px rgba(0,0,0,0.34), 0 0 0 1px rgba(217,168,232,0.22);
}
.hero-photo--insurance img { object-position: center 30%; }

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-photo { max-width: 340px; margin: 0.5rem auto 0; transform: none; }
  .hero-photo--insurance { transform: none; }
}

/* A single photo used as a section feature */
.photo-feature {
  margin: clamp(2.25rem, 5vw, 3.25rem) auto 0;
  max-width: 430px;
}
.photo-feature img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 4 / 5; object-fit: cover; object-position: center 40%;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(34,40,31,0.16);
}
.photo-caption {
  margin-top: 0.85rem;
  font-size: 0.86rem;
  color: var(--muted-soft, var(--muted));
  text-align: center;
  font-style: italic;
}

/* Two photos side by side */
.photo-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.85rem, 2vw, 1.35rem);
  margin-top: clamp(2rem, 4vw, 2.75rem);
}
.photo-pair figure { margin: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 14px 32px rgba(0,0,0,0.24); }
.photo-pair img { display: block; width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.photo-pair img[src="brew-neon.jpg"] { object-position: center 46%; }
@media (max-width: 560px) {
  .photo-pair { gap: 0.7rem; }
}
