/* =============================================================
   House of Honey — Site Styles
   Built on the canonical colors_and_type.css spec.
   Brand: House of Honey (House of Honey Co LLC)
   Audience: Small & mid-size businesses
   Mood: Smart, warm, empowering. Editorial. Elevated, not corporate.
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Pinyon+Script&display=swap');

:root {
  /* ---------- BRAND COLORS ---------- */
  --hoh-gold:     #C9940A;
  --hoh-charcoal: #1C1C1E;
  --hoh-ink:      #1A1A1A;
  --hoh-cream:    #FFFDF5;
  --hoh-ivory:    #FAF7F2;
  --hoh-blush:    #E8D5C4;
  --hoh-mauve:    #C4A0A5;

  /* ---------- GOLD SCALE ---------- */
  --gold-50:  #FBF3DE;
  --gold-100: #F4E2B0;
  --gold-200: #ECCE7F;
  --gold-300: #E0B651;
  --gold-400: #D5A428;
  --gold-500: #C9940A;
  --gold-600: #A77A08;
  --gold-700: #825F06;
  --gold-800: #5E4504;
  --gold-900: #3B2B02;

  /* ---------- NEUTRAL SCALE (warm-leaning) ---------- */
  --neutral-0:    #FFFDF5;
  --neutral-50:   #FAF7F2;
  --neutral-100:  #F2ECE2;
  --neutral-200:  #E4DBCB;
  --neutral-300:  #C9BDAA;
  --neutral-400:  #9E9384;
  --neutral-500:  #73695D;
  --neutral-600:  #4E463C;
  --neutral-700:  #332D26;
  --neutral-800:  #222019;
  --neutral-900:  #1C1C1E;
  --neutral-1000: #0F0F10;

  /* ---------- SEMANTIC TOKENS — LIGHT (default) ---------- */
  --bg:          var(--hoh-cream);
  --bg-elevated: #FFFFFF;
  --bg-muted:    var(--neutral-100);
  --bg-inverse:  var(--hoh-charcoal);

  --fg:         var(--hoh-ink);
  --fg-muted:   var(--neutral-600);
  --fg-subtle:  var(--neutral-500);
  --fg-inverse: var(--hoh-cream);

  --accent:         var(--hoh-gold);
  --accent-hover:   var(--gold-600);
  --accent-pressed: var(--gold-700);
  --accent-soft:    var(--gold-50);

  --support-blush: var(--hoh-blush);
  --support-mauve: var(--hoh-mauve);

  --border:        var(--neutral-200);
  --border-strong: var(--neutral-300);
  --rule-gold:     var(--hoh-gold);
  --hairline:      1px solid var(--neutral-200);

  /* ---------- TYPE ---------- */
  --font-sans:   'Montserrat', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-script: 'Pinyon Script', 'Apple Chancery', cursive;

  --fw-light:    300;
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;

  --fs-caption:    11px;
  --fs-body:       14px;
  --fs-body-lg:    16px;
  --fs-section:    16px;
  --fs-subtitle:   22px;
  --fs-subheading: 28px;
  --fs-heading:    40px;
  --fs-display:    64px;
  --fs-title:      80px;

  --tracking-wordmark: 0.3em;
  --tracking-label:    0.18em;
  --tracking-tight:    -0.01em;

  --lh-tight:   1.1;
  --lh-snug:    1.2;
  --lh-normal:  1.5;
  --lh-relaxed: 1.65;

  /* ---------- SPACING (8-pt base, editorial generous) ---------- */
  --space-0:  0;
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;

  /* ---------- RADII ---------- */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   20px;
  --radius-pill: 999px;

  /* ---------- SHADOWS ---------- */
  --shadow-xs:   0 1px 2px rgba(28, 28, 30, 0.04);
  --shadow-sm:   0 2px 8px rgba(28, 28, 30, 0.06);
  --shadow-md:   0 8px 24px rgba(28, 28, 30, 0.08);
  --shadow-lg:   0 20px 48px rgba(28, 28, 30, 0.12);
  --shadow-gold: 0 8px 24px rgba(201, 148, 10, 0.18);

  /* ---------- MOTION ---------- */
  --ease-standard: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:      120ms;
  --dur-normal:    200ms;
  --dur-slow:      360ms;

  /* ---------- LAYOUT ---------- */
  --max-w:  1200px;
  --read-w: 680px;
}

