/* =========================================================
   ANAJ CONSULT — shared stylesheet
   Palette: warm cream + warm charcoal + muted olive accent
   Type: Bricolage Grotesque (display) / Hanken Grotesk (body)
   Signature: white rounded panels overlapping a dark hero
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --cream:      #F2EEE4;
  --cream-2:    #E8E2D4;
  --ink:        #1B1C18;
  --ink-2:      #24261E;
  --ink-3:      #313327;
  --olive:      #F37004; /* ANAJ brand orange */
  --olive-deep: #B14E05; /* darker orange — accent text + button hover */
  --olive-soft: #FCE3CD; /* soft peach tint */
  --paper:      #FFFFFF;
  --muted:      #6A6E60;
  --muted-2:    #8C907F;
  --on-dark:    #F2EEE4;
  --on-dark-2:  #AEB2A0;
  --line:       rgba(27, 28, 24, 0.10);
  --line-dark:  rgba(242, 238, 228, 0.14);

  --r-xl: 34px;
  --r-lg: 26px;
  --r-md: 18px;
  --r-sm: 12px;
  --pill: 999px;

  --shadow-sm: 0 2px 10px rgba(27, 28, 24, 0.05);
  --shadow-md: 0 24px 60px -30px rgba(27, 28, 24, 0.35);

  --fs-hero: clamp(2.9rem, 7.4vw, 5.6rem);
  --fs-h2:   clamp(2rem, 4.2vw, 3.3rem);
  --fs-h3:   clamp(1.35rem, 2.4vw, 1.9rem);
  --fs-lead: clamp(1.08rem, 1.5vw, 1.32rem);

  --maxw: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2.75rem);
  --font-display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
}
p { margin: 0; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.stack > * + * { margin-top: 1rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--olive-deep); outline-offset: 2px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive-deep);
}
.eyebrow::before {
  content: "";
  width: 1.6rem; height: 1px;
  background: var(--olive-deep);
  display: inline-block;
}
.eyebrow--on-dark { color: var(--olive); }
.eyebrow--on-dark::before { background: var(--olive); }

.lead { font-size: var(--fs-lead); color: var(--muted); max-width: 46ch; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: var(--pill);
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn:active { transform: translateY(1px); }
.btn--olive { background: var(--olive); color: var(--ink); }
.btn--olive:hover { background: var(--olive-deep); color: var(--paper); }
.btn--dark { background: var(--ink); color: var(--on-dark); }
.btn--dark:hover { background: var(--ink-3); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--ghost-light { background: transparent; color: var(--on-dark); border-color: var(--line-dark); }
.btn--ghost-light:hover { border-color: var(--on-dark); }
.btn .arrow { font-size: 1.1em; transition: transform 0.18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.textlink {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: border-color 0.18s ease, gap 0.18s ease;
}
.textlink:hover { border-color: var(--ink); gap: 0.65rem; }
.textlink--light { color: var(--on-dark); border-color: var(--line-dark); }
.textlink--light:hover { border-color: var(--on-dark); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-block: 1.1rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; }
.brand .mark {
  width: 28px; height: 34px;
  background: url("assets/anaj-mark-dark.svg") center / contain no-repeat;
  border-radius: 0;
  color: transparent; text-indent: -999px; overflow: hidden; flex: none;
}
.site-footer .brand .mark { background-image: url("assets/anaj-mark-light.svg"); }
.site-footer .brand em { color: var(--olive); }
.brand span { line-height: 1; }
.brand em { font-style: normal; color: var(--olive-deep); }

.nav-links { display: flex; align-items: center; gap: 0.35rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  padding: 0.5rem 0.85rem; border-radius: var(--pill);
  font-size: 0.95rem; font-weight: 500; color: var(--muted);
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--ink); background: var(--cream-2); }

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--line);
  border-radius: 10px; width: 44px; height: 44px; padding: 0; place-items: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink); position: relative; transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(1.5rem, 4vw, 2.5rem); }
.hero-panel {
  background: var(--ink);
  color: var(--on-dark);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 4vw, 3.25rem);
  padding-bottom: clamp(4.5rem, 9vw, 7rem);
  position: relative;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.hero h1 { font-size: var(--fs-hero); margin-top: 1.1rem; }
