/* ============================================================
   Talento Laborforce — Apple-inspired flat design system.
   Monochromatic, type-led, no borders, no shadows, no card fills
   (except bento + alt sections). Mobile-first, fluid.
   ============================================================ */

:root {
  --c-bg:        #ffffff;
  --c-surface:   #f5f5f7;
  --c-ink-dark:  #1d1d1f;
  --c-ink:       #1d1d1f;
  --c-muted:     #86868b;
  --c-link:      #0066cc;
  --c-link-hover:#0077ed;
  --c-hairline:  #d2d2d7;

  --f-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
  --f-text: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", system-ui, sans-serif;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 44px);
  --section-y: clamp(56px, 10vw, 112px);
  --section-y-tight: clamp(40px, 7vw, 72px);
  --tap: 44px;

  /* Apple-style chevron-right, filled outline, used via mask + currentColor. */
  --chev: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 11'><path d='M3.5 1 L8 5.5 L3.5 10 L2.5 9 L6 5.5 L2.5 2 Z' fill='black'/></svg>");
}

/* Reusable inline chevron — inherits color from text via mask. */
.chev {
  display: inline-block;
  width: 0.62em; height: 0.62em;
  background-color: currentColor;
  -webkit-mask: var(--chev) center / contain no-repeat;
          mask: var(--chev) center / contain no-repeat;
  vertical-align: -0.02em;
  margin-left: 0.28em;
  transition: transform .2s cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
}
a:hover > .chev, a:focus-visible > .chev { transform: translateX(2px); }

/* Light palette is the canonical design — no automatic dark-mode flip.
   Dark surfaces are opt-in via .section-dark / .trust-strip / .sticky-cta. */

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--f-text);
  font-size: 17px;
  line-height: 1.47059;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img, svg, video { max-width: 100%; height: auto; display: block; }
img,
picture,
.hero-visual,
.page-hero-visual,
.hero-visual img,
.page-hero-visual img { border-radius: 0 !important; } /* Anti-AI directive: images render with sharp, square edges. */
a { color: var(--c-link); text-decoration: none; }
a:hover { color: var(--c-link-hover); text-decoration: underline; text-underline-offset: 3px; }