/* -----------------------------------------------------------
   Reset + base
   ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-relaxed);
  color: var(--fg);
  background: var(--bg);
  text-wrap: pretty;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--dur-normal) var(--ease-standard);
}
a:hover { color: var(--accent-hover); text-decoration: underline; text-underline-offset: 3px; }

p { margin: 0 0 var(--space-4); }

/* -----------------------------------------------------------
   Type — canonical hoh classes
   ----------------------------------------------------------- */
.hoh-title,
.hoh-script {
  font-family: var(--font-script);
  font-weight: var(--fw-regular);
  font-size: var(--fs-title);
  line-height: 1;
  color: var(--hoh-gold);
  letter-spacing: 0;
}

.hoh-h1 {
  font-family: var(--font-sans);
  font-weight: var(--fw-light);
  font-size: clamp(32px, 5vw, var(--fs-heading));
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--fg);
  margin: 0 0 var(--space-4);
}

.hoh-h2 {
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: clamp(24px, 3.6vw, var(--fs-subheading));
  line-height: var(--lh-snug);
  color: var(--fg);
  margin: 0 0 var(--space-4);
}

.hoh-h3 {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: var(--fs-subtitle);
  line-height: var(--lh-snug);
  color: var(--fg);
  margin: 0 0 var(--space-3);
}

.hoh-eyebrow,
.hoh-section-header {
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-label);
  color: var(--fg-muted);
  margin: 0 0 var(--space-3);
}

/* Small gold labels darkened to gold-700 for WCAG AA contrast on light backgrounds.
   Large gold display type (headline accents, numerals, script) keeps the bright --accent. */
.hoh-eyebrow-gold { color: var(--gold-700); }

.hoh-body-lg { font-size: var(--fs-body-lg); line-height: var(--lh-relaxed); }

.hoh-caption {
  font-family: var(--font-sans);
  font-weight: var(--fw-light);
  font-size: var(--fs-caption);
  line-height: var(--lh-normal);
  color: var(--fg-subtle);
  letter-spacing: 0.02em;
}

.hoh-quote {
  font-family: var(--font-script);
  font-weight: var(--fw-regular);
  font-size: 32px;
  line-height: 1.2;
  color: var(--hoh-gold);
}

/* -----------------------------------------------------------
   Wordmark — composable, scales with parent font-size
   ----------------------------------------------------------- */
.hoh-wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
  color: var(--fg);
  line-height: 1;
}
.hoh-wordmark__house {
  font-family: var(--font-sans);
  font-weight: var(--fw-light);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wordmark);
  font-size: 0.35em;
  line-height: 1;
  padding-left: 0.3em;
}
.hoh-wordmark__honey {
  font-family: var(--font-script);
  font-weight: var(--fw-regular);
  color: var(--hoh-gold);
  font-size: 1.2em;
  line-height: 1;
  margin-top: 0.05em;
}

/* -----------------------------------------------------------
   Dark surface mode
   ----------------------------------------------------------- */
.hoh-dark {
  --bg:          var(--hoh-charcoal);
  --bg-elevated: var(--neutral-800);
  --bg-muted:    var(--neutral-700);
  --bg-inverse:  var(--hoh-cream);
  --fg:          var(--hoh-cream);
  --fg-muted:    var(--neutral-300);
  --fg-subtle:   var(--neutral-400);
  --fg-inverse:  var(--hoh-ink);
  --border:        rgba(255, 253, 245, 0.12);
  --border-strong: rgba(255, 253, 245, 0.24);
  background: var(--bg);
  color: var(--fg);
}

/* -----------------------------------------------------------
   Gold rule
   ----------------------------------------------------------- */
.gold-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--rule-gold);
  border: 0;
  margin: 0 0 var(--space-4);
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* -----------------------------------------------------------
   Layout
   ----------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-5);
}
.container-read {
  max-width: var(--read-w);
  margin: 0 auto;
  padding: 0 var(--space-5);
}
.section { padding: var(--space-9) 0; }
.section-ivory { background: var(--hoh-ivory); }

.section-dark {
  background: var(--hoh-charcoal);
  color: var(--hoh-cream);
  position: relative;
  overflow: hidden;
}
.section-dark .hoh-eyebrow { color: var(--hoh-blush); }
.section-dark p { color: rgba(255, 253, 245, 0.82); }

