/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --white:      #ffffff;
  --paper:      #f5f7fb;
  --paper-2:    #eef1f8;
  --navy:       #0b1f4d;
  --navy-2:     #122a5e;
  --navy-3:     #1c3a82;
  --navy-soft:  rgba(11, 31, 77, 0.7);
  --ink:        #12141c;
  --ink-mute:   #5b6472;
  --gold:       #c9a227;
  --gold-2:     #e8c76a;
  --gold-soft:  rgba(201, 162, 39, 0.14);
  --line:       rgba(11, 31, 77, 0.12);
  --line-soft:  rgba(11, 31, 77, 0.07);

  --serif: "Playfair Display", "Georgia", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono:  "JetBrains Mono", "SFMono-Regular", Consolas, monospace;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 76px;
  --container: 1240px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; font-family: var(--serif); font-weight: 600; }
ul { list-style: none; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--navy); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.1rem; background: var(--navy); color: var(--white);
  z-index: 9999; border-radius: 8px; font-weight: 600; transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--gold); display: inline-block;
}
.section { padding-block: clamp(3.5rem, 7vw, 7rem); position: relative; }
.section--paper { background: var(--paper); }
.section--navy { background: var(--navy); color: var(--white); }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.section-title em { color: var(--navy-3); font-style: italic; }
.section--navy .section-title em, .section--navy .eyebrow { color: var(--gold-2); }
.section-lede { color: var(--ink-mute); font-size: 1.05rem; margin-top: .9rem; max-width: 60ch; }
.section--navy .section-lede { color: rgba(255,255,255,.78); }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; } /* defensive: never leave split-text parents invisible */

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem; border-radius: 10px; font-weight: 600; font-size: .96rem;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--navy);
  box-shadow: 0 10px 24px -8px rgba(201,162,39,.55);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -10px rgba(201,162,39,.65); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.55);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-3px); }
.btn-navy-ghost {
  background: transparent; color: var(--navy); border: 1.5px solid var(--line);
}
.btn-navy-ghost:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-3px); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; pointer-events: none; }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
}
.nav.is-scrolled { box-shadow: 0 8px 30px -14px rgba(11,31,77,.25); border-color: var(--line); }
.nav-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { height: 46px; width: auto; border-radius: 8px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 1.15rem; color: var(--navy); }
.brand-tag { font-family: var(--mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }

.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: .92rem; font-weight: 600; color: var(--navy); position: relative; padding-block: .3rem;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--gold);
  transition: right .3s var(--ease-out);
}
.nav-links a:hover::after { right: 0; }

