/* ===========================================================
   SUVIDATRA SIA — Corporate Website
   Design system / global stylesheet
   Palette:  Navy #153A5B · Gold #B99855 · Grey #F5F7FA
             Graphite #2E3135 · White #FFFFFF
   =========================================================== */

:root {
    --navy:        #153A5B;
    --navy-700:    #1c4a72;
    --navy-900:    #0f2c46;
    --gold:        #B99855;
    --gold-soft:   #d8c49a;
    --bg:          #F5F7FA;
    --ink:         #2E3135;
    --ink-soft:    #565a60;
    --white:       #FFFFFF;
    --line:        rgba(21, 58, 91, 0.12);
    --line-strong: rgba(21, 58, 91, 0.22);

    --maxw: 1180px;
    --gutter: clamp(20px, 5vw, 56px);

    --ff: "Inter", "Manrope", Arial, "Helvetica Neue", sans-serif;

    --shadow: 0 1px 2px rgba(15, 44, 70, .04),
              0 12px 30px rgba(15, 44, 70, .06);

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

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

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

body {
    margin: 0;
    font-family: var(--ff);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--navy); text-decoration: none; }

h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--navy);
    line-height: 1.14;
    letter-spacing: -0.015em;
    margin: 0;
}

p { margin: 0 0 1.1em; }

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

/* ---------- layout helpers ---------- */
.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding-inline: var(--gutter);
}

.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--grey { background: var(--bg); }
.section--navy { background: var(--navy); color: #e8eef4; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

/* kicker / eyebrow label */
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 20px;
}
.kicker::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
}
.section--navy .kicker { color: var(--gold-soft); }

.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin-top: 18px; }
.section--navy .section-head p { color: #b9c6d4; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); }
.section--navy .lead { color: #cdd8e4; }

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 14px 26px;
    border-radius: 6px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .25s var(--ease), background .25s var(--ease),
                color .25s var(--ease), border-color .25s var(--ease);
    line-height: 1;
}
.btn svg { transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--primary:hover { background: var(--navy-900); border-color: var(--navy-900); }

.btn--secondary { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn--secondary:hover { border-color: var(--navy); }

.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.06); }

.btn--gold { background: var(--gold); color: #24303c; border-color: var(--gold); }
.btn--gold:hover { background: #a9884a; border-color: #a9884a; }

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

/* text link with arrow */
.tlink {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 600; font-size: 15px; color: var(--navy);
}
.tlink::after {
    content: "→"; transition: transform .25s var(--ease); color: var(--gold);
}
.tlink:hover::after { transform: translateX(4px); }

/* ===========================================================
   HEADER
   =========================================================== */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.9);
    backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
    font-size: 18px; font-weight: 800; letter-spacing: .02em; color: var(--navy);
}
.brand__sub {
    font-size: 10px; font-weight: 600; letter-spacing: .28em;
    text-transform: uppercase; color: var(--gold); margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
    position: relative;
    font-size: 14px; font-weight: 600; letter-spacing: .04em;
    text-transform: uppercase; color: var(--ink);
    padding: 10px 14px; border-radius: 5px;
    transition: color .2s var(--ease);
}
.nav a::after {
    content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
    height: 2px; background: var(--gold); transform: scaleX(0);
    transform-origin: left; transition: transform .28s var(--ease);
}
.nav a:hover { color: var(--navy); }
.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--navy); }

