/* ==========================================================================
   Haviy Global Services
   Design system. Tokens first, components after. Single brand theme.
   ========================================================================== */

:root {
  /* ground + ink */
  --ink:        #061a2b;
  --ink-raised: #0d2c45;
  --ink-line:   rgba(255, 255, 255, .13);
  --mist:       #edf2f6;
  --mist-deep:  #dfe8ef;
  --paper:      #ffffff;

  /* brand */
  --blue:       #1e73a7;
  --blue-deep:  #16508d;
  --sky:        #6ab8e8;
  --ember:      #ef6e32;
  --ember-deep: #d85c22;

  /* type colour */
  --on-light:      #3d4c58;
  --on-light-mute: #76858f;
  --heading:       #061a2b;
  --on-ink:        rgba(233, 242, 248, .74);
  --on-ink-mute:   rgba(233, 242, 248, .5);
  --line:          #d8e2ea;

  --display: "Bricolage Grotesque", "Arial Black", "Helvetica Neue", sans-serif;
  --sans:    "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --shell: 1240px;
  --shell-wide: 1460px;
  --gutter: clamp(20px, 5vw, 56px);
  --bar: 76px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--on-light);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  font-variation-settings: "wdth" 92;
  color: var(--heading);
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
  margin: 0;
}
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible { outline: 2px solid var(--ember); outline-offset: 4px; }

::selection { background: var(--ember); color: #fff; }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--ink); color: #fff; padding: 14px 22px; }
.skip-link:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
}

/* ---------- shell ---------- */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.shell-wide { width: 100%; max-width: var(--shell-wide); margin-inline: auto; padding-inline: var(--gutter); }

.chapter { padding-block: clamp(72px, 10vw, 148px); }
.chapter-sm { padding-block: clamp(56px, 6vw, 92px); }

.on-ink { background: var(--ink); color: var(--on-ink); }
.on-ink h1, .on-ink h2, .on-ink h3, .on-ink h4 { color: #fff; }
.on-mist { background: var(--mist); }

/* ---------- type helpers ---------- */
.tag {
  display: inline-block;
  font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue);
}
.on-ink .tag { color: var(--sky); }
.tag-ember { color: var(--ember); }

