/* =====================================================================
   Al Saif Advertising — alsaifads.com
   Design system: bright, spacious, technically precise.
   Pale blue and white grounds · Navy headings · Teal as the single
   interactive signature colour.

   Every colour below comes from a token declared in :root.
   Do not hard-code a hex value outside that block.
   ===================================================================== */

:root {

  /* ---------- Brand palette ---------- */
  --color-white:      #FFFFFF;
  --color-off-white:  #F8FAFC;
  --color-powder:     #EAF4FC;
  --color-sky-light:  #CFE7FA;
  --color-sky:        #73B4DE;
  --color-navy:       #123F73;
  --color-charcoal:   #283746;
  --color-teal:       #138F95;   /* brand teal — decorative fills, non-text UI */
  --color-teal-hover: #0F777C;
  --color-teal-deep:  #0D6A6F;   /* added: AA-safe hover for interactive teal */
  --color-teal-light: #DDF4F2;
  --color-border:     #C9DFEC;

  /* ---------- Derived surfaces ---------- */
  --surface-000: var(--color-white);
  --surface-100: var(--color-off-white);
  --surface-200: var(--color-powder);
  --surface-300: var(--color-teal-light);
  --surface-400: var(--color-sky-light);
  --surface-500: var(--color-navy);

  /* ---------- Text ---------- */
  --text-100: var(--color-navy);       /* headings and emphasis */
  --text-200: var(--color-charcoal);   /* body copy */
  --text-300: #5A6B7D;                 /* secondary and meta */
  --text-400: #7D8D9C;                 /* faint and captions */
  --text-inverse: var(--color-white);

  /* ---------- Interactive ---------- */
  /* Interactive teal is one step deeper than the brand teal so that link
     text and white-on-teal buttons clear WCAG AA (4.5:1). #138F95 measures
     3.90:1 on white, which fails for normal-size text. #0F777C is 5.32:1.
     The brand teal is retained above for decorative, non-text use. */
  --accent:        var(--color-teal-hover);
  --accent-bright: var(--color-teal-hover);
  --accent-hover:  var(--color-teal-deep);
  --accent-wash:   var(--color-teal-light);
  --accent-fill:   var(--color-teal);

  /* ---------- Lines ---------- */
  --silver-line:        var(--color-border);
  --silver-line-strong: var(--color-sky);
  --silver-sheen:       rgba(115, 180, 222, 0.16);

  /* ---------- Legacy shell tokens, re-pointed to the light system ---------- */
  --glass-fill:       var(--color-white);
  --glass-fill-hover: var(--color-white);
  --glass-blur: 0px;

  /* ---------- Status ---------- */
  --success: #17845C;
  --warning: #A96A10;
  --danger:  #B3261E;
  --info:    var(--color-navy);

  /* ---------- Type ---------- */
  --font-display: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Source Sans Pro", -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --fs-xs:   0.775rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.0625rem;
  --fs-lg:   clamp(1.15rem, 0.4vw + 1.05rem, 1.3rem);
  --fs-xl:   clamp(1.45rem, 1vw + 1.2rem, 1.85rem);
  --fs-2xl:  clamp(1.8rem, 1.7vw + 1.35rem, 2.5rem);
  --fs-3xl:  clamp(2.15rem, 2.6vw + 1.5rem, 3.3rem);
  --fs-4xl:  clamp(2.5rem, 4.2vw + 1.5rem, 4.4rem);

  /* ---------- Space ---------- */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;

  /* ---------- Shape ---------- */
  --radius-sm: 10px;
  --radius:    14px;
  --radius-lg: 20px;

  --shadow-soft: 0 1px 2px rgba(18, 63, 115, 0.04),
                 0 8px 24px rgba(18, 63, 115, 0.06);
  --shadow-lift: 0 2px 4px rgba(18, 63, 115, 0.05),
                 0 16px 40px rgba(18, 63, 115, 0.11);
  --shadow-teal: 0 2px 6px rgba(19, 143, 149, 0.18),
                 0 10px 26px rgba(19, 143, 149, 0.20);

  --container: 1200px;
  --measure: 68ch;

  --dur: 0.28s;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =====================================================================
   BASE
   ===================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.68;
  color: var(--text-200);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.012em;
  color: var(--text-100);
  margin: 0 0 var(--sp-4);
  text-wrap: balance;
}

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-lg); }
h4 { font-size: var(--fs-md); }

