@charset "UTF-8";
/* ==========================================================================
   Artham Corporate — Design System
   Palette: White / Navy / Royal Blue / Gold
   ========================================================================== */

:root {
  /* Brand */
  --navy-900: #060F24;
  --navy-800: #0A1B3D;
  --navy-700: #102A5C;
  --navy-600: #17397A;
  --royal-700: #123CA6;
  --royal-600: #1A4FD6;
  --royal-500: #2E63E8;
  --royal-100: #DCE7FF;
  --royal-50:  #EFF4FF;
  --gold-600:  #A6842C;
  --gold-500:  #C8A94B;
  --gold-400:  #DBC079;
  --gold-100:  #F6EED8;

  /* Neutrals */
  --white: #FFFFFF;
  --tint:  #F5F8FC;
  --tint-2:#EDF2F9;
  --line:  #E2E9F3;
  --line-strong: #CBD6E6;
  --slate: #5B6C88;
  --ink:   #16233D;

  /* Type */
  --font-head: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --fs-eyebrow: 0.75rem;
  --fs-sm:  0.875rem;
  --fs-base:1rem;
  --fs-lg:  1.0625rem;
  --fs-xl:  clamp(1.125rem, 0.4vw + 1rem, 1.25rem);
  --fs-h4:  clamp(1.125rem, 0.5vw + 1rem, 1.3125rem);
  --fs-h3:  clamp(1.3125rem, 0.9vw + 1.05rem, 1.625rem);
  --fs-h2:  clamp(1.625rem, 1.8vw + 1.1rem, 2.375rem);
  --fs-h1:  clamp(2rem, 3vw + 1.2rem, 3.25rem);
  --fs-display: clamp(2.25rem, 4vw + 1.1rem, 3.9rem);

  /* Space */
  --sp-1: .25rem; --sp-2: .5rem;  --sp-3: .75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem;   --sp-7: 2.5rem; --sp-8: 3rem;
  --sp-9: 4rem;   --sp-10: 5rem;  --sp-11: 6.5rem;

  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --r-xs: 3px; --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-pill: 999px;

  --sh-1: 0 1px 2px rgba(10,27,61,.06), 0 1px 3px rgba(10,27,61,.05);
  --sh-2: 0 4px 12px rgba(10,27,61,.07), 0 2px 4px rgba(10,27,61,.04);
  --sh-3: 0 14px 40px rgba(10,27,61,.10), 0 4px 10px rgba(10,27,61,.05);
  --sh-4: 0 28px 70px rgba(6,15,36,.18);

  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%; scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  /* The off-canvas mobile nav parks off-screen; clip stops it creating a
     phantom horizontal scrollbar without making html a scroll container. */
  overflow-x: clip;
}
body {
  margin: 0; background: var(--white); color: var(--ink);
  font-family: var(--font-body); font-size: var(--fs-base); line-height: 1.65;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); color: var(--navy-800); font-weight: 600; line-height: 1.18; letter-spacing: -.015em; margin: 0 0 var(--sp-4); text-wrap: balance; }