.nav-cta { display: none; align-items: center; gap: .9rem; }
.nav-phone { display: flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--navy); font-size: .92rem; }
.nav-phone svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.nav-toggle {
  display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: 8px;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--navy); position: relative;
  transition: transform .3s var(--ease-out), opacity .3s var(--ease-out);
}
.nav-toggle::before { position: absolute; transform: translateY(-7px); }
.nav-toggle::after { position: absolute; transform: translateY(7px); }
.nav-toggle.is-open span { opacity: 0; }
.nav-toggle.is-open::before { transform: rotate(45deg); }
.nav-toggle.is-open::after { transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 490;
  background: var(--white); transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu-inner { padding: 2rem 1.5rem 3rem; display: flex; flex-direction: column; gap: 1.6rem; }
.mobile-menu a { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--navy); }
.mobile-menu .btn { align-self: flex-start; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none; }
}

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  color: var(--white);
  overflow: clip;
}
.hero-inner, .hero .trust-bar { width: 100%; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,19,41,.78) 0%, rgba(11,25,58,.62) 38%, rgba(9,17,38,.88) 100%),
    linear-gradient(100deg, rgba(6,13,32,.55) 0%, rgba(6,13,32,.1) 55%);
}
.hero-inner { position: relative; z-index: 1; padding-block: 3.5rem 6rem; width: 100%; }
.hero-content { max-width: 720px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--mono); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 600; margin-bottom: 1.3rem;
  padding: .5rem 1rem; border: 1px solid rgba(232,199,106,.4); border-radius: 999px;
  background: rgba(11,31,77,.35);
}
.hero-kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 0 3px rgba(232,199,106,.25); }
.hero-title {
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  color: var(--white);
  max-width: 16ch;
}
.hero-title em { font-style: italic; color: var(--gold-2); }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: rgba(255,255,255,.86); max-width: 46ch; margin-top: 1.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.trust-bar {
  position: relative; z-index: 2;
  margin-top: -3.4rem;
}
.trust-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 24px 60px -20px rgba(11,31,77,.35);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  overflow: hidden;
}
.trust-item {
  padding: 1.6rem 1.4rem;
  display: flex; flex-direction: column; gap: .3rem;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.trust-item:nth-child(2n) { border-right: 0; }
.trust-num {
  font-family: var(--serif); font-weight: 700; font-size: clamp(1.5rem, 2.4vw, 2.1rem); color: var(--navy);
}
.trust-num .accent { color: var(--gold); }
.trust-label { font-size: .82rem; color: var(--ink-mute); font-weight: 600; }
@media (min-width: 720px) {
  .trust-card { grid-template-columns: repeat(4, 1fr); }
  .trust-item:nth-child(2n) { border-right: 1px solid var(--line-soft); }
  .trust-item:nth-child(4n) { border-right: 0; }
  .trust-item { border-bottom: 0; }
}

/* =============================================================
   7. Services
   ============================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
@media (min-width: 720px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out);
  will-change: transform;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: 0 26px 50px -22px rgba(11,31,77,.3);
}
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--gold-2);
  margin-bottom: 1.1rem;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: .5rem; color: var(--navy); }
.service-card p { color: var(--ink-mute); font-size: .92rem; }
.services-more {
  margin-top: 1.8rem; text-align: center; color: var(--ink-mute); font-size: .95rem;
}

/* =============================================================
   8. Marquee (service area)
   ============================================================= */
.marquee-wrap {
  background: var(--navy);
  padding-block: 1.3rem;
  overflow: hidden;
  position: relative;
}
.marquee-wrap::before, .marquee-wrap::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--navy), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(-90deg, var(--navy), transparent); }
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 32s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation-duration: 70s; }
}
.marquee-track span {
  font-family: var(--mono); font-size: .85rem; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.85); padding-inline: 1.6rem; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 1.6rem;
}
.marquee-track span::after { content: "\2726"; color: var(--gold); font-size: .7rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================================
   9. Before / After sliders
   ============================================================= */
.ba-grid { display: grid; gap: 2.4rem; }
@media (min-width: 960px) { .ba-grid { grid-template-columns: repeat(3, 1fr); } }

.ba-card { display: flex; flex-direction: column; gap: 1rem; }
.ba-slider {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px -20px rgba(11,31,77,.35);
  background: var(--paper-2);
  cursor: ew-resize;
}
.ba-slider img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  user-select: none; -webkit-user-drag: none;
}
.ba-slider__before {
  position: absolute; inset: 0; width: 50%; overflow: hidden; z-index: 2;
}
.ba-slider__before img { width: var(--ba-img-w, 100vw); max-width: none; }
.ba-tag {
  position: absolute; top: 12px; z-index: 3;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  padding: .35rem .7rem; border-radius: 999px; color: var(--white);
}
.ba-tag--before { left: 12px; background: rgba(11,31,77,.85); }
.ba-tag--after { right: 12px; background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--navy); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; z-index: 4;
  width: 3px; background: var(--white); left: 50%; transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(11,31,77,.2);
}
.ba-handle::after {
  content: "\21C6";
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 42px; height: 42px; border-radius: 50%; background: var(--white); color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  box-shadow: 0 8px 20px -6px rgba(11,31,77,.5);
}
.ba-range {
  position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0; appearance: none;
}
.ba-caption h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: .25rem; }
.ba-caption p { color: var(--ink-mute); font-size: .88rem; }

.gallery-cta { text-align: center; margin-top: 2.5rem; }

/* Interior page header (Gallery page, etc.) */
.page-header {
  padding: calc(var(--nav-h) + 3.2rem) 0 3.5rem;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--white); text-align: center;
}
.page-header .eyebrow { color: var(--gold-2); }
.page-header h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); color: var(--white); }
.page-header h1 em { color: var(--gold-2); font-style: italic; }
.page-header p { color: rgba(255,255,255,.8); max-width: 56ch; margin: 1rem auto 0; }