p { margin: 0 0 var(--sp-4); max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--accent-hover); }

strong, b { font-weight: 600; color: var(--text-100); }
small { font-size: var(--fs-sm); }

img, video, iframe, picture, svg { max-width: 100%; }
img, video { height: auto; display: block; }

ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.3rem; }
li { margin-bottom: var(--sp-2); }
li:last-child { margin-bottom: 0; }

hr { border: 0; border-top: 1px solid var(--silver-line); margin: var(--sp-7) 0; }

blockquote {
  margin: var(--sp-5) 0;
  padding: var(--sp-4) var(--sp-5);
  border-left: 3px solid var(--accent);
  background: var(--surface-300);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-200);
}

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

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

.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* =====================================================================
   LAYOUT
   ===================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
}
.container--narrow { max-width: 860px; }

.section { padding-block: clamp(3.5rem, 7vw, var(--sp-9)); }
.section--tight { padding-block: clamp(2.75rem, 5vw, var(--sp-8)); }

/* Alternating grounds: white, powder blue, pale teal */
.section--tint {
  background: var(--surface-200);
  border-block: 1px solid var(--silver-line);
}
.section--deep {
  background: var(--surface-300);
  border-block: 1px solid var(--color-teal-light);
}

.section-head { max-width: 62ch; margin-bottom: var(--sp-7); }
.section-head p { color: var(--text-300); font-size: var(--fs-md); }
.section-head h2 { margin-bottom: var(--sp-4); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-3);
  max-width: none;
}
.eyebrow--center { text-align: center; }

.lede {
  font-size: var(--fs-lg);
  line-height: 1.55;
  color: var(--text-100);
  font-weight: 400;
}

.flow > * + * { margin-top: var(--sp-4); }

.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 285px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 225px), 1fr)); }

.split { display: grid; gap: var(--sp-6); }
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: var(--sp-8); }
  .split--sticky > :first-child { position: sticky; top: 110px; align-self: start; }
}

.page-head { padding-block: clamp(2.75rem, 5.5vw, var(--sp-8)) var(--sp-6); }
.page-head h1 { margin-bottom: var(--sp-4); }
.page-head p { color: var(--text-300); font-size: var(--fs-md); }

.breadcrumbs {
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--text-400);
  margin-bottom: var(--sp-4);
  letter-spacing: 0.03em;
}
.breadcrumbs a { color: var(--text-300); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span[aria-hidden] { color: var(--color-sky); }

/* Utilities */
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: var(--sp-4); }
.text-center { text-align: center; }
.text-muted { color: var(--text-300); }
.text-sm { font-size: var(--fs-sm); }
.text-xs { font-size: var(--fs-xs); }
.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-5 { margin-bottom: var(--sp-5); }
.mb-7 { margin-bottom: var(--sp-7); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -100px; left: var(--sp-4); z-index: 999;
  background: var(--accent); color: var(--color-white);
  padding: var(--sp-3) var(--sp-5);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus { top: 0; color: var(--color-white); }

/* =====================================================================
   HEADER AND NAVIGATION
   ===================================================================== */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.site-header.is-stuck {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--silver-line);
  box-shadow: 0 1px 20px rgba(18, 63, 115, 0.07);
}

.nav {
  display: flex; align-items: center; gap: var(--sp-5);
  min-height: 76px;
}

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { max-height: 46px; width: auto; }
.brand__mark {
  display: flex; flex-direction: column;
  font-family: var(--font-display);
  font-size: 1.06rem; font-weight: 700; line-height: 1.15;
  color: var(--color-navy);
  letter-spacing: -0.01em;
}
.brand__mark span {
  font-family: var(--font-body);
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.19em; text-transform: uppercase;
  color: var(--accent);
  margin-top: 3px;
}

.nav__links {
  display: none;
  list-style: none; margin: 0; padding: 0;
  margin-left: auto;
  gap: var(--sp-1);
}
@media (min-width: 1080px) { .nav__links { display: flex; align-items: center; } }

