/* makeandupdate.org — page-specific layout on top of mau-theme.css.
   This file intentionally defines NO color, radius, or shadow tokens: the page
   inherits the shared warm-paper / single-persimmon-accent system as-is, the
   same one makeandupdate.com runs on. Two shadow exceptions are sanctioned by
   mau-theme.css itself and used unmodified here: .browser-frame (hero mockup,
   real screenshots) and .work-tile (hover lift). Everything else groups with
   hairlines, not boxed cards. */

h1, h2, h3, h4 { text-transform: none; letter-spacing: -0.025em; }
.uppercase { text-transform: uppercase; letter-spacing: -0.01em; }

/* ---------- Gooey word morph (hero headline) — port of 21st.dev's
   "Gooey Text Morphing" (victorwelander), scoped to one inline word. ---------- */
.gooey-word { position: relative; display: inline-block; }
.gooey-word-filter { position: absolute; width: 0; height: 0; }
.gooey-word-stack { position: relative; display: inline-block; min-width: 12ch; height: 1em; vertical-align: baseline; white-space: nowrap; }
.gooey-word-text { position: absolute; left: 0; top: 0; display: inline-block; white-space: nowrap; font: inherit; color: var(--color-signal); line-height: 1; text-decoration: underline; text-decoration-thickness: .06em; text-underline-offset: .16em; }

/* ---------- Interactive hover buttons — port of 21st.dev's
   "Interactive Hover Button" (dillionverma/magicui): the dot-expand-fill
   mechanic, adapted to our existing pill markup (no extra DOM needed). ---------- */
.btn-secondary { position: relative; isolation: isolate; overflow: hidden; background: transparent; color: var(--color-ink); transition: color 440ms var(--ease-out-expo) 200ms; }
.btn-secondary::before { content: ""; position: absolute; z-index: -1; left: 16px; top: 50%; width: 8px; height: 8px; background: var(--color-ink); border-radius: 50%; transform: translateY(-50%) scale(0); transition: transform 920ms var(--ease-out-expo); }
.btn-secondary:hover { background: transparent; color: var(--color-paper); }
.btn-secondary:hover::before { transform: translateY(-50%) scale(42); }
@media (prefers-reduced-motion: reduce) { .btn-secondary::before { transition: none; } }
.btn-primary svg { transition: transform 520ms var(--ease-out-expo); }
.btn-primary:hover svg { transform: translateX(5px) scale(1.08); }

/* ---------- Background texture (quiet, on-brand — no glow/gradient/blur) ----------
   Body already carries mau-theme.css's .mau-grain paper-noise overlay. These two
   dot-grid layers are the same technique makeandupdate.com's own hero uses
   (radial-gradient dots, masked to a soft field, never animated). */