.display-xl { font-size: clamp(2.9rem, 7.4vw, 6.1rem); }
.display-l  { font-size: clamp(2.3rem, 5.2vw, 4.2rem); }
.display-m  { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.display-s  { font-size: clamp(1.35rem, 2.2vw, 1.85rem); letter-spacing: -0.025em; }

.body-l { font-size: clamp(1.05rem, 1.5vw, 1.22rem); line-height: 1.6; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 48ch; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.on-ink .rule { background: var(--ink-line); }

.nums { font-variant-numeric: tabular-nums; }

/* ---------- buttons ---------- */
.act {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display); font-weight: 700; font-size: .86rem; letter-spacing: -0.01em;
  padding: 11px 20px; border: 1px solid transparent; border-radius: 2px;
  white-space: nowrap; cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.act svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.act:hover svg { transform: translateX(5px); }

.act-ember { background: var(--ember); color: #fff; }
.act-ember:hover { background: var(--ember-deep); }

.act-ink { background: var(--ink); color: #fff; }
.act-ink:hover { background: var(--blue-deep); }

.act-line { border-color: var(--line); color: var(--heading); }
.act-line:hover { border-color: var(--ink); background: var(--ink); color: #fff; }

.act-line-light { border-color: var(--ink-line); color: #fff; }
.act-line-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.acts { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }

/* text link with underline sweep */
.tlink {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: .92rem;
  padding-bottom: 4px; border-bottom: 1px solid currentColor;
  transition: color .2s var(--ease), gap .25s var(--ease);
}
.tlink:hover { color: var(--ember); gap: 16px; }

/* ---------- header ---------- */
.masthead {
  position: fixed; inset: 0 0 auto; z-index: 200;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.masthead-in {
  height: var(--bar); display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.masthead.solid { background: var(--paper); box-shadow: 0 1px 0 var(--line); }
.masthead.solid .mast-link { color: var(--heading); }
.masthead.solid .burger span { background: var(--heading); }
.masthead.solid .logo-ink { opacity: 0; }
.masthead.solid .logo-full { opacity: 1; }

.logo { position: relative; display: block; width: 132px; height: 46px; flex-shrink: 0; }
.logo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: left center; transition: opacity .35s var(--ease); }
.logo-ink { filter: brightness(0) invert(1); opacity: 1; }
.logo-full { opacity: 0; }

.mast-nav { display: none; align-items: center; gap: 4px; }
@media (min-width: 1000px) { .mast-nav { display: flex; } }
.mast-link {
  position: relative; color: #fff; font-size: .92rem; font-weight: 500;
  padding: 8px 16px; transition: color .2s var(--ease);
}
.mast-link::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 2px; height: 1px;
  background: var(--ember); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.mast-link:hover::after, .mast-link[aria-current]::after { transform: scaleX(1); }

.mast-right { display: flex; align-items: center; gap: 14px; }
.mast-phone {
  display: none; font-family: var(--display); font-weight: 700; font-size: .9rem; color: #fff;
}
.masthead.solid .mast-phone { color: var(--heading); }
@media (min-width: 1180px) { .mast-phone { display: inline-flex; align-items: center; gap: 9px; } }
.mast-cta { display: none; }
@media (min-width: 1000px) { .mast-cta { display: inline-flex; padding: 10px 18px; font-size: .8rem; } }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 6px;
  width: 44px; height: 44px; padding: 0 10px; background: none; border: 0; cursor: pointer;
}
@media (min-width: 1000px) { .burger { display: none; } }
.burger span { display: block; height: 2px; background: #fff; transition: transform .3s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* drawer */
.drawer {
  position: fixed; inset: 0; z-index: 190; background: var(--ink);
  padding: calc(var(--bar) + 32px) var(--gutter) 40px;
  transform: translateY(-100%); transition: transform .45s var(--ease);
  overflow-y: auto;
}
.drawer.open { transform: none; }
.drawer a.drawer-link {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 9vw, 2.8rem);
  color: #fff; letter-spacing: -0.035em; padding: 16px 0; border-bottom: 1px solid var(--ink-line);
}
.drawer-link i { font-style: normal; font-size: .7rem; letter-spacing: .16em; color: var(--sky); }
.drawer-foot { margin-top: 36px; display: grid; gap: 10px; color: var(--on-ink); font-size: .95rem; }
.drawer-foot a:hover { color: var(--ember); }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--ink); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }

.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s var(--ease); }
.hero-slide.on { opacity: 1; }
.hero-slide picture { display: contents; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 58%;
  transform: scale(1.07); transition: transform 8s linear;
}
.hero-slide.on img { transform: scale(1); }
@media (max-width: 780px) { .hero-slide img { object-position: 60% center; } }
@media (prefers-reduced-motion: reduce) { .hero-slide img, .hero-slide.on img { transform: none; } }

.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,26,43,.8) 0%, rgba(6,26,43,.34) 30%, rgba(6,26,43,.76) 74%, var(--ink) 100%),
    linear-gradient(92deg, rgba(6,26,43,.9) 0%, rgba(6,26,43,.4) 58%, rgba(6,26,43,.14) 100%);
}
.hero-in {
  position: relative;
  min-height: clamp(460px, 62vh, 600px);
  padding-top: calc(var(--bar) + clamp(30px, 3.6vw, 48px));
  padding-bottom: clamp(30px, 3.6vw, 44px);
  display: flex; flex-direction: column; justify-content: flex-end; gap: clamp(24px, 3vw, 36px);
}
.hero-copy { max-width: 720px; }
.hero h1 { color: #fff; font-size: clamp(2.15rem, 4.4vw, 3.7rem); font-variation-settings: "wdth" 88; }
.hero h1 .soft { color: var(--sky); }
.hero-sub { color: var(--on-ink); max-width: 44ch; margin-top: 18px; font-size: clamp(.97rem, 1.15vw, 1.07rem); }
.hero-tag { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.hero-tag::before { content: ""; width: 36px; height: 1px; background: var(--ember); }
.hero-acts { margin-top: 24px; }

.hero-dots { display: flex; gap: 8px; margin-top: 26px; }
.hero-dots button {
  width: 36px; height: 3px; padding: 0; border: 0; border-radius: 0; cursor: pointer;
  background: rgba(255, 255, 255, .3); transition: background .3s var(--ease);
}
.hero-dots button:hover { background: rgba(255, 255, 255, .62); }
.hero-dots button[aria-current="true"] { background: var(--ember); }

/* enquiry bar */
.quickbar {
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(18px);
  border: 1px solid var(--ink-line);
  display: grid; gap: 1px;
}
@media (min-width: 900px) { .quickbar { grid-template-columns: repeat(3, 1fr) auto; } }
.qb-field { padding: 13px 20px; display: flex; flex-direction: column; gap: 4px; border-bottom: 1px solid var(--ink-line); }
@media (min-width: 900px) { .qb-field { border-bottom: 0; border-right: 1px solid var(--ink-line); } }
.qb-field label { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--on-ink-mute); font-weight: 600; }
.qb-field select, .qb-field input {
  background: none; border: 0; padding: 0; color: #fff; font-size: .97rem; font-weight: 500;
  width: 100%; appearance: none;
}
.qb-field select option { background: var(--ink); color: #fff; }
.qb-field input::-webkit-calendar-picker-indicator { filter: invert(1); opacity: .55; cursor: pointer; }
.quickbar button { border-radius: 0; padding-inline: 30px; }
@media (max-width: 899px) { .quickbar button { width: 100%; } }

/* ---------- ticker ---------- */
.ticker { background: var(--ink); border-top: 1px solid var(--ink-line); overflow: hidden; padding-block: 20px; }
.ticker-track { display: flex; width: max-content; animation: slide 46s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.ticker-track span {
  display: inline-flex; align-items: center; gap: 30px; padding-right: 30px;
  font-family: var(--display); font-weight: 700; font-size: clamp(1rem, 1.5vw, 1.22rem);
  color: rgba(233, 242, 248, .42); letter-spacing: -0.02em; white-space: nowrap;
}
.ticker-track span::after { content: ""; width: 6px; height: 6px; background: var(--ember); transform: rotate(45deg); }

/* ---------- statement ---------- */
.statement { display: grid; gap: clamp(34px, 5vw, 72px); }
@media (min-width: 940px) { .statement { grid-template-columns: 1.15fr .85fr; align-items: start; } }
.statement-side { display: grid; gap: 22px; }
.statement-side p { font-size: 1rem; }

.stat-rail { display: grid; gap: 1px; background: var(--line); margin-top: clamp(48px, 6vw, 84px); }
@media (min-width: 560px) { .stat-rail { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .stat-rail { grid-template-columns: repeat(4, 1fr); } }
.stat-cell { background: var(--paper); padding: 30px 4px 0 0; }
.on-mist .stat-rail { background: var(--mist-deep); }
.on-mist .stat-cell { background: var(--mist); }
.stat-cell .v {
  font-family: var(--display); font-weight: 700; font-size: clamp(2.4rem, 4.6vw, 3.4rem);
  color: var(--heading); letter-spacing: -0.05em; line-height: 1;
}
.stat-cell .v em { font-style: normal; color: var(--ember); }
.stat-cell .k { margin-top: 12px; font-size: .9rem; color: var(--on-light-mute); max-width: 22ch; }

/* ---------- services index ---------- */
.index-head {
  display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-end; justify-content: space-between;
  margin-bottom: clamp(38px, 4vw, 60px);
}
.index-list { border-top: 1px solid var(--line); }
.on-ink .index-list { border-top-color: var(--ink-line); }

.index-row {
  position: relative; display: grid; align-items: center; gap: 18px;
  grid-template-columns: 54px 1fr 28px;
  padding: clamp(20px, 2.6vw, 30px) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .35s var(--ease);
}
.on-ink .index-row { border-bottom-color: var(--ink-line); }
@media (min-width: 860px) {
  .index-row { grid-template-columns: 68px minmax(0, 8fr) minmax(0, 6fr) 32px; gap: 28px; }
  .index-row:hover { padding-left: 18px; }
}
.index-n {
  font-family: var(--display); font-weight: 700; font-size: .8rem; letter-spacing: .12em;
  color: var(--on-light-mute); padding-top: .35em; align-self: start;
}
.on-ink .index-n { color: var(--on-ink-mute); }
.index-t {
  font-family: var(--display); font-weight: 700; letter-spacing: -0.035em; line-height: 1.04;
  font-size: clamp(1.45rem, 3.3vw, 2.5rem); color: var(--heading);
  transition: color .3s var(--ease);
}
.on-ink .index-t { color: #fff; }
.index-row:hover .index-t { color: var(--ember); }
.index-d { font-size: .95rem; color: var(--on-light-mute); display: none; }
.on-ink .index-d { color: var(--on-ink); }
@media (min-width: 860px) { .index-d { display: block; } }
.index-a { color: var(--on-light-mute); transition: transform .35s var(--ease), color .3s var(--ease); justify-self: end; }
.on-ink .index-a { color: var(--on-ink-mute); }
.index-row:hover .index-a { transform: translateX(6px); color: var(--ember); }
.index-thumb { display: none; }
@media (max-width: 859px) {
  .index-row { grid-template-columns: 30px minmax(0, 1fr) 92px; gap: 14px; }
  .index-thumb { display: block; width: 92px; height: 70px; object-fit: cover; grid-column: 3; grid-row: 1; }
  .index-a { display: none; }
}


/* services explore: index plus a sticky image stage */
.svc-explore { display: grid; gap: 36px; }
@media (min-width: 1000px) {
  .svc-explore { grid-template-columns: 340px minmax(0, 1fr); gap: 64px; align-items: start; }
}
.svc-stage { display: none; }
@media (min-width: 1000px) {
  .svc-stage {
    display: block; position: sticky; top: calc(var(--bar) + 32px);
    aspect-ratio: 4 / 5; overflow: hidden; background: var(--ink);
  }
  .svc-shot {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transform: scale(1.06);
    transition: opacity .5s var(--ease), transform 1.4s var(--ease);
  }
  .svc-shot.on { opacity: 1; transform: scale(1); }
  .svc-stage-cap {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 22px;
    background: linear-gradient(0deg, rgba(6,26,43,.92), transparent);
    color: #fff; font-family: var(--display); font-weight: 700; font-size: .95rem; letter-spacing: -0.02em;
  }

  .svc-explore .index-row { grid-template-columns: 52px minmax(0, 1fr) 26px; gap: 0 26px; align-items: start; padding: 18px 0; }
  .svc-explore .index-n { grid-column: 1; grid-row: 1; padding-top: .55em; }
  .svc-explore .index-t { grid-column: 2; grid-row: 1; font-size: clamp(1.3rem, 2.05vw, 1.85rem); }
  .svc-explore .index-d { grid-column: 2; grid-row: 2; display: block; margin-top: 7px; max-width: 54ch; }
  .svc-explore .index-a { grid-column: 3; grid-row: 1; align-self: center; }
  .svc-explore .index-row.on .index-t { color: var(--ember); }
  .svc-explore .index-row.on .index-a { transform: translateX(6px); color: var(--ember); }
}

/* ---------- rails ---------- */
.rail-head { display: flex; flex-wrap: wrap; gap: 20px 30px; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(268px, 300px);
  gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 20px; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
  scroll-padding-inline: var(--gutter);
  scrollbar-width: thin; scrollbar-color: var(--ink-line) transparent;
}
.rail > * { scroll-snap-align: start; }
.rail::-webkit-scrollbar { height: 3px; }
.rail::-webkit-scrollbar-thumb { background: var(--ink-line); }
.rail::-webkit-scrollbar-track { background: transparent; }

.veh { display: flex; flex-direction: column; }
.veh-pic { aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-raised); }
.veh-pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.veh:hover .veh-pic img { transform: scale(1.06); }
.veh h3 { margin-top: 20px; font-size: 1.2rem; letter-spacing: -0.025em; }
.veh .meta { margin-top: 8px; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); font-weight: 600; }
.on-ink .veh .meta { color: var(--sky); }
.veh p { margin-top: 12px; font-size: .93rem; }

/* ---------- destinations ---------- */
.dest { position: relative; overflow: hidden; background: var(--ink); }
.dest-media { position: absolute; inset: 0; }
.dest-media img { width: 100%; height: 100%; object-fit: cover; opacity: .18; }
.dest-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, var(--ink) 0%, rgba(6,26,43,.7) 40%, rgba(6,26,43,.88) 70%, var(--ink) 100%); }
.dest-in { position: relative; }
.dest-grid { display: grid; gap: 0 40px; margin-top: clamp(36px, 4vw, 56px); border-top: 1px solid var(--ink-line); }
@media (min-width: 760px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
.dest-item {
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  padding: 20px 0; border-bottom: 1px solid var(--ink-line);
  transition: padding-left .35s var(--ease);
}
.dest-item:hover { padding-left: 14px; }
.dest-item h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); letter-spacing: -0.03em; }
.dest-item span { font-size: .74rem; letter-spacing: .15em; text-transform: uppercase; color: var(--on-ink-mute); white-space: nowrap; font-weight: 600; }

