/* ============================================================
   MISS ABBY KERR — Global Freight & Logistics
   Light editorial theme · Deep evergreen + warm amber
   ============================================================ */

:root {
  --bg: #F7F5F0;
  --bg-2: #FFFFFF;
  --bg-soft: #F0ECE2;
  --bg-ink: #1C3B3F;
  --bg-ink-2: #102B2F;

  --ink: #1C3B3F;
  --ink-2: #2A4A4E;
  --body: #4A5B5C;
  --muted: #7B8A89;
  --line: #E6E1D4;
  --line-2: #D8D0BC;

  --amber: #C8974A;
  --amber-2: #A97C2F;
  --amber-soft: #F3E7CE;
  --amber-light: #E3CB94;

  --white: #FFFFFF;
  --shadow-sm: 0 4px 18px rgba(28, 59, 63, 0.06);
  --shadow-md: 0 16px 40px rgba(28, 59, 63, 0.10);
  --shadow-lg: 0 30px 70px rgba(28, 59, 63, 0.16);

  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;

  --container: 1200px;
  --nav-h: 78px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--amber); color: var(--white); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Typography helpers ---------- */
.section { padding: 104px 0; position: relative; }

.section--white { background: var(--bg-2); }
.section--soft { background: var(--bg); }
.section--ink {
  background: linear-gradient(160deg, var(--bg-ink), var(--bg-ink-2));
  color: #D7E0DD;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-2);
}

.section__label::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--amber);
}

.section__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 16px 0 18px;
}

.section__subtitle {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  margin: 0;
}

.section__title .accent {
  color: var(--amber-2);
  font-style: italic;
  font-weight: 500;
}

.text-center { text-align: center; }
.text-center .section__subtitle { margin-left: auto; margin-right: auto; }
.text-center .section__label::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: all 0.28s ease;
  line-height: 1;
  white-space: nowrap;
}

.btn svg { width: 17px; height: 17px; }

.btn--primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--amber {
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  color: var(--white);
  box-shadow: 0 10px 26px rgba(200, 151, 74, 0.35);
}
.btn--amber:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(200, 151, 74, 0.45); }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--outline:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: all 0.35s ease;
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 13px;
}

.nav__logo-icon { width: 44px; height: 44px; flex: none; }

.nav__logo-text { display: flex; flex-direction: column; line-height: 1.15; }

.nav__logo-brand {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  color: var(--ink);
  transition: color 0.3s ease;
}

.nav__logo-tagline {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-2);
}

.nav__links { display: flex; align-items: center; gap: 34px; }

.nav__link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--body);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width 0.3s ease;
}