.hero h1 .accent { color: var(--olive); }
.hero-sub { color: var(--on-dark-2); font-size: var(--fs-lead); max-width: 40ch; margin-top: 1.25rem; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem 1.25rem; margin-top: 1.9rem; }
.hero-stats { display: flex; gap: 2rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero-stats .stat b { font-family: var(--font-display); font-size: 1.7rem; display: block; letter-spacing: -0.02em; }
.hero-stats .stat span { font-size: 0.82rem; color: var(--on-dark-2); }

/* Full-bleed photo hero: image fills the panel, copy sits on top */
.hero-panel--photo { min-height: clamp(460px, 62vh, 620px); display: flex; align-items: center; }
.hero-panel--photo .hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 72% center; z-index: 0;
}
.hero-panel--photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18,15,10,0.95) 0%, rgba(18,15,10,0.82) 40%, rgba(18,15,10,0.42) 70%, rgba(18,15,10,0.10) 100%),
    linear-gradient(0deg, rgba(18,15,10,0.45), transparent 42%);
}
.hero-panel--photo .hero-copy { position: relative; z-index: 2; max-width: 640px; }
@media (max-width: 760px) {
  .hero-panel--photo { min-height: 540px; }
  .hero-panel--photo .hero-bg { object-position: 66% center; }
  .hero-panel--photo::after {
    background: linear-gradient(180deg, rgba(18,15,10,0.66) 0%, rgba(18,15,10,0.88) 100%);
  }
}

/* Decorative brand composition used where a photo would go */
.composition {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-lg); overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% 15%, rgba(243,112,4,0.38), transparent 55%),
    linear-gradient(150deg, #2b2621, #14100c);
  border: 1px solid var(--line-dark);
}
.composition::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(242,238,228,0.10) 1px, transparent 1px);
  background-size: 16px 16px; opacity: 0.5;
}
.composition .blob {
  position: absolute; border-radius: 50%; filter: blur(2px);
}
.composition .blob-1 { width: 55%; aspect-ratio: 1; right: -12%; top: 8%; background: radial-gradient(circle at 35% 30%, var(--olive), var(--olive-deep)); opacity: 0.9; }
.composition .blob-2 { width: 42%; aspect-ratio: 1; left: -8%; bottom: 6%; border: 1px solid var(--olive); background: transparent; }
.composition .tag {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  background: rgba(20,21,15,0.55); border: 1px solid var(--line-dark);
  color: var(--on-dark); border-radius: var(--pill); padding: 0.5rem 0.9rem;
  font-size: 0.8rem; backdrop-filter: blur(6px);
}

/* Real photos dropped into placeholder blocks fill and crop cleanly */
.media > img.ph,
.card .card-media > img.ph,
.work-card .work-media > img.ph,
.composition > img.ph {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1; display: block;
}
.composition > img.ph { border-radius: inherit; }
.media .media-note, .composition .tag { z-index: 2; }
.card .card-media .glyph { z-index: 0; }

/* Generic replaceable media block (light contexts) */
.media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(150deg, var(--olive-soft), #F4CFAB);
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
}
.media::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(27,28,24,0.06) 1px, transparent 1px);
  background-size: 18px 18px;
}
.media--tall { aspect-ratio: 3 / 4; }
.media--wide { aspect-ratio: 21 / 9; }
.media .media-note {
  position: absolute; left: 0.9rem; bottom: 0.9rem; z-index: 2;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--olive-deep);
  background: rgba(255,255,255,0.75); border-radius: var(--pill); padding: 0.35rem 0.7rem;
}

/* ---------- Overlapping panel signature ---------- */
.panel {
  background: var(--paper);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
}
.panel--lift { margin-top: clamp(-4rem, -6vw, -3rem); position: relative; z-index: 5; }