h1 { font-size: var(--fs-h1); } h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); } h4 { font-size: var(--fs-h4); }
p { margin: 0 0 var(--sp-4); }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }
a { color: var(--royal-600); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--royal-700); }
ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.35em; }
li { margin-bottom: .4em; }
strong { font-weight: 600; color: var(--navy-800); }
blockquote { margin: var(--sp-5) 0; padding: var(--sp-5) var(--sp-6); background: var(--royal-50); border-left: 3px solid var(--gold-500); border-radius: 0 var(--r-sm) var(--r-sm) 0; color: var(--navy-700); }
blockquote p:last-child { margin-bottom: 0; }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--sp-8) 0; }
table { width: 100%; border-collapse: collapse; margin: var(--sp-5) 0; font-size: var(--fs-sm); }
th, td { text-align: left; padding: .8rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--tint); font-weight: 600; color: var(--navy-800); font-size: var(--fs-sm); letter-spacing: .01em; }
tbody tr:hover { background: var(--tint); }
:focus-visible { outline: 3px solid var(--royal-500); outline-offset: 2px; border-radius: var(--r-xs); }
::selection { background: var(--navy-800); color: #fff; }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--navy-800); color: #fff; padding: .8rem 1.2rem; }
.skip-link:focus { left: 8px; top: 8px; color: #fff; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }

/* ---------- Layout ---------- */
[hidden] { display: none !important; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
/* The header carries brand + eight nav items + cart + CTA, so it gets more
   room than the reading-width body container. */
.header-main > .container, .topbar > .container { max-width: 1420px; }
.container--narrow { max-width: 820px; }
.container--mid { max-width: 1020px; }
.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.section--tint { background: var(--tint); }
.section--navy { background: var(--navy-800); color: #C9D6EC; }
.section--navy h1,.section--navy h2,.section--navy h3,.section--navy h4 { color: #fff; }
.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Typographic helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-size: var(--fs-eyebrow); font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold-600);
  margin-bottom: var(--sp-4);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold-500); flex: none; }
.section--navy .eyebrow { color: var(--gold-400); }
.section--navy .eyebrow::before { background: var(--gold-400); }
.lead { font-size: var(--fs-xl); line-height: 1.6; color: var(--slate); }
.section--navy .lead { color: #B4C4DE; }
.section-head { max-width: 760px; margin-bottom: var(--sp-8); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.text-gold { color: var(--gold-500); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-size: .9375rem; font-weight: 600; letter-spacing: .01em;
  padding: .85rem 1.6rem; border-radius: var(--r-sm); border: 1px solid transparent;
  cursor: pointer; text-align: center; transition: all .2s var(--ease); line-height: 1.2;
}
.btn svg { width: 16px; height: 16px; flex: none; transition: transform .2s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary { background: var(--royal-600); color: #fff; box-shadow: 0 4px 14px rgba(26,79,214,.28); }
.btn--primary:hover { background: var(--royal-700); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 22px rgba(26,79,214,.34); }
.btn--gold { background: var(--gold-500); color: var(--navy-900); box-shadow: 0 4px 14px rgba(200,169,75,.3); }
.btn--gold:hover { background: var(--gold-400); color: var(--navy-900); transform: translateY(-1px); }
.btn--navy { background: var(--navy-800); color: #fff; }
.btn--navy:hover { background: var(--navy-700); color: #fff; }
.btn--ghost { background: transparent; color: var(--navy-800); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--navy-800); background: var(--navy-800); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost-light:hover { background: #fff; color: var(--navy-800); border-color: #fff; }
.btn--sm { padding: .6rem 1.1rem; font-size: .875rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.link-arrow { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: .9375rem; }
.link-arrow svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 200; background: #fff; border-bottom: 1px solid var(--line); transition: box-shadow .25s var(--ease); }
.site-header.is-stuck { box-shadow: var(--sh-2); }
.topbar { background: var(--navy-800); color: #A9BCD9; font-size: .8125rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); min-height: 40px; }
.topbar a { color: #C9D6EC; }
.topbar a:hover { color: var(--gold-400); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: var(--sp-5); flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar-item svg { width: 14px; height: 14px; opacity: .8; }
@media (max-width: 860px) { .topbar-left .topbar-item:not(:first-child), .topbar-right { display: none; } }

.header-main .container { display: flex; align-items: center; gap: var(--sp-5); min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: .7rem; flex: 0 1 auto; min-width: 0; }
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-head); font-size: 1.32rem; font-weight: 600; color: var(--navy-800); letter-spacing: -.02em; }
.brand__tag { font-size: .625rem; letter-spacing: .17em; text-transform: uppercase; color: var(--gold-600); font-weight: 600; }
.brand img.custom-logo { max-height: 48px; width: auto; }

.nav-primary { margin-left: auto; min-width: 0; }
.nav-primary ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: .1rem; }
.nav-primary li { margin: 0; position: relative; }
.nav-primary > ul > li > a {
  display: block; padding: .65rem .7rem; font-size: .9375rem; font-weight: 500; color: var(--ink);
  border-radius: var(--r-sm); white-space: nowrap;
}
/* Between the mobile breakpoint and a comfortable desktop the eight top-level
   items, the brand and the CTA compete for the same 1160px. Tighten rather
   than let the header overflow. */
@media (min-width: 1101px) and (max-width: 1520px) {
  .nav-primary > ul > li > a { padding: .6rem .5rem; font-size: .875rem; }
  .header-actions .btn { padding: .78rem 1.05rem; font-size: .875rem; }
  .brand__mark { width: 36px; height: 36px; }
  .brand__name { font-size: 1.18rem; }
  .header-main .container { gap: var(--sp-3); }
}
.nav-primary > ul > li > a:hover { color: var(--royal-600); background: var(--royal-50); }
.nav-primary > ul > li.current-menu-item > a,
.nav-primary > ul > li.current_page_item > a,
.nav-primary > ul > li.current-menu-ancestor > a { color: var(--royal-600); }
.nav-primary > ul > li.menu-item-has-children > a::after {
  content: ""; display: inline-block; width: 7px; height: 7px; margin-left: .45rem; vertical-align: 1px;
  border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor; transform: rotate(45deg) translateY(-2px);
  opacity: .55;
}
.nav-primary .sub-menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 264px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-3);
  padding: .5rem; flex-direction: column; align-items: stretch; gap: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s var(--ease);
  border-top: 2px solid var(--gold-500);
}
.nav-primary li:hover > .sub-menu, .nav-primary li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-primary .sub-menu a { display: block; padding: .6rem .8rem; font-size: .9rem; color: var(--ink); border-radius: var(--r-sm); }
.nav-primary .sub-menu a:hover { background: var(--royal-50); color: var(--royal-600); }
.nav-primary .sub-menu .sub-menu { top: -.5rem; left: 100%; }
.header-actions { display: flex; align-items: center; gap: var(--sp-3); flex: none; }
.header-cart { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: var(--r-sm); color: var(--navy-800); border: 1px solid var(--line); }
.header-cart:hover { border-color: var(--royal-600); color: var(--royal-600); }
.header-cart svg { width: 19px; height: 19px; }
.header-cart__count { position: absolute; top: -6px; right: -6px; min-width: 19px; height: 19px; padding: 0 5px; border-radius: var(--r-pill); background: var(--gold-500); color: var(--navy-900); font-size: .6875rem; font-weight: 700; display: grid; place-items: center; }
.nav-toggle { display: none; width: 44px; height: 44px; flex: none; border: 1px solid var(--line); background: #fff; border-radius: var(--r-sm); cursor: pointer; position: relative; }
.nav-toggle span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--navy-800); transition: all .25s var(--ease); }
.nav-toggle span:nth-child(1) { top: 15px; } .nav-toggle span:nth-child(2) { top: 21px; } .nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1100px) {
  .nav-toggle { display: block; margin-left: auto; order: 3; }
  .header-actions { order: 2; }
  .header-actions .btn { display: none; }
  .header-main .container { gap: var(--sp-3); }
  .nav-primary {
    position: fixed; inset: calc(var(--header-h) + 40px) 0 0 0; background: #fff; margin: 0;
    overflow-y: auto; padding: var(--sp-5) var(--gutter) var(--sp-9); transform: translateX(100%);
    transition: transform .3s var(--ease), visibility .3s var(--ease);
    border-top: 1px solid var(--line); visibility: hidden;
  }
  body.nav-open .nav-primary { transform: translateX(0); visibility: visible; }
  body.nav-open { overflow: hidden; }
  .nav-primary ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-primary > ul > li { border-bottom: 1px solid var(--line); }
  .nav-primary > ul > li > a { padding: .95rem .25rem; font-size: 1.0625rem; border-radius: 0; }
  .nav-primary .sub-menu {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; border-left: 2px solid var(--royal-100); border-radius: 0; padding: 0 0 .6rem .9rem; margin-bottom: .5rem;
    display: none;
  }
  .nav-primary li.is-open > .sub-menu { display: block; }
  .nav-mobile-cta { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-6); }
}
@media (min-width: 1101px) { .nav-mobile-cta { display: none; } }

/* Small phones: the brand lockup, cart and hamburger must all fit inside
   390px with the gutter intact. */
@media (max-width: 520px) {
  .brand__mark { width: 34px; height: 34px; }
  .brand__name { font-size: 1.08rem; }
  .brand__tag { display: none; }
  .brand { gap: .55rem; }
  .header-cart { width: 40px; height: 40px; }
  :root { --header-h: 66px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 82% 8%, rgba(26,79,214,.55) 0%, rgba(26,79,214,0) 58%),
    radial-gradient(90% 80% at 8% 92%, rgba(200,169,75,.20) 0%, rgba(200,169,75,0) 55%),
    linear-gradient(160deg, #0A1B3D 0%, #060F24 62%, #0A1B3D 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(80% 70% at 60% 40%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(80% 70% at 60% 40%, #000 0%, transparent 78%);
}
.hero__inner { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; padding-block: clamp(3.5rem, 8vw, 7rem); }
.hero__title { font-size: var(--fs-display); color: #fff; margin-bottom: var(--sp-5); letter-spacing: -.025em; }
.hero__title em { font-style: normal; color: var(--gold-400); }
.hero__sub { font-size: clamp(1.0625rem,.6vw + .95rem,1.1875rem); color: #B7C6E0; max-width: 56ch; margin-bottom: var(--sp-6); }
.hero__trust { display: flex; align-items: center; gap: .5rem; margin-top: var(--sp-5); font-size: .875rem; color: #91A5C6; }
.hero__trust svg { width: 16px; height: 16px; color: var(--gold-400); flex: none; }
.hero__art { position: relative; }
@media (max-width: 900px) { .hero__inner { grid-template-columns: 1fr; } .hero__art { display: none; } }

.hero-card {
  background: rgba(255,255,255,.055); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.13); border-radius: var(--r-lg); padding: var(--sp-6);
  box-shadow: var(--sh-4);
}
.hero-card__label { font-size: .6875rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-400); font-weight: 600; margin-bottom: var(--sp-4); }
.hero-card__list { list-style: none; margin: 0; padding: 0; }
.hero-card__list li { display: flex; gap: .75rem; padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.09); margin: 0; font-size: .9375rem; color: #D3DEEF; align-items: flex-start; }
.hero-card__list li:last-child { border-bottom: 0; }
.hero-card__list svg { width: 18px; height: 18px; color: var(--gold-400); flex: none; margin-top: 2px; }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; background: var(--navy-800); color: #fff; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(100% 120% at 88% 0%, rgba(26,79,214,.5), transparent 60%), linear-gradient(150deg,#0A1B3D,#060F24);
}
.page-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-500) 0%, var(--gold-500) 22%, rgba(200,169,75,0) 22%);
}
.page-hero .container { position: relative; padding-block: clamp(2.75rem, 5.5vw, 4.75rem); }
.page-hero h1 { color: #fff; margin-bottom: var(--sp-4); max-width: 20ch; }
.page-hero__sub { font-size: var(--fs-xl); color: #B7C6E0; max-width: 62ch; margin: 0; }
.breadcrumbs { font-size: .8125rem; color: #8FA4C6; margin-bottom: var(--sp-4); }
.breadcrumbs a { color: #B7C6E0; }
.breadcrumbs a:hover { color: var(--gold-400); }
.breadcrumbs .sep { margin: 0 .5rem; opacity: .5; }

/* ---------- Stats ---------- */
.stats { border-top: 1px solid rgba(255,255,255,.1); }
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat { padding: var(--sp-6) var(--sp-5); border-right: 1px solid rgba(255,255,255,.1); }
.stat:last-child { border-right: 0; }
.stat__value { font-family: var(--font-head); font-size: clamp(1.9rem,2.4vw + 1rem,2.9rem); font-weight: 600; color: #fff; line-height: 1; letter-spacing: -.02em; }
.stat__value .suffix { color: var(--gold-400); }
.stat__label { font-size: .8125rem; letter-spacing: .09em; text-transform: uppercase; color: #8FA4C6; margin-top: .6rem; font-weight: 500; }
.stats--light .stat { border-color: var(--line); }
.stats--light .stat__value { color: var(--navy-800); }
.stats--light .stat__label { color: var(--slate); }
@media (max-width: 780px) {
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .stats--light .stat:nth-child(-n+2) { border-bottom-color: var(--line); }
}

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-6);
  transition: all .25s var(--ease); position: relative; display: flex; flex-direction: column; height: 100%;
}
.card:hover { border-color: var(--royal-100); box-shadow: var(--sh-3); transform: translateY(-3px); }
.card__icon {
  width: 46px; height: 46px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: var(--royal-50); color: var(--royal-600); margin-bottom: var(--sp-5); flex: none;
  transition: all .25s var(--ease);
}
.card__icon svg { width: 23px; height: 23px; }
.card:hover .card__icon { background: var(--navy-800); color: var(--gold-400); }
.card h3 { font-size: var(--fs-h4); margin-bottom: .6rem; }
.card p { color: var(--slate); font-size: .9375rem; margin-bottom: var(--sp-4); }
.card__foot { margin-top: auto; padding-top: var(--sp-3); }
.card--flat:hover { transform: none; }
.card--tint { background: var(--tint); border-color: transparent; }

.service-card { position: relative; overflow: hidden; }
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--royal-600), var(--gold-500)); transform: scaleY(0); transform-origin: top;
  transition: transform .3s var(--ease);
}
.service-card:hover::before { transform: scaleY(1); }
.service-card__cat { font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-600); font-weight: 600; margin-bottom: .75rem; }
.service-card__price { font-family: var(--font-head); font-size: 1.15rem; color: var(--navy-800); font-weight: 600; }
.service-card__price small { display: block; font-family: var(--font-body); font-size: .75rem; color: var(--slate); font-weight: 400; letter-spacing: .02em; }

/* Numbered feature list */
.numbered { counter-reset: n; }
.numbered__item { display: grid; grid-template-columns: 56px 1fr; gap: var(--sp-4); padding: var(--sp-5) 0; border-bottom: 1px solid var(--line); }
.numbered__item:last-child { border-bottom: 0; }
.numbered__item::before {
  counter-increment: n; content: counter(n,decimal-leading-zero);
  font-family: var(--font-head); font-size: 1.4rem; color: var(--gold-500); font-weight: 600; line-height: 1.2;
}
.numbered__item h3 { font-size: var(--fs-h4); margin-bottom: .4rem; }
.numbered__item p { color: var(--slate); margin: 0; font-size: .9375rem; }

/* Process timeline */
.process { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-5); position: relative; }
.process::before { content: ""; position: absolute; top: 22px; left: 8%; right: 8%; height: 1px; background: var(--line-strong); z-index: 0; }
.section--navy .process::before { background: rgba(255,255,255,.15); }
.process__step { position: relative; z-index: 1; text-align: center; }
.process__num {
  width: 46px; height: 46px; margin: 0 auto var(--sp-4); border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line-strong); font-family: var(--font-head); font-weight: 600; color: var(--navy-800);
}
.section--navy .process__num { background: var(--navy-700); border-color: rgba(255,255,255,.2); color: var(--gold-400); }
.process__step h3 { font-size: 1.0625rem; margin-bottom: .5rem; }
.process__step p { font-size: .875rem; color: var(--slate); margin: 0; }
.section--navy .process__step p { color: #A9BCD9; }
@media (max-width: 860px) { .process { grid-template-columns: repeat(2,1fr); } .process::before { display: none; } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }

/* Industry tiles */
.industry {
  display: flex; gap: var(--sp-4); padding: var(--sp-5); background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); transition: all .25s var(--ease); height: 100%;
}
.industry:hover { border-color: var(--royal-100); box-shadow: var(--sh-2); }
.industry__icon { width: 40px; height: 40px; flex: none; border-radius: var(--r-sm); background: var(--navy-800); color: var(--gold-400); display: grid; place-items: center; }
.industry__icon svg { width: 20px; height: 20px; }
.industry h3 { font-size: 1.0625rem; margin-bottom: .35rem; }
.industry p { font-size: .875rem; color: var(--slate); margin: 0; }

/* CTA band */
.cta-band { position: relative; background: var(--navy-800); color: #fff; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 140% at 15% 50%, rgba(26,79,214,.5), transparent 62%); }
.cta-band .container { position: relative; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6); padding-block: clamp(2.5rem,4.5vw,3.75rem); flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: .6rem; max-width: 22ch; }
.cta-band p { color: #B7C6E0; margin: 0; max-width: 58ch; }
.cta-band__actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* Testimonials */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-6); height: 100%; display: flex; flex-direction: column; }
.quote-card__mark { font-family: var(--font-head); font-size: 3rem; line-height: .8; color: var(--gold-500); margin-bottom: var(--sp-3); }
.quote-card blockquote { background: none; border: 0; padding: 0; margin: 0 0 var(--sp-5); color: var(--ink); font-size: 1rem; line-height: 1.7; }
.quote-card__author { margin-top: auto; padding-top: var(--sp-4); border-top: 1px solid var(--line); }
.quote-card__name { font-weight: 600; color: var(--navy-800); font-size: .9375rem; }
.quote-card__role { font-size: .8125rem; color: var(--slate); }
.placeholder-flag { display: inline-block; font-size: .6875rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #8A6D00; background: var(--gold-100); border: 1px solid var(--gold-400); padding: .18rem .5rem; border-radius: var(--r-xs); margin-bottom: .75rem; }

/* Insight cards */
.post-card { display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: all .25s var(--ease); }
.post-card:hover { box-shadow: var(--sh-3); transform: translateY(-3px); border-color: var(--royal-100); }
.post-card__thumb { aspect-ratio: 16/9; background: var(--navy-800); position: relative; overflow: hidden; }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: var(--sp-5); display: flex; flex-direction: column; flex: 1; }
.post-card__meta { display: flex; align-items: center; gap: .6rem; font-size: .75rem; color: var(--slate); margin-bottom: .75rem; letter-spacing: .02em; }
.post-card__cat { color: var(--gold-600); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: .6875rem; }
.post-card h3 { font-size: 1.125rem; line-height: 1.35; margin-bottom: .55rem; }
.post-card h3 a { color: inherit; }
.post-card h3 a:hover { color: var(--royal-600); }
.post-card p { font-size: .875rem; color: var(--slate); margin-bottom: var(--sp-4); }
.post-card__foot { margin-top: auto; }