.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.28s ease;
}
.nav__cta:hover { background: var(--amber-2); transform: translateY(-1px); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
}
.nav__toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 60px;
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(200, 151, 74, 0.15), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(28, 59, 63, 0.06), transparent 55%),
    var(--bg);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(28, 59, 63, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 59, 63, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(1000px 700px at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(1000px 700px at 50% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.hero__badge-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(200, 151, 74, 0.2);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(200, 151, 74, 0.22); }
  50% { box-shadow: 0 0 0 8px rgba(200, 151, 74, 0.05); }
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(42px, 5.6vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 26px 0 24px;
}

.hero__title .accent {
  display: block;
  color: var(--amber-2);
  font-style: italic;
  font-weight: 400;
}

.hero__desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 32px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero__trust-item strong {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  color: var(--ink);
}

.hero__trust-item span {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Hero 3D scene: container stack ---------- */
.hero__scene {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scene { perspective: 1400px; }

.stack {
  position: relative;
  width: 300px;
  height: 300px;
  transform-style: preserve-3d;
  animation: stackFloat 7s ease-in-out infinite;
}

@keyframes stackFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.box {
  position: absolute;
  width: 170px;
  height: 170px;
  transform-style: preserve-3d;
}

.box--a { left: 10px;  top: 96px;  animation: spinA 24s linear infinite; }
.box--b { left: 118px; top: 20px;  animation: spinB 30s linear infinite; }

@keyframes spinA {
  from { transform: rotateX(-16deg) rotateY(0deg); }
  to   { transform: rotateX(-16deg) rotateY(360deg); }
}

@keyframes spinB {
  from { transform: rotateX(-16deg) rotateY(360deg); }
  to   { transform: rotateX(-16deg) rotateY(0deg); }
}

.box__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.box__face--front  { transform: translateZ(85px); }
.box__face--back   { transform: rotateY(180deg) translateZ(85px); }
.box__face--top    { transform: rotateX(90deg) translateZ(85px); }
.box__face--bottom { transform: rotateX(-90deg) translateZ(85px); }
.box__face--left   { transform: rotateY(-90deg) translateZ(85px); }
.box__face--right  { transform: rotateY(90deg) translateZ(85px); }

.box__face--front,
.box__face--back {
  background:
    linear-gradient(90deg, transparent 46.5%, rgba(255,255,255,0.14) 46.5%, rgba(255,255,255,0.14) 53.5%, transparent 53.5%),
    linear-gradient(180deg, rgba(200,151,74,0.16) 0 6px, transparent 6px),
    linear-gradient(135deg, #20434A, #153138);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.35);
}

.box__face--front::before,
.box__face--back::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1.5px solid rgba(200, 151, 74, 0.5);
  border-radius: 5px;
}

.box__mono {
  position: relative;
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.box__tag {
  position: relative;
  margin-top: 12px;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber-light);
  text-align: center;
  line-height: 1.5;
}

.box__tag small {
  display: block;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3px;
}

.box__face--top {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14) 48%, transparent 48%, transparent 52%, rgba(0,0,0,0.16) 52%),
    linear-gradient(135deg, #D3A95C, #A87C2F);
}

.box__face--bottom {
  background: linear-gradient(160deg, #0E262B, #08191C);
}

.box__face--left,
.box__face--right {
  background:
    linear-gradient(180deg, rgba(200,151,74,0.3) 0 4px, transparent 4px),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.05) 0 7px, transparent 7px 16px),
    linear-gradient(135deg, #1A3940, #12303a);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.4);
}

.box__shine {
  position: absolute;
  inset: 0;
  border-radius: 5px;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.22) 45%, transparent 60%);
  pointer-events: none;
}

/* orbit rings */
.orbit {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1.5px dashed rgba(200, 151, 74, 0.45);
  transform: translate(-50%, -50%);
  animation: orbitSpin 22s linear infinite;
}

.orbit--1 { width: 380px; height: 380px; }
.orbit--2 {
  width: 480px;
  height: 480px;
  border-color: rgba(28, 59, 63, 0.14);
  border-style: solid;
  border-width: 1px;
  animation-duration: 34s;
  animation-direction: reverse;
}

@keyframes orbitSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.orbit__node {
  position: absolute;
  top: -6px; left: 50%;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(200, 151, 74, 0.22), 0 0 20px rgba(200, 151, 74, 0.6);
}

/* floating chips */
.scene-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  z-index: 3;
  animation: floatY 5.5s ease-in-out infinite;
}

.scene-chip svg { width: 18px; height: 18px; color: var(--amber-2); }

.scene-chip--1 { top: 4%;  left: 2%; animation-delay: 0s; }
.scene-chip--2 { top: 42%; right: 0; animation-delay: 1.4s; }
.scene-chip--3 { bottom: 4%; left: 10%; animation-delay: 2.6s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ---------- Marquee strip ---------- */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding: 22px 0;
  overflow: hidden;
}

.strip__track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: stripScroll 36s linear infinite;
}

.strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--ink);
  opacity: 0.55;
  white-space: nowrap;
}

.strip__item svg { width: 20px; height: 20px; color: var(--amber); opacity: 0.8; }

@keyframes stripScroll { to { transform: translateX(-50%); } }

/* ============================================================
   STATS
   ============================================================ */
.stats { padding: 84px 0; }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(40px, 4.6vw, 58px);
  color: var(--ink);
  line-height: 1;
}

.stat-item__number-suffix { color: var(--amber-2); }

.stat-item__label {
  margin-top: 10px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
}

.service-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all 0.35s ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-soft);
  color: var(--amber-2);
  margin-bottom: 22px;
  transition: all 0.35s ease;
}

.service-card__icon svg { width: 27px; height: 27px; }

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  color: var(--white);
  transform: rotate(-6deg) scale(1.05);
}

.service-card__num {
  position: absolute;
  top: 26px; right: 26px;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--line-2);
  font-weight: 600;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 10px;
}

.service-card__desc { font-size: 15px; color: var(--muted); margin: 0; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.about__visual { position: relative; }

.about__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.about__img img { width: 100%; height: 460px; object-fit: cover; }

.about__frame {
  position: absolute;
  top: -22px; left: -22px;
  width: 100%; height: 100%;
  border: 1.5px solid var(--amber);
  border-radius: var(--radius-lg);
  z-index: 1;
}

.about__card {
  position: absolute;
  z-index: 3;
  right: -26px;
  bottom: 40px;
  background: var(--bg-ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  max-width: 240px;
}

.about__card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--amber-light);
  line-height: 1;
}

.about__card span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
}

.about__text p { color: var(--muted); font-size: 16px; margin: 0 0 16px; }
.about__text p strong { color: var(--ink); }

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 26px 0 32px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}

.about__feature-icon {
  width: 32px; height: 32px;
  flex: none;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-soft);
  color: var(--amber-2);
}
.about__feature-icon svg { width: 16px; height: 16px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.process-step { position: relative; padding-top: 10px; }

.process-step__num {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--amber-2);
}