.nav__item { position: relative; margin: 0; }

.nav__link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 0.55rem 0.85rem;
  border-radius: 100px;
  font-size: 0.925rem; font-weight: 500;
  color: var(--text-200);
  white-space: nowrap;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav__link:hover { color: var(--color-navy); background: var(--surface-200); }
.nav__link[aria-current="page"] { color: var(--accent); font-weight: 600; }
.nav__link .icon { transition: transform var(--dur) var(--ease); color: var(--color-sky); }
.nav__item:hover .nav__link .icon { transform: rotate(180deg); }

.nav__panel {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 330px;
  list-style: none; margin: 0; padding: var(--sp-3);
  background: var(--color-white);
  border: 1px solid var(--silver-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.nav__item:hover .nav__panel,
.nav__item:focus-within .nav__panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__panel li { margin: 0; }
.nav__panel a {
  display: block; padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 600;
  color: var(--color-navy);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav__panel a:hover { background: var(--surface-300); color: var(--accent-hover); }
.nav__panel small {
  display: block; margin-top: 2px;
  font-size: 0.775rem; font-weight: 400; line-height: 1.45;
  color: var(--text-300);
}

.nav__cta { display: none; flex-shrink: 0; }
@media (min-width: 1080px) { .nav__cta { display: inline-flex; } }

.nav__toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-left: auto;
  background: var(--color-white);
  border: 1px solid var(--silver-line);
  border-radius: var(--radius-sm);
  color: var(--color-navy);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav__toggle:hover { border-color: var(--accent); background: var(--surface-300); }
@media (min-width: 1080px) { .nav__toggle { display: none; } }

/* ---------- Mobile drawer ---------- */
.drawer {
  position: fixed; inset: 0 0 0 auto; z-index: 200;
  width: min(400px, 88vw);
  background: var(--color-white);
  border-left: 1px solid var(--silver-line);
  box-shadow: -18px 0 50px rgba(18, 63, 115, 0.14);
  padding: var(--sp-5);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.36s var(--ease);
  overflow-y: auto;
  visibility: hidden;
}
.drawer.is-open { transform: translateX(0); visibility: visible; }

.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--silver-line);
  margin-bottom: var(--sp-4);
}
.drawer nav { display: flex; flex-direction: column; }
.drawer nav a {
  padding: 0.75rem 0;
  font-size: 1.02rem; font-weight: 600;
  color: var(--color-navy);
  border-bottom: 1px solid var(--surface-200);
}
.drawer nav a:hover { color: var(--accent); }
.drawer__sub {
  padding-left: var(--sp-4) !important;
  font-size: 0.9rem !important; font-weight: 400 !important;
  color: var(--text-300) !important;
}
.drawer__sub:hover { color: var(--accent) !important; }
.drawer__foot { margin-top: auto; padding-top: var(--sp-5); }

/* =====================================================================
   BUTTONS
   ===================================================================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.945rem; font-weight: 600;
  line-height: 1.2;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .icon { transition: transform var(--dur) var(--ease); }
.btn:hover .icon--arrow { transform: translateX(4px); }

/* Primary — solid teal, the site signature */
.btn--primary {
  background: var(--accent);
  color: var(--color-white);
  border-color: var(--accent);
  box-shadow: var(--shadow-teal);
}
.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--color-white);
  box-shadow: 0 4px 10px rgba(19, 143, 149, 0.22), 0 14px 34px rgba(19, 143, 149, 0.26);
}

/* Secondary — white with teal outline */
.btn--glass {
  background: var(--color-white);
  color: var(--accent);
  border-color: var(--accent);
}
.btn--glass:hover {
  background: var(--accent-wash);
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* Tertiary — quiet outline */
.btn--ghost {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--silver-line);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--surface-300);
}

.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.865rem; border-radius: 11px; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; }