/* Accordion */
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__btn {
  width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: var(--sp-4);
  background: none; border: 0; padding: 1.25rem 0; text-align: left; cursor: pointer;
  font-family: var(--font-head); font-size: 1.0625rem; font-weight: 600; color: var(--navy-800); line-height: 1.4;
}
.accordion__btn:hover { color: var(--royal-600); }
.accordion__icon { width: 22px; height: 22px; flex: none; position: relative; margin-top: 3px; }
.accordion__icon::before, .accordion__icon::after { content: ""; position: absolute; background: var(--gold-600); border-radius: 2px; transition: transform .25s var(--ease); }
.accordion__icon::before { top: 10px; left: 3px; right: 3px; height: 2px; }
.accordion__icon::after { left: 10px; top: 3px; bottom: 3px; width: 2px; }
.accordion__btn[aria-expanded="true"] .accordion__icon::after { transform: rotate(90deg); opacity: 0; }
.accordion__panel { display: none; padding: 0 0 1.35rem; color: var(--slate); max-width: 78ch; }
.accordion__panel.is-open { display: block; }
.accordion__panel p:last-child { margin-bottom: 0; }

/* Tabs */
.tabs__nav { display: flex; gap: .25rem; border-bottom: 1px solid var(--line); overflow-x: auto; scrollbar-width: none; }
.tabs__nav::-webkit-scrollbar { display: none; }
.tabs__tab {
  background: none; border: 0; border-bottom: 2px solid transparent; padding: .85rem 1.1rem; cursor: pointer;
  font-family: var(--font-body); font-size: .9375rem; font-weight: 600; color: var(--slate); white-space: nowrap;
  transition: all .2s var(--ease);
}
.tabs__tab:hover { color: var(--navy-800); }
.tabs__tab[aria-selected="true"] { color: var(--navy-800); border-bottom-color: var(--gold-500); }
.tabs__panel { display: none; padding-top: var(--sp-6); }
.tabs__panel.is-active { display: block; }