.process-step__line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--amber-light), var(--line));
  margin: 18px 0 22px;
  position: relative;
}

.process-step__line::before {
  content: "";
  position: absolute;
  left: 0; top: -4px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px var(--amber-soft);
}

.process-step__title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
}

.process-step__desc { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ============================================================
   WHY US
   ============================================================ */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.why-item {
  background: var(--bg-2);
  border-radius: var(--radius);
  padding: 34px 30px;
  border: 1px solid var(--line);
  transition: all 0.35s ease;
}

.why-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.why-item__number {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--amber-2);
  letter-spacing: 0.16em;
}

.why-item__title {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
  margin: 14px 0 10px;
}

.why-item__desc { font-size: 15px; color: var(--muted); margin: 0; }

/* ============================================================
   COVERAGE BAND (ink)
   ============================================================ */
.coverage { padding: 110px 0; }

.coverage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.coverage__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.12;
  color: var(--white);
  margin: 16px 0 20px;
}

.coverage__title .accent { color: var(--amber-light); font-style: italic; }

.coverage__copy { color: #B3C3C0; font-size: 16.5px; margin: 0 0 30px; }

.coverage__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 30px;
}

.coverage__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #E6ECEA;
}

.coverage__item svg {
  width: 20px; height: 20px;
  flex: none;
  color: var(--amber-light);
}

.coverage__visual { position: relative; }

.coverage__visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.coverage__badge {
  position: absolute;
  left: 28px; bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(28, 59, 63, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 151, 74, 0.4);
  border-radius: 16px;
  padding: 16px 22px;
  color: var(--white);
}

.coverage__badge strong { display: block; font-family: var(--font-serif); font-size: 26px; color: var(--amber-light); line-height: 1; }
.coverage__badge span { font-size: 12.5px; color: rgba(255, 255, 255, 0.75); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.35s ease;
}

.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.testimonial-card__stars { display: flex; gap: 4px; }
.testimonial-card__stars svg { width: 17px; height: 17px; fill: var(--amber); color: var(--amber); }

.testimonial-card__text {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--body);
  margin: 0;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.testimonial-card__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--amber-soft);
}

.testimonial-card__name { font-weight: 700; font-size: 15px; color: var(--ink); }
.testimonial-card__role { font-size: 12.5px; color: var(--muted); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(16, 43, 47, 0.92), rgba(28, 59, 63, 0.78));
}

.cta__content {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta__label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber-light);
}

.cta__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.1;
  color: var(--white);
  margin: 20px 0 22px;
}

.cta__title .accent { color: var(--amber-light); font-style: italic; }

.cta__copy { color: rgba(255, 255, 255, 0.8); font-size: 17px; margin: 0 0 34px; }

.cta__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  margin-top: 56px;
}

.contact__info-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact__info-item:last-child { border-bottom: 0; }

.contact__info-icon {
  width: 50px; height: 50px;
  flex: none;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-soft);
  color: var(--amber-2);
}

.contact__info-icon svg { width: 22px; height: 22px; }

.contact__info-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}

.contact__info-value { font-size: 16px; color: var(--ink); font-weight: 600; line-height: 1.5; }
.contact__info-value a { transition: color 0.2s ease; }
.contact__info-value a:hover { color: var(--amber-2); }

.contact__form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form__group { margin-bottom: 20px; }

.form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: all 0.25s ease;
}

.form__input::placeholder,
.form__textarea::placeholder { color: var(--muted); }

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: var(--bg-2);
  box-shadow: 0 0 0 4px rgba(200, 151, 74, 0.15);
}

.form__textarea { resize: vertical; min-height: 130px; }

.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 22px;
}

.form__consent a { color: var(--amber-2); text-decoration: underline; }
.form__consent input { margin-top: 3px; accent-color: var(--amber); }

.form__status { margin-top: 16px; font-size: 14px; font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-ink);
  color: #B3C3C0;
  padding: 84px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--amber), var(--amber-light), var(--amber), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: 50px;
  padding-bottom: 56px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
}

.footer__brand-icon { width: 42px; height: 42px; flex: none; }

.footer__brand-text {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  line-height: 1.2;
}

.footer__brand-text small {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-top: 3px;
}

.footer__desc { font-size: 14.5px; line-height: 1.7; margin: 0 0 24px; max-width: 340px; }

.footer__social { display: flex; gap: 12px; }

.footer__social-link {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #CFDCD9;
  transition: all 0.3s ease;
}

.footer__social-link svg { width: 17px; height: 17px; }

.footer__social-link:hover {
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  color: var(--white);
  transform: translateY(-3px);
}

.footer__heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin: 0 0 22px;
}

.footer__links { display: flex; flex-direction: column; gap: 12px; }

