/* ============ TOKENS ============ */
:root {
  --bg: #FFFFFF;
  --surface: #F2F2F4;
  --surface-2: #E9E9ED;
  --ink: #202024;
  --ink-soft: #5A5A63;
  --accent: #D62839;
  --accent-2: #2563EB;
  --line: rgba(32, 32, 36, 0.12);
  --line-strong: rgba(32, 32, 36, 0.22);
  --header-h: 76px;
  --maxw: 1320px;
  --radius: 14px;
  --shadow-soft: 0 18px 40px -28px rgba(32, 32, 36, 0.45);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-2: cubic-bezier(.4, 0, .2, 1);
  interpolate-size: allow-keywords;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 .4em;
  letter-spacing: -0.012em;
}
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
.tnum { font-variant-numeric: tabular-nums; }

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: clamp(16px, 4vw, 48px);
  padding-right: clamp(16px, 4vw, 48px);
}
main { padding-top: var(--header-h); }
:where([id]) { scroll-margin-top: calc(var(--header-h) + 18px); }
section { padding-block: clamp(56px, 8vw, 104px); }
.section-head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 48px); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent);
}
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--ink-soft); }
.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 2000;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: .96rem;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: background .2s var(--ease), color .2s var(--ease),
    transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  position: relative;
}
.btn-primary { background: var(--ink); color: var(--surface); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -16px rgba(214, 40, 57, .6);
}
.btn-primary .arr { transition: transform .2s var(--ease); }
.btn-primary:hover .arr { transform: translateX(4px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink); transform: translateY(-2px);
}
.btn-block { width: 100%; justify-content: center; }
@media (min-width: 560px) { .btn-auto { width: auto; } }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
  transition: height .24s var(--ease), background .24s var(--ease), box-shadow .24s var(--ease);
}
.site-header.is-scrolled {
  height: 64px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, .18);
}
.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.16rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand .mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--ink);
  color: #fff;
  border-radius: 11px;
  flex: none;
}
.brand .mark svg { width: 22px; height: 22px; }
.brand small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: .62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-desktop { display: none; align-items: center; gap: 6px; }
.nav-desktop a {
  position: relative;
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
  padding: 8px 12px;
  transition: color .2s var(--ease);
}
.nav-desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s var(--ease);
}
.nav-desktop a:not(.nav-cta):hover { color: var(--accent); }
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a.is-active:not(.nav-cta)::after { transform: scaleX(1); }
.nav-desktop a.is-active:not(.nav-cta) { color: var(--accent); }
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta {
  background: var(--ink); color: var(--surface);
  border-radius: 999px; padding: 10px 20px; margin-left: 8px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.nav-desktop .nav-cta:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

/* hamburger */
.nav-toggle {
  position: relative;
  z-index: 1100;
  width: 46px; height: 46px;
  display: inline-grid;
  place-items: center;
  gap: 5px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .26s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* ============ DRAWER ============ */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  z-index: 1050;
  background: var(--bg);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  padding: calc(var(--header-h) + 16px) 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.drawer a:not(.btn):hover, .drawer a:not(.btn).is-active { color: var(--accent); padding-left: 6px; }
/* CTA inside the drawer is a button, not a plain nav link:
   restore its own colors/padding (a.btn-primary > .drawer a specificity) and drop the link border. */
.drawer .btn { margin-top: 18px; border-bottom: 0; padding: 13px 24px; }
.drawer a.btn-primary { color: var(--surface); }
.drawer a.btn-primary:hover, .drawer a.btn-primary:focus-visible { color: #fff; }
.drawer-meta { margin-top: auto; font-size: .85rem; color: var(--ink-soft); }
.drawer-meta a { font-family: inherit; font-weight: 500; font-size: .85rem; border: none; padding: 2px 0; }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s var(--ease), visibility .24s var(--ease);
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding-top: clamp(36px, 6vw, 72px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 60% at 88% 8%, rgba(37, 99, 235, .07), transparent 70%),
    radial-gradient(50% 60% at 6% 100%, rgba(214, 40, 57, .06), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 940px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}
.hero-copy { min-width: 0; }
.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 4.5rem);
  margin-bottom: 18px;
}
.hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  animation: heroWord .7s var(--ease) forwards;
}
.hero h1 .accent-word { color: var(--accent); }
@keyframes heroWord { to { opacity: 1; transform: none; } }
html.no-js .hero h1 .word { opacity: 1; transform: none; animation: none; }
.hero-sub { font-size: clamp(1.05rem, 1.8vw, 1.28rem); color: var(--ink-soft); max-width: 38ch; margin-bottom: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 14px 22px; }
.trust-strip li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .86rem; font-weight: 500; color: var(--ink-soft);
}
.trust-strip svg { width: 18px; height: 18px; color: var(--accent); flex: none; }