/* Inline arrow link */
.card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.92rem; font-weight: 600;
  color: var(--accent);
  position: relative;
}
.card-link::after {
  content: ""; position: absolute; left: 0; right: 1.5rem; bottom: -2px;
  height: 1.5px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.card-link:hover { color: var(--accent-hover); }
.card-link:hover::after { transform: scaleX(1); }
.card-link .icon { transition: transform var(--dur) var(--ease); }
.card-link:hover .icon { transform: translateX(4px); }

/* =====================================================================
   CARDS  (.glass is retained as the card shell class)
   ===================================================================== */

.glass {
  background: var(--color-white);
  border: 1px solid var(--silver-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease);
}
.glass-pad { padding: clamp(1.35rem, 2.4vw, 2rem); }

.card {
  display: flex; flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 3px;
  background: var(--accent-fill);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
  z-index: 2;
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lift);
}
.card:hover::before { transform: scaleX(1); }

.card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(140deg, var(--surface-200), var(--surface-400));
  border-bottom: 1px solid var(--silver-line);
}
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card__media img { transform: scale(1.045); }
.card__media--empty {
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--surface-200), var(--surface-300));
  color: var(--color-sky);
}

.card__body {
  padding: clamp(1.25rem, 2.2vw, 1.7rem);
  display: flex; flex-direction: column;
  flex: 1;
}

.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--surface-300);
  color: var(--accent);
  margin-bottom: var(--sp-4);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.card:hover .card__icon { background: var(--accent); color: var(--color-white); }

.card__title { font-size: var(--fs-lg); margin-bottom: var(--sp-3); }
.card__title a { color: var(--text-100); }
.card:hover .card__title a { color: var(--accent); }

.card__text { color: var(--text-300); font-size: var(--fs-sm); margin-bottom: var(--sp-4); max-width: none; }
.card__body .card-link { margin-top: auto; align-self: flex-start; }

.card__meta {
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
  font-size: var(--fs-xs); color: var(--text-400);
  margin-bottom: var(--sp-3);
  letter-spacing: 0.03em;
}

/* =====================================================================
   HERO
   ===================================================================== */

.hero {
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  min-height: clamp(560px, 82vh, 780px);
  padding-block: clamp(3.5rem, 9vw, 6rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 82% 12%, rgba(115, 180, 222, 0.20), transparent 62%),
    radial-gradient(ellipse 60% 55% at 8% 88%, rgba(19, 143, 149, 0.10), transparent 60%),
    linear-gradient(168deg, var(--color-white) 0%, var(--color-powder) 46%, var(--color-sky-light) 100%);
  border-bottom: 1px solid var(--silver-line);
}
.hero--inner { min-height: auto; padding-block: clamp(3rem, 6vw, 4.5rem); }

.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img, .hero__media video {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.30;
  mix-blend-mode: multiply;
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.42) 45%,
    rgba(234, 244, 252, 0.78) 100%);
}
/* Soft translucent shapes and fine contour lines when no photograph is set */
.hero__media--fallback::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 78% 22%, rgba(115, 180, 222, 0.28) 0 1px, transparent 1px),
    repeating-radial-gradient(circle at 88% 8%,
      transparent 0 38px, rgba(115, 180, 222, 0.13) 38px 39px);
}
.hero__media--fallback::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 78%, rgba(19, 143, 149, 0.09), transparent 42%),
    radial-gradient(circle at 90% 30%, rgba(207, 231, 250, 0.55), transparent 46%);
}

.hero__inner { position: relative; z-index: 2; }
.hero__title {
  font-size: var(--fs-4xl);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-5);
  max-width: 17ch;
  color: var(--color-navy);
}
.hero--inner .hero__title { font-size: var(--fs-3xl); max-width: 22ch; }
.hero__copy {
  font-size: var(--fs-lg);
  color: var(--text-200);
  max-width: 56ch;
  margin-bottom: var(--sp-6);
}

.hero__keywords {
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
  list-style: none; margin: 0 0 var(--sp-6); padding: 0;
}
.hero__keywords li {
  margin: 0;
  padding: 0.35rem 0.9rem;
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--silver-line);
  border-radius: 100px;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.hero__keywords li.is-visible {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-wash);
}

.hero__feature { max-width: 430px; margin-top: var(--sp-7); }
.hero__feature .glass-pad { padding: var(--sp-4) var(--sp-5); }

.hero__scroll {
  position: absolute; bottom: var(--sp-5); left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-300);
}
.hero__scroll:hover { color: var(--accent); }
.hero__scroll .icon { animation: nudge 2s var(--ease) infinite; }
@keyframes nudge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* =====================================================================
   STEPS / PROCESS
   ===================================================================== */