::selection { background: var(--c-link); color: #fff; }
:focus-visible { outline: 2px solid var(--c-link); outline-offset: 3px; border-radius: 2px; }

.skip { position: absolute; left: -9999px; top: 0; background: var(--c-ink-dark); color: var(--c-bg); padding: 10px 14px; z-index: 1000; }
.skip:focus { left: 8px; top: 8px; }

/* ----- typography ----- */
h1, h2, h3, h4 {
  font-family: var(--f-sans);
  color: var(--c-ink);
  margin: 0 0 .4em;
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 7vw, 80px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; }
h2 { font-size: clamp(32px, 5vw, 56px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.07; }
h3 { font-size: clamp(22px, 2.4vw, 28px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
h4 { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
p  { text-wrap: pretty; margin: 1em 0; }

.eyebrow {
  display: block;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-muted);
  margin-bottom: 16px;
  letter-spacing: -0.005em;
}
.lede {
  font-size: clamp(19px, 2.2vw, 24px);
  color: var(--c-ink);
  max-width: 60ch;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.hl { font-weight: inherit; background: none; padding: 0; }

/* ----- reveal-on-scroll ----- */
[data-reveal] { opacity: 0; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease; }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

/* ----- layout ----- */
.section { padding: var(--section-y) var(--gutter); max-width: var(--container); margin: 0 auto; }
.section-alt { background: var(--c-surface); max-width: none; padding-left: 0; padding-right: 0; }
.section-alt > * { max-width: var(--container); margin-left: auto; margin-right: auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section-dark { background: var(--c-ink-dark); color: var(--c-bg); max-width: none; padding-left: 0; padding-right: 0; }
.section-dark > * { max-width: var(--container); margin-left: auto; margin-right: auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--c-bg); }
.section-dark .eyebrow { color: #a1a1a6; }
/* Anti-AI: no blue link text on dark backgrounds. Use white + hairline underline on hover. */
.section-dark :is(a, .link-arrow, .page-hero-link, .hero-link, .loc-chip, .btn-ghost, .cta-call, .prose a) { color: var(--c-bg) !important; }
.section-dark :is(a, .link-arrow, .page-hero-link, .hero-link, .loc-chip, .btn-ghost, .cta-call, .prose a):hover { color: var(--c-bg) !important; opacity: .8; text-decoration: underline; text-underline-offset: 3px; }
.section-dark .btn-primary { background: var(--c-bg); color: var(--c-ink-dark) !important; }
.section-dark .btn-primary:hover { background: var(--c-bg); color: var(--c-ink-dark) !important; opacity: .9; }
.section-dark .faq-item summary::after { color: var(--c-bg) !important; }

.section-head { margin-bottom: clamp(32px, 6vw, 64px); max-width: 70ch; }
.section-sub { color: var(--c-muted); margin-top: .2em; }
.ctr { text-align: center; margin-top: 48px; }

.grid { display: grid; gap: clamp(24px, 4vw, 48px); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ----- buttons (flat pill) ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  min-height: var(--tap);
  padding: 12px 22px;
  font: 500 17px/1.2 var(--f-sans);
  letter-spacing: -0.015em;
  border-radius: 999px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--c-link); color: #fff; }
.btn-primary:hover { background: var(--c-link-hover); color: #fff; }
.btn-secondary { background: transparent; color: var(--c-link); box-shadow: inset 0 0 0 1px var(--c-link); }
.btn-secondary:hover { background: var(--c-link); color: #fff; box-shadow: inset 0 0 0 1px var(--c-link); }
.btn-ghost { background: transparent; color: var(--c-link); padding-left: 4px; padding-right: 4px; }
.btn-ghost:hover { color: var(--c-link-hover); text-decoration: underline; text-underline-offset: 4px; }
.btn-lg { padding: 14px 26px; font-size: 17px; min-height: 48px; }
.btn-lg strong { font-weight: 500; }
.btn-lg span { display: none; }
@media (max-width: 600px) {
  .btn-lg { width: auto; }
}
.link-arrow {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--c-link); font-weight: 500; font-family: var(--f-sans);
  font-size: 17px; letter-spacing: -.015em;
  text-decoration: none;
}
.link-arrow::after {
  content: ""; display: inline-block; width: 0.62em; height: 0.62em;
  background-color: currentColor;
  -webkit-mask: var(--chev) center / contain no-repeat;
          mask: var(--chev) center / contain no-repeat;
  transition: transform .2s cubic-bezier(.4,0,.2,1);
}
.link-arrow:hover { color: var(--c-link-hover); text-decoration: underline; text-underline-offset: 3px; }
.link-arrow:hover::after { transform: translateX(2px); }

/* ----- header ----- */
.site-hdr {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--c-bg) 80%, transparent);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.hdr-wrap {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px;
  padding: 12px var(--gutter);
  min-height: 56px;
}
.brand {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--c-ink);
  font-family: var(--f-sans); font-weight: 600;
  font-size: 19px; letter-spacing: -0.022em;
  min-height: var(--tap);
}
.brand:hover { color: var(--c-ink); text-decoration: none; }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  color: var(--c-ink);
  font-family: var(--f-sans); font-weight: 800; font-size: 20px;
  line-height: 1;
}
.brand-mark::before { content: "T"; }
.brand-name { white-space: nowrap; }
.brand-lg .brand-name { font-size: 22px; }

/* nav (desktop) */
.nav { grid-column: 2; justify-self: end; }
.nav ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.nav a {
  display: inline-flex; align-items: center;
  padding: 8px 14px; min-height: var(--tap);
  color: var(--c-ink); text-decoration: none;
  font-family: var(--f-sans); font-weight: 400; font-size: 14px;
  letter-spacing: -0.005em;
  opacity: .85;
  transition: opacity .15s;
}
.nav a:hover { opacity: 1; color: var(--c-ink); text-decoration: none; }

.hdr-cta { display: flex; align-items: center; gap: 12px; }
.hdr-phone {
  display: none;
  align-items: center; gap: 6px;
  min-height: var(--tap); padding: 0 8px;
  font-weight: 400; text-decoration: none; color: var(--c-ink);
  font-size: 14px; opacity: .85;
}
.hdr-phone:hover { opacity: 1; color: var(--c-ink); text-decoration: none; }
@media (min-width: 720px) { .hdr-phone { display: inline-flex; } }
.hdr-cta .btn { padding: 8px 16px; font-size: 14px; min-height: 36px; font-weight: 500; }

/* nav toggle (mobile) */
.nav-toggle {
  display: none;
  background: transparent; border: 0;
  width: var(--tap); height: var(--tap);
  cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
  color: var(--c-ink);
}
.nav-toggle span {
  display: block; width: 18px; height: 1.5px; background: currentColor;
  position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: currentColor;
  transition: transform .2s ease;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(6px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); }

@media (max-width: 1000px) {
  .hdr-wrap { display: flex; justify-content: space-between; align-items: center; }
  .nav-toggle { display: inline-flex; }
  .hdr-cta { display: none; }
  .nav {
    position: fixed; inset: 56px 0 0 0;
    background: var(--c-bg);
    display: none;
    padding: 24px var(--gutter) 160px;
    overflow-y: auto;
    z-index: 49;
  }
  .nav.open { display: block; }
  .nav ul { flex-direction: column; gap: 0; }
  .nav a {
    display: flex; justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid var(--c-hairline);
    font-size: 22px;
    font-weight: 500;
    opacity: 1;
    letter-spacing: -0.022em;
  }
  .nav a::after { content: ""; display: inline-block; width: 0.55em; height: 0.55em; margin-left: 0.5em; background-color: var(--c-muted); -webkit-mask: var(--chev) center / contain no-repeat; mask: var(--chev) center / contain no-repeat; vertical-align: 0.02em; }
  .nav.open ~ .hdr-cta {
    position: fixed; inset: auto 0 0 0;
    display: flex; flex-direction: column; gap: 10px;
    padding: 16px var(--gutter) calc(16px + env(safe-area-inset-bottom));
    background: var(--c-bg);
    border-top: 1px solid var(--c-hairline);
    z-index: 50;
  }
  .nav.open ~ .hdr-cta .btn { width: 100%; }
  .nav.open ~ .hdr-cta .hdr-phone { display: inline-flex; justify-content: center; }
}

/* ----- hero (Apple-style: centered stack + big visual) ----- */
.hero { position: relative; padding: var(--section-y-tight) var(--gutter) 0; max-width: var(--container); margin: 0 auto; text-align: center; }
.hero-wrap { max-width: 880px; margin: 0 auto; }
.hero h1 { font-size: clamp(36px, 6.2vw, 64px); line-height: 1.07; margin-bottom: 18px; letter-spacing: -0.035em; text-wrap: balance; }
.hero h1 br { display: none; }
.hero .lede { color: var(--c-muted); max-width: 36ch; margin-left: auto; margin-right: auto; }
.hero-links { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(20px, 4vw, 40px); margin: clamp(24px, 4vw, 36px) 0 12px; }
.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin: clamp(28px, 4vw, 40px) 0 8px; }
.hero-link { color: var(--c-link); font-size: clamp(17px, 1.6vw, 21px); font-weight: 400; letter-spacing: -0.01em; display: inline-flex; align-items: center; gap: 2px; }
.hero-link:hover { color: var(--c-link-hover); text-decoration: underline; text-underline-offset: 4px; }
.hero-sub { color: var(--c-muted); font-size: 15px; margin-top: 4px; }
.hero-visual { margin: clamp(40px, 6vw, 72px) calc(var(--gutter) * -1) 0; aspect-ratio: 16 / 9; background: var(--c-surface); border-radius: 0; width: auto; max-width: none; overflow: hidden; position: relative; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 0; }
@media (min-width: 1280px) { .hero-visual { margin-left: 0; margin-right: 0; } }
.hero-stripe { display: none; }

/* ----- trust strip ----- */
.trust-strip {
  background: var(--c-ink-dark); color: var(--c-bg);
  padding: clamp(40px, 6vw, 64px) 0;
  overflow: hidden;
}
.trust-wrap {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 24px;
  padding: 0 var(--gutter);
}
@media (max-width: 800px) {
  .trust-wrap {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 32px;
    padding: 4px var(--gutter);
  }
  .trust-wrap::-webkit-scrollbar { display: none; }
  .trust-item { scroll-snap-align: start; min-width: 180px; }
}
.trust-item { text-align: left; }
.trust-item strong {
  display: block; font-size: clamp(28px, 3.5vw, 40px);
  color: var(--c-bg); font-weight: 700;
  font-family: var(--f-sans); letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.trust-item span { color: #a1a1a6; font-size: 14px; font-weight: 400; letter-spacing: -.005em; }

/* ----- cards / tiles (flush, flat) ----- */
.card, .tile, .role-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: color .15s;
}
.card-lg { padding: 0; }
.card h2, .card h3, .tile h3, .role-card h3 { transition: color .15s; }
a.card:hover h2, a.card:hover h3, a.tile:hover h3, a.role-card:hover h3 { color: var(--c-link); }
a.card:hover, a.tile:hover, a.role-card:hover { text-decoration: none; }

.chip-list { list-style: none; padding: 0; margin: 16px 0; display: flex; flex-wrap: wrap; gap: 12px 18px; }
.chip-list li {
  font-family: var(--f-sans); font-size: 14px;
  color: var(--c-muted);
  font-weight: 500;
  letter-spacing: -.01em;
}

.tile { display: flex; flex-direction: column; gap: 8px; }
.tile p { color: var(--c-muted); margin: 0; flex: 1; }
.tile .link-arrow { margin-top: 8px; }

.role-vert { display: inline-block; font-family: var(--f-sans); font-size: 13px; color: var(--c-muted); margin-bottom: 8px; font-weight: 500; }
.role-card h3 { margin: 0 0 8px; }
.role-card p { color: var(--c-muted); margin: 4px 0; font-size: 15px; }
.role-card .pay { color: var(--c-ink); font-weight: 600; margin: 12px 0 8px; font-size: 17px; letter-spacing: -.015em; }

/* ----- bento ----- */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .bento-lg { grid-column: span 2; }
}
.bento-card {
  background: var(--c-surface);
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  min-height: 240px;
}
@media (min-width: 900px) {
  .bento-card { padding: 40px; min-height: 320px; }
}
.bento-card h3 {
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--c-ink);
}
.bento-card p {
  color: var(--c-muted);
  margin: 0;
  max-width: 38ch;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.45;
}

/* ----- CTA split (flat, no rounded card containers) ----- */
.cta-split {
  max-width: var(--container); margin: 0 auto;
  padding: clamp(64px, 10vw, 128px) var(--gutter);
  display: grid; grid-template-columns: 1fr; gap: clamp(24px, 4vw, 48px);
}
@media (min-width: 800px) { .cta-split { grid-template-columns: 1fr 1fr; } }
.cta-card { padding: 0; }
.cta-card h2 { color: var(--c-ink); }
.cta-card p { color: var(--c-muted); max-width: 42ch; }
.cta-card .btn-primary { background: var(--c-link); color: #fff; }
.cta-card .btn-primary:hover { background: var(--c-link-hover); color: #fff; }
.cta-call { display: inline-block; margin-top: 12px; color: var(--c-link); font-size: 15px; }
.cta-employer .eyebrow, .cta-candidate .eyebrow { color: var(--c-muted); }

/* ----- breadcrumb ----- */
.crumb { max-width: var(--container); margin: 0 auto; padding: 24px var(--gutter) 0; }
.crumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; color: var(--c-muted); font-family: var(--f-sans); }
.crumb li:not(:last-child)::after { content: ""; display: inline-block; width: 0.55em; height: 0.55em; margin-left: 8px; background-color: currentColor; -webkit-mask: var(--chev) center / contain no-repeat; mask: var(--chev) center / contain no-repeat; opacity: .6; vertical-align: 0.02em; }
.crumb a { color: var(--c-muted); text-decoration: none; }
.crumb a:hover { color: var(--c-link); text-decoration: none; }

/* ----- page hero (Apple-style: centered text stack, optional visual) ----- */
.page-hero { max-width: var(--container); margin: 0 auto; padding: var(--section-y-tight) var(--gutter); text-align: center; }
.page-hero-wrap { max-width: 880px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(36px, 7vw, 80px); margin-bottom: 20px; letter-spacing: -0.04em; text-wrap: balance; }
.page-hero .lede { color: var(--c-muted); max-width: 56ch; margin: 0 auto; }
.page-hero-links { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(20px, 4vw, 40px); margin: clamp(24px, 4vw, 36px) 0 8px; }
.page-hero-link { color: var(--c-link); font-size: clamp(17px, 1.6vw, 21px); font-weight: 400; letter-spacing: -0.01em; display: inline-flex; align-items: center; gap: 2px; }
.page-hero-link:hover { color: var(--c-link-hover); text-decoration: underline; text-underline-offset: 4px; }
.page-hero-sub { color: var(--c-muted); font-size: 15px; margin-top: 8px; }
.page-hero-visual { margin: clamp(32px, 5vw, 64px) calc(var(--gutter) * -1) 0; aspect-ratio: 21 / 9; background: var(--c-surface); border-radius: 0; overflow: hidden; position: relative; }
.page-hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 0; }
@media (min-width: 1280px) { .page-hero-visual { margin-left: 0; margin-right: 0; } }

.role-hero .meta-list {
  list-style: none; padding: clamp(24px, 5vw, 32px) 0; margin: clamp(24px, 5vw, 32px) auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  border-top: 1px solid var(--c-hairline);
  border-bottom: 1px solid var(--c-hairline);
  max-width: 720px; text-align: left;
}
@media (min-width: 720px) { .role-hero .meta-list { grid-template-columns: repeat(4, 1fr); } }
.role-hero .meta-list li { display: flex; flex-direction: column; gap: 6px; }
.role-hero .meta-list strong { font-size: 13px; color: var(--c-muted); font-weight: 500; letter-spacing: -.005em; }
.role-hero .meta-list span { font-weight: 600; font-size: 17px; font-family: var(--f-sans); letter-spacing: -.015em; color: var(--c-ink); }

/* unified section-head: centered ledger-like header for major sections */
.section-head { margin: 0 auto clamp(28px, 5vw, 56px); max-width: 720px; text-align: center; }
.section-head .lede { margin: 12px auto 0; }
.section-head .eyebrow { margin-bottom: 12px; }
.section-dark .section-head, .section-alt .section-head { text-align: center; }

/* ----- prose ----- */
.prose { max-width: 70ch; font-size: 17px; line-height: 1.6; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.6em; font-size: 1.25rem; }
.prose ul, .prose ol { padding-left: 1.2em; }
.prose li { margin: .5em 0; }
.prose li::marker { color: var(--c-muted); }
.prose p { margin: 1em 0; color: var(--c-ink); }
.prose a { color: var(--c-link); text-decoration: underline; text-underline-offset: 3px; }

/* ----- FAQ (Apple hairline pattern) ----- */
.faq { max-width: 780px; margin: 0 auto; }
.faq h2 { margin-bottom: 32px; }
.faq-item { border-top: 1px solid var(--c-hairline); padding: 22px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--c-hairline); }
.faq-item summary { list-style: none; cursor: pointer; font-weight: 600; font-family: var(--f-sans); font-size: 19px; letter-spacing: -.02em; display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; min-height: var(--tap); color: var(--c-ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 28px; line-height: 1; color: var(--c-link); transition: transform .2s; flex-shrink: 0; font-weight: 300; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { color: var(--c-muted); padding-top: 12px; line-height: 1.5; }
.faq-a p { margin: 8px 0 0; }

/* ----- locations grid (plain text links) ----- */
.loc-grid { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.loc-chip {
  display: inline-flex; align-items: center;
  min-height: var(--tap);
  padding: 8px 0;
  color: var(--c-link);
  text-decoration: none;
  font-size: 17px; font-weight: 400; font-family: var(--f-sans);
  letter-spacing: -.015em;
}
.loc-chip::after { content: ""; display: inline-block; width: 0.6em; height: 0.6em; margin-left: 6px; background-color: currentColor; -webkit-mask: var(--chev) center / contain no-repeat; mask: var(--chev) center / contain no-repeat; vertical-align: 0.02em; }
.loc-chip:hover { color: var(--c-link-hover); text-decoration: underline; text-underline-offset: 3px; }

/* ----- forms (borderless, hairline bottom) ----- */
.form { max-width: 760px; margin: 0 auto; }
.form-stack label { display: block; font-weight: 500; font-family: var(--f-sans); font-size: 14px; margin-bottom: 24px; color: var(--c-muted); letter-spacing: -.005em; }
.form-stack input[type="text"],
.form-stack input[type="email"],
.form-stack input[type="tel"],
.form-stack input[type="number"],
.form-stack input[type="date"],
.form-stack input[type="file"],
.form-stack select,
.form-stack textarea {
  display: block; width: 100%; margin-top: 8px;
  padding: 10px 0;
  min-height: var(--tap);
  font: 400 17px/1.4 var(--f-text);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--c-hairline);
  border-radius: 0;
  color: var(--c-ink);
  transition: border-color .15s;
}
.form-stack textarea { min-height: 100px; resize: vertical; padding-top: 12px; }
.form-stack input:focus, .form-stack select:focus, .form-stack textarea:focus {
  outline: none;
  border-bottom-color: var(--c-link);
  border-bottom-width: 2px;
}
.form-stack small { display: block; margin-top: 8px; color: var(--c-muted); font-size: 13px; font-weight: 400; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; gap: 24px; } }
.radio-group { border: 0; padding: 0; margin-top: 8px; }
.radio-group legend { font-weight: 500; font-size: 14px; padding: 0; color: var(--c-muted); margin-bottom: 8px; }
.radio-group label { display: inline-flex; align-items: center; gap: 8px; margin: 0 24px 0 0; font-weight: 400; color: var(--c-ink); font-size: 17px; }
.hp { position: absolute; left: -9999px; height: 1px; width: 1px; overflow: hidden; }
.form-msg { margin-top: 24px; padding: 14px 18px; border-radius: 12px; display: none; font-weight: 500; }
.form-msg.is-success { display: block; background: #e8f4ea; color: #1b6e3d; }
.form-msg.is-error { display: block; background: #fdecea; color: #b3261e; }
.form-fine { margin-top: 16px; font-size: 13px; color: var(--c-muted); }

.link-list { list-style: none; padding: 0; margin: 0; }
.link-list li { padding: 18px 0; border-top: 1px solid var(--c-hairline); }
.link-list li:last-child { border-bottom: 1px solid var(--c-hairline); }

/* ----- sticky bottom CTA (mobile-only) ----- */
.sticky-cta {
  position: fixed; inset: auto 0 0 0; z-index: 40;
  padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
  background: color-mix(in oklab, var(--c-ink-dark) 95%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex; gap: 10px;
  transform: translateY(100%);
  transition: transform .25s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { flex: 1; min-height: 48px; }
.sticky-cta .btn-call {
  flex: 0 0 auto;
  background: transparent; color: #fff;
  min-width: 52px; padding: 0 16px;
}
.sticky-cta .btn-call:hover { color: #fff; opacity: .8; }
@media (min-width: 720px) { .sticky-cta { display: none; } }
body.has-sticky-cta { padding-bottom: 80px; }
@media (min-width: 720px) { body.has-sticky-cta { padding-bottom: 0; } }

/* ----- footer ----- */
.site-ftr { background: var(--c-surface); color: var(--c-ink); padding: clamp(48px, 8vw, 80px) var(--gutter) 28px; margin-top: 0; }
.ftr-wrap { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 720px) { .ftr-wrap { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .ftr-wrap { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 32px; } }
.ftr-col h4 { color: var(--c-muted); font-size: 12px; font-weight: 600; margin-bottom: 16px; text-transform: none; }
.ftr-col ul { list-style: none; padding: 0; margin: 0; }
.ftr-col li { margin-bottom: 8px; font-size: 13px; }
.ftr-col a {
  display: inline-block; padding: 4px 0;
  color: var(--c-ink); text-decoration: none;
}
.ftr-col a:hover { text-decoration: underline; text-underline-offset: 3px; color: var(--c-ink); }
.ftr-brand .brand-name { color: var(--c-ink); }
.ftr-tag { color: var(--c-muted); font-size: 13px; margin: 12px 0 20px; max-width: 36ch; line-height: 1.5; }
.ftr-brand address { font-style: normal; font-size: 13px; line-height: 1.7; color: var(--c-muted); }
.ftr-brand address a { color: var(--c-ink); }
.ftr-hours { font-size: 13px; color: var(--c-muted); margin-top: 10px; }
.ftr-bar { max-width: var(--container); margin: 32px auto 0; padding-top: 20px; border-top: 1px solid var(--c-hairline); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--c-muted); }
.ftr-bar a { color: var(--c-muted); }
.ftr-bar a:hover { color: var(--c-ink); }