/* Bee watermark for brand-moment dark sections — pre-composited dark PNG,
   radial mask fades the charcoal frame edges into the section */
.bee-watermark {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 620px;
  height: 620px;
  max-width: 62vw;
  max-height: 62vw;
  opacity: 0.5;
  pointer-events: none;
  background: url('assets/bee-icon-dark-512.png') center/contain no-repeat;
  -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 38%, rgba(0,0,0,0) 70%);
          mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 38%, rgba(0,0,0,0) 70%);
}

/* Brief section variant — anchored to the top-right corner, above the eyebrow line */
.bee-watermark.up {
  top: -40px;
  right: -20px;
  transform: none;
  width: 380px;
  height: 380px;
  max-width: 42vw;
  max-height: 42vw;
}

/* CTA strip variant — larger, faded, anchored toward the right without clipping */
.bee-watermark.large {
  right: -40px;
  width: 680px;
  height: 680px;
  max-width: 65vw;
  max-height: 65vw;
  opacity: 0.22;
}

/* -----------------------------------------------------------
   Header / nav
   ----------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--hairline);
}
.site-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-3) var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--fg);
}
.site-logo img { width: 36px; height: 36px; }
.site-logo-text {
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: 11px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}
.site-logo-text .honey {
  font-family: var(--font-script);
  font-size: 26px;
  font-weight: var(--fw-regular);
  letter-spacing: 0;
  color: var(--hoh-gold);
  text-transform: none;
  margin-left: 6px;
  position: relative;
  top: 5px;
}

.site-nav { display: flex; gap: var(--space-5); align-items: center; }
.site-nav a {
  color: var(--fg);
  font-size: 14px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
}
.site-nav a:hover { color: var(--accent); text-decoration: none; }
.site-nav a.active { color: var(--accent); }

/* Mobile nav hamburger — hidden on desktop, shown under 860px via the media query */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 38px;
  padding: 9px 8px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform var(--dur-normal) var(--ease-standard), opacity var(--dur-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -----------------------------------------------------------
   Buttons
   ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px 26px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--dur-normal) var(--ease-standard),
              color var(--dur-normal) var(--ease-standard),
              box-shadow var(--dur-normal) var(--ease-standard),
              transform var(--dur-fast) var(--ease-standard);
}
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--accent);
  color: var(--hoh-charcoal);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--hoh-cream);
  text-decoration: none;
  box-shadow: var(--shadow-gold);
}
.btn-primary:active {
  background: var(--accent-pressed);
  transform: translateY(1px);
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(201, 148, 10, 0.08);
  color: var(--fg);
  text-decoration: none;
}

/* -----------------------------------------------------------
   Variant switcher (temporary, for A/B review)
   ----------------------------------------------------------- */
.variant-bar {
  background: var(--hoh-charcoal);
  color: var(--hoh-cream);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  text-align: center;
  padding: var(--space-2) var(--space-5);
}
.variant-bar a {
  color: var(--hoh-gold);
  margin-left: var(--space-3);
  text-decoration: none;
  border-bottom: 1px solid var(--hoh-gold);
  padding-bottom: 1px;
}
.variant-bar a:hover { color: var(--gold-300); border-color: var(--gold-300); }

/* -----------------------------------------------------------
   Warm + textural elements
   ----------------------------------------------------------- */

/* Hero bee watermark — original master PNG, multiply blend hides white bg */
.hero-bee {
  position: absolute;
  top: 50%;
  right: -3%;
  transform: translateY(-50%);
  width: 880px;
  height: 880px;
  max-width: 72vw;
  max-height: 72vw;
  opacity: 0.18;
  pointer-events: none;
  background: url('assets/bee-icon-512.png') center/contain no-repeat;
  mix-blend-mode: multiply;
  z-index: 0;
}

/* Gold corner mark — the brand signature in the bottom-right of a hero */
.hero-corner-mark {
  position: absolute;
  right: var(--space-7);
  bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--hoh-gold);
  pointer-events: none;
  z-index: 1;
}
.hero-corner-mark::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--hoh-gold);
}

/* Blush section — warm break between cream sections (used sparingly) */
.section-blush {
  background: linear-gradient(180deg, var(--hoh-cream) 0%, #F4E6D8 50%, var(--hoh-cream) 100%);
  position: relative;
  overflow: hidden;
}
.section-blush::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hoh-blush);
  opacity: 0.35;
  pointer-events: none;
}
.section-blush > * { position: relative; z-index: 1; }