.steps { display: grid; gap: var(--sp-4); counter-reset: step; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); } }

.step {
  counter-increment: step;
  position: relative;
  padding: var(--sp-5);
  background: var(--color-white);
  border: 1px solid var(--silver-line);
  border-radius: var(--radius);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--sp-3);
  letter-spacing: 0.05em;
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lift);
}
.step h3 { font-size: var(--fs-base); margin-bottom: var(--sp-2); }
.step p { font-size: var(--fs-sm); color: var(--text-300); margin: 0; }

/* =====================================================================
   CHECKLISTS, NOTES, BADGES, STATS
   ===================================================================== */

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-3); }
.checklist--two { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.checklist li {
  position: relative;
  padding-left: 1.85rem;
  font-size: var(--fs-sm);
  color: var(--text-200);
  margin: 0;
}
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 0.52em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-wash);
}

.note {
  padding: var(--sp-4) var(--sp-5);
  background: var(--surface-200);
  border-left: 3px solid var(--color-sky);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: var(--fs-sm);
  color: var(--text-300);
}

.placeholder-note {
  padding: var(--sp-6);
  text-align: center;
  border: 1px dashed var(--color-sky);
  border-radius: var(--radius);
  background: var(--surface-100);
  color: var(--text-300);
  font-size: var(--fs-sm);
}

.badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.22rem 0.7rem;
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 100px;
  background: var(--surface-300);
  color: var(--accent-hover);
  border: 1px solid var(--accent);
}
.badge--warn {
  background: #FDF3E3;
  color: var(--warning);
  border-color: #E9C99A;
}

.num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  margin-bottom: var(--sp-2);
}

/* =====================================================================
   TABS AND ACCORDION
   ===================================================================== */

.tabs {
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
  padding-bottom: var(--sp-2);
}
.tab {
  padding: 0.5rem 1.15rem;
  font-size: 0.885rem; font-weight: 600;
  color: var(--text-300);
  background: var(--color-white);
  border: 1px solid var(--silver-line);
  border-radius: 100px;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}
.tab:hover { border-color: var(--accent); color: var(--accent); background: var(--surface-300); }
.tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--color-white);
}

.accordion { display: grid; gap: var(--sp-3); }
.accordion details {
  background: var(--color-white);
  border: 1px solid var(--silver-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.accordion details[open] { border-color: var(--accent); box-shadow: var(--shadow-soft); }
.accordion summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  cursor: pointer;
  font-weight: 600;
  color: var(--text-100);
  list-style: none;
  transition: background var(--dur) var(--ease);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary:hover { background: var(--surface-200); }
.accordion summary::after {
  content: "+";
  font-size: 1.4rem; font-weight: 400; line-height: 1;
  color: var(--accent);
  transition: transform var(--dur) var(--ease);
  flex-shrink: 0;
}
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion summary small { display: block; font-weight: 400; color: var(--text-300); font-size: var(--fs-xs); }
.accordion__body {
  padding: var(--sp-4) var(--sp-5) var(--sp-5);
  border-top: 1px solid var(--surface-200);
  font-size: var(--fs-sm);
  color: var(--text-200);
}

/* =====================================================================
   TABLES
   ===================================================================== */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--silver-line);
  border-radius: var(--radius);
  background: var(--color-white);
}
.data { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.data th, .data td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--surface-200);
  vertical-align: top;
}
.data thead th {
  background: var(--surface-200);
  color: var(--color-navy);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}
.data tbody tr:last-child td { border-bottom: 0; }
.data tbody tr:hover { background: var(--surface-100); }
.data td { color: var(--text-200); }

/* =====================================================================
   FORMS
   ===================================================================== */

.field { margin-bottom: var(--sp-4); }
.field > label, .form-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-navy);
}
.req { color: var(--accent); }

.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field input[type="url"], .field input[type="number"], .field input[type="date"],
.field input[type="password"], .field select, .field textarea {
  width: 100%;
  padding: 0.75rem 0.95rem;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--text-200);
  background: var(--color-white);
  border: 1px solid var(--silver-line);
  border-radius: var(--radius-sm);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-400); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--color-sky); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(19, 143, 149, 0.13);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23138F95' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