/* ---------- reasons ---------- */
.reasons { display: grid; gap: 0; border-top: 1px solid var(--ink-line); }
@media (min-width: 900px) { .reasons { grid-template-columns: repeat(2, 1fr); gap: 0 56px; } }
.reason { padding: clamp(26px, 3vw, 36px) 0; border-bottom: 1px solid var(--ink-line); }
.reason .n {
  font-family: var(--display); font-weight: 700; font-size: 2.6rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(233,242,248,.32); letter-spacing: -0.04em;
}
.reason h3 { margin-top: 18px; font-size: clamp(1.2rem, 1.8vw, 1.5rem); letter-spacing: -0.03em; }
.reason p { margin-top: 12px; font-size: .96rem; }

/* full bleed band */
.band { position: relative; height: clamp(300px, 46vw, 620px); overflow: hidden; }
.band img { width: 100%; height: 100%; object-fit: cover; }
.band-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: var(--gutter);
  background: linear-gradient(0deg, rgba(6,26,43,.9), transparent);
  color: rgba(255,255,255,.86); font-size: .88rem;
}

/* ---------- steps ---------- */
.steps { display: grid; gap: 0; border-top: 1px solid var(--line); }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(4, 1fr); border-top: 0; } }
.step { padding: 28px 0; border-bottom: 1px solid var(--line); }
@media (min-width: 820px) {
  .step { border-top: 1px solid var(--line); border-bottom: 0; padding: 30px 28px 0 0; }
  .step + .step { padding-left: 28px; border-left: 1px solid var(--line); }
}
.step .n { font-family: var(--display); font-weight: 700; font-size: .78rem; letter-spacing: .16em; color: var(--ember); }
.step h3 { margin-top: 16px; font-size: 1.15rem; letter-spacing: -0.025em; }
.step p { margin-top: 10px; font-size: .93rem; color: var(--on-light-mute); }