/* hero preview 2x2 */
.hero-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  min-width: 0;
}
.preview-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 18px;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
}
/* hero photo: spans the full preview width above the spec cards */
.hero-preview .hero-shot {
  grid-column: 1 / -1;
  width: 100%;
  height: clamp(168px, 20vw, 232px);
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
/* spec cards sit as a tidy 2x2 beneath the photo's straight edge */
.preview-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: var(--accent); }
.preview-card .ic { width: 36px; height: 36px; color: var(--accent); }
.preview-card h3 { font-size: 1.02rem; margin: 14px 0 2px; }
.preview-card .px { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1.04rem; }
.preview-card .px small { font-weight: 500; color: var(--ink-soft); font-size: .72rem; display: block; }

/* corner pill badge */
.pill-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: .64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
}
.pill-badge.alt { background: var(--accent-2); }

/* ============ STATS BAND ============ */
.stats-band { background: var(--ink); color: #fff; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 20px;
}
@media (min-width: 760px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { min-width: 0; }
.stat .num {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .num .suf { color: var(--accent); }
.stat .lbl { margin-top: 8px; font-size: .9rem; color: rgba(255, 255, 255, .7); }

/* ============ SERVICE CATALOG ============ */
.catalog-head {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 22px;
  margin-bottom: 28px;
}
.filters { display: flex; flex-wrap: wrap; gap: 9px; }
.filter-btn {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: .86rem;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.filter-btn:hover { border-color: var(--ink); }
.filter-btn.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 16px;
}
.svc-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
  animation: cardIn .42s var(--ease) both;
}
@keyframes cardIn { from { opacity: 0; transform: scale(.96) translateY(10px); } to { opacity: 1; transform: none; } }
/* dashed basting stitch border on hover (theme signature) */
.svc-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 9px;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--accent) 55%, transparent 0) repeat-x,
    linear-gradient(90deg, var(--accent) 55%, transparent 0) repeat-x,
    linear-gradient(0deg, var(--accent) 55%, transparent 0) repeat-y,
    linear-gradient(0deg, var(--accent) 55%, transparent 0) repeat-y;
  background-size: 11px 2px, 11px 2px, 2px 11px, 2px 11px;
  background-position: 0 0, 0 100%, 0 0, 100% 0;
  transition: opacity .2s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px -28px rgba(214, 40, 57, .55); }
.svc-card:hover::before { opacity: 1; animation: stitch .65s linear infinite; }
@keyframes stitch {
  to { background-position: 11px 0, -11px 100%, 0 -11px, 100% 11px; }
}
@media (prefers-reduced-motion: reduce) {
  .svc-card:hover::before { animation: none; }
}
.svc-card .ic-wrap {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--surface);
  border-radius: 12px;
  color: var(--accent);
  margin-bottom: 14px;
}
.svc-card .ic-wrap svg { width: 26px; height: 26px; }
.svc-card .tag {
  font-family: 'Archivo', sans-serif; font-weight: 600;
  font-size: .68rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 4px;
}
.svc-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.svc-card p { font-size: .9rem; color: var(--ink-soft); margin-bottom: 16px; }
.svc-card .card-foot {
  margin-top: auto;
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  padding-top: 14px; border-top: 1px solid var(--line);
}
.svc-card .price { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.24rem; }
.svc-card .price small { display: block; font-size: .62rem; font-weight: 500; color: var(--ink-soft); letter-spacing: .04em; }
.svc-card .dur { font-size: .8rem; color: var(--accent-2); font-weight: 600; }
.catalog-note { margin-top: 22px; font-size: .85rem; color: var(--ink-soft); }
.is-hidden { display: none !important; }

