/* BeeTaughtMe , Honeycomb theme. Beeswax light hero, dark hive body, one honey accent. */
:root {
  --wax: #f7ead0;
  --wax-deep: #f0dfbc;
  --hive: #201304;
  --hive-deep: #160d03;
  --hive-card: #2a1a08;
  --comb: #6b4a1f;
  --cream: #f6ecd8;
  --cream-dim: #d9c49c;
  --beeswax: #e8cf9a;
  --honey: #cd9433;
  --ink: #201304;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Bodoni Moda", "Didot", Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.2rem, 1.1rem + 0.5vw, 1.44rem);
  --step-2: clamp(1.5rem, 1.3rem + 1vw, 1.92rem);
  --step-3: clamp(1.9rem, 1.5rem + 2vw, 2.56rem);
  --step-4: clamp(2.4rem, 1.8rem + 3vw, 3.4rem);
  --step-5: clamp(3rem, 2rem + 5vw, 4.5rem);
  --step-6: clamp(3.4rem, 2.2rem + 6vw, 5.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--cream);
  background: var(--hive);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0 0 0.5em;
}
h2 { font-size: var(--step-4); }
h2 em, h1 em { font-style: italic; font-weight: 800; }
p { text-wrap: pretty; }

.skip {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--honey); color: var(--hive-deep); padding: 0.75rem 1.25rem;
}
.skip:focus { left: 0; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Grain over everything, very subtle */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 120; pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--wax) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in srgb, var(--comb) 25%, transparent);
  transition: box-shadow 0.25s var(--ease);
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(22, 13, 3, 0.18); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; padding-top: 0.85rem; padding-bottom: 0.85rem; }
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand-hex { width: 30px; height: 34px; color: var(--honey); }
.brand-hex use { fill: var(--honey); fill-opacity: 0.25; }
.hero-hex use { fill: none; }
.brand span { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; letter-spacing: -0.01em; }
.site-nav { display: flex; gap: 1.5rem; }
.site-nav a { text-decoration: none; color: var(--ink); font-size: 0.95rem; font-weight: 600; position: relative; }
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 100%;
  background: var(--honey); transform: scaleX(0); transform-origin: left;
  transition: transform 0.2s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.95rem 1.9rem; border-radius: 6px; font-weight: 700; font-size: 1rem;
  text-decoration: none; min-height: 48px; cursor: pointer; border: 2px solid transparent;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease), color 0.18s;
}
.btn-primary { background: var(--honey); color: var(--hive-deep); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(169, 118, 34, 0.4); background: var(--honey); }
.btn-ghost { border-color: var(--comb); color: var(--ink); background: transparent; }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--honey); background: rgba(205, 148, 51, 0.12); }
.btn-dark { background: var(--hive-deep); color: var(--cream); }
.btn-dark:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(22, 13, 3, 0.45); }
.btn-ghostdark { border-color: var(--hive-deep); color: var(--hive-deep); background: transparent; }
.btn-ghostdark:hover { transform: translateY(-3px); background: rgba(22, 13, 3, 0.08); }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.9rem; min-height: 44px; }