.field-row { display: grid; gap: var(--sp-4); }
.field-row--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }

.hint { display: block; margin-top: 0.35rem; font-size: var(--fs-xs); color: var(--text-400); }

.checkbox {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: var(--fs-sm);
  color: var(--text-200);
  cursor: pointer;
  text-transform: none; letter-spacing: 0; font-weight: 400;
}
.checkbox input {
  width: 19px; height: 19px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}

.file-drop {
  display: block;
  position: relative;
  padding: var(--sp-5);
  text-align: center;
  border: 2px dashed var(--color-sky);
  border-radius: var(--radius);
  background: var(--surface-100);
  color: var(--text-300);
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.file-drop:hover, .file-drop.is-dragging {
  border-color: var(--accent);
  background: var(--accent-wash);
  color: var(--accent-hover);
}
.file-drop .icon { color: var(--accent); margin-bottom: var(--sp-2); }
.file-drop input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; }

/* Honeypot — never visible to a real user */
.hp-field {
  position: absolute !important;
  left: -9999px; width: 1px; height: 1px; overflow: hidden;
}

.alert {
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-sm);
  border: 1px solid;
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-5);
}
.alert--success { background: #E7F6EF; border-color: #A9DCC6; color: var(--success); }
.alert--error   { background: #FCECEB; border-color: #EFC0BC; color: var(--danger); }
.alert--warning { background: #FDF3E3; border-color: #E9C99A; color: var(--warning); }
.alert--info    { background: var(--surface-200); border-color: var(--color-sky); color: var(--color-navy); }

button.btn.is-loading { opacity: 0.65; pointer-events: none; }

/* =====================================================================
   MEDIA: gallery, before and after, logo wall, video
   ===================================================================== */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: var(--sp-4);
}
.gallery a, .gallery img { border-radius: var(--radius); display: block; }
.gallery img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border: 1px solid var(--silver-line);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.gallery a:hover img { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.beforeafter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--sp-4);
}
.beforeafter figure { margin: 0; }
.beforeafter img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--silver-line);
}
.beforeafter figcaption {
  margin-top: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--sp-4);
  align-items: center;
}
.logo-wall > div {
  display: grid; place-items: center;
  padding: var(--sp-4);
  min-height: 92px;
  background: var(--color-white);
  border: 1px solid var(--silver-line);
  border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.logo-wall > div:hover { border-color: var(--accent); box-shadow: var(--shadow-soft); }
.logo-wall img { max-height: 46px; width: auto; object-fit: contain; }

.ratio-16x9 {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--silver-line);
  background: var(--surface-200);
}
.ratio-16x9 iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Lightbox (built by main.js) */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  display: grid; place-items: center;
  padding: var(--sp-5);
  background: rgba(18, 63, 115, 0.86);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--radius); }
.lightbox__close {
  position: absolute; top: var(--sp-5); right: var(--sp-5);
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--color-white);
  border: 0; border-radius: 50%;
  color: var(--color-navy);
  cursor: pointer;
  font-size: 1.4rem;
}

/* =====================================================================
   FOOTER
   ===================================================================== */

.site-footer {
  background: var(--surface-100);
  border-top: 1px solid var(--silver-line);
  padding-block: clamp(3rem, 6vw, var(--sp-8)) var(--sp-5);
  margin-top: auto;
}
.footer-grid {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 215px), 1fr));
  padding-bottom: var(--sp-6);
}
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; } }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-4);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.footer-col li { margin: 0; }
.footer-col a { font-size: 0.9rem; color: var(--text-200); }
.footer-col a:hover { color: var(--accent); }

.footer-contact { display: grid; gap: var(--sp-3); font-size: 0.9rem; }
.footer-contact a, .footer-contact > div {
  display: flex; align-items: flex-start; gap: 0.6rem;
  color: var(--text-200);
}
.footer-contact a:hover { color: var(--accent); }
.footer-contact .icon { color: var(--accent); margin-top: 3px; }