/* ============ DURATION TABLE ============ */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: .94rem; }
table th { font-family: 'Archivo', sans-serif; font-weight: 700; background: var(--surface); }
table tbody tr:last-child td { border-bottom: 0; }
table td.num, table th.num { font-variant-numeric: tabular-nums; }
.badge-same {
  display: inline-block; font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: .68rem; padding: 3px 9px; border-radius: 999px;
  background: rgba(214, 40, 57, .12); color: var(--accent);
}
.badge-q {
  display: inline-block; font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: .68rem; padding: 3px 9px; border-radius: 999px;
  background: rgba(37, 99, 235, .12); color: var(--accent-2);
}

/* ============ STEPS (vertical timeline) ============ */
.section-alt { background: var(--surface); }
.steps {
  display: grid;
  gap: 0;
  max-width: 760px;
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding-bottom: 38px;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: "";
  position: absolute;
  left: 27px; top: 56px; bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(var(--accent) 0 6px, transparent 6px 12px);
}
.step:last-child::before { display: none; }
.step .num-circle {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--ink); color: #fff;
  border-radius: 16px;
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.3rem;
  z-index: 1;
}
.step .num-circle svg { width: 26px; height: 26px; }
.step-body { min-width: 0; padding-top: 4px; }
.step-body h3 { font-size: 1.2rem; margin-bottom: 4px; }
.step-body .when { font-size: .78rem; font-weight: 600; color: var(--accent-2); margin-bottom: 8px; display: block; }
.step-body p { font-size: .94rem; color: var(--ink-soft); margin: 0; }