.hero-section { position: relative; isolation: isolate; }
.hero-section::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  top: -2rem; right: -4%; width: 62%; height: 130%;
  background-image: radial-gradient(var(--color-rule-2) 1.1px, transparent 1.1px);
  background-size: 18px 18px;
  -webkit-mask-image: radial-gradient(60% 60% at 70% 35%, #000, transparent 75%);
          mask-image: radial-gradient(60% 60% at 70% 35%, #000, transparent 75%);
  opacity: .8;
}
.hero-section .thin-circle-accent { position: absolute; z-index: -1; top: -1.25rem; left: 2%; width: 128px; height: 128px; pointer-events: none; }
@media (max-width: 900px) { .hero-section::before { display: none; } .hero-section .thin-circle-accent { display: none; } }

.site-footer { position: relative; isolation: isolate; }
.site-footer::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  top: 0; left: 0; width: 46%; height: 100%;
  background-image: radial-gradient(rgba(255,255,255,.14) 1.1px, transparent 1.1px);
  background-size: 20px 20px;
  -webkit-mask-image: radial-gradient(65% 90% at 0% 30%, #000, transparent 78%);
          mask-image: radial-gradient(65% 90% at 0% 30%, #000, transparent 78%);
}
.site-footer > .container-page { position: relative; z-index: 1; }

.container-page { max-width: 1120px; }
.section { padding-top: 3.75rem; padding-bottom: 3.75rem; }
@media (max-width: 767px) { .section { padding-top: 2.75rem; padding-bottom: 2.75rem; } }
.section-tint { background: var(--color-paper-2); }
.section-head { max-width: 34ch; margin-bottom: 2.25rem; }

/* The sticky nav sits on top of the page, so a plain anchor jump (nav click,
   #hash link, or scrollIntoView) lands the target's heading half-hidden
   underneath it. scroll-margin-top reserves that space for every in-page
   jump target so headings always land fully visible below the nav. */
#top, #services, #work, #reviews, #process, #talk { scroll-margin-top: 88px; }

/* Work and Reviews sit back to back on the same untinted paper background —
   with no hairline or tint change to mark the boundary, the two sections'
   combined top/bottom padding reads as one big accidental dead zone instead
   of an intentional gap. Tighten it and anchor it with a hairline, matching
   how every other same-background section transition on the page is marked. */
#work { padding-bottom: 2.5rem; }
#reviews { padding-top: 2.5rem; border-top: 1px solid var(--color-rule); }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 30; background: var(--color-paper); border-bottom: 1px solid var(--color-rule); }
.nav-inner { display: flex; align-items: center; gap: 1.5rem; padding-top: .85rem; padding-bottom: .85rem; }
.nav-links { display: flex; gap: 1.5rem; margin-left: auto; }
.nav-links a { color: var(--color-ink-2); text-decoration: none; font-size: .92rem; font-weight: 500; }
.nav-links a:hover { color: var(--color-ink); }
.nav .btn-primary { padding: .65rem 1.15rem; font-size: .85rem; }
.nav-cta { margin-left: .25rem; }
.nav-lang { font-size: .82rem; color: var(--color-ink-3); white-space: nowrap; }
.nav-lang a { color: var(--color-ink-3); text-decoration: none; }
.nav-lang a:hover, .nav-lang a[aria-current="page"] { color: var(--color-signal); }
@media (max-width: 820px) { .nav-links { display: none; } .nav-lang { display: none; } .nav-cta { margin-left: auto; } }
@media (max-width: 400px) {
  .nav-inner { gap: .5rem; }
  .nav-inner img { width: 118px; height: auto; }
  .nav .btn-primary { padding: .55rem .8rem; }
  .nav .btn-primary svg { display: none; }
}

/* ---------- Hero ---------- */
.hero { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; gap: 2.5rem; } }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.08; max-width: 16ch; }
.hero-sub { margin-top: 1.25rem; max-width: 46ch; font-size: 1.075rem; color: var(--color-ink-2); }
.hero-cta { margin-top: 2rem; display: flex; gap: .75rem; flex-wrap: wrap; }

/* Hero device mockup — a single rendered laptop+phone product photo */
.mockup { padding: 1rem 0 0; }
.mockup-devices { display: block; width: 100%; height: auto; }
.annotation { margin-top: 1.25rem; display: flex; gap: .5rem; align-items: flex-start; color: var(--color-signal); font-style: italic; font-size: .82rem; font-weight: 600; max-width: 30ch; text-decoration: none; transition: color 160ms var(--ease-out-expo); }
.annotation svg { flex: none; margin-top: .1rem; transition: transform 240ms var(--ease-out); }
.annotation:hover { color: var(--color-signal-ink); }
.annotation:hover svg { transform: translate(2px, 2px); }

/* ---------- Trust strip — elevated soft card (avatar status dot, icon
   tiles, dot dividers), matching the reference the client shared. ---------- */