/* Check list */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { display: flex; gap: .75rem; margin-bottom: .8rem; align-items: flex-start; font-size: .9375rem; }
.checklist li::before {
  content: ""; width: 20px; height: 20px; flex: none; border-radius: 50%; margin-top: 2px;
  background: var(--royal-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A4FD6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.checklist--gold li::before { background-color: var(--gold-100); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A6842C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }
.section--navy .checklist li { color: #C9D6EC; }

/* Pills / filters */
.pillbar { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill {
  display: inline-flex; align-items: center; gap: .4rem; padding: .5rem 1rem; border-radius: var(--r-pill);
  border: 1px solid var(--line-strong); background: #fff; color: var(--slate); font-size: .875rem; font-weight: 500;
  cursor: pointer; transition: all .2s var(--ease);
}
.pill:hover { border-color: var(--royal-600); color: var(--royal-600); }
.pill.is-active { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.pill__count { font-size: .75rem; opacity: .7; }

/* Forms */
.field { margin-bottom: var(--sp-4); }
.field label { display: block; font-size: .8125rem; font-weight: 600; color: var(--navy-800); margin-bottom: .4rem; letter-spacing: .01em; }
.field .req { color: #C0392B; }
.field input[type=text], .field input[type=email], .field input[type=tel], .field input[type=url],
.field input[type=date], .field input[type=number], .field select, .field textarea,
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select {
  width: 100%; padding: .78rem .9rem; border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: .9375rem; color: var(--ink); background: #fff;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--royal-600); box-shadow: 0 0 0 3px var(--royal-50); }
.field__hint { font-size: .75rem; color: var(--slate); margin-top: .35rem; }
.field--check { display: flex; gap: .6rem; align-items: flex-start; }
.field--check input { margin-top: .25rem; flex: none; }
.field--check label { font-weight: 400; font-size: .8125rem; color: var(--slate); margin: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--sp-4); }
.form-grid .field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-note { font-size: .75rem; color: var(--slate); margin-top: var(--sp-4); }
.form-msg { padding: .9rem 1.1rem; border-radius: var(--r-sm); font-size: .9rem; margin-bottom: var(--sp-4); display: none; }
.form-msg.is-visible { display: block; }
.form-msg--ok { background: #E9F7EF; border: 1px solid #A9DFC0; color: #1D6B41; }
.form-msg--err { background: #FDEDEC; border: 1px solid #F5B7B1; color: #922B21; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem,3vw,2.5rem); box-shadow: var(--sh-2); }

/* Newsletter */
.newsletter { display: flex; gap: .5rem; flex-wrap: wrap; }
.newsletter input[type=email] { flex: 1 1 220px; padding: .8rem .95rem; border-radius: var(--r-sm); border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.07); color: #fff; font-size: .9375rem; font-family: var(--font-body); }
.newsletter input::placeholder { color: #7E93B5; }
.newsletter input:focus { outline: 0; border-color: var(--gold-500); background: rgba(255,255,255,.12); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #93A7C6; font-size: .9rem; }
.footer-top { padding-block: clamp(3rem,5vw,4.5rem); border-bottom: 1px solid rgba(255,255,255,.09); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: var(--sp-7); }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-title { font-family: var(--font-body); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; font-weight: 600; margin-bottom: var(--sp-5); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .65rem; }
.site-footer a { color: #93A7C6; }
.site-footer a:hover { color: var(--gold-400); }
.footer-brand .brand__name { color: #fff; }
.footer-about { margin: var(--sp-4) 0 var(--sp-5); max-width: 42ch; line-height: 1.7; }
.footer-contact li { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .9rem; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold-500); flex: none; margin-top: 3px; }
.socials { display: flex; gap: .5rem; margin-top: var(--sp-5); }
.socials a { width: 36px; height: 36px; border-radius: var(--r-sm); border: 1px solid rgba(255,255,255,.15); display: grid; place-items: center; color: #93A7C6; }
.socials a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-900); }
.socials svg { width: 17px; height: 17px; }
.footer-bottom { padding-block: var(--sp-5); font-size: .8125rem; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: var(--sp-4); flex-wrap: wrap; align-items: center; }
.footer-legal { display: flex; flex-wrap: wrap; gap: .35rem 1.1rem; }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,.07); padding-block: var(--sp-4); font-size: .75rem; color: #6E82A3; line-height: 1.6; }

/* WhatsApp float */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 180; width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .2s var(--ease);
}
.wa-float:hover { transform: scale(1.07); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }
.wa-float__pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: wa-pulse 2.4s infinite; }
@keyframes wa-pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.55); opacity: 0; } }
@media (max-width: 640px) { .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; } }

/* ---------- Content (prose) ---------- */
.prose { max-width: 78ch; }
.prose h2 { margin-top: var(--sp-8); padding-top: var(--sp-2); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: var(--sp-6); font-size: var(--fs-h4); }
.prose ul li, .prose ol li { margin-bottom: .55em; }
.prose > ul, .prose > ol { margin-bottom: var(--sp-5); }
.prose a { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: var(--royal-100); }
.prose a:hover { text-decoration-color: var(--royal-600); }
.prose img { border-radius: var(--r-md); margin: var(--sp-6) 0; }
.legal-toc { background: var(--tint); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-5); margin-bottom: var(--sp-7); }
.legal-toc h2 { font-size: 1rem; margin: 0 0 var(--sp-3); }
.legal-toc ol { margin: 0; padding-left: 1.3em; columns: 2; column-gap: var(--sp-6); font-size: .875rem; }
@media (max-width: 640px) { .legal-toc ol { columns: 1; } }
.doc-meta { font-size: .8125rem; color: var(--slate); padding: var(--sp-3) var(--sp-4); background: var(--tint); border-left: 3px solid var(--gold-500); border-radius: 0 var(--r-sm) var(--r-sm) 0; margin-bottom: var(--sp-6); }
.verify-flag { background: var(--gold-100); border-bottom: 1px dashed var(--gold-600); color: #6B5410; padding: 0 .25rem; border-radius: 2px; font-size: .95em; }

/* Sidebar layout */
.with-aside { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: clamp(2rem,4vw,4rem); align-items: start; }
@media (max-width: 980px) { .with-aside { grid-template-columns: 1fr; } }
.aside-card { background: var(--tint); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-5); margin-bottom: var(--sp-5); position: sticky; top: calc(var(--header-h) + 20px); }
.aside-card h3 { font-size: 1rem; margin-bottom: var(--sp-4); }
.aside-card ul { list-style: none; padding: 0; margin: 0; font-size: .9rem; }
.aside-card li { padding: .5rem 0; border-bottom: 1px solid var(--line); }
.aside-card li:last-child { border: 0; }

/* ---------- WooCommerce ---------- */
.woocommerce .woocommerce-message, .woocommerce .woocommerce-info, .woocommerce .woocommerce-error {
  border-top: 0; border-left: 3px solid var(--royal-600); background: var(--royal-50); border-radius: var(--r-sm);
  padding: 1rem 1.25rem; color: var(--navy-800); font-size: .9375rem; list-style: none;
}
.woocommerce .woocommerce-error { border-left-color: #C0392B; background: #FDEDEC; color: #922B21; }
.woocommerce .woocommerce-message::before, .woocommerce .woocommerce-info::before, .woocommerce .woocommerce-error::before { display: none; }

.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); flex-wrap: wrap; padding-bottom: var(--sp-5); border-bottom: 1px solid var(--line); margin-bottom: var(--sp-6); }
.shop-search { position: relative; flex: 0 1 320px; }
.shop-search input { width: 100%; padding: .7rem 2.4rem .7rem .95rem; border: 1px solid var(--line-strong); border-radius: var(--r-sm); font-size: .9rem; font-family: var(--font-body); }
.shop-search input:focus { outline: 0; border-color: var(--royal-600); box-shadow: 0 0 0 3px var(--royal-50); }
.shop-search button { position: absolute; right: 4px; top: 4px; bottom: 4px; width: 34px; border: 0; background: none; cursor: pointer; color: var(--slate); display: grid; place-items: center; }
.shop-search svg { width: 17px; height: 17px; }

/* ---- WooCommerce catalogue grid ----------------------------------------
   WooCommerce ships its own float-based grid in woocommerce-layout.css, keyed
   on the `woocommerce` class it adds to <body>. Two of its rules break a CSS
   grid and must be neutralised explicitly:

   1. `li.product { width: 30.75%; float: left; margin-right: 3.8% }` — that
      percentage resolves against the grid *track*, so each card renders at
      roughly a third of its own cell.
   2. `ul.products::before/::after { content:" "; display:table }` — a clearfix
      that becomes two phantom grid items, blowing holes in the layout.

   Load order between the theme and plugin stylesheets is not guaranteed, so
   these carry !important deliberately. */
ul.products,
.woocommerce ul.products,
.woocommerce-page ul.products {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: var(--sp-5) !important;
}
.woocommerce ul.products::before, .woocommerce ul.products::after,
.woocommerce-page ul.products::before, .woocommerce-page ul.products::after,
ul.products::before, ul.products::after {
  content: none !important;
  display: none !important;
}
ul.products li.product,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce ul.products[class*="columns-"] li.product,
.woocommerce-page ul.products[class*="columns-"] li.product {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  clear: none !important;
}
@media (max-width: 980px) {
  ul.products, .woocommerce ul.products, .woocommerce-page ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 620px) {
  ul.products, .woocommerce ul.products, .woocommerce-page ul.products {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

.product-tile {
  display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden; transition: all .25s var(--ease);
}
.product-tile:hover { box-shadow: var(--sh-3); transform: translateY(-3px); border-color: var(--royal-100); }
.product-tile__media { position: relative; aspect-ratio: 16/10; background: var(--navy-800); overflow: hidden; }
.product-tile__media img { width: 100%; height: 100%; object-fit: cover; }
.product-tile__badge { position: absolute; top: 12px; left: 12px; background: var(--gold-500); color: var(--navy-900); font-size: .6875rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .28rem .6rem; border-radius: var(--r-xs); }
.product-tile__body { padding: var(--sp-5); display: flex; flex-direction: column; flex: 1; }
.product-tile__cat { font-size: .6875rem; letter-spacing: .11em; text-transform: uppercase; color: var(--gold-600); font-weight: 600; margin-bottom: .55rem; }
.product-tile h3, .product-tile .woocommerce-loop-product__title { font-family: var(--font-head); font-size: 1.15rem; line-height: 1.3; margin-bottom: .5rem; color: var(--navy-800); }
.product-tile h3 a { color: inherit; }
.product-tile h3 a:hover { color: var(--royal-600); }
.product-tile__excerpt { font-size: .875rem; color: var(--slate); margin-bottom: var(--sp-4); }
.product-tile__meta { display: flex; align-items: baseline; justify-content: space-between; gap: var(--sp-3); padding-top: var(--sp-4); margin-top: auto; border-top: 1px solid var(--line); }
.product-tile__price .amount, .product-tile__price bdi { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--navy-800); }
.product-tile__price .from { display: block; font-size: .6875rem; letter-spacing: .08em; text-transform: uppercase; color: var(--slate); font-family: var(--font-body); font-weight: 500; }
.product-tile__actions { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: var(--sp-4); }
.product-tile__actions .btn { padding: .65rem .8rem; font-size: .8125rem; }
.product-tile__sku { font-size: .6875rem; color: var(--slate); letter-spacing: .05em; }

/* Single product */
.product-hero { background: var(--navy-800); color: #fff; position: relative; overflow: hidden; }
.product-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(100% 130% at 85% 0%, rgba(26,79,214,.55), transparent 62%); }
.product-hero .container { position: relative; padding-block: clamp(2.5rem,5vw,4rem); }
.product-hero__grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(2rem,4vw,3.5rem); align-items: start; }
@media (max-width: 900px) { .product-hero__grid { grid-template-columns: 1fr; } }
.product-hero h1 { color: #fff; margin-bottom: var(--sp-3); }
.product-hero__tagline { font-size: var(--fs-xl); color: var(--gold-400); font-family: var(--font-head); margin-bottom: var(--sp-4); }
.product-hero__short { color: #B7C6E0; max-width: 62ch; }
.product-hero__facts {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-5) var(--sp-6); margin-top: var(--sp-5); padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,.12); align-items: start;
}
.product-hero__facts .fact__value { max-width: none; font-size: .9rem; line-height: 1.55; color: #D3DEEF; }
@media (max-width: 560px) { .product-hero__facts { grid-template-columns: 1fr; } }
.fact__label { font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase; color: #8FA4C6; margin-bottom: .25rem; }
.fact__value { font-size: .9375rem; color: #fff; font-weight: 500; }

.buy-card { background: #fff; border-radius: var(--r-lg); padding: var(--sp-6); box-shadow: var(--sh-4); color: var(--ink); }
.buy-card__price { font-family: var(--font-head); font-size: 2.1rem; font-weight: 600; color: var(--navy-800); line-height: 1; }
.buy-card__price .woocommerce-Price-amount { font-family: inherit; }
.buy-card__from { font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-600); font-weight: 600; margin-bottom: .5rem; }
.buy-card__note { font-size: .8125rem; color: var(--slate); margin: .75rem 0 var(--sp-5); padding-bottom: var(--sp-5); border-bottom: 1px solid var(--line); }
.buy-card .btn { width: 100%; margin-bottom: .6rem; }
.buy-card__trust { list-style: none; padding: var(--sp-5) 0 0; margin: var(--sp-4) 0 0; border-top: 1px solid var(--line); font-size: .8125rem; color: var(--slate); }
.buy-card__trust li { display: flex; gap: .55rem; margin-bottom: .55rem; align-items: flex-start; }
.buy-card__trust svg { width: 15px; height: 15px; color: var(--royal-600); flex: none; margin-top: 3px; }
.buy-card .quantity { display: none; }

.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: var(--sp-5); }
.spec { padding: var(--sp-5); background: var(--tint); border-radius: var(--r-md); border-left: 3px solid var(--gold-500); }
.spec h4 { font-size: 1rem; margin-bottom: .45rem; }
.spec p { font-size: .875rem; color: var(--slate); margin: 0; }

.woocommerce div.product .product_title,
.woocommerce div.product form.cart .button { font-family: var(--font-body); }
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
  background: var(--royal-600); color: #fff; font-family: var(--font-body); font-weight: 600; font-size: .9375rem;
  border-radius: var(--r-sm); padding: .85rem 1.6rem; line-height: 1.2; transition: all .2s var(--ease); border: 0;
}
.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover,
.woocommerce input.button:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover { background: var(--royal-700); color: #fff; }
.woocommerce a.button.wc-forward, .woocommerce .cart-collaterals a.checkout-button { background: var(--gold-500); color: var(--navy-900); }
.woocommerce a.button.wc-forward:hover, .woocommerce .cart-collaterals a.checkout-button:hover { background: var(--gold-400); color: var(--navy-900); }

.woocommerce table.shop_table { border: 1px solid var(--line); border-radius: var(--r-md); border-collapse: separate; border-spacing: 0; overflow: hidden; }
.woocommerce table.shop_table th { background: var(--tint); font-family: var(--font-body); }
.woocommerce-cart .cart-collaterals .cart_totals, .woocommerce-checkout #order_review, .woocommerce-checkout .woocommerce-checkout-review-order {
  background: var(--tint); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-5);
}
.woocommerce-checkout #customer_details .col-1, .woocommerce-checkout #customer_details .col-2 { float: none; width: 100%; }
.woocommerce .quantity input.qty { padding: .6rem .4rem; border: 1px solid var(--line-strong); border-radius: var(--r-sm); }
.woocommerce nav.woocommerce-pagination ul { border: 0; gap: .35rem; display: flex; justify-content: center; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
  border: 1px solid var(--line); border-radius: var(--r-sm); min-width: 40px; padding: .55rem .7rem; color: var(--navy-800); font-size: .9rem;
}
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; margin: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation li { border-bottom: 1px solid var(--line); }
.woocommerce-account .woocommerce-MyAccount-navigation li a { display: block; padding: .8rem .2rem; color: var(--ink); font-size: .9375rem; }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a { color: var(--royal-600); font-weight: 600; }

/* ---------- Motion ---------- */
[data-anim] { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-anim].is-in { opacity: 1; transform: none; }
[data-anim-delay="1"] { transition-delay: .07s; } [data-anim-delay="2"] { transition-delay: .14s; }
[data-anim-delay="3"] { transition-delay: .21s; } [data-anim-delay="4"] { transition-delay: .28s; }
[data-anim-delay="5"] { transition-delay: .35s; } [data-anim-delay="6"] { transition-delay: .42s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-anim] { opacity: 1; transform: none; }
}