/* ---------- Eyebrow + section head ---------- */
.eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--comb); margin: 0 0 1rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--honey); display: inline-block; }
.stats .eyebrow, .services .eyebrow, .gallery .eyebrow, .proof .eyebrow, .area .eyebrow { color: var(--honey); }
.eyebrow-dark { color: var(--hive-deep); }
.eyebrow-dark::before { background: var(--hive-deep); }
.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .lede { color: inherit; opacity: 0.85; font-size: var(--step-1); max-width: 60ch; }
.lede { font-size: var(--step-1); line-height: 1.55; }
.lede a, .section-head .lede a { color: var(--comb); font-weight: 600; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 500px at 12% 8%, rgba(205, 148, 51, 0.22), transparent 60%),
    radial-gradient(700px 500px at 88% 90%, rgba(232, 207, 154, 0.35), transparent 60%),
    var(--wax);
  color: var(--ink);
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-h1 { font-size: var(--step-6); margin: 0 0 1.25rem; }
.hero-h1 .mask { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero-h1 .mask > span { display: inline-block; }
.hero-h1 .answer { color: var(--honey); margin-top: 0.15em; }
.hero .lede { color: #4a3413; max-width: 46ch; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.75rem 0 1.5rem; }
.trust-row { display: flex; align-items: center; flex-wrap: wrap; gap: 0.8rem; font-size: 0.95rem; color: #4a3413; margin: 0; }
.trust-row strong { font-variant-numeric: tabular-nums; color: var(--ink); }
.trust-row .dot { width: 7px; height: 7px; background: var(--honey); clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); }

.hero-visual { position: relative; justify-self: center; width: min(100%, 460px); }
.hex-frame {
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: var(--honey);
  padding: 12px;
}
.hex-frame img { clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); width: 100%; height: 100%; object-fit: cover; transform: scale(1.001); }
.hero-photo { aspect-ratio: 3 / 3.6; border: 0; }
.hero-photo img { filter: saturate(1.02); }
.hero-visual::before {
  content: ""; position: absolute; inset: 6% -4% -4% 8%; z-index: -1;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: rgba(205, 148, 51, 0.28);
}
.hero-hex { position: absolute; color: var(--honey); opacity: 0.55; }
.hero-hex-a { width: 74px; top: -28px; left: -14px; }
.hero-hex-b { width: 46px; bottom: 52px; right: -18px; opacity: 0.4; }
.hero-chip {
  position: absolute; left: -30px; bottom: 36px;
  background: var(--hive); color: var(--cream);
  padding: 0.85rem 1.2rem; border-radius: 10px;
  box-shadow: 0 16px 40px rgba(22, 13, 3, 0.3);
  display: flex; flex-direction: column; gap: 0.15rem; margin: 0;
  border-left: 4px solid var(--honey);
}
.hero-chip strong { font-size: 0.95rem; letter-spacing: 0.02em; }
.hero-chip span { font-size: 0.8rem; color: var(--cream-dim); }

/* Hero entrance: pure CSS, only when motion is OK */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * { animation: heroRise 0.7s var(--ease) both; }
  .hero-copy > *:nth-child(2) { animation-delay: 0.08s; }
  .hero-copy > *:nth-child(3) { animation-delay: 0.16s; }
  .hero-copy > *:nth-child(4) { animation-delay: 0.26s; }
  .hero-copy > *:nth-child(5) { animation-delay: 0.34s; }
  .hero-h1 .mask > span { animation: maskRise 0.8s var(--ease) both; }
  .hero-h1 .mask:nth-child(2) > span { animation-delay: 0.1s; }
  .hero-h1 .mask:nth-child(3) > span { animation-delay: 0.2s; }
  .hero-visual { animation: heroSettle 0.9s var(--ease) 0.25s both; }
  @keyframes heroRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
  @keyframes maskRise { from { transform: translateY(112%); } to { transform: none; } }
  @keyframes heroSettle { from { opacity: 0; transform: translateY(30px) scale(0.98); } to { opacity: 1; transform: none; } }
}

/* ---------- Stats ---------- */
.stats { background: var(--hive-deep); padding: clamp(3rem, 6vw, 4.5rem) 0; border-top: 1px solid rgba(205, 148, 51, 0.18); }
.stats-grid { display: grid; gap: 1.75rem; }
.stats-lede { margin: 0; color: var(--cream-dim); font-size: 1.05rem; }
.stats-lede a { color: var(--honey); font-weight: 600; }
.stat-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.stat { border-left: 3px solid var(--honey); padding-left: 1.25rem; }
.stat-num { display: block; font-family: var(--font-display); font-weight: 800; font-size: var(--step-5); color: var(--cream); font-variant-numeric: tabular-nums; line-height: 1; }
.stat-label { color: var(--cream-dim); font-size: 0.95rem; }

/* ---------- Services ---------- */
.services { background: var(--hive); padding: clamp(5rem, 10vw, 8rem) 0; }
.services .section-head .lede { color: var(--cream-dim); }
.service-stack { display: grid; gap: 1.1rem; }
.service-row {
  position: sticky; top: calc(84px + var(--i) * 14px);
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem; align-items: center;
  background: var(--hive-card);
  border: 1px solid rgba(205, 148, 51, 0.22);
  border-radius: 14px;
  padding: 1.6rem 1.8rem;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.service-row:hover { transform: translateY(-4px); border-color: var(--honey); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4); }