/* Soft mauve wash — used for hero or large light surfaces */
.bg-mauve-soft {
  background: linear-gradient(180deg, #F8E6E9 0%, #F2DCE0 100%);
}

/* Mauve section — feminine, dusty rose warmth, deeper than blush */
.section-mauve {
  background: linear-gradient(180deg, #F2DCE0 0%, #EAD0D5 100%);
  position: relative;
  overflow: hidden;
  color: var(--hoh-ink);
}
.section-mauve .hoh-eyebrow {
  color: var(--hoh-charcoal);
  opacity: 0.7;
}
.section-mauve .hoh-h2,
.section-mauve .hoh-h1 { color: var(--hoh-charcoal); }
.section-mauve p { color: rgba(28, 28, 30, 0.78); }
.section-mauve .btn-ghost {
  color: var(--hoh-charcoal);
  border-color: rgba(28, 28, 30, 0.25);
}
.section-mauve .btn-ghost:hover {
  border-color: var(--hoh-charcoal);
  background: rgba(28, 28, 30, 0.05);
}
/* Mauve about-section: no bee watermark (user preference) */
.section-mauve::before { display: none; }
.section-mauve > * { position: relative; z-index: 1; }

/* About-mark inside a mauve section — bee sits directly on the mauve, no charcoal box */
.section-mauve .about-mark { background: transparent; aspect-ratio: auto; overflow: visible; }
.section-mauve .about-mark::after { display: none; }
.section-mauve .about-mark img { width: 100%; max-width: 480px; height: auto; opacity: 0.92; }

/* Pull quote — full-band mauve panel with gold rules and Pinyon markers */
.pullquote-band {
  background: linear-gradient(180deg, #F2DCE0 0%, #EAD0D5 100%);
  padding: var(--space-9) 0;
  position: relative;
  overflow: hidden;
}
.pullquote-band::before,
.pullquote-band::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--hoh-gold);
  opacity: 0.6;
}
.pullquote-band::before { top: 0; }
.pullquote-band::after { bottom: 0; }
.pullquote {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;
  gap: var(--space-5);
  margin: 0 auto;
  max-width: 1000px;
  padding: 0 var(--space-5);
  position: relative;
  z-index: 1;
}
.pullquote.pullquote-clean {
  display: block;
  text-align: center;
  max-width: 820px;
}
.pullquote .marker {
  font-family: var(--font-script);
  font-size: 96px;
  line-height: 0.7;
  color: var(--hoh-gold);
  opacity: 0.8;
  text-align: center;
}
.pullquote blockquote {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.1;
  color: var(--hoh-charcoal);
  font-weight: var(--fw-regular);
  text-align: center;
}
.pullquote cite {
  display: block;
  margin-top: var(--space-4);
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--hoh-charcoal);
  opacity: 0.62;
}

/* Vertical edge label — small rotated tag for editorial detail */
.edge-label {
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--hoh-charcoal);
  opacity: 0.45;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}

/* Pinyon ornament — decorative script flourish used between sections */
.ornament {
  text-align: center;
  font-family: var(--font-script);
  font-size: 64px;
  line-height: 1;
  color: var(--hoh-gold);
  margin: var(--space-7) 0;
  position: relative;
}
.ornament::before,
.ornament::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: var(--hoh-gold);
  opacity: 0.4;
}
.ornament::before { left: 50%; transform: translateX(-180px); }
.ornament::after  { right: 50%; transform: translateX(180px); }

/* Service card with editorial Pinyon number — mauve so gold stays precious */
.service-card .pinyon-num {
  font-family: var(--font-script);
  font-size: 64px;
  line-height: 0.78;
  color: var(--hoh-mauve);
  margin-bottom: var(--space-3);
}
.service-card { border-top: 3px solid var(--hoh-mauve); }
.service-card:hover { border-top-color: var(--hoh-gold); }

/* On-scroll fade-up (used by hero text and section blocks) */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------------------------------------
   Hero
   ----------------------------------------------------------- */