.trust-card-wrap { position: relative; padding: 8px; }
.trust-card-wrap::before {
  content: ""; position: absolute; inset: -10px; z-index: -1; border-radius: 28px;
  background: radial-gradient(60% 60% at 18% 20%, rgba(232,78,16,.12), transparent 70%);
  filter: blur(22px); pointer-events: none;
}
.trust {
  position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  padding: 1.75rem 2rem; border-radius: 20px;
  background: linear-gradient(160deg, #fff 0%, var(--color-paper) 120%);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 1px 2px rgba(14,14,12,.04), 0 22px 44px -22px rgba(232,78,16,.22), 0 10px 26px -16px rgba(14,14,12,.1);
}
@media (max-width: 820px) { .trust { grid-template-columns: 1fr 1fr; gap: 1.4rem 1.25rem; padding: 1.5rem; } }
@media (max-width: 480px) { .trust { grid-template-columns: 1fr; } }
.trust-item { position: relative; display: flex; gap: .85rem; align-items: center; }
@media (min-width: 821px) {
  .trust-item:not(:first-child)::before {
    content: ""; position: absolute; left: -.75rem; top: 50%; transform: translate(-50%, -50%);
    width: 5px; height: 5px; border-radius: 50%; background: var(--color-signal); opacity: .55;
  }
}
.trust-item .avatar { position: relative; width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: none; background: linear-gradient(155deg, var(--color-signal-soft), #fff); color: var(--color-signal); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .98rem; box-shadow: 0 3px 8px rgba(232,78,16,.18); }
.avatar-status .status-dot { position: absolute; right: -2px; bottom: -2px; width: 13px; height: 13px; border-radius: 50%; background: var(--color-signal); border: 2.5px solid #fff; box-shadow: 0 1px 3px rgba(14,14,12,.2); }
.trust-item .ic { width: 44px; height: 44px; border-radius: 14px; flex: none; display: flex; align-items: center; justify-content: center; color: var(--color-signal); background: linear-gradient(160deg, #fff, var(--color-signal-soft)); box-shadow: 0 2px 7px rgba(232,78,16,.16), inset 0 1px 0 rgba(255,255,255,.9); }
.trust-item b { display: block; font-size: .92rem; color: var(--color-ink); font-weight: 600; }
.trust-item span { font-size: .8rem; color: var(--color-ink-3); }

/* ---------- "Got an email" ---------- */
.email-card { padding-top: 2.5rem; border-top: 1px solid var(--color-rule); }
.email-head { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.email-head .ic { width: 46px; height: 46px; border-radius: var(--radius-card); background: var(--color-signal-soft); color: var(--color-signal); display: flex; align-items: center; justify-content: center; flex: none; }
.email-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
/* Pill-style bullets — port of 21st.dev's "Hero Pill" (originui): rounded-full
   surface, leading icon separated by a divider, subtle resting shadow. */
.promise-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .85rem 1rem; }
@media (max-width: 640px) { .promise-list { grid-template-columns: 1fr; } }
.promise-list li {
  display: flex; align-items: center;
  background: #fff; border-radius: var(--radius-pill);
  padding: .7rem 1.1rem;
  color: var(--color-ink-2); font-size: .88rem;
  box-shadow: 0 1px 2px rgba(14,14,12,.07), 0 1px 1px rgba(14,14,12,.04);
  transition: box-shadow 220ms var(--ease-out-expo), transform 220ms var(--ease-out-expo);
}
.promise-list li:hover { box-shadow: 0 6px 14px -4px rgba(14,14,12,.14); transform: translateY(-1px); }
.promise-list li svg { flex: none; width: 16px; height: 16px; box-sizing: content-box; color: var(--color-signal); margin-right: .75rem; padding-right: .75rem; border-right: 1px solid var(--color-rule); }
.promise-list li span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------- Services (hairline list, not a repeated icon-card grid) ---------- */
.services { display: grid; grid-template-columns: 1fr 1fr; column-gap: 3rem; border-top: 1px solid var(--color-rule); }
@media (max-width: 720px) { .services { grid-template-columns: 1fr; } }
.service-row { display: grid; grid-template-columns: 102px 1fr; gap: 1.25rem; align-items: flex-start; padding: 1.75rem 0; border-bottom: 1px solid var(--color-rule); }
.service-row .ic-wrap { width: 102px; height: 102px; border-radius: var(--radius-card); background: var(--color-paper-2); display: flex; align-items: center; justify-content: center; flex: none; }
.service-row .ic {
  display: block;
  width: 102px;
  height: 102px;
  object-fit: contain;
}
.service-row h3 { font-size: 1.12rem; letter-spacing: -0.02em; margin: 0 0 .4rem; }
.service-row p { font-size: .95rem; color: var(--color-ink-2); margin: 0; max-width: 42ch; line-height: 1.6; }
@media (max-width: 480px) { .service-row { grid-template-columns: 72px 1fr; gap: 1rem; } .service-row .ic-wrap { width: 72px; height: 72px; } .service-row .ic { width: 72px; height: 72px; } }

/* ---------- Work / products (uses mau-theme.css's sanctioned .work-tile hover) ---------- */
.products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 620px) { .products { grid-template-columns: 1fr; } }

/* Split section head — heading left, supporting line right — alternated with
   the default stacked .section-head so the page doesn't read as one repeated
   template section after section. */
.section-head--split { display: grid; grid-template-columns: auto 1fr; column-gap: 3rem; row-gap: .75rem; align-items: end; max-width: none; }
.section-head--split h2 { margin: 0; }
.section-head--split p { margin: 0; max-width: 38ch; color: var(--color-ink-2); justify-self: end; text-align: left; }
@media (max-width: 720px) { .section-head--split { grid-template-columns: 1fr; align-items: start; } .section-head--split p { justify-self: start; } }
.work-tile { background: #fff; border: 1px solid var(--color-rule); border-radius: var(--radius-card); padding: 1rem; text-decoration: none; color: inherit; }
.work-tile .browser-frame { box-shadow: none; border-radius: 2px; overflow: hidden; }
.work-tile img { display: block; width: 100%; height: auto; }
.product-meta { padding: 1rem .35rem .35rem; }
.product-meta h3 { font-size: 1.2rem; margin: 0 0 .35rem; }
.product-meta p { color: var(--color-ink-2); font-size: .9rem; margin: 0 0 .6rem; }

/* Instagram / social work card cover — ink-based, no added hue */
.insta-cover { border-radius: 2px; overflow: hidden; aspect-ratio: 16/10; background: linear-gradient(135deg, var(--color-ink) 0%, #2a2823 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .55rem; color: #fff; text-align: center; padding: 1rem; }
.insta-cover .kick { font-size: .66rem; text-transform: uppercase; letter-spacing: .12em; opacity: .8; }
.insta-cover .handle { font-weight: 700; font-size: 1rem; }

/* ---------- Reviews (flat hairline panels, single persimmon accent) ---------- */
.reviews { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--color-rule); border-bottom: 1px solid var(--color-rule); }
@media (max-width: 720px) { .reviews { grid-template-columns: 1fr; } }
.review-card { padding: 2rem; }
.review-card:first-child { border-right: 1px solid var(--color-rule); }
@media (max-width: 720px) { .review-card:first-child { border-right: 0; border-bottom: 1px solid var(--color-rule); } }
.review-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.review-who { display: flex; align-items: center; gap: .75rem; }
.review-avatar { width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 1px solid var(--color-rule); flex: none; display: flex; align-items: center; justify-content: center; }
.review-head b { display: block; font-size: 1.02rem; color: var(--color-ink); font-weight: 600; }
.review-meta { display: block; font-size: .8rem; color: var(--color-ink-3); margin-top: .15rem; }
.review-stars { display: flex; gap: .1rem; color: var(--color-signal); flex: none; }
.review-time { font-size: .8rem; color: var(--color-ink-3); margin: .5rem 0 0; }
.review-body { font-size: .95rem; color: var(--color-ink-2); line-height: 1.6; margin: .75rem 0 0; }
.review-reply { background: var(--color-paper-2); border-radius: var(--radius-card); padding: .9rem 1rem; margin-top: 1.1rem; }
.review-reply b { font-size: .85rem; color: var(--color-ink); }
.review-reply b span { font-weight: 500; color: var(--color-ink-3); margin-left: .35rem; }
.review-reply p { font-size: .88rem; color: var(--color-ink-2); margin: .35rem 0 0; }
.review-reply-time { color: var(--color-ink-3); }
/* Short reviews get a pull-quote treatment instead of a mirrored copy of the narrative card */
.review-quote-mark { display: none; }
.review-card--quote .review-quote-mark { display: block; font-family: Georgia, 'Times New Roman', serif; font-size: 3.75rem; line-height: .5; color: var(--color-signal); opacity: .28; margin: 1rem 0 -.25rem; }
.review-card--quote .review-body { font-size: 1.45rem; font-weight: 700; line-height: 1.3; color: var(--color-ink); letter-spacing: -0.01em; margin: 0 0 .5rem; text-transform: none; }

/* ---------- Process (hairline list; numeral badges break the flat/hairline
   rule on purpose here for extra visual weight) ---------- */
.steps { display: grid; grid-template-columns: 1fr 1fr; column-gap: 3rem; border-top: 1px solid var(--color-rule); }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; display: grid; grid-template-columns: 60px 1fr; gap: 1.4rem; align-items: flex-start; padding: 1.75rem 0; border-bottom: 1px solid var(--color-rule); }
.step .num {
  position: relative; z-index: 1;
  width: 60px; height: 60px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(155deg, var(--color-signal) 0%, var(--color-signal-ink) 100%);
  color: #fff; font-size: 1.6rem; font-weight: 800;
  font-feature-settings: "tnum" 1, "lnum" 1; letter-spacing: -0.02em; line-height: 1;
  box-shadow: 0 14px 28px -10px rgba(232, 78, 16, .55), 0 3px 8px rgba(14, 14, 12, .1), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.step h3 { font-size: 1.14rem; letter-spacing: -0.02em; margin: .2rem 0 .45rem; }
.step p { font-size: .9rem; color: var(--color-ink-2); margin: 0; line-height: 1.6; max-width: 42ch; }
/* Connecting line trailing down from each badge toward the hairline below, timeline-style */
.step:not(:last-child)::after {
  content: ""; position: absolute; z-index: 0;
  left: 29px; width: 2px;
  top: calc(1.75rem + 60px); bottom: 0;
  background: var(--color-rule-2);
}
@media (min-width: 721px) { .step:nth-child(3)::after { display: none; } }
@media (max-width: 480px) {
  .step { grid-template-columns: 48px 1fr; gap: 1rem; }
  .step .num { width: 48px; height: 48px; font-size: 1.25rem; }
  .step:not(:last-child)::after { left: 23px; top: calc(1.75rem + 48px); }
}

/* ---------- Mid CTA (asymmetric two-column, no boxed/centered card) ---------- */
.midcta { padding-top: 3rem; border-top: 1px solid var(--color-rule); }
.midcta-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3.5rem; align-items: start; }
@media (max-width: 820px) { .midcta-grid { grid-template-columns: 1fr; gap: 2.25rem; } }
.midcta .avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--color-signal-soft); color: var(--color-signal); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.3rem; object-fit: cover; margin-bottom: 1.25rem; }
.midcta-intro h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); }
.midcta-intro p { color: var(--color-ink-2); margin: .6rem 0 1.4rem; max-width: 46ch; }
.midcta-list { display: flex; flex-direction: column; gap: .85rem; }
.midcta-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #fff; border-radius: 16px; padding: 1rem 1.15rem;
  box-shadow: 0 1px 2px rgba(14,14,12,.05), 0 10px 24px -14px rgba(14,14,12,.14);
  transition: box-shadow 220ms var(--ease-out-expo), transform 220ms var(--ease-out-expo);
}
.midcta-item:hover { box-shadow: 0 4px 8px rgba(14,14,12,.06), 0 16px 32px -14px rgba(232,78,16,.2); transform: translateY(-1px); }
@media (max-width: 820px) { .midcta-list { padding-top: 0; } }
.midcta-item .bic { width: 44px; height: 44px; border-radius: 14px; background: linear-gradient(160deg, #fff, var(--color-signal-soft)); color: var(--color-signal); display: flex; align-items: center; justify-content: center; flex: none; box-shadow: 0 2px 7px rgba(232,78,16,.16), inset 0 1px 0 rgba(255,255,255,.9); }
.midcta-item b { display: block; font-size: .98rem; color: var(--color-ink); margin-bottom: .25rem; }
.midcta-item span { font-size: .85rem; color: var(--color-ink-3); line-height: 1.5; }

/* ---------- Let's talk: asymmetric intro + form, matching the rest of the page ---------- */
.talk-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3.5rem; align-items: start; }
@media (max-width: 900px) { .talk-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.talk-intro p { color: var(--color-ink-2); margin-top: 1rem; max-width: 42ch; }
.talk-direct { display: flex; gap: 1rem; align-items: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--color-rule); }
.talk-direct .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--color-signal-soft); color: var(--color-signal); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .95rem; flex: none; }
.talk-direct b { display: block; font-size: .8rem; color: var(--color-ink-3); font-weight: 500; margin-bottom: .2rem; }

