/* ============================================================
   Engine Exchange Services — "Fresh Editorial" design system
   Warm paper · ink · emerald · Newsreader serif + Hanken Grotesk
   Class names preserved from the previous build so every page +
   interaction keeps working — only the visual language changes.
   ============================================================ */

:root {
  /* surfaces — warm paper */
  --canvas: #f4f0e6;      /* body */
  --paper: #ffffff;       /* cards / forms */
  --paper-2: #faf6ec;     /* alt sections */
  --paper-3: #ece6d6;     /* fills */
  --line: #e7e0cf;
  --line-strong: #d7cdb6;

  /* ink — warm near-black */
  --ink: #16180f;
  --ink-2: #23261a;
  --ink-soft: #41443a;
  --mut: #6a6d5d;
  --mut-2: #9a9b89;

  /* accent — fresh emerald (token kept as --blue for compatibility) */
  --blue: #1c7c4e;
  --blue-ink: #145e3a;
  --blue-wash: #e6f1e7;
  --green: #1c7c4e;
  --green-wash: #e6f1e7;

  /* warm secondary — used sparingly (the "old way" side) */
  --clay: #c1693c;
  --clay-wash: #f5e7dc;
  --amber: #d98a2b;

  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --r-btn: 9px;

  --shadow-sm: 0 1px 2px rgba(40,36,14,.05), 0 2px 6px rgba(40,36,14,.05);
  --shadow-md: 0 14px 34px -16px rgba(40,36,14,.28);
  --shadow-lg: 0 44px 90px -44px rgba(34,30,10,.4);

  --maxw: 1200px;
  --display: "Newsreader", Georgia, "Times New Roman", serif;
  --ui: "Hanken Grotesk", system-ui, sans-serif;
  --body: "Hanken Grotesk", system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--blue); color: #fff; }

/* layout ----------------------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section--tight { padding: 60px 0; }
.section--alt { background: var(--paper-2); }
.section--ink { background: var(--ink); color: #fff; }
.center { text-align: center; }
.eyebrow {
  font-family: var(--ui); font-weight: 700; font-size: 12.5px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--blue);
  margin: 0 0 20px; display: inline-flex; align-items: center; gap: 11px;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: currentColor; opacity: .6; }
.eyebrow--mut { color: var(--mut-2); }
.eyebrow--plain::before { display: none; }

/* type — serif display, sans body ---------------------------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; letter-spacing: -.015em; margin: 0; color: var(--ink); }
.h-hero { font-weight: 500; font-size: 74px; line-height: 1.0; letter-spacing: -.025em; }
.h-hero i, .h-hero em { font-style: italic; color: var(--blue); }
.h-hero b { font-weight: 600; }
.h1 { font-weight: 500; font-size: 56px; line-height: 1.03; letter-spacing: -.02em; }
.h1 i, .h1 em { font-style: italic; color: var(--blue); }
.h2 { font-weight: 500; font-size: 42px; line-height: 1.08; letter-spacing: -.02em; }
.h2 i, .h2 em { font-style: italic; color: var(--blue); }
.h3 { font-weight: 600; font-size: 24px; line-height: 1.2; }
.lead { font-family: var(--body); font-size: 20px; line-height: 1.55; color: var(--ink-soft); }
.muted { color: var(--mut); }
.mono { font-family: var(--mono); }

/* buttons ---------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--ui); font-weight: 700; font-size: 15.5px;
  border-radius: var(--r-btn); cursor: pointer; border: 1.5px solid transparent;
  padding: 14px 24px; transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s, color .15s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { background: var(--blue-ink); transform: translateY(-1px); box-shadow: 0 12px 24px -12px rgba(28,124,78,.7); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--wa { background: #25d366; color: #06311a; }
.btn--wa:hover { transform: translateY(-1px); box-shadow: 0 12px 24px -12px rgba(37,211,102,.6); }
.btn--lg { padding: 17px 30px; font-size: 16.5px; }
.btn--sm { padding: 10px 17px; font-size: 13.5px; }
.btn--block { width: 100%; }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:disabled { opacity: .42; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.06); }

/* header ----------------------------------------------------- */
.hdr {
  position: sticky; top: 0; z-index: 50; background: rgba(244,240,230,.8);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.hdr__in { display: flex; align-items: center; gap: 40px; height: 76px; }
.logo { display: inline-block; white-space: nowrap; flex: 0 0 auto; padding-right: 28px; font-family: var(--display); font-weight: 600; font-size: 23px; letter-spacing: -.01em; color: var(--ink); }
.logo b { font-weight: 600; font-style: italic; }
.logo span { color: var(--blue); font-style: italic; }
.logo .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); display: inline-block; margin-left: 3px; vertical-align: middle; }
.nav { display: flex; gap: 28px; margin-left: 8px; }
.nav a { font-family: var(--ui); color: var(--mut); font-weight: 600; font-size: 14.5px; transition: color .15s; white-space: nowrap; }
.nav a:hover { color: var(--ink); }
.nav a.is-active { color: var(--ink); }
.hdr__spacer { flex: 1; }
.hdr__cta { display: flex; align-items: center; gap: 12px; }
.hdr__phone { font-family: var(--ui); font-weight: 700; font-size: 14.5px; color: var(--ink); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.hdr__phone svg { width: 15px; height: 15px; color: var(--blue); }

/* trust strip ------------------------------------------------ */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.trustbar__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; flex-wrap: wrap; }
.trustbar__item { font-family: var(--ui); display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; color: var(--ink-soft); }
.trustbar__item svg { width: 18px; height: 18px; color: var(--blue); flex: 0 0 auto; }