.hero {
  padding: var(--space-10) 0 var(--space-9);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero .container { max-width: 920px; position: relative; z-index: 1; }

/* Statement hero — magazine-cover energy with heroic Pinyon "Honey" */
.hero-statement {
  padding: var(--space-9) 0 var(--space-9);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-statement .container {
  max-width: 1100px;
  position: relative;
  z-index: 1;
}
.hero-statement .eyebrow-rail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.hero-statement .eyebrow-rail .rule {
  flex: 0 0 64px;
  height: 1px;
  background: var(--hoh-gold);
}
.hero-statement .statement-stack {
  font-family: var(--font-sans);
  font-weight: var(--fw-light);
  font-size: clamp(28px, 4.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0;
}
.hero-statement .honey-big {
  display: block;
  font-family: var(--font-script);
  font-weight: var(--fw-regular);
  color: var(--hoh-gold);
  font-size: clamp(140px, 22vw, 320px);
  line-height: 0.78;
  letter-spacing: 0;
  margin: var(--space-2) 0 var(--space-2);
  /* Optical centering — Pinyon Script tilts right, shift left a touch */
  transform: translateX(-2%);
}
.hero-statement .statement-after {
  display: block;
  font-family: var(--font-sans);
  font-weight: var(--fw-light);
  font-size: clamp(28px, 4.6vw, 52px);
  line-height: 1.05;
  color: var(--fg);
}
.hero-statement .hero-sub {
  margin-top: var(--space-6);
  max-width: 580px;
}
.hero-statement .hero-cta-row { margin-top: var(--space-6); }

.hero-eyebrow { margin-bottom: var(--space-5); }

.hero-lede {
  font-family: var(--font-sans);
  font-weight: var(--fw-light);
  font-size: clamp(40px, 6vw, var(--fs-display));
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 var(--space-5);
}
.hero-lede .script {
  font-family: var(--font-script);
  font-weight: var(--fw-regular);
  color: var(--hoh-gold);
  font-size: 1.4em;
  line-height: 0.8;
  display: inline-block;
  margin: 0 0.05em;
}

.hero-sub {
  font-size: clamp(18px, 1.55vw, 20px);
  color: var(--fg);
  opacity: 0.82;
  max-width: 600px;
  margin: 0 auto var(--space-6);
  line-height: 1.6;
}

.hero-accent {
  color: var(--hoh-gold);
}

.hero-cta-row {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* -----------------------------------------------------------
   Service cards
   ----------------------------------------------------------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-7);
}
.service-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--dur-normal) var(--ease-standard),
              transform var(--dur-slow) var(--ease-standard),
              border-color var(--dur-normal) var(--ease-standard);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gold-300);
}

.service-tier {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: var(--space-3);
}

.service-name {
  font-family: var(--font-sans);
  font-weight: var(--fw-light);
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 var(--space-3);
  color: var(--fg);
}

.service-body {
  font-size: 15px;
  color: var(--fg-muted);
  margin: 0 0 var(--space-4);
  line-height: var(--lh-relaxed);
}

.service-card ul { list-style: none; padding: 0; margin: 0 0 var(--space-4); }
.service-card li {
  font-size: 14px;
  padding: var(--space-2) 0;
  border-top: 1px solid var(--neutral-100);
  color: var(--fg);
}
.service-card li:first-child { border-top: 0; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--accent);
}

/* -----------------------------------------------------------
   Values grid
   ----------------------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--hoh-gold);
  border-bottom: 1px solid var(--hoh-gold);
  margin-top: var(--space-7);
}
.values-col { padding: var(--space-6) var(--space-5); }
.values-col + .values-col { border-left: 1px solid rgba(201, 148, 10, 0.35); }
.values-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  margin: 0 0 var(--space-4);
}
.values-col.are h4 { color: var(--hoh-gold); }
.values-col.are-not h4 { color: var(--hoh-mauve); }
.values-col ul { list-style: none; padding: 0; margin: 0; }
.values-col li {
  padding: var(--space-2) 0;
  font-size: 15px;
  border-top: 1px solid rgba(255, 253, 245, 0.08);
  color: var(--hoh-cream);
}
.values-col li:first-child { border-top: 0; }
.values-col.are-not li { color: rgba(255, 253, 245, 0.45); text-decoration: line-through; }

/* -----------------------------------------------------------
   About preview
   ----------------------------------------------------------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.about-portrait {
  background: var(--hoh-blush);
  aspect-ratio: 4/5;
  border-radius: 0; /* photos square per spec */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-portrait::after {
  content: 'Brand image placeholder';
  font-size: 11px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: var(--fw-semibold);
}