.footer__link {
  font-size: 14.5px;
  color: #B3C3C0;
  transition: all 0.25s ease;
}

.footer__link:hover { color: var(--white); transform: translateX(4px); }

.footer__contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.6;
}

.footer__contact-icon {
  width: 36px; height: 36px;
  flex: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 151, 74, 0.12);
  color: var(--amber-light);
}

.footer__contact-icon svg { width: 16px; height: 16px; }

.footer__contact-item strong { display: block; color: var(--white); margin-bottom: 2px; }
.footer__contact-item a { transition: color 0.2s ease; }
.footer__contact-item a:hover { color: var(--amber-light); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #839694;
}

.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { transition: color 0.2s ease; }
.footer__bottom-links a:hover { color: var(--amber-light); }

/* ============================================================
   POLICY / SUB PAGES
   ============================================================ */
.page-header {
  padding: calc(var(--nav-h) + 90px) 0 70px;
  background:
    radial-gradient(900px 400px at 80% 0%, rgba(200, 151, 74, 0.16), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}

.page-header__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(34px, 4.6vw, 54px);
  color: var(--ink);
  margin: 0 0 12px;
}

.page-header__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--amber-2);
  background: var(--amber-soft);
  border-radius: 999px;
  padding: 8px 16px;
}

.page-content { padding: 70px 0 110px; }

.page-content__inner {
  max-width: 860px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 54px 60px;
  box-shadow: var(--shadow-sm);
}

.page-content h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin: 44px 0 14px;
  padding-top: 10px;
}

.page-content h2:first-child { margin-top: 0; padding-top: 0; }

.page-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 28px 0 10px;
}

.page-content p { font-size: 15.5px; line-height: 1.75; margin: 0 0 16px; }

.page-content ul {
  list-style: none;
  margin: 0 0 18px;
}

.page-content ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.65;
}

.page-content ul li::before {
  content: "";
  position: absolute;
  left: 2px; top: 11px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

.page-content a { color: var(--amber-2); text-decoration: underline; }
.page-content a:hover { color: var(--ink); }

.page-content strong { color: var(--ink); }

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 26px;
  font-size: 14.5px;
}

.page-content th {
  text-align: left;
  background: var(--bg-soft);
  color: var(--ink);
  padding: 12px 16px;
  border-bottom: 2px solid var(--line-2);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-content td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--body);
  vertical-align: top;
}

.page-content tr:last-child td { border-bottom: 0; }

/* ---------- 404 ---------- */
.page-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(200, 151, 74, 0.18), transparent 60%),
    var(--bg);
}

.page-404__code {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(90px, 18vw, 180px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.page-404__code span { color: var(--amber-2); font-style: italic; }

.page-404__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.4vw, 34px);
  color: var(--ink);
  margin: 18px 0 12px;
  font-weight: 500;
}

.page-404__desc { color: var(--muted); font-size: 16px; max-width: 440px; margin: 0 0 30px; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal--visible { opacity: 1; transform: translateY(0); }

.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }
.reveal--delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-consent {
  position: fixed;
  left: 24px; bottom: 24px;
  z-index: 200;
  max-width: 420px;
  background: var(--bg-ink);
  color: #D7E0DD;
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200, 151, 74, 0.3);
  transform: translateY(140%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cookie-consent--visible { transform: translateY(0); opacity: 1; }

.cookie-consent__text { font-size: 13.5px; line-height: 1.6; margin: 0 0 18px; }
.cookie-consent__text a { color: var(--amber-light); text-decoration: underline; }

.cookie-consent__actions { display: flex; gap: 10px; }

.cookie-consent__btn {
  flex: 1;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.cookie-consent__btn--accept {
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  color: var(--white);
}
.cookie-consent__btn--accept:hover { filter: brightness(1.08); }

.cookie-consent__btn--decline {
  background: transparent;
  color: #CFDCD9;
  border-color: rgba(255, 255, 255, 0.2);
}
.cookie-consent__btn--decline:hover { border-color: var(--white); color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; gap: 60px; }
  .hero__scene { height: 460px; }
  .about__grid { grid-template-columns: 1fr; gap: 60px; }
  .coverage__grid { grid-template-columns: 1fr; gap: 50px; }
  .contact__grid { grid-template-columns: 1fr; gap: 50px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(340px, 84vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 60px 44px;
    background: var(--bg-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(110%);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: 90;
  }

  .nav__links--open { transform: translateX(0); }

  .nav__link { font-size: 18px; }

  .nav__toggle { display: flex; z-index: 100; }

  .services__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .process__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 76px 0; }
  .services__grid, .why__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .hero__scene { height: 420px; }
  .orbit--1 { width: 320px; height: 320px; }
  .orbit--2 { width: 390px; height: 390px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .page-content__inner { padding: 34px 26px; }
  .coverage__list { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .hero__trust { gap: 22px; }
}
