/* My Polished Pup — editorial / magazine layout system.
   Refreshed 2026-05-28 per owner feedback:
   1) Brand teal sampled from logo (#2EB398)
   2) Logo-only header, transparent over hero
   3) Step outside the prior client templates:
      - Full-bleed photo hero (image dominant, not side-rail)
      - Editorial intro with display headline + asymmetric body
      - "Three places we specialize" as alternating photo-stripes
        (full-width image + text rows), NOT a 3-card grid
      - Bento gallery of real grooms
      - Handwritten-style "From Abby" signature note
      - Pricing keeps clean tables but with brand-accent header strip
*/
:root {
  --brand:       #2EB398;
  --brand-dk:    #229E84;
  --brand-darker:#176E5C;
  --brand-lt:    #DBF1EA;
  --brand-tint:  #F0F8F5;
  --cream:       #F8F4EB;
  --cream-dk:    #EAE2CC;
  --ink:         #1A211D;
  --ink-soft:    #4A524C;
  --ink-mute:    #7A8278;
  --rule:        #DDD6C2;
  --rule-soft:   #EFE9D8;
  --accent-warm: #F4A24B;

  --max-w:       1180px;
  --max-w-narrow:880px;
  --max-w-prose: 680px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font: 17px/1.62 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-darker); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

/* Display type — for headlines that need to feel editorial */
.display {
  font-family: 'Fraunces', 'Source Serif Pro', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.02em;
}

h1, h2, h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

/* ============ HEADER (transparent over hero) ============ */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0;
}
.site-header.is-scrolled {
  position: fixed; background: rgba(248, 244, 235, 0.95);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule-soft);
  animation: slideDown 0.25s ease;
}
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.site-header__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img {
  height: 65px; width: auto;            /* +25% per owner feedback */
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));   /* readability over hero */
}
.site-header.is-scrolled .brand img { filter: none; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  /* Default = WHITE over the transparent header on hero, with shadow for legibility */
  color: #fff; text-decoration: none;
  font-size: 15px; font-weight: 600;
  padding: 4px 0; border-bottom: 2.5px solid transparent;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--brand);
  border-bottom-color: var(--brand);
}
/* Once header is scrolled and opaque, switch nav back to dark ink for the cream bg */
.site-header.is-scrolled .nav a {
  color: var(--ink); text-shadow: none;
}
.site-header.is-scrolled .nav a:hover,
.site-header.is-scrolled .nav a[aria-current="page"] {
  color: var(--brand-darker);
  border-bottom-color: var(--brand);
}

.header-ctas { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-block; padding: 13px 24px; border-radius: 999px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  border: 2px solid transparent; line-height: 1; white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.08s ease;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: 0 4px 14px -4px rgba(34, 158, 132, 0.6); }
.btn-primary:hover { background: var(--brand-dk); border-color: var(--brand-dk); color: #fff; }
.btn-secondary { background: rgba(255,255,255,0.95); color: var(--ink); border-color: rgba(0,0,0,0.12); }
.btn-secondary:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--brand-darker); border-color: var(--brand); }
.btn-ghost:hover { background: var(--brand-lt); }
.btn-lg { padding: 17px 34px; font-size: 17px; }
.btn-inverse { background: #fff; color: var(--brand-darker); border-color: #fff; }
.btn-inverse:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Hamburger */
.menu-toggle {
  display: none; background: rgba(0,0,0,0.4); border: none; cursor: pointer;
  width: 44px; height: 44px; padding: 0; border-radius: 999px;
  position: relative;
  backdrop-filter: blur(8px);
  transition: background 0.15s ease;
}
.site-header.is-scrolled .menu-toggle { background: rgba(255,255,255,0.85); }
.menu-toggle .bar {
  position: absolute; left: 12px; right: 12px; height: 2.5px;
  background: #fff; border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.15s ease, top 0.2s ease, background 0.15s ease;
}
.site-header.is-scrolled .menu-toggle .bar { background: var(--ink); }
.menu-toggle .bar:nth-child(1) { top: 15px; }
.menu-toggle .bar:nth-child(2) { top: 21px; }
.menu-toggle .bar:nth-child(3) { top: 27px; }
.menu-toggle[aria-expanded="true"] .bar:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .bar:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 920px) {
  .menu-toggle { display: block; }
  .brand img { height: 55px; }   /* +25% on mobile too */
  .nav {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: calc(100% + 8px); left: 24px; right: 24px;
    background: var(--cream); border: 1px solid var(--rule-soft);
    padding: 8px 0; border-radius: 14px;
    box-shadow: 0 12px 32px rgba(31, 37, 33, 0.16);
  }
  .nav.is-open { display: flex; }
  /* When the mobile menu opens, items sit in a cream card — always dark ink */
  .nav.is-open a {
    color: var(--ink); text-shadow: none;
    width: 100%; padding: 14px 24px; border-bottom: 1px solid var(--rule-soft);
  }
  .nav.is-open a:last-child { border-bottom: none; }
  .nav.is-open a:hover,
  .nav.is-open a[aria-current="page"] { color: var(--brand-darker); }
  .header-ctas .btn-secondary { display: none; }
}