/* About mark — bee on charcoal, brand moment in place of a founder portrait */
.about-mark {
  background: var(--hoh-charcoal);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-mark img {
  width: 58%;
  height: auto;
  opacity: 0.95;
}
.about-mark::after {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 1px;
  background: var(--hoh-gold);
  opacity: 0.6;
}

/* -----------------------------------------------------------
   CTA strip
   ----------------------------------------------------------- */
.cta-strip { text-align: center; padding: var(--space-10) 0; }
.cta-strip .container { max-width: 720px; }
.cta-strip h2 {
  font-family: var(--font-script);
  font-size: clamp(52px, 8vw, 72px);
  line-height: 1;
  color: var(--hoh-gold);
  margin: 0 0 var(--space-3);
  font-weight: var(--fw-regular);
}
.cta-strip-sub {
  font-family: var(--font-sans);
  font-weight: var(--fw-light);
  font-size: var(--fs-subtitle);
  margin: 0 0 var(--space-6);
  color: rgba(255, 253, 245, 0.86);
}

/* -----------------------------------------------------------
   Footer
   ----------------------------------------------------------- */
.site-footer {
  background: var(--hoh-charcoal);
  color: rgba(255, 253, 245, 0.72);
  padding: var(--space-8) 0 var(--space-5);
  border-top: 1px solid var(--hoh-gold);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-5);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-7);
}
.footer-brand img { width: 44px; margin-bottom: var(--space-3); }
.footer-brand p { font-size: 13px; line-height: var(--lh-relaxed); max-width: 280px; }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--hoh-blush);
  margin: 0 0 var(--space-3);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: var(--space-1) 0; }
.footer-col a { color: rgba(255, 253, 245, 0.72); font-size: 14px; }
.footer-col a:hover { color: var(--hoh-gold); text-decoration: none; }
.footer-meta {
  max-width: var(--max-w);
  margin: var(--space-7) auto 0;
  padding: var(--space-4) var(--space-5) 0;
  border-top: 1px solid rgba(255, 253, 245, 0.12);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 253, 245, 0.5);
}

/* -----------------------------------------------------------
   Page-specific: services
   ----------------------------------------------------------- */
.page-hero {
  padding: var(--space-9) 0 var(--space-7);
  text-align: center;
  background: var(--hoh-ivory);
  border-bottom: var(--hairline);
}
.page-hero .hoh-h1 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(38px, 5.6vw, 58px);
}
.page-hero p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--fg-muted);
  font-size: 18px;
}
/* Keep the eyebrow label its intended size + gold, above the broad .page-hero p rule */
.page-hero .hoh-eyebrow { font-size: 13px; }
.page-hero .hoh-eyebrow-gold { color: var(--gold-700); }

.tier-row {
  display: grid;
  grid-template-columns: 240px 1fr 280px;
  gap: var(--space-7);
  align-items: start;
  padding: var(--space-8) 0;
  border-bottom: var(--hairline);
}
.tier-row:last-child { border-bottom: 0; }
.tier-label { position: sticky; top: 100px; }
.tier-label .num {
  font-family: var(--font-script);
  font-size: 64px;
  color: var(--hoh-gold);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.tier-label h3 {
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: var(--fs-subtitle);
  margin: 0;
}
.tier-body h4 {
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: 11px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: var(--space-4) 0 var(--space-2);
}
.tier-body h4:first-child { margin-top: 0; }
.tier-body p { font-size: var(--fs-body-lg); color: var(--fg); }
.tier-body ul { padding-left: var(--space-4); margin: 0 0 var(--space-3); }
.tier-body li { margin-bottom: var(--space-2); }

.tier-aside {
  background: var(--hoh-ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}
.tier-aside .hoh-eyebrow { margin-bottom: var(--space-2); }
.tier-aside p { font-size: 14px; color: var(--fg-muted); margin: 0; }

/* -----------------------------------------------------------
   About page
   ----------------------------------------------------------- */
.about-lede {
  max-width: var(--read-w);
  margin: 0 auto;
  padding: var(--space-8) var(--space-5);
}
.about-lede p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg);
  margin-bottom: var(--space-5);
}
.about-lede p.first {
  font-size: 24px;
  font-weight: var(--fw-light);
  line-height: 1.45;
  color: var(--fg);
}
.about-pullquote { margin: var(--space-7) 0; text-align: center; }
.about-pullquote .hoh-quote {
  display: block;
  max-width: 560px;
  margin: 0 auto var(--space-3);
}