.service-num {
  font-family: var(--font-display); font-weight: 800; font-size: var(--step-3);
  color: transparent; -webkit-text-stroke: 1.5px var(--honey); opacity: 0.9;
  font-variant-numeric: tabular-nums; min-width: 2.2ch;
}
.service-body h3 { font-size: var(--step-2); margin: 0 0 0.35rem; color: var(--cream); }
.service-body p { margin: 0; color: var(--cream-dim); max-width: 62ch; }
.service-book {
  white-space: nowrap; text-decoration: none; font-weight: 700; font-size: 0.92rem;
  color: var(--honey); border: 1.5px solid var(--honey); border-radius: 6px;
  padding: 0.7rem 1.2rem; transition: background 0.18s var(--ease), color 0.18s, transform 0.18s var(--ease);
}
.service-book:hover { background: var(--honey); color: var(--hive-deep); transform: translateY(-2px); }

/* ---------- Hex divider (draw on scroll) ---------- */
.hex-divider { background: var(--hive); padding: 0.5rem 0; }
.hex-divider svg { display: block; width: 100%; height: 70px; color: var(--honey); }
.hex-divider .draw { fill: none; stroke: currentColor; stroke-width: 2; opacity: 0.75; }
.hex-divider .cell { opacity: 0.9; fill: none; }
.hex-divider use.fill { fill: var(--honey); fill-opacity: 0.22; }
.js .hex-divider line.draw { stroke-dasharray: 1; stroke-dashoffset: 1; }
.js .hex-divider.drawn line.draw { stroke-dashoffset: 0; transition: stroke-dashoffset 1.2s var(--ease); }
.js .hex-divider .cell { opacity: 0; transform: scale(0.5); transform-box: fill-box; transform-origin: center; transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.js .hex-divider.drawn .cell { opacity: 0.9; transform: none; }
.js .hex-divider.drawn .cell:nth-of-type(1) { transition-delay: 0.35s; }
.js .hex-divider.drawn .cell:nth-of-type(2) { transition-delay: 0.5s; }
.js .hex-divider.drawn .cell:nth-of-type(3) { transition-delay: 0.65s; }

/* ---------- Gallery ---------- */
.gallery { background: var(--hive); padding: clamp(4rem, 8vw, 6rem) 0; }
.gallery .section-head .lede { color: var(--cream-dim); }
.gallery .section-head .lede a { color: var(--honey); }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 1.75rem; }
.gallery-big { grid-row: span 2; }
.gallery-grid .hex-frame { aspect-ratio: 3 / 3.4; position: relative; transition: transform 0.25s var(--ease); }
.gallery-grid .hex-frame:hover { transform: translateY(-6px); }
.gallery-grid .hex-frame img { transition: transform 0.6s var(--ease); }
.gallery-grid .hex-frame:hover img { transform: scale(1.05); }
.gallery-grid figcaption {
  position: absolute; left: 50%; bottom: 9%; transform: translateX(-50%);
  background: rgba(22, 13, 3, 0.82); color: var(--cream);
  font-size: 0.85rem; font-weight: 600; padding: 0.5rem 1rem; border-radius: 999px;
  border: 1px solid rgba(205, 148, 51, 0.5); white-space: nowrap;
  clip-path: none;
}
.gallery-more { text-align: center; margin-top: 2.5rem; }
.gallery-more a { color: var(--honey); font-weight: 700; font-size: 1.05rem; text-decoration: none; border-bottom: 2px solid var(--honey); padding-bottom: 2px; }
.gallery-more a:hover { color: var(--cream); border-color: var(--cream); }