/* ============ HERO (full-bleed photo) ============ */
.hero {
  position: relative;
  min-height: clamp(560px, 92vh, 800px);
  background: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0;
}
.hero__photo {
  position: absolute; inset: 0; z-index: 0;
}
.hero__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  transform: scale(1.02);
}
.hero__photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 30%, transparent 50%, rgba(0,0,0,0.7) 100%);
}
.hero__copy {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px 64px;
  width: 100%;
  color: #fff;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: uppercase; font-size: 12px; letter-spacing: 0.18em;
  font-weight: 700; color: #fff;
  background: rgba(46, 179, 152, 0.92); padding: 8px 16px; border-radius: 999px;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.hero__eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: #fff;
}
.hero h1 {
  font-size: clamp(40px, 7.2vw, 84px);
  line-height: 0.98; margin: 0 0 28px;
  letter-spacing: -0.04em; font-weight: 800;
  color: #fff; max-width: 14ch;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.hero h1 em { font-style: italic; font-family: 'Fraunces', Georgia, serif; font-weight: 500; color: #DDF7EE; }
.hero__sub {
  font-size: 21px; color: rgba(255,255,255,0.92); margin: 0 0 36px;
  max-width: 42ch; line-height: 1.45; font-weight: 400;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
}
.hero__phone {
  font-size: 15px; margin-top: 22px; color: rgba(255,255,255,0.8);
}
.hero__phone a { color: #fff; font-weight: 700; text-decoration: none; }
.hero__phone a:hover { color: var(--brand); }

@media (max-width: 720px) {
  .hero { min-height: 78vh; }
  .hero__photo img { object-position: center 30%; }
  .hero__copy { padding-bottom: 48px; }
}

/* ============ SCROLL DOWN CUE ============ */
.scroll-cue {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,0.75);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  animation: bob 2s ease-in-out infinite;
  text-decoration: none;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }
@media (max-width: 720px) { .scroll-cue { display: none; } }

/* ============ EDITORIAL INTRO ============ */
.editorial {
  padding: 88px 24px 72px;
  background: var(--cream);
}
.editorial__inner {
  max-width: var(--max-w-narrow); margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
}
.editorial .display-h {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05; letter-spacing: -0.025em; font-weight: 500;
  color: var(--ink);
  margin: 0 0 32px;
}
.editorial .display-h em {
  font-style: italic; color: var(--brand-darker);
}
.editorial p {
  font-size: 19px; line-height: 1.6; color: var(--ink-soft);
  max-width: 64ch;
  margin: 0 0 18px;
}
.editorial p.kicker {
  font-size: 22px; color: var(--ink); font-weight: 500;
}
.editorial .signature {
  margin-top: 36px; padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: var(--ink-mute);
  text-transform: uppercase; letter-spacing: 0.14em;
}
.editorial .signature::before {
  content: ""; width: 28px; height: 2px; background: var(--brand);
}

/* ============ FEATURE STRIPES (replaces 3-card grid) ============ */
.stripe {
  padding: 80px 24px;
}
.stripe + .stripe { padding-top: 0; }
.stripe__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.stripe--reverse .stripe__inner > :first-child { order: 2; }
.stripe__num {
  display: inline-block; color: var(--brand);
  font-family: 'Fraunces', Georgia, serif; font-style: italic;
  font-size: 32px; font-weight: 500;
  margin-bottom: 16px;
}
.stripe h2 {
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.08; margin: 0 0 22px;
}
.stripe h2 em { font-style: italic; color: var(--brand-darker); font-family: 'Fraunces', Georgia, serif; font-weight: 500; }
.stripe p {
  font-size: 18px; color: var(--ink-soft); line-height: 1.6;
  margin: 0 0 16px; max-width: 50ch;
}
.stripe .stripe-link {
  display: inline-block; margin-top: 8px;
  font-weight: 700; color: var(--brand-darker);
  text-decoration: none; padding-bottom: 4px;
  border-bottom: 2px solid var(--brand);
}
.stripe .stripe-link:hover { color: var(--ink); border-bottom-color: var(--ink); }
.stripe__media {
  position: relative;
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/5; max-height: 580px;
  box-shadow: 0 24px 60px -24px rgba(34, 158, 132, 0.45), 0 4px 12px rgba(0,0,0,0.06);
}
.stripe__media img { width: 100%; height: 100%; object-fit: cover; }
.stripe__media .tag {
  position: absolute; top: 20px; left: 20px;
  background: var(--brand); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
}
@media (max-width: 880px) {
  .stripe { padding: 56px 20px; }
  .stripe + .stripe { padding-top: 0; }
  .stripe__inner { grid-template-columns: 1fr; gap: 32px; }
  .stripe--reverse .stripe__inner > :first-child { order: 0; }
  .stripe__media { aspect-ratio: 5/4; }
}

/* ============ PROMISE TILES (replaces "How it works" 3-step) ============ */
.promises {
  padding: 80px 24px;
  background: var(--ink);
  color: #fff;
}
.promises__inner { max-width: var(--max-w); margin: 0 auto; }
.promises h2 {
  font-size: clamp(28px, 3.8vw, 44px); margin: 0 0 12px;
  color: #fff;
}
.promises h2 em { font-style: italic; font-family: 'Fraunces', Georgia, serif; font-weight: 500; color: var(--brand); }
.promises .intro {
  font-size: 18px; color: #BFC7BF; max-width: 56ch; margin: 0 0 40px;
}
.promise-list {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.08);
  border-radius: 16px; overflow: hidden;
}
.promise {
  background: var(--ink); padding: 36px 30px;
}
.promise__num {
  font-family: 'Fraunces', Georgia, serif; font-style: italic;
  font-size: 14px; font-weight: 500; color: var(--brand);
  letter-spacing: 0.04em; margin-bottom: 18px;
}
.promise h3 {
  font-size: 22px; line-height: 1.2; color: #fff; margin: 0 0 14px;
}
.promise p { color: #BFC7BF; font-size: 16px; line-height: 1.55; margin: 0; }
@media (max-width: 920px) {
  .promise-list { grid-template-columns: 1fr; }
}

/* ============ FROM ABBY (signature note) ============ */
.from-abby {
  padding: 80px 24px;
  background:
    radial-gradient(circle at 80% 20%, var(--brand-lt) 0%, transparent 50%),
    var(--cream);
}
.from-abby__card {
  max-width: 720px; margin: 0 auto;
  background: #fff; border: 1px solid var(--rule-soft);
  border-radius: 20px; padding: 48px 48px 40px;
  box-shadow: 0 30px 60px -30px rgba(34, 158, 132, 0.32);
  position: relative;
}
.from-abby__card::before {
  content: "“"; position: absolute; top: -8px; left: 32px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 96px; line-height: 1; color: var(--brand);
}
.from-abby__head {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em;
  font-weight: 700; color: var(--brand-darker); margin-bottom: 18px;
}
.from-abby__body {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px; line-height: 1.5; color: var(--ink);
  font-style: italic; font-weight: 400;
  margin: 0 0 24px;
}
.from-abby__sig {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: var(--ink-soft);
}
.from-abby__sig strong {
  font-family: 'Caveat', 'Brush Script MT', cursive; font-size: 32px;
  color: var(--brand-darker); font-weight: 500;
}
@media (max-width: 720px) {
  .from-abby__card { padding: 40px 28px; }
  .from-abby__body { font-size: 19px; }
}

/* ============ BENTO GALLERY ============ */
.bento {
  padding: 80px 24px;
  background: var(--cream);
}
.bento__inner { max-width: var(--max-w); margin: 0 auto; }
.bento h2 { font-size: clamp(28px, 3.8vw, 44px); margin: 0 0 32px; max-width: 18ch; }
.bento h2 em { font-style: italic; color: var(--brand-darker); font-family: 'Fraunces', Georgia, serif; font-weight: 500; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px 200px;
  gap: 14px;
}
.bento-grid img {
  width: 100%; height: 100%; object-fit: cover;
  /* For dog photos: bias crop toward the top so faces aren't sliced off.
     Most groom shots have the dog face in the top third of the frame. */
  object-position: center 25%;
  border-radius: 14px;
}
.bento-grid > :nth-child(1) { grid-column: span 2; grid-row: span 2; }
.bento-grid > :nth-child(2) { grid-column: span 2; grid-row: span 1; }
.bento-grid > :nth-child(3) { grid-column: span 1; grid-row: span 1; }
.bento-grid > :nth-child(4) { grid-column: span 1; grid-row: span 2; }
.bento-grid > :nth-child(5) { grid-column: span 2; grid-row: span 1; }
.bento-grid > :nth-child(6) { grid-column: span 1; grid-row: span 1; }
@media (max-width: 720px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 160px 160px 160px 160px; }
  .bento-grid > :nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .bento-grid > :nth-child(2) { grid-column: span 2; }
  .bento-grid > :nth-child(3) { grid-column: span 1; }
  .bento-grid > :nth-child(4) { grid-column: span 1; grid-row: span 1; }
  .bento-grid > :nth-child(5) { grid-column: span 2; }
  .bento-grid > :nth-child(6) { display: none; }
}

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--brand);
  color: #fff;
  padding: 76px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 60%);
  pointer-events: none;
}
.cta-band__inner { position: relative; max-width: 760px; margin: 0 auto; }
.cta-band h2 {
  color: #fff;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05; margin: 0 0 18px;
  letter-spacing: -0.03em;
}
.cta-band h2 em { font-style: italic; font-family: 'Fraunces', Georgia, serif; font-weight: 500; color: #DDF7EE; }
.cta-band p { color: rgba(255,255,255,0.95); font-size: 20px; max-width: 580px; margin: 0 auto 32px; }
.cta-band .ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ INTERIOR PAGE HEAD ============ */
.page-head {
  padding: 140px 24px 64px;
  background:
    radial-gradient(circle at 80% 20%, var(--brand-lt) 0%, transparent 45%),
    var(--cream);
}
.page-head__inner { max-width: var(--max-w-narrow); margin: 0 auto; }
.page-head .eyebrow {
  display: inline-block; background: var(--brand-lt); color: var(--brand-darker);
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 22px;
}
.page-head h1 {
  font-size: clamp(36px, 5.5vw, 62px); line-height: 1.05;
  margin: 0 0 22px; letter-spacing: -0.035em;
}
.page-head h1 em { font-style: italic; font-family: 'Fraunces', Georgia, serif; font-weight: 500; color: var(--brand-darker); }
.page-head .sub {
  font-size: 21px; line-height: 1.5; color: var(--ink-soft); max-width: 52ch;
}

/* Body content for interior pages */
.prose {
  max-width: var(--max-w-prose); margin: 0 auto; padding: 48px 24px 0;
}
.prose h2 {
  font-size: clamp(26px, 3.2vw, 36px); margin: 48px 0 16px;
  letter-spacing: -0.02em;
}
.prose h2:first-child { margin-top: 0; }
.prose h2 em { font-style: italic; color: var(--brand-darker); font-family: 'Fraunces', Georgia, serif; font-weight: 500; }
.prose h3 { font-size: 20px; margin: 28px 0 10px; }
.prose p { font-size: 18px; line-height: 1.65; color: var(--ink); margin: 0 0 18px; }
.prose strong { color: var(--brand-darker); }
.prose .lede {
  font-family: 'Fraunces', Georgia, serif; font-style: italic;
  font-size: 24px; line-height: 1.5; color: var(--ink);
  margin-bottom: 28px; font-weight: 400;
}
.prose hr.rule { height: 1px; background: var(--rule); border: none; margin: 48px 0; }

/* ============ CREDENTIALS BAND ============ */
.credentials {
  max-width: var(--max-w-narrow); margin: 0 auto;
  padding: 0 24px;
}
.credentials-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--rule-soft);
  border-left: 4px solid var(--brand);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 12px 28px -16px rgba(34, 158, 132, 0.35);
}
.credentials-card__badge {
  width: 180px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--rule-soft);
  border-radius: 12px;
}
.credentials-card__badge img {
  width: 100%; height: auto; display: block;
}
@media (max-width: 600px) {
  .credentials-card__badge { width: 160px; margin-bottom: 4px; }
}
.credentials-card__body { min-width: 0; }
.credentials-card__label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em;
  font-weight: 700; color: var(--brand-darker); margin: 0 0 6px;
}
.credentials-card__title {
  font-size: 22px; font-weight: 800; color: var(--ink); margin: 0 0 8px;
  letter-spacing: -0.01em; line-height: 1.2;
}
.credentials-card__desc { font-size: 16px; color: var(--ink-soft); margin: 0; line-height: 1.5; }
@media (max-width: 600px) {
  .credentials-card { grid-template-columns: 1fr; text-align: left; padding: 24px; }
  .credentials-card__seal { width: 72px; height: 72px; font-size: 32px; }
}