/* ---------- faq ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 0; display: flex; gap: 20px; align-items: center;
  font-family: var(--display); font-weight: 700; font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  color: var(--heading); letter-spacing: -0.025em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; margin-left: auto; width: 13px; height: 13px; flex-shrink: 0;
  background: currentColor; transition: transform .3s var(--ease);
  clip-path: polygon(45% 0, 55% 0, 55% 45%, 100% 45%, 100% 55%, 55% 55%, 55% 100%, 45% 100%, 45% 55%, 0 55%, 0 45%, 45% 45%);
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq details[open] summary { color: var(--ember); }
.faq .ans { padding-bottom: 26px; max-width: 68ch; font-size: .98rem; }

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: clamp(40px, 5vw, 72px); }
@media (min-width: 940px) { .contact-grid { grid-template-columns: .85fr 1.15fr; } }

.detail-list { border-top: 1px solid var(--line); }
.detail { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.detail dt { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--on-light-mute); font-weight: 600; padding-top: 4px; }
.detail dd { margin: 0; font-size: 1.02rem; color: var(--heading); }
.detail dd a { border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: border-color .2s, color .2s; }
.detail dd a:hover { color: var(--ember); border-color: var(--ember); }

.form-grid { display: grid; gap: 22px; }
@media (min-width: 640px) { .form-grid.two { grid-template-columns: repeat(2, 1fr); } }
.fld { display: flex; flex-direction: column; gap: 8px; }
.fld label { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--on-light-mute); font-weight: 600; }
.fld input, .fld select, .fld textarea {
  border: 0; border-bottom: 1px solid var(--line); background: none; padding: 10px 0;
  font-size: 1.02rem; color: var(--heading); border-radius: 0; appearance: none;
  transition: border-color .25s var(--ease);
}
.fld select { background-image: linear-gradient(45deg, transparent 50%, var(--on-light-mute) 50%), linear-gradient(135deg, var(--on-light-mute) 50%, transparent 50%); background-position: calc(100% - 12px) 20px, calc(100% - 7px) 20px; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 28px; }
.fld textarea { min-height: 120px; resize: vertical; }
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: none; border-bottom-color: var(--ember); }
.fld input::placeholder, .fld textarea::placeholder { color: #a9b6c0; }

.notice {
  display: none; padding: 16px 20px; background: var(--mist); border-left: 2px solid var(--blue);
  font-size: .93rem; margin-bottom: 8px;
}
.notice.show { display: block; }

/* ---------- final cta ---------- */
.finale { background: var(--ember); color: #fff; }
.finale h2 { color: #fff; }
.finale-in { display: grid; gap: 32px; align-items: end; }
@media (min-width: 900px) { .finale-in { grid-template-columns: 1.5fr auto; } }
.finale p { color: rgba(255, 255, 255, .88); max-width: 46ch; margin-top: 18px; }
.act-on-ember { background: var(--ink); color: #fff; }
.act-on-ember:hover { background: #fff; color: var(--ink); }

/* ---------- footer ---------- */
.foot { background: var(--ink); color: var(--on-ink); padding-top: clamp(60px, 7vw, 96px); }
.foot-top { display: grid; gap: 44px; padding-bottom: 60px; }
@media (min-width: 760px) { .foot-top { grid-template-columns: 1.5fr 1fr 1fr; } }
@media (min-width: 1060px) { .foot-top { grid-template-columns: 1.7fr 1fr 1fr 1.1fr; } }
.foot h4 { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--on-ink-mute); font-weight: 600; font-family: var(--sans); margin-bottom: 20px; }
.foot-logo { width: 148px; margin-bottom: 24px; filter: brightness(0) invert(1); }
.foot p { font-size: .95rem; max-width: 38ch; }
.foot-links li + li { margin-top: 12px; }
.foot-links a { font-size: .95rem; transition: color .2s; }
.foot-links a:hover { color: var(--ember); }
.foot-addr { font-size: .95rem; display: grid; gap: 14px; }
.foot-addr a:hover { color: var(--ember); }
.foot-bottom {
  border-top: 1px solid var(--ink-line); padding-block: 26px 30px;
  display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: space-between; align-items: center;
  font-size: .85rem; color: var(--on-ink-mute);
}
.foot-bottom .motto { letter-spacing: .2em; text-transform: uppercase; font-size: .7rem; }

/* ---------- page banner ---------- */
.banner { position: relative; background: var(--ink); overflow: hidden; }
.banner-media { position: absolute; inset: 0; }
.banner-media img { width: 100%; height: 100%; object-fit: cover; opacity: .46; }
.banner-scrim { position: absolute; inset: 0; background: linear-gradient(92deg, var(--ink) 4%, rgba(6,26,43,.6) 58%, rgba(6,26,43,.35) 100%); }
.banner-in {
  position: relative; padding-top: calc(var(--bar) + clamp(56px, 8vw, 104px)); padding-bottom: clamp(52px, 7vw, 96px);
}
.banner h1 { color: #fff; }
.banner p { color: var(--on-ink); max-width: 52ch; margin-top: 22px; }
.crumb { display: flex; gap: 12px; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--on-ink-mute); margin-bottom: 26px; }
.crumb a:hover { color: var(--ember); }

/* ---------- service detail ---------- */
.svc { padding-block: clamp(56px, 7vw, 104px); border-bottom: 1px solid var(--line); scroll-margin-top: 120px; }
.svc:last-of-type { border-bottom: 0; }
.svc-top { display: grid; gap: clamp(28px, 4vw, 56px); align-items: center; margin-bottom: clamp(36px, 4vw, 54px); }
@media (min-width: 900px) { .svc-top { grid-template-columns: 1.05fr .95fr; } }
@media (min-width: 900px) { .svc:nth-of-type(even) .svc-pic { order: -1; } }
.svc-pic { overflow: hidden; aspect-ratio: 3 / 2; }
.svc-pic img { width: 100%; height: 100%; object-fit: cover; }
.svc-n { font-family: var(--display); font-weight: 700; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ember); display: block; margin-bottom: 14px; }

.spec { display: grid; gap: 0 40px; border-top: 1px solid var(--line); }
@media (min-width: 700px) { .spec { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .spec { grid-template-columns: repeat(3, 1fr); } }
.spec-item { padding: 22px 0; border-bottom: 1px solid var(--line); }
.spec-item h4 { font-size: 1rem; letter-spacing: -0.02em; display: flex; gap: 10px; align-items: baseline; }
.spec-item h4::before { content: ""; width: 5px; height: 5px; background: var(--ember); flex-shrink: 0; transform: translateY(-3px); }
.spec-item p { margin-top: 8px; font-size: .92rem; color: var(--on-light-mute); }

/* jump rail */
.jump { position: sticky; top: var(--bar); z-index: 100; background: var(--paper); border-bottom: 1px solid var(--line); }
.jump-in { display: flex; gap: 26px; overflow-x: auto; padding-block: 16px; scrollbar-width: none; }
.jump-in::-webkit-scrollbar { display: none; }
.jump a {
  flex-shrink: 0; font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--on-light-mute);
  padding-bottom: 5px; border-bottom: 1px solid transparent; transition: color .2s, border-color .2s;
}
.jump a:hover { color: var(--heading); }
.jump a.on { color: var(--heading); border-bottom-color: var(--ember); }

/* ---------- whatsapp ---------- */
.wa {
  position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: 140;
  width: 54px; height: 54px; display: grid; place-items: center;
  background: var(--ember); color: #fff; border-radius: 50%;
  box-shadow: 0 14px 34px rgba(6, 26, 43, .3);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.wa:hover { transform: scale(1.08); background: var(--ember-deep); }

/* ---------- reveal (opt-in, JS only) ---------- */
.js .rv { opacity: 0; transform: translateY(26px); }
.js .rv.in { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }
@media (prefers-reduced-motion: reduce) { .js .rv { opacity: 1; transform: none; } }