/* pills / badges --------------------------------------------- */
.pill { font-family: var(--ui); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; font-weight: 700; font-size: 12.5px; letter-spacing: .02em; padding: 7px 13px; border-radius: 999px; border: 1px solid var(--line); background: var(--paper); color: var(--mut); }
.pill--blue { background: var(--blue-wash); border-color: transparent; color: var(--blue-ink); }
.pill--green { background: var(--green-wash); border-color: transparent; color: var(--green); }
.pill--clay { background: var(--clay-wash); border-color: transparent; color: var(--clay); }
.pill svg { width: 14px; height: 14px; }

/* hero ------------------------------------------------------- */
.hero { padding: 76px 0 28px; }
.hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 60px; align-items: center; }
.hero__sub { margin: 26px 0 34px; max-width: 470px; }
.hero__cta { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__chk { display: flex; gap: 22px; flex-wrap: wrap; }
.hero__chk span { font-family: var(--ui); display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 13.5px; color: var(--ink-soft); }
.hero__chk svg { width: 16px; height: 16px; color: var(--blue); }

.frame {
  position: relative; border-radius: 220px 220px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(120% 90% at 50% 0%, #fbf8f0, #ece4d2);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.frame image-slot { width: 100%; height: 100%; display: block; }
.floatcard {
  position: absolute; z-index: 3; background: #fff; border-radius: 13px;
  box-shadow: var(--shadow-md); padding: 13px 17px; font-family: var(--ui);
  border: 1px solid var(--line);
}
.floatcard .k { font-size: 11.5px; color: var(--mut); font-weight: 600; }
.floatcard .v { font-family: var(--display); font-size: 24px; font-weight: 600; letter-spacing: -.02em; margin-top: 2px; }
.floatcard .v span { color: var(--blue); }
.seal {
  position: absolute; z-index: 4; width: 96px; height: 96px; border-radius: 50%;
  background: var(--blue); color: #fff; display: grid; place-items: center; text-align: center;
  font-family: var(--ui); font-weight: 800; font-size: 12px; line-height: 1.18; letter-spacing: .04em;
  box-shadow: var(--shadow-md); text-transform: uppercase; border: 3px solid var(--canvas);
}

/* value cards ------------------------------------------------ */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.vcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; transition: border-color .15s, box-shadow .15s, transform .15s;
}
.vcard:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.vcard__ic { width: 48px; height: 48px; border-radius: 12px; background: var(--blue-wash); color: var(--blue); display: grid; place-items: center; margin-bottom: 20px; }
.vcard__ic svg { width: 24px; height: 24px; }
.vcard h3 { font-size: 23px; margin-bottom: 9px; }
.vcard p { margin: 0; color: var(--mut); font-size: 15.5px; line-height: 1.6; }

/* section heading ------------------------------------------- */
.sechead { margin-bottom: 44px; }
.sechead--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.sechead .lead { margin-top: 12px; }

/* NEW vs RECONDITIONED — the differentiator -------------------*/
.vs { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.vs__card { border-radius: var(--radius-lg); padding: 38px; display: flex; flex-direction: column; position: relative; }
.vs__card--new { background: var(--ink); color: #fff; box-shadow: var(--shadow-md); }
.vs__card--new::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); pointer-events: none;
  background: radial-gradient(420px 200px at 80% -10%, rgba(28,124,78,.4), transparent 70%);
}
.vs__card--new > * { position: relative; z-index: 1; }
.vs__card--old { background: var(--paper-2); border: 1px solid var(--line); }
.vs__tag { font-family: var(--ui); align-self: flex-start; font-weight: 800; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.vs__card--new .vs__tag { background: var(--blue); color: #fff; }
.vs__card--old .vs__tag { background: var(--clay-wash); color: var(--clay); }
.vs__title { font-family: var(--display); font-size: 30px; font-weight: 500; letter-spacing: -.02em; margin: 18px 0 4px; }
.vs__card--new .vs__title { color: #fff; }
.vs__sub { font-family: var(--ui); font-size: 14.5px; margin: 0 0 22px; }
.vs__card--new .vs__sub { color: #c7d2c4; }
.vs__card--old .vs__sub { color: var(--mut); }
.vs__list { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.vs__list li { display: flex; gap: 12px; font-size: 15.5px; line-height: 1.45; align-items: flex-start; }
.vs__list li svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 1px; }
.vs__card--new .vs__list li { color: #eef2ec; }
.vs__card--new .vs__list li svg { color: #5cd197; }
.vs__card--old .vs__list li { color: var(--ink-soft); }
.vs__card--old .vs__list li svg { color: var(--clay); }
.vs__foot { margin-top: auto; }
.vs__price { font-family: var(--display); font-size: 16px; }
.vs__card--new .vs__price { color: #c7d2c4; }
.vs__card--old .vs__price { color: var(--mut); }

/* engine cards ----------------------------------------------- */
.ecard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.ecard:hover { border-color: var(--line-strong); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ecard__img { position: relative; aspect-ratio: 16/10; background: var(--paper-3); }
.ecard__img image-slot { width: 100%; height: 100%; }
.ecard__tag { position: absolute; top: 12px; left: 12px; z-index: 3; }
.ecard__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.ecard__model { font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: -.01em; }
.ecard__code { color: var(--mut); font-size: 13px; margin-top: 5px; font-family: var(--mono); }
.ecard__spec { display: flex; gap: 14px; margin-top: 15px; flex-wrap: wrap; }
.ecard__spec span { font-family: var(--ui); font-size: 12.5px; color: var(--mut); display: inline-flex; align-items: center; gap: 5px; }
.ecard__spec svg { color: var(--blue); opacity: .8; }
.ecard__foot { margin-top: auto; padding-top: 18px; display: flex; align-items: flex-end; justify-content: space-between; border-top: 1px solid var(--line); margin-top: 20px; }
.ecard__price { font-family: var(--display); font-weight: 600; font-size: 27px; letter-spacing: -.02em; }
.ecard__price small { display: block; font-family: var(--ui); font-weight: 500; font-size: 11px; color: var(--mut); letter-spacing: .02em; margin-top: 3px; }

/* pricing list ----------------------------------------------- */
.plist { border-top: 1px solid var(--line); }
.prow {
  display: grid; grid-template-columns: 48px 1.5fr 1.4fr auto auto; gap: 26px; align-items: center;
  padding: 22px 8px; border-bottom: 1px solid var(--line); transition: background .15s;
}
.prow:hover { background: var(--paper-2); }
.prow__logo { width: 44px; height: 44px; border-radius: 10px; background: var(--paper-3); display: grid; place-items: center; color: var(--mut); font-family: var(--ui); font-weight: 800; font-size: 12px; }
.prow__model { font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: -.01em; }
.prow__code { color: var(--mut); font-size: 13px; font-family: var(--mono); }
.prow__price { font-family: var(--display); font-weight: 600; font-size: 25px; text-align: right; letter-spacing: -.02em; }
.prow__price small { display: block; font-family: var(--ui); font-weight: 500; font-size: 11px; color: var(--mut); letter-spacing: 0; }
.prow__go { width: 44px; height: 44px; border-radius: 999px; border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--blue); transition: background .15s, color .15s, border-color .15s; }
.prow:hover .prow__go { background: var(--blue); color: #fff; border-color: var(--blue); }

/* steps ------------------------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; position: relative; }
.step .n { font-family: var(--ui); font-weight: 800; color: var(--blue); font-size: 13px; letter-spacing: .14em; }
.step h4 { font-size: 22px; font-weight: 500; margin: 16px 0 9px; }
.step p { margin: 0; color: var(--mut); font-size: 15.5px; line-height: 1.6; }

/* timeline (how it works) ------------------------------------ */
.tl { display: flex; flex-direction: column; gap: 0; }
.tl__item { display: grid; grid-template-columns: 92px 1fr; gap: 28px; padding: 0 0 44px; position: relative; }
.tl__item:last-child { padding-bottom: 0; }
.tl__num { font-family: var(--display); font-weight: 600; font-size: 20px; color: #fff; background: var(--blue); width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; position: relative; z-index: 2; }
.tl__line { position: absolute; left: 29px; top: 58px; bottom: -8px; width: 2px; background: var(--line-strong); }
.tl__item:last-child .tl__line { display: none; }
.tl__c h3 { font-size: 26px; font-weight: 500; margin-bottom: 9px; }
.tl__c p { margin: 0 0 12px; color: var(--mut); font-size: 16px; line-height: 1.6; max-width: 620px; }
.tl__meta { font-family: var(--ui); display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; font-size: 12.5px; color: var(--blue); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }

/* included / excluded --------------------------------------- */
.inc { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.inc__col { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; background: var(--paper); }
.inc__col h4 { font-size: 18px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.inc__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 17px; }
.inc__col li { display: flex; gap: 11px; font-size: 15.5px; color: var(--ink); line-height: 1.5; align-items: flex-start; }
.inc__col li svg { width: 19px; height: 19px; flex: 0 0 auto; margin-top: 1px; }
.inc__yes svg { color: var(--green); }
.inc__no { }
.inc__no li { color: var(--mut); }
.inc__no svg { color: var(--clay); }

/* FAQ -------------------------------------------------------- */
.faq { border-top: 1px solid var(--line-strong); max-width: 840px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 26px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--display); font-weight: 500; font-size: 22px; letter-spacing: -.01em; color: var(--ink); }
.faq__q .ic { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; transition: transform .25s, background .2s, border-color .2s, color .2s; color: var(--mut); }
.faq__item.open .faq__q .ic { transform: rotate(45deg); background: var(--blue); border-color: var(--blue); color: #fff; }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq__a p { margin: 0; padding: 0 0 26px; color: var(--mut); font-size: 16px; line-height: 1.65; max-width: 720px; }

/* forms ------------------------------------------------------ */
.card-panel { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.form { padding: 34px; }
.form__head { margin-bottom: 24px; }
.form__head h3 { font-size: 27px; font-weight: 500; }
.form__head p { margin: 7px 0 0; color: var(--mut); font-size: 15px; }
.field { margin-bottom: 16px; }
.field__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { font-family: var(--ui); display: block; font-weight: 700; font-size: 12.5px; letter-spacing: .02em; color: var(--ink); margin-bottom: 7px; }
.field .req { color: var(--blue); }
.input, .select, .textarea {
  width: 100%; font-family: var(--body); font-size: 15px; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: 13px 14px; transition: border-color .15s, box-shadow .15s; outline: none;
}
.input:focus, .select:focus, .textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-wash); }
.input::placeholder, .textarea::placeholder { color: var(--mut-2); }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none' stroke='%236a6d5d' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }
.select:disabled { background-color: var(--paper-2); color: var(--mut-2); cursor: not-allowed; }
.textarea { resize: vertical; min-height: 96px; }
.field--err .input, .field--err .select { border-color: #c0432f; }
.err-msg { font-family: var(--ui); color: #c0432f; font-size: 12.5px; margin-top: 6px; font-weight: 600; }
.rego { text-transform: uppercase; letter-spacing: .12em; font-family: var(--mono); font-weight: 700; }

/* quote estimate panel -------------------------------------- */
.estimate { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 24px 26px; margin-bottom: 22px; position: relative; overflow: hidden; }
.estimate::after { content: ""; position: absolute; inset: 0; background: radial-gradient(300px 140px at 90% -20%, rgba(28,124,78,.45), transparent 70%); }
.estimate > * { position: relative; z-index: 1; }
.estimate .k { font-family: var(--ui); font-size: 12.5px; color: #c2cdc0; font-weight: 600; }
.estimate .v { font-family: var(--display); font-weight: 600; font-size: 36px; letter-spacing: -.02em; margin-top: 4px; }
.estimate .v small { font-family: var(--ui); font-size: 13.5px; color: #c2cdc0; font-weight: 500; letter-spacing: 0; }
.estimate .note { font-family: var(--ui); font-size: 12px; color: #93a091; margin-top: 9px; }

/* success ---------------------------------------------------- */
.success { text-align: center; padding: 46px 32px; }
.success__ic { width: 70px; height: 70px; border-radius: 50%; background: var(--green-wash); color: var(--green); display: grid; place-items: center; margin: 0 auto 24px; }
.success__ic svg { width: 34px; height: 34px; }
.success h3 { font-size: 28px; font-weight: 500; margin-bottom: 11px; }
.success p { color: var(--mut); max-width: 390px; margin: 0 auto 8px; }

/* booking ---------------------------------------------------- */
.book { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.book__cal { padding: 30px; border-right: 1px solid var(--line); }
.book__cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.book__cal-head h4 { font-size: 19px; font-weight: 500; }
.book__navbtn { width: 34px; height: 34px; border-radius: 8px; border: 1.5px solid var(--line); background: var(--paper); display: grid; place-items: center; cursor: pointer; color: var(--ink); transition: background .15s, border-color .15s; }
.book__navbtn:hover:not(:disabled) { border-color: var(--ink); }
.book__navbtn:disabled { opacity: .35; cursor: not-allowed; }
.book__dow { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; margin-bottom: 6px; }
.book__dow span { font-family: var(--ui); text-align: center; font-size: 11px; font-weight: 700; color: var(--mut-2); text-transform: uppercase; letter-spacing: .04em; padding: 6px 0; }
.book__days { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.book__day { aspect-ratio: 1; border: none; background: none; border-radius: 9px; cursor: pointer; font-family: var(--ui); font-weight: 700; font-size: 14px; color: var(--ink); transition: background .15s, color .15s; }
.book__day:hover:not(:disabled) { background: var(--blue-wash); }
.book__day:disabled { color: var(--line-strong); cursor: not-allowed; }
.book__day.is-sel { background: var(--blue); color: #fff; }
.book__day.is-muted { color: var(--paper-3); }
.book__slots { padding: 30px; }
.book__slots h4 { font-size: 19px; font-weight: 500; margin-bottom: 6px; }
.book__slots .sub { font-family: var(--ui); font-size: 13px; color: var(--mut); margin-bottom: 18px; }
.book__times { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.book__time { font-family: var(--ui); padding: 13px; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); background: var(--paper); cursor: pointer; font-weight: 700; font-size: 14px; color: var(--ink); transition: border-color .15s, background .15s, color .15s; }
.book__time:hover { border-color: var(--blue); }
.book__time.is-sel { background: var(--blue); color: #fff; border-color: var(--blue); }

/* contact info ----------------------------------------------- */
.cinfo { display: flex; flex-direction: column; gap: 4px; }
.cinfo__item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.cinfo__item:last-child { border-bottom: none; }
.cinfo__ic { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-wash); color: var(--blue); display: grid; place-items: center; flex: 0 0 auto; }
.cinfo__ic svg { width: 21px; height: 21px; }
.cinfo__k { font-family: var(--display); font-weight: 600; font-size: 17px; }
.cinfo__v { color: var(--mut); font-size: 15px; margin-top: 2px; }
.cinfo__v a:hover { color: var(--blue); }

.mapframe { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/7; position: relative; background:
  linear-gradient(0deg, rgba(0,0,0,.015), rgba(0,0,0,.015)),
  repeating-linear-gradient(0deg, #e9e2d2 0 1px, transparent 1px 38px),
  repeating-linear-gradient(90deg, #e9e2d2 0 1px, transparent 1px 38px),
  #f4efe4; }
.maptag { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-100%); display: flex; flex-direction: column; align-items: center; }
.mappin { width: 30px; height: 30px; border-radius: 50% 50% 50% 0; background: var(--blue); transform: rotate(-45deg); box-shadow: var(--shadow-md); }
.mappin::after { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 11px; height: 11px; border-radius: 50%; background: #fff; }
.maplabel { font-family: var(--ui); margin-top: 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-weight: 700; font-size: 13px; box-shadow: var(--shadow-sm); white-space: nowrap; }

/* CTA band --------------------------------------------------- */
.ctaband { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 68px; text-align: center; position: relative; overflow: hidden; }
.ctaband::before { content: ""; position: absolute; inset: 0; background: radial-gradient(720px 320px at 50% -20%, rgba(28,124,78,.5), transparent 70%); pointer-events: none; }
.ctaband > * { position: relative; z-index: 1; }
.ctaband h2 { font-size: 48px; font-weight: 500; margin-bottom: 16px; color: #fff; }
.ctaband h2 i, .ctaband h2 em { font-style: italic; color: #6ddaa0; }
.ctaband p { color: #c2cdc0; font-size: 19px; margin: 0 auto 32px; max-width: 540px; }
.ctaband__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* footer ----------------------------------------------------- */
.ft { background: var(--ink); color: #fff; padding: 76px 0 36px; }
.ft__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.ft__brand .logo { color: #fff; font-size: 25px; }
.ft__brand .logo b { color: #fff; }
.ft__brand p { color: #a7ad9b; font-size: 15px; line-height: 1.65; margin: 20px 0 24px; max-width: 290px; }
.ft__col h5 { font-family: var(--ui); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: #bcc2af; margin: 0 0 18px; }
.ft__col a, .ft__col span { font-family: var(--ui); display: block; color: #d3d8c8; font-size: 15px; margin-bottom: 12px; transition: color .15s; }
.ft__col a:hover { color: #fff; }
.ft__bot { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; gap: 16px; flex-wrap: wrap; }
.ft__bot p { font-family: var(--ui); margin: 0; color: #8f9583; font-size: 13.5px; }

/* floating whatsapp ------------------------------------------ */
.wa-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #06311a; font-family: var(--ui); font-weight: 800; font-size: 14.5px;
  padding: 13px 18px 13px 15px; border-radius: 999px; box-shadow: 0 16px 30px -12px rgba(37,211,102,.6);
  cursor: pointer; transition: transform .15s, box-shadow .15s; text-decoration: none;
}
.wa-fab:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -12px rgba(37,211,102,.7); }
.wa-fab svg { width: 23px; height: 23px; }

/* modal ------------------------------------------------------ */
.modal-back { position: fixed; inset: 0; z-index: 80; background: rgba(22,24,15,.55); backdrop-filter: blur(6px); display: grid; place-items: center; padding: 24px; animation: fade .2s ease; }
.modal { width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; animation: pop .24s cubic-bezier(.2,.8,.3,1); }
.modal__x { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; border: none; background: var(--paper-2); color: var(--ink); cursor: pointer; display: grid; place-items: center; z-index: 2; }
.modal__x:hover { background: var(--paper-3); }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(10px) scale(.98); } }

/* reveal on load — transform only, never hides content -------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { animation: reveal .7s cubic-bezier(.2,.7,.3,1) both; }
  .reveal.d1 { animation-delay: .07s; }
  .reveal.d2 { animation-delay: .14s; }
  .reveal.d3 { animation-delay: .21s; }
  .reveal.d4 { animation-delay: .28s; }
  @keyframes reveal { from { transform: translateY(18px); } to { transform: none; } }
}

/* utilities -------------------------------------------------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.stack-sm > * + * { margin-top: 12px; }

/* ============================================================
   Interaction layer (fx) — states only exist once fx.js runs,
   so a no-JS / reduced-motion visit sees the full static page.
   ============================================================ */
/* fx reveal — transform-only on purpose: if this environment ever
   freezes animation timelines, content stays fully visible. */
.fx-reveal { transform: translateY(26px); transition: transform .65s cubic-bezier(.2,.7,.3,1); transition-delay: var(--fx-d, 0ms); }
.fx-reveal.fx-in { transform: none; }
.fx-tilt { will-change: transform; transition: transform .18s ease; transform-style: preserve-3d; }

.hdr { transition: transform .32s ease; }
.hdr--hide { transform: translateY(-100%); }

.btn svg { transition: transform .2s ease; }
.btn:hover svg:last-child { transform: translateX(3px); }
.btn--lg { transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s, color .15s; }

/* kinetic trust marquee -------------------------------------- */
.mq { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); padding: 19px 0; }
.mq__track { display: flex; width: max-content; animation: mq-slide 30s linear infinite; }
.mq:hover .mq__track { animation-play-state: paused; }
.mq__item { font-family: var(--ui); display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; color: var(--ink-soft); white-space: nowrap; padding-right: 64px; }
.mq__item svg { width: 17px; height: 17px; color: var(--blue); flex: 0 0 auto; }
@keyframes mq-slide { to { transform: translateX(-50%); } }

/* spinning brand seal ---------------------------------------- */
.seal--spin { width: 116px; height: 116px; }
.seal--spin .ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: seal-spin 22s linear infinite; }
.seal--spin .ring text { fill: #fff; font-family: var(--ui); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.seal__ic { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; }
.seal__ic svg { width: 30px; height: 30px; }
@keyframes seal-spin { to { transform: rotate(360deg); } }

/* hero masked line reveals (GSAP) ----------------------------- */
.hl-mask { display: block; overflow: hidden; padding-bottom: .05em; margin-bottom: -.05em; }
.hl { display: block; }

/* cursor ring (GSAP, fine pointers) --------------------------- */
.fx-ring { position: fixed; top: -14px; left: -14px; width: 28px; height: 28px; border: 1.5px solid var(--blue); border-radius: 50%; pointer-events: none; z-index: 99; opacity: .5; transition: width .25s ease, height .25s ease, top .25s ease, left .25s ease, opacity .25s ease, background .25s ease; }
.fx-ring--on { width: 48px; height: 48px; top: -24px; left: -24px; opacity: .9; background: color-mix(in srgb, var(--blue) 10%, transparent); }

/* when GSAP drives transforms, CSS must not transition them ---- */
.gsap-on .vs .vs__card { transition: opacity .3s ease, box-shadow .3s ease; }

/* hero highlight sweep ---------------------------------------- */
.h-hero i { position: relative; z-index: 0; white-space: nowrap; }
.h-hero i::after { content: ""; position: absolute; left: -2%; right: -2%; bottom: 4px; height: 26%; background: var(--blue-wash); z-index: -1; border-radius: 4px; transform: scaleX(0); transform-origin: left; animation: hl-sweep .7s .9s cubic-bezier(.2,.7,.3,1) forwards; }
@keyframes hl-sweep { to { transform: scaleX(1); } }

/* vs cards — focus follows the pointer ------------------------ */
@media (hover: hover) {
  .vs:hover .vs__card { opacity: .6; transform: scale(.985); }
  .vs:hover .vs__card:hover { opacity: 1; transform: scale(1.012); box-shadow: var(--shadow-lg); }
  .vs .vs__card { transition: opacity .3s ease, transform .65s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease; }
}

/* engine card image shine ------------------------------------- */
.ecard__img::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(105deg, transparent 42%, rgba(255,255,255,.38) 50%, transparent 58%); transform: translateX(-130%); transition: transform .65s ease; }
.ecard:hover .ecard__img::after { transform: translateX(130%); }

/* timeline line draws itself in ------------------------------- */
.tl__item.fx-reveal .tl__line { transform: scaleY(0); transform-origin: top; transition: transform .9s ease .35s; }
.tl__item.fx-in .tl__line { transform: scaleY(1); }

@media (prefers-reduced-motion: reduce) {
  .fx-reveal { transform: none; }
  .mq__track { animation: none; flex-wrap: wrap; }
  .seal--spin .ring { animation: none; }
  .h-hero i::after { animation: none; transform: scaleX(1); }
}

/* responsive ------------------------------------------------- */
@media (max-width: 1000px) {
  .h-hero { font-size: 56px; }
  .h1 { font-size: 44px; }
  .h2 { font-size: 34px; }
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ft__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hdr__phone { display: none; }
  .hdr__in { gap: 24px; }
  .nav { gap: 22px; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .section { padding: 64px 0; }
  .nav, .hdr__phone { display: none; }
  .h-hero { font-size: 42px; }
  .h1 { font-size: 36px; }
  .h2 { font-size: 29px; }
  .lead { font-size: 17px; }
  .grid-3, .steps, .grid-2, .inc, .vs { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .sechead--row { flex-direction: column; align-items: flex-start; }
  .prow { grid-template-columns: 1fr auto; gap: 12px 16px; }
  .prow__logo, .prow__code { display: none; }
  .book { grid-template-columns: 1fr; }
  .book__cal { border-right: none; border-bottom: 1px solid var(--line); }
  .field__row { grid-template-columns: 1fr; }
  .ctaband { padding: 48px 26px; }
  .ctaband h2 { font-size: 34px; }
  .ft__top { grid-template-columns: 1fr; }
  .frame { border-radius: 140px 140px var(--radius-lg) var(--radius-lg); }
}