/* Filter bar */
.filter-bar { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin: 0 0 2.6rem; }
.filter-btn {
  padding: .6rem 1.3rem; border-radius: 999px; border: 1px solid var(--line);
  font-size: .85rem; font-weight: 600; color: var(--navy);
  transition: background .25s var(--ease-out), color .25s var(--ease-out), border-color .25s var(--ease-out);
}
.filter-btn:hover { border-color: var(--navy); }
.filter-btn.is-active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.full-gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
@media (min-width: 720px) { .full-gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .full-gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.full-gallery-grid .gallery-item.is-hidden { display: none; }
.gallery-item .cat-tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-family: var(--mono); font-size: .64rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 700;
  padding: .3rem .6rem; border-radius: 999px; background: rgba(11,31,77,.85); color: var(--white);
}

/* Gallery grid */
.gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; margin-top: 3rem;
}
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/5;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out), filter .6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .cap {
  position: absolute; inset-inline: 0; bottom: 0; padding: .9rem .9rem 1rem;
  background: linear-gradient(0deg, rgba(11,19,41,.88), transparent);
  color: var(--white); font-size: .82rem; font-weight: 600;
  opacity: 0; transform: translateY(8px); transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
}
.gallery-item:hover .cap { opacity: 1; transform: none; }

/* =============================================================
   10. About
   ============================================================= */
.about-grid {
  display: grid; gap: 2.5rem; align-items: start;
}
@media (min-width: 960px) { .about-grid { grid-template-columns: 0.7fr 1.3fr; gap: 4rem; } }
.about-num {
  font-family: var(--serif); font-weight: 700; color: var(--navy);
  font-size: clamp(4.5rem, 9vw, 7.5rem); line-height: .85;
}
.about-num span { color: var(--gold); }
.about-num small {
  display: block; font-family: var(--mono); font-size: .78rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-mute); font-weight: 600; margin-top: .8rem;
}
.about-copy p { color: var(--ink-mute); font-size: 1.02rem; margin-bottom: 1.2rem; max-width: 62ch; }
.about-copy p:last-child { margin-bottom: 0; }
.about-copy strong { color: var(--navy); }
.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.2rem; margin-top: 2rem; }
.about-value { display: flex; gap: .8rem; align-items: flex-start; }
.about-value svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.about-value strong { display: block; color: var(--navy); font-size: .95rem; }
.about-value span { color: var(--ink-mute); font-size: .85rem; }

/* =============================================================
   11. Credentials
   ============================================================= */
.creds-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 720px) { .creds-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .creds-grid { grid-template-columns: repeat(6, 1fr); } }
.cred-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 1.4rem 1.1rem;
  text-align: center;
  transition: background .35s var(--ease-out), transform .35s var(--ease-out);
}
.cred-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.cred-card svg { width: 30px; height: 30px; color: var(--gold-2); margin-inline: auto; margin-bottom: .8rem; }
.cred-card strong { display: block; font-size: .88rem; color: var(--white); }

/* =============================================================
   12. Testimonials
   ============================================================= */
.testi-wrap { position: relative; max-width: 780px; margin-inline: auto; }
.testi-track { position: relative; overflow: hidden; border-radius: 20px; }
.testi-slide {
  display: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
}
.testi-slide.is-active { display: block; animation: fadeSlide .6s var(--ease-out); }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.testi-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: .2rem; margin-bottom: 1.1rem; }
.testi-quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--navy); line-height: 1.45; }
.testi-person { margin-top: 1.6rem; display: flex; align-items: center; justify-content: center; gap: .8rem; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-3)); color: var(--gold-2);
  font-family: var(--serif); font-weight: 700; font-size: .95rem;
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.testi-name { font-weight: 700; color: var(--navy); font-size: .92rem; }
.testi-loc { color: var(--ink-mute); font-size: .8rem; }

.testi-nav { display: flex; align-items: center; justify-content: center; gap: 1.4rem; margin-top: 1.8rem; }
.testi-arrow {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; transition: background .3s, color .3s, transform .3s;
}
.testi-arrow:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.testi-dots { display: flex; gap: .5rem; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: background .3s, transform .3s; }
.testi-dot.is-active { background: var(--gold); transform: scale(1.3); }