.footer-bottom {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: var(--sp-4);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--silver-line);
  font-size: var(--fs-xs);
  color: var(--text-400);
}
.footer-bottom a { color: var(--text-300); }
.footer-bottom a:hover { color: var(--accent); }

/* =====================================================================
   WHATSAPP PANEL, LEAD POPUP, COOKIE BAR
   ===================================================================== */

.wa-fab {
  position: fixed; right: var(--sp-5); bottom: var(--sp-5); z-index: 150;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.3rem;
  background: var(--accent);
  color: var(--color-white);
  border: 0; border-radius: 100px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-teal);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.wa-fab:hover { background: var(--accent-hover); transform: translateY(-3px); }

.wa-panel {
  position: fixed; right: var(--sp-5); bottom: calc(var(--sp-5) + 68px); z-index: 151;
  width: min(370px, calc(100vw - 2.5rem));
  padding: var(--sp-5);
  max-height: min(74vh, 660px);
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transform: translateY(14px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.wa-panel.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.wa-panel__close {
  position: absolute; top: var(--sp-3); right: var(--sp-3);
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--surface-200);
  border: 0; border-radius: 50%;
  color: var(--color-navy);
  cursor: pointer;
}
.wa-panel__close:hover { background: var(--accent-wash); color: var(--accent); }

.popup-backdrop {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  padding: var(--sp-5);
  background: rgba(18, 63, 115, 0.55);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur);
}
.popup-backdrop.is-open { opacity: 1; visibility: visible; }
.popup {
  position: relative;
  width: min(480px, 100%);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  max-height: 88vh; overflow-y: auto;
  transform: translateY(16px) scale(0.985);
  transition: transform 0.32s var(--ease);
}
.popup-backdrop.is-open .popup { transform: translateY(0) scale(1); }
.popup__close {
  position: absolute; top: var(--sp-4); right: var(--sp-4);
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--surface-200);
  border: 0; border-radius: 50%;
  color: var(--color-navy);
  cursor: pointer;
}
.popup__close:hover { background: var(--accent-wash); color: var(--accent); }

.cookie-bar {
  position: fixed; left: var(--sp-5); right: var(--sp-5); bottom: var(--sp-5);
  z-index: 140;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--sp-4);
  max-width: 940px; margin-inline: auto;
  padding: var(--sp-4) var(--sp-5);
  background: var(--color-white);
  border: 1px solid var(--silver-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  font-size: var(--fs-sm);
  color: var(--text-300);
}

/* =====================================================================
   SCROLL REVEAL AND PARALLAX
   ===================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.06s; }
[data-reveal-delay="2"] { transition-delay: 0.12s; }
[data-reveal-delay="3"] { transition-delay: 0.18s; }
[data-reveal-delay="4"] { transition-delay: 0.24s; }
[data-reveal-delay="5"] { transition-delay: 0.30s; }

body.is-locked { overflow: hidden; }

/* =====================================================================
   RESPONSIVE REFINEMENT
   ===================================================================== */

@media (max-width: 760px) {
  .hero { min-height: auto; padding-block: clamp(3rem, 12vw, 4.5rem); }
  .hero__title { max-width: none; }
  .hero__scroll { display: none; }
  .hero__feature { max-width: none; }
  .section-head { margin-bottom: var(--sp-6); }
  .btn-row .btn { flex: 1 1 auto; min-width: 180px; }
  .wa-fab { right: var(--sp-4); bottom: var(--sp-4); padding: 0.8rem 1rem; }
  .wa-panel { right: var(--sp-4); left: var(--sp-4); width: auto; }
  .cookie-bar { left: var(--sp-4); right: var(--sp-4); bottom: var(--sp-4); }
}

@media (max-width: 520px) {
  .glass-pad { padding: 1.25rem; }
  .card__body { padding: 1.2rem; }
  .data th, .data td { padding: 0.7rem 0.8rem; }
}

/* =====================================================================
   ACCESSIBILITY
   ===================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__media { transform: none !important; }
}

@media print {
  .site-header, .drawer, .wa-fab, .wa-panel, .popup-backdrop,
  .cookie-bar, .hero__scroll, .skip-link { display: none !important; }
  body { color: #000; background: #fff; }
  .glass, .card, .step { border: 1px solid #999; box-shadow: none; }
  a { color: #000; text-decoration: underline; }
}

/* =====================================================================
   CMS-MANAGED SECTION BACKGROUNDS
   Driven by section_attrs() in lib/helpers.php, which sets the custom
   properties below. A section with no configuration is untouched.
   ===================================================================== */