/* ---------- Full-bleed band ---------- */
.band { position: relative; overflow: hidden; min-height: 420px; display: flex; align-items: center; }
.band-bg {
  position: absolute; inset: -8% 0;
  background: url("img/bee-locs.jpg") center 30% / cover no-repeat;
  filter: sepia(0.55) saturate(1.1) brightness(0.5);
}
.band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--hive) 0%, transparent 22%, transparent 78%, var(--hive) 100%); }
.band-inner { position: relative; z-index: 1; text-align: center; padding: 5rem 24px; }
.band-quote { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: var(--step-5); color: var(--cream); margin: 0 0 0.6rem; text-shadow: 0 3px 24px rgba(22, 13, 3, 0.7); }
.band-sub { color: var(--cream-dim); margin: 0; font-size: var(--step-1); }
@media (prefers-reduced-motion: no-preference) {
  .band-bg { animation: kenburns 26s ease-in-out infinite alternate; }
  @keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.12); } }
}

/* ---------- Process (light band) ---------- */
.process { background: var(--wax); color: var(--ink); padding: clamp(5rem, 10vw, 8rem) 0; }
.process .section-head .lede { color: #4a3413; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps::before { content: ""; position: absolute; top: 27px; left: 6%; right: 6%; height: 2px; background: repeating-linear-gradient(90deg, var(--honey) 0 10px, transparent 10px 20px); opacity: 0.5; }
.steps li { padding: 0 1.25rem; position: relative; }
.step-num {
  width: 54px; height: 54px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
  background: var(--honey); color: var(--hive-deep); border-radius: 50%;
  margin-bottom: 1.1rem; position: relative; z-index: 1;
  box-shadow: 0 8px 22px rgba(169, 118, 34, 0.35);
}
.steps h3 { font-size: var(--step-1); margin-bottom: 0.4rem; }
.steps p { margin: 0; color: #4a3413; font-size: 0.98rem; }
.steps a { color: var(--comb); font-weight: 600; }

/* ---------- Proof ---------- */
.proof { background: var(--hive-deep); padding: clamp(5rem, 10vw, 8rem) 0; }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.proof .section-head { margin-bottom: 1.5rem; }
.proof .lede { color: var(--cream-dim); }
.proof-points { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: 0.9rem; }
.proof-points li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--cream); font-weight: 600; }
.proof-points li::before {
  content: ""; flex: none; width: 14px; height: 16px; margin-top: 5px;
  background: var(--honey);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.proof-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; align-items: start; }