.testi-form-wrap {
  max-width: 640px; margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(1.6rem, 4vw, 2.4rem);
}
.testi-form-head { text-align: center; margin-bottom: 1.4rem; }
.testi-form-head h3 { font-size: 1.25rem; color: var(--navy); }
.testi-form-head p { color: var(--ink-mute); font-size: .9rem; margin-top: .3rem; }

.star-rating {
  display: flex; flex-direction: row-reverse; justify-content: center; gap: .2rem;
  border: 0; margin: 0 0 1.3rem; padding: 0;
}
.star-rating legend { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.star-rating input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.star-rating label {
  font-size: 2rem; line-height: 1; color: var(--line); cursor: pointer; transition: color .2s var(--ease-out);
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked + label:hover,
.star-rating input:checked ~ label:hover ~ label {
  color: var(--gold);
}
.star-rating input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   13. Final CTA
   ============================================================= */
.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-3) 100%);
  border-radius: 24px;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  display: grid; gap: 2rem;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: -40% -10% auto auto; width: 60%; aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(232,199,106,.35), transparent 70%);
  filter: blur(10px);
}
.cta-banner-text { position: relative; z-index: 1; max-width: 640px; }
.cta-banner h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.cta-banner p { color: rgba(255,255,255,.82); margin-top: .8rem; }
.cta-banner-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 1rem; }
@media (min-width: 960px) {
  .cta-banner { grid-template-columns: 1.4fr 1fr; align-items: center; }
}

/* =============================================================
   14. Contact
   ============================================================= */
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 3.5rem; } }

.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item .ic {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--navy); color: var(--gold-2); display: flex; align-items: center; justify-content: center;
}
.contact-item .ic svg { width: 20px; height: 20px; }
.contact-item strong { display: block; color: var(--navy); font-size: .95rem; }
.contact-item span, .contact-item a { color: var(--ink-mute); font-size: .92rem; }
.contact-item a:hover { color: var(--navy-3); }
.map-frame {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
  margin-top: .5rem; aspect-ratio: 16/10;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: 0 30px 70px -30px rgba(11,31,77,.25);
}
.form-row { display: grid; gap: 1.1rem; margin-bottom: 1.1rem; }
@media (min-width: 640px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: .45rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 10px;
  background: var(--paper); transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-3); box-shadow: 0 0 0 3px rgba(28,58,130,.14);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .8rem; color: var(--ink-mute); margin-top: .9rem; text-align: center; }
.form-success {
  display: none; align-items: center; gap: .6rem; margin-top: 1rem;
  background: var(--gold-soft); color: var(--navy); padding: .8rem 1rem; border-radius: 10px; font-size: .88rem; font-weight: 600;
}
.form-success.is-visible { display: flex; }

/* =============================================================
   15. Footer
   ============================================================= */
.footer { background: #081436; color: rgba(255,255,255,.75); padding-block: 3.5rem 2rem; }
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.footer-logo-badge {
  background: var(--white); border-radius: 10px; padding: 4px; display: inline-flex;
}
.footer-logo-badge img { height: 40px; width: auto; border-radius: 6px; }
.footer-brand-name { font-family: var(--serif); font-weight: 700; font-size: 1.1rem; color: var(--white); }
.footer p.desc { font-size: .88rem; max-width: 32ch; }
.footer h4 { font-family: var(--sans); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 1.1rem; font-weight: 700; }
.footer ul { display: flex; flex-direction: column; gap: .7rem; }
.footer ul a, .footer ul span { font-size: .9rem; }
.footer ul a:hover { color: var(--white); }
.footer-social { display: flex; gap: .7rem; margin-top: 1.3rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center; transition: background .3s, transform .3s;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 3rem; padding-top: 1.6rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .8rem;
}

/* =============================================================
   16b. Page transitions (multi-page)
   ============================================================= */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) {
  animation-duration: .45s; animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
::view-transition-old(root) { animation-name: mechanFadeOut; }
::view-transition-new(root) { animation-name: mechanFadeIn; }
@keyframes mechanFadeOut { to { opacity: 0; } }
@keyframes mechanFadeIn { from { opacity: 0; } }

/* =============================================================
   16. Tilt (fine pointers only)
   ============================================================= */
@media (hover: hover) and (pointer: fine) {
  [data-tilt] { transform-style: preserve-3d; will-change: transform; }
}