/* -----------------------------------------------------------
   Contact page
   ----------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-8);
  padding: var(--space-8) 0;
  align-items: start;
}
.contact-form {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-xs);
}
.field { margin-bottom: var(--space-4); }
.field label {
  display: block;
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: 11px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
  color: var(--fg-muted);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  background: var(--hoh-cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--fg);
  transition: border-color var(--dur-normal) var(--ease-standard);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: var(--accent);
}
.field textarea { min-height: 140px; resize: vertical; }

.contact-meta h3 {
  font-family: var(--font-sans);
  font-weight: var(--fw-light);
  font-size: var(--fs-subheading);
  line-height: 1.25;
  margin: 0 0 var(--space-4);
}
.contact-meta-list { list-style: none; padding: 0; margin: var(--space-6) 0 0; }
.contact-meta-list li {
  padding: var(--space-3) 0;
  border-top: var(--hairline);
  font-size: 15px;
}
.contact-meta-list li:first-child { border-top: 0; }
.contact-meta-list strong {
  display: block;
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: 11px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: var(--space-1);
}

/* -----------------------------------------------------------
   Responsive
   ----------------------------------------------------------- */
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .site-header-inner { position: relative; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 253, 245, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: var(--hairline);
    box-shadow: var(--shadow-md);
    padding: var(--space-2) var(--space-5) var(--space-4);
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    padding: var(--space-3) 0;
    border-top: 1px solid var(--neutral-100);
  }
  .site-nav a:first-child { border-top: 0; }
  .site-nav .btn-primary {
    margin-top: var(--space-3);
    justify-content: center;
    border-top: 0;
  }
  .about-split,
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .tier-row { grid-template-columns: 1fr; gap: var(--space-4); }
  .tier-label { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .values-col + .values-col { border-left: 0; border-top: var(--hairline); }
  .section { padding: var(--space-7) 0; }
  .hero { padding: var(--space-8) 0 var(--space-7); }
}

@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-meta { flex-direction: column; gap: var(--space-2); }
}

/* ============================================================
   2026-06-05 · Homepage bee fly-in + inner-page palette propagation
   ============================================================ */

/* Page heroes brought onto the homepage's mauve wash (was flat ivory).
   Apply by adding class "bg-mauve-soft" to a .page-hero section. */
.page-hero.bg-mauve-soft {
  background: linear-gradient(180deg, #F8E6E9 0%, #F2DCE0 100%);
  border-bottom: 1px solid rgba(201, 148, 10, 0.22);
}

/* Services tier numerals in mauve, matching the homepage service-card numbers */
.tier-label .num { color: var(--hoh-mauve); }

/* Flying bee — the calligraphic bee split into three stacked layers (left wing,
   body, right wing). It flies in on load with its wings flapping, then blooms
   into the existing .hero-bee watermark. Hidden by default so a no-JS or
   reduced-motion visitor simply sees the static watermark, unchanged. */
.flying-bee {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  aspect-ratio: 396 / 303;
  z-index: 3;
  offset-rotate: 0deg;
  offset-anchor: 50% 50%;
  offset-distance: 0%;
  transform-origin: center center;
  will-change: offset-distance, transform, opacity;
  pointer-events: none;
}
.flying-bee img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  backface-visibility: hidden;
  will-change: transform;
}
.flying-bee .body { z-index: 2; }
.flying-bee .wL, .flying-bee .wR { z-index: 1; }
/* wings hinge at their root and flap; antennae and body stay still */
.flying-bee .wL { transform-origin: 38% 28%; animation: flapL 0.22s ease-in-out infinite; }
.flying-bee .wR { transform-origin: 62% 28%; animation: flapR 0.22s ease-in-out infinite; }
@keyframes flapL {
  0%, 100% { transform: rotate(8deg)   scaleY(1);    }
  50%      { transform: rotate(-12deg) scaleY(0.88); }
}
@keyframes flapR {
  0%, 100% { transform: rotate(-8deg)  scaleY(1);    }
  50%      { transform: rotate(12deg)  scaleY(0.88); }
}

/* JS adds this while the bee is in flight so the watermark waits to fade in */
.hero-bee--pending { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .flying-bee { display: none !important; }
  .flying-bee .wL, .flying-bee .wR { animation: none; }
  .hero-bee--pending { opacity: 0.18; }
}