/* ---------- Utilities ---------- */
.u-center { text-align: center; }
.u-mt-0 { margin-top: 0; } .u-mb-0 { margin-bottom: 0; }
.u-mt-4 { margin-top: var(--sp-4); } .u-mt-5 { margin-top: var(--sp-5); }
.u-mt-6 { margin-top: var(--sp-6); } .u-mt-7 { margin-top: var(--sp-7); }
.u-mb-5 { margin-bottom: var(--sp-5); } .u-mb-6 { margin-bottom: var(--sp-6); }
.u-hide { display: none !important; }
@media (max-width: 640px) { .u-hide-sm { display: none !important; } }
.divider-gold { width: 52px; height: 3px; background: var(--gold-500); border-radius: 2px; margin-bottom: var(--sp-5); }
.section-head--center .divider-gold { margin-inline: auto; }
.map-embed { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); line-height: 0; }
.map-embed iframe { width: 100%; height: 400px; border: 0; display: block; }
.badge { display: inline-block; font-size: .6875rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .25rem .6rem; border-radius: var(--r-xs); background: var(--royal-50); color: var(--royal-700); }
.badge--gold { background: var(--gold-100); color: var(--gold-600); }
.tag-row { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag { font-size: .75rem; padding: .3rem .7rem; border-radius: var(--r-pill); background: var(--tint-2); color: var(--slate); }