/* ---- Flat colour ---- */
.section--custom {
  background: var(--sec-bg, var(--color-white));
  border-block: 1px solid rgba(18, 63, 115, 0.07);
}

/* ---- Photograph with a white veil for legibility ---- */
.section--media {
  position: relative;
  isolation: isolate;
  background-image: var(--sec-img);
  background-size: cover;
  background-position: var(--sec-pos, center);
  background-repeat: no-repeat;
  border-block: 1px solid rgba(18, 63, 115, 0.07);
}
.section--media::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, var(--sec-overlay, 0.55));
}
/* Parallax-style fixed attachment. Ignored on touch devices, which handle
   background-attachment: fixed badly, and under reduced-motion. */
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .section--fixed { background-attachment: fixed; }
}

/* ---- Light text, for dark colours or dark photographs ---- */
.section--light { color: rgba(255, 255, 255, 0.88); }
.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4,
.section--light strong,
.section--light .lede { color: var(--color-white); }
.section--light .eyebrow,
.section--light .card-link,
.section--light .num { color: var(--color-teal-light); }
.section--light .section-head p,
.section--light .text-muted { color: rgba(255, 255, 255, 0.76); }
.section--light .checklist li { color: rgba(255, 255, 255, 0.88); }
.section--light .checklist li::before {
  background: var(--color-teal-light);
  box-shadow: 0 0 0 4px rgba(221, 244, 242, 0.20);
}
.section--light a:not(.btn) { color: var(--color-teal-light); }
.section--light a:not(.btn):hover { color: var(--color-white); }
.section--light .card-link::after { background: var(--color-teal-light); }
.section--light .btn--ghost { color: var(--color-white); border-color: rgba(255, 255, 255, 0.45); }
.section--light .btn--ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--color-white); color: var(--color-white); }
.section--light .btn--glass { background: var(--color-white); border-color: var(--color-white); }
.section--light .note {
  background: rgba(255, 255, 255, 0.10);
  border-left-color: var(--color-teal-light);
  color: rgba(255, 255, 255, 0.82);
}
/* Cards keep their white ground inside a dark section, so they stay readable */
.section--light .glass { color: var(--text-200); }
.section--light .glass h1, .section--light .glass h2,
.section--light .glass h3, .section--light .glass h4,
.section--light .glass strong { color: var(--text-100); }
.section--light .glass .text-muted, .section--light .glass p { color: var(--text-300); }
.section--light .glass a:not(.btn) { color: var(--accent); }
.section--light .glass .card-link::after { background: var(--accent); }

/* =====================================================================
   ENQUIRY FORM — optional detail disclosure
   ===================================================================== */

.form-more {
  margin: 0 0 var(--sp-5);
  border: 1px solid var(--silver-line);
  border-radius: var(--radius);
  background: var(--surface-100);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}
.form-more[open] { border-color: var(--color-sky); background: var(--color-white); }
.form-more summary {
  display: flex; align-items: center; gap: 0.6rem;
  flex-wrap: wrap;
  padding: 0.85rem 1.1rem;
  cursor: pointer;
  list-style: none;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background var(--dur) var(--ease);
}
.form-more summary::-webkit-details-marker { display: none; }
.form-more summary::before {
  content: "+";
  display: grid; place-items: center;
  width: 22px; height: 22px;
  flex-shrink: 0;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 1rem; line-height: 1;
  transition: transform var(--dur) var(--ease);
}
.form-more[open] summary::before { transform: rotate(45deg); }
.form-more summary:hover { background: var(--accent-wash); }
.form-more summary small {
  flex: 1 1 100%;
  padding-left: 1.9rem;
  font-weight: 400;
  color: var(--text-400);
  font-size: var(--fs-xs);
}
.form-more__body {
  padding: var(--sp-5) 1.1rem 1.1rem;
  border-top: 1px solid var(--silver-line);
}
.form-more__body .field:last-child { margin-bottom: 0; }