/* ---------- Section headings ---------- */
.sec-head { display: grid; gap: 1rem; max-width: 60ch; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.sec-head h2 { font-size: var(--fs-h2); }
.sec-head--split {
  grid-template-columns: 1fr auto; align-items: end; max-width: none; gap: 1.5rem;
}
.sec-head--split .sh-copy { max-width: 46ch; }

/* ---------- Split rows (who we are / mission) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.split--reverse .split-media { order: -1; }
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.25rem, 3vw, 2.25rem); }
.duo h3 { font-size: var(--fs-h3); margin-bottom: 0.5rem; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.5rem); }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.4rem; display: flex; flex-direction: column; gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .card-media { aspect-ratio: 16 / 11; border-radius: var(--r-md); background: linear-gradient(150deg, var(--olive-soft), #F5D2AF); position: relative; overflow: hidden; }
.card .card-media .glyph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--olive-deep); }
.card .card-media .glyph svg { width: 46px; height: 46px; }
.card h3 { font-size: 1.3rem; }
.card .card-index { font-family: var(--font-display); font-size: 0.85rem; color: var(--muted-2); }
.card p { color: var(--muted); font-size: 0.97rem; }
.card .card-foot { margin-top: auto; padding-top: 0.4rem; }

/* ---------- Inset dark CTA card ---------- */
.cta-card {
  background: var(--ink); color: var(--on-dark); border-radius: var(--r-xl);
  padding: clamp(1.75rem, 4vw, 3rem); position: relative; overflow: hidden;
}
.cta-card h2 { font-size: var(--fs-h2); max-width: 16ch; }
.cta-card p { color: var(--on-dark-2); max-width: 46ch; margin-top: 1rem; }
.cta-card .cta-actions { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }
.cta-card .glow { position: absolute; width: 340px; height: 340px; right: -80px; bottom: -120px; border-radius: 50%; background: radial-gradient(circle, rgba(243,112,4,0.45), transparent 65%); }

/* ---------- Newsletter strip ---------- */
.newsletter {
  background: var(--olive-soft); border-radius: var(--r-xl);
  padding: clamp(1.75rem, 4vw, 3rem);
  display: grid; grid-template-columns: 1fr auto; gap: 1.75rem; align-items: center;
}
.newsletter h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.newsletter p { color: var(--muted); margin-top: 0.5rem; }
.subscribe { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.subscribe input {
  border: 1px solid var(--line); background: var(--paper); border-radius: var(--pill);
  padding: 0.85rem 1.2rem; font-family: inherit; font-size: 0.98rem; min-width: 15rem; color: var(--ink);
}
.subscribe input:focus-visible { outline: 2px solid var(--olive-deep); outline-offset: 2px; }

/* ---------- Quote banner ---------- */
.quote {
  background: var(--ink); color: var(--on-dark); border-radius: var(--r-xl);
  padding: clamp(2.5rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem); position: relative; overflow: hidden;
  text-align: center;
}
.quote::before {
  content: "“"; font-family: var(--font-display); position: absolute; top: -0.4em; left: 0.2em;
  font-size: 12rem; color: var(--ink-3); line-height: 1; z-index: 0;
}
.quote blockquote { position: relative; z-index: 1; font-family: var(--font-display); font-size: clamp(1.6rem, 3.6vw, 2.75rem); font-weight: 500; line-height: 1.18; letter-spacing: -0.02em; max-width: 24ch; margin: 0 auto; }
.quote cite { position: relative; z-index: 1; display: block; margin-top: 1.5rem; font-style: normal; color: var(--olive); font-size: 0.95rem; letter-spacing: 0.04em; }

/* ---------- Portfolio ---------- */
.work { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2.5vw, 1.75rem); }
.work-card {
  border-radius: var(--r-lg); overflow: hidden; position: relative;
  border: 1px solid var(--line); background: var(--paper);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.work-card .work-media { aspect-ratio: 16 / 10; background: linear-gradient(150deg, #F6C79C, var(--olive-soft)); position: relative; }
.work-card:nth-child(2) .work-media { background: linear-gradient(150deg, #E7DBCB, #F3ECE0); }
.work-card:nth-child(3) .work-media { background: linear-gradient(150deg, #F4CBA0, #FBE6D2); }
.work-card:nth-child(4) .work-media { background: linear-gradient(150deg, #E3D3BE, #F1E9DB); }
.work-body { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 1.35rem; }
.work-body h3 { font-size: 1.2rem; }
.work-body .tag-row { color: var(--muted); font-size: 0.85rem; margin-top: 0.25rem; }
.work-arrow { width: 42px; height: 42px; flex: none; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease; }
.work-card:hover .work-arrow { background: var(--olive); transform: rotate(-45deg); }

/* ---------- Reviews / testimonials ---------- */
.reviews { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.5vw, 1.75rem); }
.review {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem;
}
.review .stars { color: var(--olive-deep); letter-spacing: 0.15em; font-size: 0.95rem; }
.review blockquote { font-size: 1.08rem; line-height: 1.55; margin: 0; }
.review .who { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.review .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(150deg, var(--olive), var(--olive-deep)); color: var(--ink); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.review .who b { display: block; font-size: 0.95rem; }
.review .who span { color: var(--muted); font-size: 0.85rem; }

/* ---------- Service list (services page) ---------- */
.svc-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: 5rem 1fr auto; gap: 1.5rem; align-items: center;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0; border-bottom: 1px solid var(--line);
  transition: padding-left 0.2s ease;
}
.svc-row:hover { padding-left: 0.75rem; }
.svc-row .svc-num { font-family: var(--font-display); font-size: 1.1rem; color: var(--olive-deep); }
.svc-row h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.svc-row p { color: var(--muted); margin-top: 0.4rem; max-width: 52ch; }
.svc-row .svc-go { justify-self: end; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.field { display: grid; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em; }
.field label .req { color: var(--olive-deep); }
.field input, .field textarea, .field select {
  border: 1px solid var(--line); background: var(--paper); border-radius: var(--r-sm);
  padding: 0.85rem 1rem; font-family: inherit; font-size: 1rem; color: var(--ink); width: 100%;
}
.field textarea { resize: vertical; min-height: 8rem; }
.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible {
  outline: 2px solid var(--olive-deep); outline-offset: 2px; border-color: transparent;
}
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; }
.info-list li { display: grid; gap: 0.2rem; }
.info-list .k { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive-deep); }
.info-list .v { font-size: 1.15rem; font-family: var(--font-display); }
.info-list .v a:hover { color: var(--olive-deep); }

/* ---------- Registration steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; counter-reset: step; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.4rem; }
.step .n { width: 40px; height: 40px; border-radius: 50%; background: var(--olive-soft); color: var(--olive-deep); font-family: var(--font-display); font-weight: 700; display: grid; place-items: center; margin-bottom: 0.9rem; }
.step h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.step p { color: var(--muted); font-size: 0.92rem; }

.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.pkg { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.pkg--featured { background: var(--ink); color: var(--on-dark); border-color: transparent; }
.pkg--featured .price, .pkg--featured h3 { color: var(--on-dark); }
.pkg--featured .pkg-list li { color: var(--on-dark-2); }
.pkg .badge { align-self: flex-start; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; background: var(--olive); color: var(--ink); border-radius: var(--pill); padding: 0.3rem 0.7rem; }
.pkg h3 { font-size: 1.35rem; }
.pkg .price { font-family: var(--font-display); font-size: 2rem; letter-spacing: -0.02em; }
.pkg .price small { font-size: 0.9rem; color: var(--muted); font-family: var(--font-body); }
.pkg--featured .price small { color: var(--on-dark-2); }
.pkg-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.pkg-list li { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--muted); font-size: 0.95rem; }
.pkg-list li::before { content: "✓"; color: var(--olive-deep); font-weight: 700; }
.pkg--featured .pkg-list li::before { color: var(--olive); }
.pkg .btn { margin-top: auto; justify-content: center; }
.pkg-sub { color: var(--muted); font-size: 0.94rem; margin-top: -0.35rem; }
.pkg--featured .pkg-sub { color: var(--on-dark-2); }
.pkg-tiers { display: grid; gap: 0.6rem; }
.tier { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.7rem 0.95rem; border: 1px solid var(--line); border-radius: var(--r-sm); }
a.tier { cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease; }
a.tier:hover { border-color: var(--olive); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
a.tier:focus-visible { outline: 2px solid var(--olive-deep); outline-offset: 2px; }
.pkg--featured a.tier:hover { border-color: var(--olive); }
.pkg--featured .tier { border-color: var(--line-dark); }
.tier--express { background: var(--olive-soft); border-color: transparent; }
.pkg--featured .tier--express { background: rgba(242,238,228,0.10); }
.tier-name { font-size: 0.9rem; font-weight: 600; }
.tier-name small { font-weight: 400; color: var(--muted); }
.pkg--featured .tier-name small { color: var(--on-dark-2); }
.tier-price { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: -0.02em; white-space: nowrap; }

/* ---------- Sub-page hero ---------- */
.page-hero { padding-top: clamp(1.5rem, 4vw, 2.5rem); }
.page-hero .hero-panel { padding-bottom: clamp(2rem, 5vw, 3.5rem); }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--on-dark); margin-top: clamp(3rem, 6vw, 5rem); }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2.5rem; padding-block: clamp(3rem, 6vw, 4.5rem); border-bottom: 1px solid var(--line-dark); }
.footer-cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.footer-cta p { color: var(--on-dark-2); margin-top: 0.6rem; max-width: 34ch; }
.footer-cta .subscribe { margin-top: 1.5rem; }
.footer-cta .subscribe input { background: var(--ink-2); border-color: var(--line-dark); color: var(--on-dark); }
.footer-col h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-2); margin-bottom: 1rem; font-weight: 600; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.footer-col a { color: var(--on-dark); opacity: 0.85; transition: opacity 0.15s ease, color 0.15s ease; }
.footer-col a:hover { opacity: 1; color: var(--olive); }
.socials { display: flex; gap: 0.6rem; margin-top: 0.4rem; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; opacity: 1; }
.socials a:hover { background: var(--olive); color: var(--ink); border-color: transparent; }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.5rem; color: var(--on-dark-2); font-size: 0.88rem; }
.footer-bottom .brand { color: var(--on-dark); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-grid .composition { max-width: 440px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-cta { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: grid; }
  .site-header.nav-open .nav-links {
    display: flex; position: absolute; left: var(--gutter); right: var(--gutter); top: 72px;
    flex-direction: column; align-items: stretch; gap: 0.25rem;
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
    padding: 0.75rem; box-shadow: var(--shadow-md); z-index: 70;
  }
  .site-header.nav-open .nav-links a { padding: 0.8rem 1rem; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .duo { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .work { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; }
  .sec-head--split { grid-template-columns: 1fr; align-items: start; }
  .svc-row { grid-template-columns: 2.5rem 1fr; }
  .svc-row .svc-go { grid-column: 2; justify-self: start; margin-top: 0.5rem; }
  .hero-stats { gap: 1.25rem 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .card, .work-card { transition: none !important; }
}

/* ---------- FAQ accordion ---------- */
.faq { display: grid; gap: 0.75rem; max-width: 840px; }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 0 1.3rem; transition: border-color 0.15s ease; }
.faq details[open] { border-color: var(--olive); }
.faq summary { list-style: none; cursor: pointer; padding: 1.15rem 0; font-family: var(--font-display); font-size: 1.06rem; font-weight: 600; letter-spacing: -0.01em; display: flex; justify-content: space-between; align-items: center; gap: 1.25rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; font-size: 1.5rem; line-height: 1; color: var(--olive-deep); transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:focus-visible { outline: 2px solid var(--olive-deep); outline-offset: 4px; border-radius: 4px; }
.faq details p { margin: 0 0 1.2rem; color: var(--muted); max-width: 68ch; }

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #25D366; color: #fff;
  box-shadow: 0 10px 24px -6px rgba(37,211,102,0.55), 0 4px 12px rgba(27,28,24,0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.wa-float:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 16px 32px -6px rgba(37,211,102,0.7), 0 6px 16px rgba(27,28,24,0.22); }
.wa-float:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.wa-float svg { width: 32px; height: 32px; position: relative; z-index: 1; }
.wa-float .wa-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
  animation: waPulse 2.4s ease-out infinite;
}
.wa-float .wa-label {
  position: absolute; right: calc(100% + 12px); white-space: nowrap;
  background: var(--ink); color: var(--on-dark);
  font-size: 0.85rem; font-weight: 600; padding: 0.5rem 0.85rem; border-radius: var(--pill);
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateX(6px); pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.wa-float:hover .wa-label, .wa-float:focus-visible .wa-label { opacity: 1; transform: translateX(0); }
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 760px) { .wa-float .wa-label { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .wa-float { transition: none; }
  .wa-float .wa-pulse { animation: none; }
}