.header-cta { margin-left: 10px; }
.nav > .btn { display: none; }
/* keep the in-menu Contact button legible (its text must stay white, not inherit .nav a colour) */
.nav a.btn--primary, .nav a.btn--primary:hover { color: #fff; }
.nav a.btn--gold, .nav a.btn--gold:hover { color: #24303c; }

.nav-toggle {
    display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong);
    border-radius: 6px; background: #fff; cursor: pointer; padding: 0;
    align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    content: ""; display: block; width: 20px; height: 2px; background: var(--navy);
    position: relative; transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ===========================================================
   HERO
   =========================================================== */
.hero { position: relative; background: var(--bg); overflow: hidden; }
.hero-grid {
    display: grid; grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch; min-height: 560px;
}
.hero-copy { padding: clamp(56px, 7vw, 104px) var(--gutter);
    display: flex; flex-direction: column; justify-content: center; }
.hero-copy .wrap { padding: 0; }
.hero h1 {
    font-size: clamp(34px, 5vw, 60px);
    letter-spacing: -0.025em;
    max-width: 15ch;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero .lead { margin-top: 22px; max-width: 46ch; }
.hero .btn-row { margin-top: 34px; }

.hero-visual {
    position: relative; background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-visual svg { width: 100%; height: 100%; display: block; }

.hero-badge {
    position: absolute; left: var(--gutter); bottom: 26px;
    display: flex; align-items: center; gap: 12px;
    font-size: 13px; color: var(--ink-soft);
}
.hero-badge strong { color: var(--navy); font-weight: 700; }
.hero-badge span { width: 1px; height: 26px; background: var(--line-strong); }

/* ===========================================================
   GENERIC PAGE HEADER (interior pages)
   =========================================================== */
.page-hero { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.page-hero::after {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(1200px 400px at 100% -10%, rgba(185,152,85,.18), transparent 60%),
      linear-gradient(180deg, rgba(255,255,255,.02), transparent);
    pointer-events: none;
}
.page-hero .wrap { position: relative; padding-block: clamp(64px, 9vw, 118px); }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4.4vw, 52px); max-width: 18ch; }
.page-hero p { color: #c3d0dd; max-width: 60ch; margin-top: 20px; font-size: 1.08rem; }
.breadcrumb {
    font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
    color: var(--gold-soft); margin-bottom: 20px; display: flex; gap: 8px; align-items: center;
}
.breadcrumb a { color: var(--gold-soft); }
.breadcrumb a:hover { color: #fff; }

/* ===========================================================
   GRIDS & CARDS
   =========================================================== */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* service / value card */
.card {
    background: #fff; border: 1px solid var(--line); border-radius: 10px;
    padding: 34px 30px; transition: transform .3s var(--ease),
        box-shadow .3s var(--ease), border-color .3s var(--ease);
    position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card__icon {
    width: 46px; height: 46px; margin-bottom: 22px; color: var(--navy);
}
.card__icon svg { width: 100%; height: 100%; }
.card h3 { font-size: 1.16rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: .98rem; margin: 0; }
.card__num {
    position: absolute; top: 26px; right: 30px;
    font-size: 13px; font-weight: 700; color: var(--gold);
    letter-spacing: .08em;
}

/* feature row list (numbered) */
.feature-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.feature-list .feature {
    display: grid; grid-template-columns: 88px 1fr; gap: 24px;
    padding: 30px 4px; border-bottom: 1px solid var(--line);
    align-items: start;
}
.feature__no {
    font-size: 15px; font-weight: 700; color: var(--gold);
    letter-spacing: .08em; padding-top: 4px;
}
.feature h3 { font-size: 1.22rem; margin-bottom: 8px; }
.feature p { color: var(--ink-soft); margin: 0; max-width: 68ch; }

/* two-column prose split */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.split--reverse { grid-template-columns: 1.1fr 0.9fr; }

/* stat / mission blocks */
.panel {
    background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--gold);
    border-radius: 8px; padding: 30px 32px;
}
.panel h3 { font-size: 1.05rem; letter-spacing: .02em; margin-bottom: 8px; }
.panel p { margin: 0; color: var(--ink-soft); }

/* value grid on navy */
.value {
    padding: 28px 4px; border-top: 1px solid rgba(255,255,255,.14);
}
.value h3 { color: #fff; font-size: 1.12rem; margin-bottom: 8px; }
.value p { color: #b9c6d4; margin: 0; font-size: .98rem; }

/* checklist */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checklist li {
    display: grid; grid-template-columns: 24px 1fr; gap: 14px; align-items: start;
    font-size: 1.02rem;
}
.checklist li::before {
    content: ""; width: 22px; height: 22px; margin-top: 3px;
    background: no-repeat center/contain
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B99855' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

/* plain bulleted "does not" list */
.exclude-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.exclude-list li {
    display: grid; grid-template-columns: 22px 1fr; gap: 14px; align-items: start;
    color: var(--ink-soft);
}
.exclude-list li::before {
    content: ""; width: 18px; height: 18px; margin-top: 4px;
    background: no-repeat center/contain
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23153A5B' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
    opacity: .5;
}

/* ===========================================================
   CONTACT
   =========================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: start; }

.info-table { border-top: 1px solid var(--line); }
.info-row {
    display: grid; grid-template-columns: 200px 1fr; gap: 20px;
    padding: 18px 0; border-bottom: 1px solid var(--line);
}
.info-row dt {
    font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--ink-soft); margin: 0;
}
.info-row dd { margin: 0; color: var(--navy); font-weight: 500; }
.info-row dd a { color: var(--navy); border-bottom: 1px solid var(--gold); }

/* form */
.form { display: grid; gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field label {
    font-size: 13px; font-weight: 600; letter-spacing: .03em; color: var(--navy);
}
.form-field label .req { color: var(--gold); }
.form input, .form textarea {
    font-family: inherit; font-size: 16px; color: var(--ink);
    padding: 13px 15px; border: 1px solid var(--line-strong); border-radius: 6px;
    background: #fff; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
    width: 100%;
}
.form textarea { resize: vertical; min-height: 140px; }
.form input:focus, .form textarea:focus {
    outline: none; border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(21,58,91,.10);
}
.form .error-msg { color: #b23b3b; font-size: 13px; display: none; }
.form-field.invalid input, .form-field.invalid textarea { border-color: #b23b3b; }
.form-field.invalid .error-msg { display: block; }
.form-note { font-size: 13.5px; color: var(--ink-soft); margin: 4px 0 0; }
.form-status {
    display: none; padding: 14px 16px; border-radius: 6px; font-size: 14px;
    background: #eef4ee; border: 1px solid #c8ddc8; color: #2f5d38;
}
.form-status.show { display: block; }
.form-status.error { background: #fbeeee; border-color: #e6c8c8; color: #8a2f2f; }

/* ===========================================================
   CTA STRIP
   =========================================================== */
.cta {
    position: relative; overflow: hidden; border-radius: 16px;
    background: var(--navy); color: #fff; text-align: center;
    padding: clamp(52px, 8vw, 104px) clamp(26px, 6vw, 72px);
}
.cta__bg {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center;
    transform: scale(1.05);
}
.cta::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background:
      linear-gradient(180deg, rgba(13,38,60,.96) 0%, rgba(15,44,70,.86) 42%, rgba(15,44,70,.60) 100%),
      radial-gradient(760px 320px at 50% 0%, rgba(185,152,85,.22), transparent 72%);
}
.cta__inner {
    position: relative; z-index: 2; max-width: 640px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.cta h2 { color: #fff; font-size: clamp(26px, 3.4vw, 40px); }
.cta p { color: #cdd8e4; margin: 0; max-width: 54ch; }
.cta .btn-row { justify-content: center; margin-top: 6px; }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer { background: var(--navy-900); color: #aebfce; font-size: 14.5px; }
.footer-top {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
    padding-block: clamp(48px, 6vw, 72px);
    border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer-brand .brand__name { color: #fff; }
.footer-brand p { margin: 18px 0 0; max-width: 40ch; color: #93a6b8; }
.footer-col h4 {
    color: #fff; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a, .footer-col li { color: #aebfce; }
.footer-col a:hover { color: #fff; }
.footer-reg { display: grid; gap: 6px; }
.footer-reg span { color: #7f93a6; font-size: 13px; }
.footer-bottom {
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
    padding-block: 24px; font-size: 13px; color: #7f93a6;
}
.footer-bottom a { color: #aebfce; }
.footer-bottom a:hover { color: #fff; }
.footer-legal-links { display: flex; gap: 22px; }

/* ===========================================================
   PROSE (legal pages)
   =========================================================== */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin: 44px 0 14px; }
.prose h3 { font-size: 1.15rem; margin: 30px 0 10px; }
.prose p { color: var(--ink); }
.prose ul { padding-left: 20px; margin: 0 0 1.2em; color: var(--ink); }
.prose ul li { margin-bottom: 8px; }
.prose a { border-bottom: 1px solid var(--gold); }
.prose .meta {
    font-size: 14px; color: var(--ink-soft); padding: 14px 18px;
    background: var(--bg); border-left: 3px solid var(--gold); border-radius: 4px;
    margin-bottom: 30px;
}

/* ===========================================================
   REVEAL ANIMATION
   =========================================================== */
.js .reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-visible {
    opacity: 1; transform: none;
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal.is-visible { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ===========================================================
   SCROLL PROGRESS BAR
   =========================================================== */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-soft));
    z-index: 60; transition: width .1s linear;
}

/* ===========================================================
   HERO WITH PHOTOGRAPHY (home)
   =========================================================== */
.hero--media {
    position: relative; min-height: min(88vh, 760px);
    display: flex; align-items: center; overflow: hidden;
    background: var(--navy-900);
}
.hero--media .hero-media {
    position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transform: scale(1.04);
    /* transform transition eases the slide back when it becomes inactive (no snap) */
    transition: opacity 2s var(--ease), transform 2s var(--ease);
    will-change: opacity, transform;
}
.hero-slide.is-active {
    opacity: 1;
    /* keyframe animation runs on initial render too, so the FIRST slide also zooms */
    animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1.16); }
}
@keyframes kenburns {
    from { transform: scale(1.05) translate(0, 0); }
    to   { transform: scale(1.16) translate(-2%, -2%); }
}
.hero--media .hero-media::after {
    content: ""; position: absolute; inset: 0;
    background:
      linear-gradient(90deg, rgba(11,32,52,.94) 0%, rgba(13,38,60,.82) 42%, rgba(15,44,70,.30) 100%),
      linear-gradient(0deg, rgba(11,26,42,.65), rgba(11,26,42,0) 45%);
}
.hero--media .hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 720px; }
.hero--media .kicker { color: var(--gold-soft); }
.hero--media h1 {
    color: #fff; font-size: clamp(34px, 5.2vw, 62px); letter-spacing: -0.025em; max-width: 16ch;
}
.hero--media h1 em { font-style: normal; color: var(--gold); }
.hero--media .lead { color: #d3dde7; margin-top: 22px; max-width: 50ch; }
.hero--media .btn-row { margin-top: 34px; }

/* animated gold corner accent */
.hero-accent {
    position: absolute; z-index: 2; right: clamp(20px, 5vw, 64px); bottom: 46px;
    width: 128px; height: 128px; pointer-events: none; opacity: .9;
}
.hero-accent svg { width: 100%; height: 100%; }
.hero-accent .ring { animation: spin 26s linear infinite; transform-origin: 50% 50%; }
@keyframes spin { to { transform: rotate(360deg); } }

/* scroll cue */
.hero-scroll {
    position: absolute; z-index: 2; left: 50%; bottom: 22px; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.7);
}
.hero-scroll .mouse {
    width: 22px; height: 34px; border: 1.5px solid rgba(255,255,255,.5); border-radius: 12px;
    position: relative;
}
.hero-scroll .mouse::before {
    content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 6px; border-radius: 2px;
    background: var(--gold); transform: translateX(-50%); animation: wheel 1.6s ease-in-out infinite;
}
@keyframes wheel { 0%{opacity:0;transform:translate(-50%,-4px)} 40%{opacity:1} 100%{opacity:0;transform:translate(-50%,8px)} }

/* trust strip under hero */
.trust-strip { background: var(--navy-900); border-top: 1px solid rgba(255,255,255,.08); }
.trust-strip .wrap {
    display: flex; flex-wrap: wrap; gap: 16px 30px; align-items: center; justify-content: center;
    padding-block: 22px;
}
.trust-item {
    display: inline-flex; align-items: center; gap: 11px;
    color: #d3dde7; font-size: 14.5px; font-weight: 500; letter-spacing: .01em;
    position: relative;
}
.trust-item svg {
    width: 20px; height: 20px; color: var(--gold); flex: none;
}
/* thin gold divider between items on wide screens */
.trust-item:not(:last-child)::after {
    content: ""; position: absolute; right: -15px; top: 50%; transform: translateY(-50%);
    width: 1px; height: 16px; background: rgba(255,255,255,.14);
}

/* ===========================================================
   PAGE-HERO WITH BACKGROUND IMAGE
   =========================================================== */
.page-hero--media { background: var(--navy-900); }
.page-hero__bg {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center;
    transform: scale(1.05); animation: kenburns 26s ease-out infinite alternate;
    will-change: transform;
}
.page-hero--media::after {
    z-index: 1;
    background:
      linear-gradient(90deg, rgba(11,32,52,.92), rgba(15,44,70,.62) 70%, rgba(15,44,70,.42)),
      radial-gradient(1200px 400px at 100% -10%, rgba(185,152,85,.20), transparent 60%);
}
.page-hero--media .wrap { z-index: 2; }

/* ===========================================================
   FULL-WIDTH PARALLAX IMAGE BAND
   =========================================================== */
.imgband {
    position: relative; overflow: hidden;
    background-color: var(--navy-900);
    background-size: cover; background-position: center;
    background-attachment: fixed;
    color: #fff;
}
.imgband::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(11,32,52,.90), rgba(13,38,60,.72) 60%, rgba(15,44,70,.55));
}
.imgband .wrap { position: relative; z-index: 2; padding-block: clamp(80px, 12vw, 150px); }
.imgband .band-inner { max-width: 640px; }
.imgband h2 { color: #fff; font-size: clamp(26px, 3.6vw, 42px); }
.imgband p { color: #cdd8e4; margin-top: 18px; font-size: 1.08rem; }
.imgband .kicker { color: var(--gold-soft); }

/* ===========================================================
   SPLIT WITH IMAGE (framed, reveal)
   =========================================================== */
.media-frame {
    position: relative; border-radius: 12px; overflow: hidden;
    box-shadow: var(--shadow); background: var(--navy);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 1.2s var(--ease); }
.media-frame:hover img { transform: scale(1.05); }
.media-frame::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(15,44,70,.30), transparent 55%);
}
.media-frame .tag {
    position: absolute; z-index: 2; left: 18px; bottom: 16px;
    font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: #fff;
    display: inline-flex; align-items: center; gap: 8px;
}
.media-frame .tag::before { content: ""; width: 20px; height: 1px; background: var(--gold); }
.split--media { align-items: stretch; }
.split--media .media-frame { min-height: 340px; }

/* image reveal (scale + fade — robust) */
.js .reveal-img { opacity: 0; transform: scale(1.05); }
.reveal-img.is-visible {
    opacity: 1; transform: none;
    transition: opacity .9s var(--ease), transform 1.2s var(--ease);
}

/* ===========================================================
   STATS BAND (count-up)
   =========================================================== */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
    padding: 40px 20px; text-align: center; border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat__num {
    font-size: clamp(34px, 4.4vw, 52px); font-weight: 800; color: var(--navy);
    letter-spacing: -0.02em; line-height: 1; display: inline-flex; align-items: baseline;
}
.stat__num .suffix { color: var(--gold); }
.stat__label {
    margin-top: 12px; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft);
}

/* ===========================================================
   REVEAL VARIANTS + STAGGER
   =========================================================== */
.js .reveal-l { opacity: 0; transform: translateX(-26px); }
.js .reveal-r { opacity: 0; transform: translateX(26px); }
.reveal-l.is-visible, .reveal-r.is-visible {
    opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-delay="1"] { transition-delay: .08s; }
[data-delay="2"] { transition-delay: .16s; }
[data-delay="3"] { transition-delay: .24s; }
[data-delay="4"] { transition-delay: .32s; }
[data-delay="5"] { transition-delay: .40s; }
[data-delay="6"] { transition-delay: .48s; }

/* card icon subtle motion */
.card:hover .card__icon { transform: translateY(-3px); }
.card__icon { transition: transform .3s var(--ease); }
.card { overflow: hidden; }
.card::after {
    content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
    background: var(--gold); transition: width .4s var(--ease);
}
.card:hover::after { width: 100%; }

/* animated heading underline accent */
.section-head h2 { position: relative; }

@media (prefers-reduced-motion: reduce) {
    .hero--media .hero-media img,
    .page-hero__bg,
    .hero-accent .ring,
    .hero-scroll .mouse::before { animation: none; }
    .reveal-l, .reveal-r, .reveal-img { opacity: 1; transform: none; clip-path: none; }
    .imgband { background-attachment: scroll; }
}

/* ===========================================================
   FOOTER LOGO
   =========================================================== */
.footer-logo { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.footer-logo .brand__mark { width: 34px; height: 34px; flex: none; }
.footer-logo .brand__name { color: #fff; font-size: 19px; font-weight: 800; letter-spacing: .01em; }

/* ===========================================================
   HEADER CONTACT BUTTON — icon, hover lift, gentle pulse
   =========================================================== */
.btn--primary.header-cta,
.nav > .btn--primary { position: relative; }
.btn:hover { transform: translateY(-1px); }
.btn--pulse { animation: ctaPulse 2.8s var(--ease) infinite; }
.btn--pulse:hover { animation-play-state: paused; }
@keyframes ctaPulse {
    0%   { box-shadow: 0 0 0 0 rgba(185,152,85,.55); }
    65%  { box-shadow: 0 0 0 12px rgba(185,152,85,0); }
    100% { box-shadow: 0 0 0 0 rgba(185,152,85,0); }
}

/* ===========================================================
   FORM — privacy consent checkbox
   =========================================================== */
.form-consent { align-items: start; }
.form-consent label {
    display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start;
    font-size: 14px; font-weight: 400; color: var(--ink-soft); cursor: pointer; letter-spacing: 0;
}
.form-consent input[type="checkbox"] {
    width: 20px; height: 20px; margin: 1px 0 0; flex: none; accent-color: var(--navy); cursor: pointer;
}
.form-consent a { color: var(--navy); border-bottom: 1px solid var(--gold); }
.form-consent.invalid label { color: #b23b3b; }
.form-consent.invalid input[type="checkbox"] { outline: 2px solid #b23b3b; outline-offset: 2px; border-radius: 3px; }
.form-consent .error-msg { margin-top: 6px; }

/* honeypot — hidden from humans, tempting to bots */
.hp-field {
    position: absolute !important; left: -9999px !important; top: auto;
    width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .btn--pulse { animation: none; }
    .btn:hover { transform: none; }
}

/* ===========================================================
   PRELOADER
   =========================================================== */
.preloader {
    position: fixed; inset: 0; z-index: 9999;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
    background: var(--navy-900);
    transition: opacity .7s var(--ease), visibility .7s var(--ease);
}
body.loaded .preloader { opacity: 0; visibility: hidden; }
/* if JS never runs, never trap the page behind the loader */
html:not(.js) .preloader { display: none; }
.preloader__logo { width: 78px; height: 78px; position: relative; }
.preloader__logo svg { width: 100%; height: 100%; }
.preloader__logo .pl-ring {
    transform-origin: 50% 50%; animation: spin 2.4s linear infinite;
}
.preloader__logo .pl-core { animation: pulse 1.8s var(--ease) infinite; transform-origin: 50% 50%; }
@keyframes pulse { 0%,100%{opacity:.5} 50%{opacity:1} }
.preloader__word {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    opacity: 0; animation: fadeUp .8s var(--ease) .25s forwards;
}
.preloader__word .n {
    color: #fff; font-weight: 800; letter-spacing: .28em; font-size: 16px; padding-left: .28em;
}
.preloader__word .s {
    color: var(--gold-soft); font-size: 10px; letter-spacing: .34em; text-transform: uppercase;
}
.preloader__bar {
    width: 120px; height: 2px; background: rgba(255,255,255,.14); border-radius: 2px; overflow: hidden;
}
.preloader__bar::before {
    content: ""; display: block; height: 100%; width: 40%;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: loadbar 1.3s ease-in-out infinite;
}
@keyframes loadbar { 0%{transform:translateX(-100%)} 100%{transform:translateX(320%)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:none} }

/* ===========================================================
   ENTRANCE ORCHESTRATION (after preloader)
   =========================================================== */
/* header drops in */
.js .site-header { transform: translateY(-102%); }
.js body.loaded .site-header,
.js.loaded .site-header { transform: none; transition: transform .8s var(--ease) .15s; }

/* hero content staggers up */
.js .hero-content > * { opacity: 0; transform: translateY(26px); }
.loaded .hero-content > * {
    opacity: 1; transform: none;
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.loaded .hero-content > *:nth-child(1) { transition-delay: .35s; }
.loaded .hero-content > *:nth-child(2) { transition-delay: .48s; }
.loaded .hero-content > *:nth-child(3) { transition-delay: .61s; }
.loaded .hero-content > *:nth-child(4) { transition-delay: .74s; }
/* hero decorations fade in last */
.js .hero-accent, .js .hero-scroll { opacity: 0; }
.loaded .hero-accent { opacity: .9; transition: opacity 1s var(--ease) 1s; }
.loaded .hero-scroll { opacity: 1; transition: opacity 1s var(--ease) 1.2s; }

/* page-hero (interior) content entrance */
.js .page-hero .wrap > * { opacity: 0; transform: translateY(22px); }
.loaded .page-hero .wrap > * {
    opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.loaded .page-hero .wrap > *:nth-child(1) { transition-delay: .30s; }
.loaded .page-hero .wrap > *:nth-child(2) { transition-delay: .42s; }
.loaded .page-hero .wrap > *:nth-child(3) { transition-delay: .54s; }

@media (prefers-reduced-motion: reduce) {
    .preloader__logo .pl-ring, .preloader__logo .pl-core, .preloader__bar::before { animation: none; }
    .hero-slide { transform: none !important; animation: none !important; transition: opacity .5s var(--ease) !important; }
    .js .site-header, .js .hero-content > *, .js .page-hero .wrap > *,
    .js .hero-accent, .js .hero-scroll { opacity: 1; transform: none; }
}

/* ===========================================================
   BRAND MARK (navbar) — a touch more presence
   =========================================================== */
.brand__mark { filter: drop-shadow(0 2px 4px rgba(15,44,70,.18)); }
.brand:hover .brand__mark { transform: rotate(0deg); }

/* ===========================================================
   WORKING PRINCIPLES — redesigned
   =========================================================== */
.principle {
    position: relative; background: #fff; border: 1px solid var(--line);
    border-radius: 12px; padding: 32px 28px 28px; overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.principle:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.principle::before {
    content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--gold);
    transform: scaleY(0); transform-origin: top; transition: transform .4s var(--ease);
}
.principle:hover::before { transform: scaleY(1); }
.principle__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.principle__icon {
    width: 48px; height: 48px; border-radius: 10px; display: grid; place-items: center;
    background: var(--bg); color: var(--navy); transition: background .3s var(--ease), color .3s var(--ease);
}
.principle:hover .principle__icon { background: var(--navy); color: #fff; }
.principle__icon svg { width: 24px; height: 24px; }
.principle__no {
    font-size: 34px; font-weight: 800; line-height: 1; color: transparent;
    -webkit-text-stroke: 1.4px var(--line-strong); letter-spacing: -.02em;
}
.principle h3 { font-size: 1.14rem; margin-bottom: 8px; }
.principle p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* ===========================================================
   SERVICES / WHY — feature timeline decoration
   =========================================================== */
.feature-list { position: relative; }
.feature__no {
    position: relative; display: inline-flex; align-items: center; justify-content: center;
    width: 54px; height: 54px; border-radius: 50%; border: 1.5px solid var(--line-strong);
    background: #fff; color: var(--gold); font-size: 15px; padding-top: 0;
    transition: border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
    z-index: 1;
}
.feature { position: relative; }
.feature:not(:last-child) .feature__no::after {
    content: ""; position: absolute; top: 54px; left: 50%; transform: translateX(-50%);
    width: 1.5px; height: calc(100% + 60px); background: var(--line); z-index: 0;
}
.feature:hover .feature__no { background: var(--navy); border-color: var(--navy); color: #fff; }
.feature { grid-template-columns: 88px 1fr; }
.feature h3 { transition: color .25s var(--ease); }
.feature:hover h3 { color: var(--navy-700); }

/* ===========================================================
   EXCLUDE LIST — refined marker (chevron, not dash)
   =========================================================== */
.exclude-list li::before {
    content: ""; width: 20px; height: 20px; margin-top: 2px; opacity: 1;
    background: no-repeat center/13px
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B99855' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
    border: 1px solid var(--line); border-radius: 6px;
}

/* ===========================================================
   MISSION / VISION — decorated panels
   =========================================================== */
.panel--feature {
    position: relative; padding-top: 34px; overflow: hidden;
}
.panel--feature .panel__mark {
    position: absolute; top: -18px; right: 6px; font-size: 120px; line-height: 1;
    font-weight: 800; color: var(--navy); opacity: .05; pointer-events: none; font-family: Georgia, serif;
}
.panel--feature .panel__icon {
    width: 46px; height: 46px; border-radius: 10px; display: grid; place-items: center;
    background: var(--navy); color: #fff; margin-bottom: 16px;
}
.panel--feature .panel__icon svg { width: 24px; height: 24px; }

/* ===========================================================
   CONTACT — form card + info icons + reassurance
   =========================================================== */
.form-card {
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    box-shadow: var(--shadow); overflow: hidden;
}
.form-card__head {
    background: var(--navy); color: #fff; padding: 22px 30px;
    display: flex; align-items: center; gap: 14px;
}
.form-card__head .fc-ico {
    width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.1);
    display: grid; place-items: center; color: var(--gold-soft); flex: none;
}
.form-card__head .fc-ico svg { width: 22px; height: 22px; }
.form-card__head h3 { color: #fff; font-size: 1.1rem; margin: 0; }
.form-card__head p { margin: 3px 0 0; font-size: 13px; color: #b9c6d4; }
.form-card__body { padding: 28px 30px 30px; }

.info-row { position: relative; align-items: center; }
.info-row dt { display: flex; align-items: center; gap: 10px; }
.info-row dt .ic { width: 18px; height: 18px; color: var(--gold); flex: none; }
.info-row dt .ic svg { width: 100%; height: 100%; }

.assure {
    display: grid; gap: 14px; margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line);
}
.assure li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; font-size: .96rem; color: var(--ink); }
.assure li .ic { width: 20px; height: 20px; color: var(--navy); margin-top: 2px; }
.assure li .ic svg { width: 100%; height: 100%; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { min-height: 300px; order: -1; }
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .split, .split--reverse, .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .stats .wrap { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: 0; }
    .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
    .split--media .media-frame { min-height: 300px; }
    .imgband { background-attachment: scroll; }
}

@media (hover: none) {
    .imgband { background-attachment: scroll; }
}

@media (max-width: 760px) {
    body { font-size: 16px; }
    .header-cta { display: none; }
    .nav-toggle { display: inline-flex; }
    .nav {
        position: fixed; inset: 74px 0 auto 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: #fff; border-bottom: 1px solid var(--line);
        padding: 12px var(--gutter) 24px;
        transform: translateY(-8px); opacity: 0; pointer-events: none;
        transition: transform .25s var(--ease), opacity .25s var(--ease);
        box-shadow: var(--shadow);
    }
    .nav.open { transform: none; opacity: 1; pointer-events: auto; }
    .nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); text-transform: none; font-size: 16px; letter-spacing: 0; }
    .nav a::after { display: none; }
    .nav > .btn { display: inline-flex; margin-top: 14px; justify-content: center; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .feature-list .feature { grid-template-columns: 1fr; gap: 6px; }
    .info-row { grid-template-columns: 1fr; gap: 4px; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
    .hero-accent { display: none; }
    .trust-strip .wrap { justify-content: flex-start; gap: 10px 24px; }
}