/* ---------- Mockup request form (flat, mau-theme .input styling) ---------- */
.form-card { max-width: 560px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.form-card label { display: block; font-size: 1rem; color: var(--color-ink-2); font-weight: 500; margin-bottom: 1rem; }
.form-card .full { grid-column: 1 / -1; }
.form-card input, .form-card textarea { width: 100%; box-sizing: border-box; margin-top: .5rem; padding: .875rem 1rem; border: 1px solid var(--color-rule-2); border-radius: var(--radius-card); background: var(--color-paper); color: var(--color-ink); font: inherit; font-size: 1.05rem; transition: border-color 180ms var(--ease-out-expo); }
.form-card input:focus, .form-card textarea:focus { outline: none; border-color: var(--color-ink); }
.form-card input:focus-visible, .form-card textarea:focus-visible { outline: 2px solid var(--color-signal); outline-offset: 2px; }
.form-card .btn-primary { margin-top: .5rem; border: 0; cursor: pointer; padding-left: 2rem; padding-right: 2rem; }
.form-note { display: flex; gap: .4rem; align-items: center; justify-content: flex-start; font-size: .82rem; color: var(--color-ink-3); margin: 1rem 0 0; }
.form-error { display: none; color: #b02a1e; font-size: .88rem; margin-top: .9rem; }
.form-card.is-error .form-error { display: block; }
.form-card [data-state="success"] { display: none; padding: 1rem 0; }
.form-card.is-success [data-state="success"] { display: block; }
.form-card.is-success [data-state="form"] { display: none; }
.form-card.is-success [data-state="success"] .ic { width: 54px; height: 54px; border-radius: 50%; background: var(--color-signal-soft); color: var(--color-signal); display: flex; align-items: center; justify-content: center; margin: 0 0 1rem; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Footer (already the shared dark-flip palette) ---------- */
.site-footer { background: var(--color-ink); color: #cdc8bd; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; padding: 3rem 0 2rem; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: #8f8b83; margin: 0 0 1rem; font-weight: 600; }
.site-footer a { color: #cdc8bd; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: .9rem; }
.footer-brand p { font-size: .88rem; color: #97938b; margin: 1rem 0 0; max-width: 30ch; }
.footer-brand img { display: block; }
.footer-outreach p { font-size: .88rem; color: #b4b0a8; margin: 0 0 .35rem; line-height: 1.55; }
.no-surprises {
  padding: 1.25rem 1.4rem; border-radius: 16px;
  background: linear-gradient(160deg, #1c1a16 0%, #131210 100%);
  border: 1px solid #2a2823;
  box-shadow: 0 1px 0 rgba(255,255,255,.03) inset, 0 16px 34px -18px rgba(232,78,16,.35), 0 8px 20px -12px rgba(0,0,0,.4);
}
.no-surprises .lbl { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: #8f8b83; margin: 0 0 .5rem; }
.no-surprises p { font-size: 1rem; color: #f4f2ec; margin: 0; font-weight: 600; }
.no-surprises .reliability-mark { display: flex; align-items: center; gap: .4rem; color: var(--color-signal); font-size: .8rem; font-weight: 600; margin-top: .75rem; }
.footer-legal { border-top: 1px solid #26262b; padding: 1.25rem 0 2rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .8rem; color: #8f8b83; }
.footer-legal .links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