/* ============ PRICING ============ */
.pricing-wrap { padding: 32px 24px 80px; max-width: var(--max-w-narrow); margin: 0 auto; }
.pricing-tier { margin-bottom: 56px; }
.pricing-tier:last-child { margin-bottom: 0; }
.pricing-tier__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 8px;
}
.pricing-tier__head h3 {
  font-size: clamp(24px, 3vw, 32px); margin: 0;
}
.pricing-tier__head .from {
  color: var(--brand-darker); font-weight: 700; font-size: 14px;
  background: var(--brand-lt); padding: 6px 12px; border-radius: 6px;
  letter-spacing: 0.04em;
}
.pricing-tier__note {
  color: var(--brand-darker); font-size: 14px;
  font-style: italic; margin: 6px 0 14px;
  font-weight: 500;
}
.pricing-tier__sub { color: var(--ink-soft); margin: 0 0 22px; font-size: 17px; line-height: 1.5; }
.pricing-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border: 1px solid var(--rule-soft); border-radius: 14px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  text-align: left; padding: 16px 22px;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 16px;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table th {
  background: var(--brand); color: #fff;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 700;
}
.pricing-table td:last-child { font-weight: 800; color: var(--ink); white-space: nowrap; font-size: 19px; }
.addons {
  background: #fff; border: 1px solid var(--rule-soft); border-radius: 14px;
  padding: 36px;
}
.addons h3 { margin-top: 0; }
.addons-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 32px;
  list-style: none; padding: 0; margin: 0;
}
.addons-grid li {
  padding: 14px 0; display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 16.5px;
}
.addons-grid li:last-child { border-bottom: none; }
.addons-grid li b { color: var(--brand-darker); font-weight: 700; white-space: nowrap; }
@media (max-width: 600px) { .addons-grid { grid-template-columns: 1fr; } }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink); color: #E1E6DD;
  padding: 64px 24px 28px;
}
.site-footer__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px;
}
.site-footer h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--brand); margin: 0 0 16px; font-weight: 700;
}
.site-footer p, .site-footer ul { margin: 0 0 8px; }
.site-footer a { color: #E1E6DD; text-decoration: none; }
.site-footer a:hover { color: var(--brand); }
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { padding: 4px 0; }
.site-footer .footer-brand img { height: 56px; margin-bottom: 16px; }
.site-footer .legal {
  grid-column: 1 / -1;
  border-top: 1px solid #3A4039; padding-top: 22px; margin-top: 20px;
  font-size: 13px; color: #8A9088;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
@media (max-width: 800px) { .site-footer__inner { grid-template-columns: 1fr; } }

/* ============ STICKY MOBILE CTA ============ */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: #fff;
  border-top: 1px solid var(--rule);
  padding: 10px 14px; gap: 10px;
  box-shadow: 0 -4px 16px rgba(31, 37, 33, 0.12);
}
.mobile-cta-bar .btn { flex: 1; padding: 14px 12px; font-size: 16px; text-align: center; font-weight: 700; }
@media (max-width: 920px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 78px; }
}

/* Reusable utils */
.center { text-align: center; }
.mt-32 { margin-top: 32px; }