/* ============ PACKAGES ============ */
.pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px) { .pkg-grid { grid-template-columns: repeat(3, 1fr); } }
.pkg {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  background: var(--bg);
  display: flex; flex-direction: column;
  min-width: 0;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
}
.pkg:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.pkg.featured { border-color: var(--ink); background: var(--ink); color: #fff; }
.pkg.featured .pkg-price, .pkg.featured h3 { color: #fff; }
.pkg.featured .pkg-incl li { color: rgba(255,255,255,.82); }
.pkg.featured .pkg-excl { color: rgba(255,255,255,.6); }
.pkg .pop {
  position: absolute; top: -12px; left: 24px;
  background: var(--accent); color: #fff;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: .68rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.pkg h3 { font-size: 1.3rem; margin-bottom: 4px; }
.pkg .pkg-for { font-size: .84rem; color: var(--ink-soft); margin-bottom: 16px; }
.pkg.featured .pkg-for { color: rgba(255,255,255,.65); }
.pkg-price { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 2rem; margin-bottom: 2px; }
.pkg-price small { font-size: .7rem; font-weight: 500; color: var(--ink-soft); }
.pkg.featured .pkg-price small { color: rgba(255,255,255,.6); }
.pkg-incl { margin: 18px 0; display: grid; gap: 9px; }
.pkg-incl li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; font-size: .9rem; align-items: start; }
.pkg-incl svg { width: 16px; height: 16px; color: var(--accent); margin-top: 4px; }
.pkg.featured .pkg-incl svg { color: #fff; }
.pkg-excl { font-size: .82rem; color: var(--ink-soft); margin-bottom: 18px; padding-top: 10px; border-top: 1px solid var(--line); }
.pkg.featured .pkg-excl { border-color: rgba(255,255,255,.2); }
.pkg .btn { margin-top: auto; }
.pkg.featured .btn-primary { background: #fff; color: var(--ink); }
.pkg.featured .btn-primary:hover { background: var(--accent); color: #fff; }
.pkg-note { margin-top: 20px; font-size: .82rem; color: var(--ink-soft); }

/* ============ TESTIMONIALS ============ */
.tst-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 680px) { .tst-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .tst-grid { grid-template-columns: repeat(3, 1fr); } }
.tst {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  background: var(--bg);
  display: flex; flex-direction: column;
  min-width: 0;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
}
.tst:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--line-strong); }
.tst .stars { color: var(--accent); letter-spacing: 2px; font-size: .9rem; margin-bottom: 12px; }
.tst p { font-size: .94rem; margin-bottom: 16px; }
.tst .who { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.tst .av {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface);
  font-family: 'Archivo', sans-serif; font-weight: 800; color: var(--accent);
}
.tst .who b { font-family: 'Archivo', sans-serif; font-size: .92rem; display: block; }
.tst .who span { font-size: .78rem; color: var(--ink-soft); }

/* ============ FAQ ============ */
.faq { max-width: 820px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px clamp(18px, 3vw, 26px);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary { transition: color .2s var(--ease); }
.faq-item summary:hover { color: var(--accent); }
.faq-item[open] summary { color: var(--accent); }
.faq-item summary .chev {
  flex: none; width: 22px; height: 22px;
  transition: transform .3s var(--ease);
  color: var(--accent);
}
.faq-item[open] summary .chev { transform: rotate(45deg); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 26px);
  overflow: hidden;
  transition: height 360ms var(--ease-2), padding-block-end 360ms var(--ease-2);
}
.faq-item[open] > .answer { height: auto; padding-block-end: 22px; }
.faq-item > .answer p { font-size: .94rem; color: var(--ink-soft); margin: 0; }
@media (prefers-reduced-motion: reduce) { .faq-item > .answer { transition: none; } }

/* ============ MANIFESTO / QUOTE ============ */
.manifesto { background: var(--ink); color: #fff; }
.manifesto blockquote {
  margin: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.6vw, 2.8rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  max-width: 16ch;
}
.manifesto blockquote .hl { color: var(--accent); }
.manifesto .by { margin-top: 22px; font-family: 'Inter', sans-serif; font-size: .92rem; color: rgba(255,255,255,.65); }

/* ============ CONTACT (index mini) ============ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 52px);
}
@media (min-width: 900px) { .contact-split { grid-template-columns: 0.95fr 1.05fr; } }
.ch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.ch-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 20px;
  background: var(--bg);
  display: block;
  min-width: 0;
  transition: transform .24s var(--ease-2), box-shadow .24s var(--ease-2), border-color .24s var(--ease-2);
}
.ch-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: var(--accent); }
.ch-card .ic-circle {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--surface);
  color: var(--accent);
  margin-bottom: 14px;
  transition: background .24s var(--ease-2), color .24s var(--ease-2);
}
.ch-card:hover .ic-circle { background: var(--accent); color: #fff; }
.ch-card .ic-circle svg { width: 22px; height: 22px; }
.ch-card .ch-name { display: block; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 4px; }
.ch-card .ch-val { display: block; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1.04rem; line-height: 1.35; word-break: break-word; overflow-wrap: anywhere; transition: color .24s var(--ease-2); }
.ch-card .ch-sub { display: block; font-size: .82rem; color: var(--ink-soft); margin-top: 5px; line-height: 1.45; }
.ch-card:hover .ch-val { color: var(--accent); }

/* ============ FORM ============ */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 620px) { .form-grid .two { grid-template-columns: 1fr 1fr; display: grid; gap: 16px; } }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label, .field > span.lbl { font-family: 'Archivo', sans-serif; font-weight: 600; font-size: .84rem; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: .96rem;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(214, 40, 57, .14);
}
.field textarea { resize: vertical; min-height: 120px; }
.field.kvkk { flex-direction: row; align-items: flex-start; gap: 10px; }
.field.kvkk label { font-family: 'Inter', sans-serif; font-weight: 400; font-size: .86rem; color: var(--ink-soft); line-height: 1.5; }
.field input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 3px 0 0;
  accent-color: var(--accent);
}
.field.kvkk a { color: var(--accent-2); text-decoration: underline; }

/* ============ HOURS ============ */
.hours-grid { display: grid; grid-template-columns: 1fr; gap: 8px; }
.hour-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  font-size: .92rem;
}
.hour-row.today { border-color: var(--accent); background: rgba(214, 40, 57, .05); }
.hour-row .d { font-family: 'Archivo', sans-serif; font-weight: 700; }
.hour-row .h { font-variant-numeric: tabular-nums; color: var(--ink-soft); }
.hour-row.today .h { color: var(--accent); font-weight: 600; }

/* ============ NOTES / NEWS ============ */
.notes-list { display: grid; gap: 14px; max-width: 720px; }
.note-row {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: baseline;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  transition: transform .22s var(--ease-2), border-color .22s var(--ease-2), box-shadow .22s var(--ease-2);
}
.note-row:hover { border-color: var(--accent); box-shadow: var(--shadow-soft); transform: translateX(4px); }
.note-row .date { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: .82rem; color: var(--accent); white-space: nowrap; }
.note-row p { margin: 0; font-size: .94rem; }
@media (max-width: 480px) { .note-row { grid-template-columns: 1fr; gap: 4px; } }