.proof-photo { margin: 0; }
.proof-photo:nth-child(2) { margin-top: 2.5rem; }
.proof-photo img { border-radius: 18px; border: 1px solid rgba(205, 148, 51, 0.3); transition: transform 0.25s var(--ease); aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
.proof-photo:hover img { transform: translateY(-5px) scale(1.015); }
.proof-photo figcaption { color: var(--cream-dim); font-size: 0.88rem; margin-top: 0.7rem; text-align: center; }

/* ---------- FAQ (light) ---------- */
.faq { background: var(--wax-deep); color: var(--ink); padding: clamp(5rem, 10vw, 8rem) 0; }
.faq-narrow { max-width: 820px; }
.accordion { display: grid; gap: 0.9rem; }
.acc-item { background: rgba(255, 252, 244, 0.55); border: 1px solid rgba(107, 74, 31, 0.25); border-radius: 12px; overflow: hidden; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.acc-item:hover { border-color: var(--honey); }
.acc-item.open { border-color: var(--honey); box-shadow: 0 10px 30px rgba(107, 74, 31, 0.12); }
.acc-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-weight: 700; font-size: var(--step-1); color: var(--ink);
  padding: 1.25rem 1.5rem;
}
.acc-icon { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--honey); position: relative; transition: transform 0.25s var(--ease), background 0.2s; }
.acc-icon::before, .acc-icon::after { content: ""; position: absolute; background: var(--honey); top: 50%; left: 50%; }
.acc-icon::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.acc-icon::after { width: 2px; height: 12px; transform: translate(-50%, -50%); transition: opacity 0.2s; }
.acc-item.open .acc-icon { transform: rotate(135deg); background: var(--honey); border-color: var(--honey); }
.acc-panel { display: grid; grid-template-rows: 1fr; transition: grid-template-rows 0.35s var(--ease); }
.acc-panel > p { overflow: hidden; margin: 0; padding: 0 1.5rem 1.35rem; color: #4a3413; max-width: 62ch; }
.acc-panel a { color: var(--comb); font-weight: 600; }
.js .acc-panel { grid-template-rows: 0fr; }
.js .acc-panel > p { padding-bottom: 0; }
.js .acc-item.open .acc-panel { grid-template-rows: 1fr; }
.js .acc-item.open .acc-panel > p { padding-bottom: 1.35rem; }

/* ---------- Service area ---------- */
.area { background: var(--hive); padding: clamp(4rem, 8vw, 6rem) 0; text-align: center; }
.area .section-head { margin-left: auto; margin-right: auto; }
.area .eyebrow { justify-content: center; }
.area .eyebrow::after { content: ""; width: 26px; height: 2px; background: var(--honey); display: inline-block; }
.town-chips { list-style: none; margin: 2rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }
.town-chips li {
  border: 1.5px solid rgba(205, 148, 51, 0.45); color: var(--cream);
  padding: 0.55rem 1.3rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  transition: background 0.18s var(--ease), color 0.18s, transform 0.18s var(--ease), border-color 0.18s;
  cursor: default;
}
.town-chips li:hover { background: var(--honey); color: var(--hive-deep); border-color: var(--honey); transform: translateY(-3px); }
.town-chips li:first-child { background: var(--honey); color: var(--hive-deep); border-color: var(--honey); }

/* ---------- Final CTA ---------- */
.cta { background: linear-gradient(135deg, var(--honey) 0%, color-mix(in srgb, var(--honey) 82%, var(--hive) 18%) 130%); color: var(--hive-deep); padding: clamp(5rem, 10vw, 8rem) 0; }
.cta-inner { text-align: center; max-width: 760px; }
.cta-inner .eyebrow { justify-content: center; }
.cta-inner .eyebrow::after { content: ""; width: 26px; height: 2px; background: var(--hive-deep); display: inline-block; }
.cta h2 { font-size: var(--step-5); }
.lede-dark { color: #3d2c0c; }
.lede-dark a { color: var(--hive-deep); font-weight: 700; }
.cta .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--hive-deep); padding: 3rem 0 6rem; border-top: 1px solid rgba(205, 148, 51, 0.18); }
.footer-inner { display: grid; gap: 1rem; text-align: center; }
.footer-brand { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; margin: 0; color: var(--cream); }
.footer-brand span { font-family: var(--font-body); font-weight: 400; font-size: 0.95rem; color: var(--cream-dim); }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin: 0; }
.footer-links a { color: var(--honey); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.footer-links a:hover { color: var(--cream); }
.footer-note { color: var(--cream-dim); font-size: 0.82rem; margin: 0; opacity: 0.75; }

/* ---------- Mobile sticky book bar ---------- */
.mobile-book {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 110;
  display: none; text-align: center; text-decoration: none;
  background: var(--honey); color: var(--hive-deep); font-weight: 800; font-size: 1.05rem;
  padding: 1rem; border-radius: 12px; box-shadow: 0 14px 34px rgba(22, 13, 3, 0.4);
  transform: translateY(140%); transition: transform 0.35s var(--ease);
}
.mobile-book.show { transform: none; }

/* ---------- Scroll reveals (JS-gated) ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; width: min(100%, 380px); }
  .hero-chip { left: 6px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .steps::before { display: none; }
  .proof-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .mobile-book { display: block; }
  .site-footer { padding-bottom: 7rem; }
}
@media (max-width: 640px) {
  .hero-h1 { font-size: clamp(2.75rem, 11.5vw, 3.4rem); text-wrap: balance; }
  .service-row { grid-template-columns: auto 1fr; }
  .service-book { grid-column: 2; justify-self: start; }
  .stat-items { grid-template-columns: 1fr; gap: 1.25rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-big { grid-row: auto; }
  .gallery-grid .hex-frame { aspect-ratio: 4 / 4.4; }
  .steps { grid-template-columns: 1fr; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .service-row { top: calc(76px + var(--i) * 10px); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  .js .hex-divider .draw { stroke-dashoffset: 0; }
  .js .acc-panel { grid-template-rows: 1fr; }
  .js .acc-panel > p { padding-bottom: 1.35rem; }
}