/* ============ TEAM ============ */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 700px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.member {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  background: var(--bg);
  min-width: 0;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
}
.member:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--accent); }
.member .av {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--ink); color: #fff;
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.4rem;
  margin-bottom: 16px;
}
.member h3 { font-size: 1.16rem; margin-bottom: 2px; }
.member .role { font-size: .82rem; font-weight: 600; color: var(--accent); margin-bottom: 12px; }
.member p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ============ PROSE (legal pages) ============ */
.page-hero {
  background: var(--surface);
  padding-block: clamp(40px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-top: 1.8em; }
.prose h3 { font-size: 1.15rem; margin-top: 1.4em; }
.prose p, .prose li { color: var(--ink-soft); line-height: 1.75; }
.prose ul { list-style: disc; padding-left: 1.3em; margin: 0 0 1em; }
.prose ul li { margin-bottom: .5em; }
.prose a { color: var(--accent-2); text-decoration: underline; }
.prose .updated { font-size: .85rem; color: var(--ink-soft); margin-bottom: 2em; }

/* ============ 404 ============ */
.err-wrap { min-height: 64vh; display: grid; place-items: center; text-align: center; }
.err-wrap .code { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(5rem, 18vw, 11rem); line-height: 1; color: var(--accent); }

/* ============ FOOTER ============ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.78); padding-block: clamp(44px, 6vw, 72px) 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer-grid h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-grid a { color: rgba(255,255,255,.7); font-size: .92rem; transition: color .2s var(--ease); }
.footer-grid a:hover { color: var(--accent); }
.footer-grid li { margin-bottom: 9px; }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand .brand small { color: rgba(255,255,255,.55); }
.footer-brand p { font-size: .9rem; max-width: 36ch; }
.footer-brand .mark { background: #fff; color: var(--ink); }
.foot-contact { font-size: .9rem; line-height: 1.9; }
.foot-contact a { word-break: break-word; overflow-wrap: anywhere; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
  font-size: .82rem; color: rgba(255,255,255,.55);
}
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: 0 26px 60px -26px rgba(0,0,0,.5);
  padding: 22px 22px 18px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms var(--ease), opacity 240ms var(--ease);
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 { font-size: 1.04rem; margin-bottom: 6px; }
.cookie-banner p { font-size: .86rem; color: var(--ink-soft); margin-bottom: 16px; }
.cookie-banner p a { color: var(--accent-2); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: .88rem;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--line-strong);
  background: transparent; color: var(--ink);
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.cookie-actions button[data-consent="accept"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.cookie-actions button[data-consent="accept"]:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-2px); }
/* Reddet must carry equal visual weight to Kabul et (KVKK/GDPR fairness) */
.cookie-actions button[data-consent="reject"] { background: var(--surface); border-color: var(--ink); color: var(--ink); }
.cookie-actions button[data-consent="reject"]:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.cookie-actions button[data-consent="settings"]:hover { background: var(--surface); color: var(--ink); transform: translateY(-2px); }
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero h1 .word { opacity: 1 !important; transform: none !important; animation: none !important; }
  .preview-card, .svc-card { animation: none !important; }
  /* keep hover affordances (color/shadow/border) but drop positional motion */
  .preview-card:hover, .svc-card:hover, .pkg:hover, .ch-card:hover,
  .tst:hover, .member:hover, .note-row:hover, .btn:hover,
  .nav-desktop .nav-cta:hover, .cookie-actions button:hover { transform: none !important; }
  .cap-bar .dot { animation: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* decorative needle/thread underline on section heads */
.stitch-rule {
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 10px, transparent 10px 18px);
  border: 0; margin: 0 0 clamp(28px,4vw,44px); max-width: 120px;
}

/* small-print helper */
.small-print { font-size: .78rem; color: var(--ink-soft); }
.cap-bar {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 16px; font-size: .84rem; font-weight: 500;
  margin-bottom: 18px;
}
.cap-bar .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); animation: pulse 2s var(--ease) infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}
