/* ============================================================
   Avani Design — Public Website Styles
   Palette derived from brand logo: deep navy + red + cream/gold
   Author: Front-end build  |  Fully responsive, animated
   ============================================================ */

:root {
    /* Brand palette (from logo) */
    --navy-900: #0a1f2e;
    --navy-800: #0f2a3e;
    --navy-700: #143b52;
    --navy-600: #1c4c68;
    --red: #e0342a;
    --red-dark: #bf2318;
    --gold: #c9a24b;
    --gold-soft: #e4c983;
    --cream: #f7f2e8;
    --cream-2: #efe6d4;
    --ink: #1b2a34;
    --muted: #5f6c74;
    --line: #e7e1d4;
    --white: #ffffff;

    --ff-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --ff-body: 'Poppins', -apple-system, 'Segoe UI', Roboto, sans-serif;

    --shadow-sm: 0 4px 14px rgba(10, 31, 46, .08);
    --shadow-md: 0 14px 40px rgba(10, 31, 46, .12);
    --shadow-lg: 0 28px 70px rgba(10, 31, 46, .20);

    --radius: 16px;
    --radius-sm: 10px;
    --wrap: 1200px;
    --nav-h: 84px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

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

body {
    margin: 0;
    font-family: var(--ff-body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--ff-head); font-weight: 700; line-height: 1.15; color: var(--navy-900); margin: 0 0 .5em; }
p { margin: 0 0 1rem; }

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

.section { padding: 96px 0; position: relative; }
.section--tight { padding: 70px 0; }
.section--navy { background: var(--navy-900); color: #d7e0e6; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--cream { background: var(--cream-2); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 30px; border-radius: 50px; font-weight: 600;
    font-size: .95rem; letter-spacing: .3px; cursor: pointer; border: 2px solid transparent;
    transition: all .35s var(--ease); position: relative; overflow: hidden;
}
.btn i { transition: transform .35s var(--ease); }
.btn:hover i { transform: translateX(4px); }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 10px 26px rgba(224, 52, 42, .35); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 16px 34px rgba(224, 52, 42, .45); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.btn--ghost:hover { background: #fff; color: var(--navy-900); border-color: #fff; }
.btn--dark { background: var(--navy-900); color: #fff; }
.btn--dark:hover { background: var(--navy-700); transform: translateY(-3px); }
.btn--gold { background: var(--gold); color: var(--navy-900); }
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-3px); }

/* ---------- Section heading kicker ---------- */
.kicker {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--ff-body); font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase; font-size: .78rem; color: var(--red); margin-bottom: 14px;
}
.kicker::before { content: ""; width: 34px; height: 2px; background: var(--gold); display: inline-block; }
.section--navy .kicker { color: var(--gold-soft); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-lead { font-size: 1.06rem; color: var(--muted); max-width: 640px; }
.section--navy .section-lead { color: #b9c6cf; }
.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--nav-h); display: flex; align-items: center;
    transition: all .4s var(--ease);
    background: rgba(247, 242, 232, 0);
}
.site-header.scrolled {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm); height: 70px;
}
.nav { display: flex; align-items: center; justify-content: space-between; width: 100%; }

/* Brand lockup (CSS logo) */
.brand { display: flex; align-items: center; gap: 12px; }
.brand__leaf { color: var(--navy-800); font-size: 1.6rem; transform: rotate(-8deg); }
.site-header:not(.scrolled) .brand--onhero .brand__leaf { color: #fff; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__top { font-size: .58rem; line-height: 1; letter-spacing: 3px; font-weight: 600; color: var(--muted); text-transform: uppercase; }
.brand__name { font-family: var(--ff-head); font-weight: 800; font-size: 1.4rem; line-height: 1; color: var(--navy-900); letter-spacing: .5px; border-bottom: 2px solid var(--red); padding-bottom: 3px; margin-top: 3px; }
.brand__tag { font-family: var(--ff-body); font-weight: 600; font-size: .5rem; line-height: 1; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.site-header:not(.scrolled) .brand--onhero .brand__top { color: rgba(255,255,255,.75); }
.site-header:not(.scrolled) .brand--onhero .brand__name { color: #fff; }
.site-header:not(.scrolled) .brand--onhero .brand__tag { color: var(--gold-soft); }

/* Nav menu */
.nav-menu { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-menu a {
    display: inline-block; padding: 10px 16px; font-weight: 500; font-size: .96rem;
    color: var(--navy-900); border-radius: 8px; position: relative; transition: color .3s;
}
.site-header:not(.scrolled) .nav-menu > li > a.onhero { color: #fff; }
.nav-menu a::after {
    content: ""; position: absolute; left: 16px; right: 16px; bottom: 6px; height: 2px;
    background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }
.nav-menu a:hover { color: var(--red); }
.nav-login {
    margin-left: 10px; background: var(--red); color: #fff !important; padding: 10px 24px !important;
    border-radius: 50px; box-shadow: 0 8px 20px rgba(224,52,42,.32);
}
.nav-login::after { display: none; }
.nav-login:hover { background: var(--red-dark); transform: translateY(-2px); }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 1100; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy-900); border-radius: 3px; transition: all .35s var(--ease); }
.site-header:not(.scrolled) .nav-toggle.onhero span { background: #fff; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--navy-900); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--navy-900); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 18s ease-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.08); } to { transform: scale(1.18); } }
.hero__overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(115deg, rgba(10,31,46,.92) 0%, rgba(10,31,46,.72) 42%, rgba(10,31,46,.30) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-top: var(--nav-h); max-width: 720px; }
.hero__tag {
    display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px; border-radius: 50px;
    background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22);
    font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; backdrop-filter: blur(4px);
}
.hero__tag i { color: var(--gold-soft); }
.hero h1 { color: #fff; font-size: clamp(2.5rem, 6vw, 4.6rem); line-height: 1.05; margin-bottom: 22px; }
.hero h1 .accent { color: var(--gold-soft); font-style: italic; }
.hero__lead { font-size: 1.18rem; color: #dbe4ea; max-width: 560px; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.7); font-size: .75rem; letter-spacing: 2px; text-align: center; }
.hero__scroll i { display: block; margin-top: 8px; animation: bob 1.8s infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ============================================================
   MARQUEE / TRUST STRIP
   ============================================================ */
.marquee { background: var(--navy-900); color: var(--gold-soft); overflow: hidden; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.06); }
.marquee__track { display: flex; gap: 60px; white-space: nowrap; width: max-content; animation: scrollX 28s linear infinite; }
.marquee__track span { font-family: var(--ff-head); font-style: italic; font-size: 1.25rem; display: inline-flex; align-items: center; gap: 60px; }
.marquee__track span::after { content: "\f005"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-style: normal; color: var(--red); font-size: .7rem; }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 20px; }
.stat__num { font-family: var(--ff-head); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--navy-900); line-height: 1; }
.stat__num .plus { color: var(--red); }
.stat__label { margin-top: 8px; font-size: .92rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.section--navy .stat__num { color: #fff; }
.section--navy .stat__label { color: #b9c6cf; }

/* ============================================================
   ABOUT PREVIEW / SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; height: 100%; object-fit: cover; }
.split__media--stack { min-height: 460px; }
.split__media--stack img:first-child { width: 78%; height: 340px; }
.split__media--stack img:last-child { position: absolute; right: 0; bottom: 0; width: 55%; height: 260px; border: 8px solid var(--cream); }
.split__badge {
    position: absolute; top: -22px; left: -22px; background: var(--red); color: #fff; border-radius: var(--radius-sm);
    padding: 18px 22px; box-shadow: var(--shadow-md); text-align: center;
}
.split__badge b { font-family: var(--ff-head); font-size: 2rem; display: block; line-height: 1; }
.split__badge span { font-size: .72rem; letter-spacing: 1px; text-transform: uppercase; }
.list-check { list-style: none; padding: 0; margin: 20px 0 30px; }
.list-check li { position: relative; padding-left: 34px; margin-bottom: 12px; }
.list-check li i { position: absolute; left: 0; top: 4px; color: var(--red); }

/* ============================================================
   FEATURE / VALUE CARDS
   ============================================================ */
.grid { display: grid; gap: 28px; margin-top: 54px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
    background: #fff; border-radius: var(--radius); padding: 38px 30px; box-shadow: var(--shadow-sm);
    border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: var(--red); transition: width .4s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card:hover::before { width: 100%; }
.card__icon {
    width: 66px; height: 66px; border-radius: 16px; display: grid; place-items: center; font-size: 1.5rem;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); color: var(--gold-soft); margin-bottom: 22px;
    transition: transform .4s var(--ease);
}
.card:hover .card__icon { transform: rotate(-6deg) scale(1.05); }
.card h3 { font-size: 1.3rem; }
.card p { color: var(--muted); margin: 0; font-size: .96rem; }

/* value card compact */
.value { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: all .4s var(--ease); }
.value:hover { border-color: var(--red); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value__num { font-family: var(--ff-head); font-weight: 800; font-size: 1.5rem; color: var(--red); min-width: 44px; }
.value h4 { margin: 0 0 4px; font-size: 1.12rem; }
.value p { margin: 0; color: var(--muted); font-size: .9rem; }

/* ============================================================
   COLLECTION / PRODUCT SHOWCASE
   ============================================================ */
.collection { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 54px; }
.prod { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 3/4; }
.prod img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.prod:hover img { transform: scale(1.1); }
.prod__overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px;
    background: linear-gradient(to top, rgba(10,31,46,.90) 8%, rgba(10,31,46,.30) 45%, transparent 75%); color: #fff;
}
.prod__overlay span { color: var(--gold-soft); font-size: .74rem; letter-spacing: 2px; text-transform: uppercase; }
.prod__overlay h3 { color: #fff; font-size: 1.4rem; margin: 6px 0 0; }
.prod__link { margin-top: 12px; display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 600; color: #fff; opacity: 0; transform: translateY(10px); transition: all .4s var(--ease); }
.prod:hover .prod__link { opacity: 1; transform: translateY(0); }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 54px; counter-reset: step; }
.step { text-align: center; position: relative; padding: 0 10px; }
.step__circle {
    width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 22px; display: grid; place-items: center;
    background: #fff; border: 2px dashed var(--gold); color: var(--navy-800); font-size: 1.8rem; position: relative;
}
.step__circle::after { counter-increment: step; content: "0" counter(step); position: absolute; top: -8px; right: -8px; background: var(--red); color: #fff; width: 30px; height: 30px; border-radius: 50%; font-family: var(--ff-body); font-size: .8rem; font-weight: 700; display: grid; place-items: center; }
.section--navy .step__circle { background: var(--navy-800); color: var(--gold-soft); }
.step h4 { font-size: 1.15rem; }
.step p { color: var(--muted); font-size: .9rem; margin: 0; }
.section--navy .step p { color: #a9b8c1; }
.section--navy .step h4 { color: #fff; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 54px; }
.quote { background: #fff; border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative; }
.quote__mark { font-family: var(--ff-head); font-size: 4rem; color: var(--cream-2); position: absolute; top: 8px; right: 22px; line-height: 1; }
.quote__stars { color: var(--gold); margin-bottom: 14px; }
.quote p { font-style: italic; color: var(--ink); position: relative; z-index: 1; }
.quote__by { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.quote__by .av { width: 46px; height: 46px; border-radius: 50%; background: var(--navy-800); color: var(--gold-soft); display: grid; place-items: center; font-family: var(--ff-head); font-weight: 700; }
.quote__by b { display: block; font-family: var(--ff-body); font-size: .95rem; }
.quote__by span { font-size: .82rem; color: var(--muted); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: linear-gradient(120deg, var(--navy-900), var(--navy-700)); color: #fff; border-radius: 24px; padding: 60px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before, .cta-band::after { content: "\f56c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; color: rgba(255,255,255,.05); font-size: 12rem; }
.cta-band::before { top: -30px; left: -10px; transform: rotate(-15deg); }
.cta-band::after { bottom: -50px; right: -10px; transform: rotate(15deg); }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); position: relative; }
.cta-band p { color: #cdd8df; max-width: 560px; margin: 0 auto 28px; position: relative; }
.cta-band .hero__cta { justify-content: center; position: relative; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { position: relative; padding: calc(var(--nav-h) + 70px) 0 80px; color: #fff; text-align: center; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__ov { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,31,46,.90), rgba(10,31,46,.72)); z-index: 1; }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); }
.crumb { display: inline-flex; gap: 10px; align-items: center; font-size: .9rem; color: #cdd8df; margin-top: 10px; }
.crumb a:hover { color: var(--gold-soft); }
.crumb i { font-size: .7rem; }

/* ============================================================
   MISSION / VISION
   ============================================================ */
.mv { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.mv__card { background: #fff; border-radius: var(--radius); padding: 44px 38px; box-shadow: var(--shadow-sm); border-top: 5px solid var(--red); position: relative; }
.mv__card:nth-child(2) { border-top-color: var(--gold); }
.mv__icon { width: 72px; height: 72px; border-radius: 18px; background: var(--cream-2); display: grid; place-items: center; font-size: 1.8rem; color: var(--navy-800); margin-bottom: 22px; }
.mv__card:nth-child(2) .mv__icon { color: var(--gold); }
.mv__card h3 { font-size: 1.6rem; }
.mv__card p { color: var(--muted); margin: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: start; }
.info-card { display: flex; gap: 18px; align-items: flex-start; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 18px; transition: all .35s var(--ease); }
.info-card:hover { transform: translateX(6px); border-color: var(--red); }
.info-card__icon { width: 54px; height: 54px; min-width: 54px; border-radius: 14px; background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); color: var(--gold-soft); display: grid; place-items: center; font-size: 1.25rem; }
.info-card h4 { margin: 0 0 4px; font-size: 1.08rem; }
.info-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.info-card a { color: var(--muted); }
.info-card a:hover { color: var(--red); }

.form-card { background: #fff; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 7px; color: var(--navy-900); }
.field input, .field textarea, .field select {
    width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px; font-family: var(--ff-body);
    font-size: .95rem; color: var(--ink); background: var(--cream); transition: all .3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px rgba(224,52,42,.10); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: var(--muted); margin-top: 10px; }
.alert-ok { background: #e8f6ee; color: #1c7a43; border: 1px solid #bfe6cf; border-radius: 10px; padding: 14px 18px; margin-bottom: 18px; display: flex; gap: 10px; align-items: center; }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); line-height: 0; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; }

/* ============================================================
   LEGAL PAGE
   ============================================================ */
.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 44px; align-items: start; }
.legal-nav { position: sticky; top: 100px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; }
.legal-nav a { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 10px; color: var(--navy-900); font-weight: 500; font-size: .95rem; transition: all .3s; }
.legal-nav a:hover, .legal-nav a.active { background: var(--navy-900); color: #fff; }
.legal-nav a i { color: var(--red); width: 18px; }
.legal-nav a:hover i, .legal-nav a.active i { color: var(--gold-soft); }
.legal-block { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 44px; margin-bottom: 26px; scroll-margin-top: 100px; }
.legal-block h2 { font-size: 1.7rem; display: flex; align-items: center; gap: 14px; }
.legal-block h2 i { color: var(--red); font-size: 1.3rem; }
.legal-block h4 { margin-top: 22px; color: var(--navy-800); }
.legal-block p, .legal-block li { color: var(--muted); }
.legal-block ul { padding-left: 20px; }
.legal-block ul li { margin-bottom: 8px; }
.legal-updated { font-size: .85rem; color: var(--muted); font-style: italic; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-900); color: #a9bac4; padding: 74px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer .brand__name { color: #fff; }
.footer .brand__top { color: var(--gold-soft); }
.footer .brand__leaf { color: var(--gold-soft); }
.footer .brand__tag { color: var(--gold-soft); }
.footer__about { margin: 20px 0; font-size: .94rem; line-height: 1.8; }
.footer h5 { color: #fff; font-family: var(--ff-body); font-size: 1rem; letter-spacing: .5px; margin: 0 0 22px; position: relative; padding-bottom: 12px; }
.footer h5::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; background: var(--red); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { font-size: .94rem; transition: all .3s; display: inline-flex; align-items: center; gap: 8px; }
.footer ul a:hover { color: var(--gold-soft); transform: translateX(4px); }
.footer ul a i { color: var(--red); font-size: .7rem; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; font-size: .94rem; }
.footer__contact li i { color: var(--gold-soft); margin-top: 5px; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #fff; transition: all .35s var(--ease); }
.socials a:hover { background: var(--red); transform: translateY(-4px); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .86rem; }
.footer__bottom a:hover { color: var(--gold-soft); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.to-top { position: fixed; right: 24px; bottom: 24px; width: 50px; height: 50px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all .4s var(--ease); z-index: 900; border: 0; cursor: pointer; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--red-dark); transform: translateY(-4px); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(38px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-44px); }
[data-reveal="right"] { transform: translateX(44px); }
[data-reveal="zoom"] { transform: scale(.9); }
[data-reveal].in { transform: none; }
[data-delay="1"] { transition-delay: .12s; }
[data-delay="2"] { transition-delay: .24s; }
[data-delay="3"] { transition-delay: .36s; }
[data-delay="4"] { transition-delay: .48s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .split, .contact-grid, .legal-layout, .mv { grid-template-columns: 1fr; gap: 40px; }
    .split--rev .split__media { order: 0; }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .collection, .testi { grid-template-columns: repeat(2, 1fr); }
    .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 6px; }
    .legal-nav a { flex: 1 1 auto; justify-content: center; }
}

@media (max-width: 768px) {
    .section { padding: 66px 0; }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 84vw);
        background: #fff; flex-direction: column; align-items: stretch; justify-content: flex-start;
        padding: 100px 26px 40px; gap: 4px; box-shadow: -20px 0 60px rgba(0,0,0,.18);
        transform: translateX(100%); transition: transform .45s var(--ease); z-index: 1050;
    }
    body.menu-open .nav-menu { transform: translateX(0); }
    .nav-menu a { padding: 14px 16px; font-size: 1.05rem; border-radius: 10px; color: var(--navy-900) !important; }
    .nav-menu a::after { display: none; }
    .nav-menu a:hover { background: var(--cream-2); }
    .nav-login { margin-left: 0; margin-top: 12px; text-align: center; justify-content: center; }
    .nav-backdrop { position: fixed; inset: 0; background: rgba(10,31,46,.5); opacity: 0; visibility: hidden; transition: all .4s; z-index: 1040; }
    body.menu-open .nav-backdrop { opacity: 1; visibility: visible; }
    .form-row { grid-template-columns: 1fr; }
    .cta-band { padding: 44px 26px; }
    .split__media--stack { min-height: auto; }
    .split__media--stack img:last-child { position: static; width: 100%; height: auto; margin-top: 16px; border: 0; }
}

@media (max-width: 560px) {
    .grid--3, .grid--4, .steps, .stats, .collection, .testi, .grid--2 { grid-template-columns: 1fr; }
    .wrap { padding: 0 18px; }
    .hero__cta { flex-direction: column; }
    .hero__cta .btn { width: 100%; justify-content: center; }
    .brand__name { font-size: 1.25rem; }
}


/* ============================================================
   JOURNEY ROAD — winding highway timeline (Journey page)
   The road itself is an SVG path drawn through the real pin
   positions by site.js, so it always follows the content.
   ============================================================ */

/* ---------- Page scroll progress bar ---------- */
.jrny-progress {
    position: fixed; top: 0; left: 0; right: 0; height: 4px; z-index: 1200;
    background: rgba(10, 31, 46, .10); pointer-events: none;
}
.jrny-progress span {
    display: block; height: 100%; width: 0;
    background: linear-gradient(90deg, var(--gold) 0%, var(--red) 70%, var(--red-dark) 100%);
    box-shadow: 0 0 14px rgba(224, 52, 42, .55);
    transition: width .12s linear;
}

/* ---------- Road canvas ---------- */
.road { position: relative; padding: 40px 0 60px; }
.road__svg { position: absolute; left: 0; top: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; overflow: visible; }
.road__shoulder { fill: none; stroke: #fff; stroke-width: 66; stroke-linecap: round; stroke-linejoin: round; }
.road__surface  { fill: none; stroke: var(--navy-800); stroke-width: 54; stroke-linecap: round; stroke-linejoin: round; }
.road__driven   { fill: none; stroke: var(--gold); stroke-width: 54; stroke-linecap: round; stroke-linejoin: round; }
.road__centre   { fill: none; stroke: rgba(255, 255, 255, .9); stroke-width: 3.5; stroke-linecap: round; stroke-dasharray: 22 26; }

/* ---------- One stop on the road ---------- */
.rstop {
    position: relative; z-index: 1; min-height: 250px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center;
}
.rstop__box { max-width: 430px; }
/* road runs down the left of this stop -> text sits on the right */
.rstop--l .rstop__box { grid-column: 2; }
/* road runs down the right -> text sits on the left, aligned to it */
.rstop--r .rstop__box { grid-column: 1; justify-self: end; text-align: right; }

/* ---------- Map pin ---------- */
.rpin {
    position: absolute; top: 50%; width: 104px; height: 104px; border-radius: 50%;
    display: grid; place-items: center; background: #fff; border: 7px solid var(--navy-800);
    box-shadow: 0 18px 38px rgba(10, 31, 46, .35);
    opacity: 0; transform: translate(-50%, -50%) scale(.3);
    transition: opacity .5s var(--ease), transform .7s cubic-bezier(.34, 1.56, .64, 1),
                border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.rpin.in { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.rstop--l .rpin { left: 30%; }
.rstop--r .rpin { left: 70%; }
.rpin b { font-family: var(--ff-head); font-weight: 800; font-size: 1.85rem; color: var(--navy-900); line-height: 1; }
.rpin--range b { font-size: 1.15rem; }
/* pin tail */
.rpin::after {
    content: ""; position: absolute; top: calc(100% + 3px); left: 50%; margin-left: -15px;
    border-left: 15px solid transparent; border-right: 15px solid transparent;
    border-top: 24px solid var(--navy-800); transition: border-top-color .45s var(--ease);
}
/* ground shadow under the pin */
.rpin::before {
    content: ""; position: absolute; top: calc(100% + 22px); left: 50%; width: 86px; height: 22px;
    margin-left: -43px; border-radius: 50%; background: rgba(10, 31, 46, .22); filter: blur(6px);
}
/* the stop you are currently reading */
.rstop.is-active .rpin { border-color: var(--red); box-shadow: 0 22px 46px rgba(224, 52, 42, .45); }
.rstop.is-active .rpin::after { border-top-color: var(--red); }
.rstop.is-active .rpin b { color: var(--red); }
.rpin__pulse { position: absolute; inset: -7px; border-radius: 50%; border: 3px solid var(--red); opacity: 0; }
.rstop.is-active .rpin__pulse { animation: rPulse 2.2s var(--ease) infinite; }
@keyframes rPulse {
    0%   { opacity: .75; transform: scale(1); }
    70%  { opacity: 0;   transform: scale(1.4); }
    100% { opacity: 0;   transform: scale(1.4); }
}

/* ---------- Stop content ---------- */
.rstop__box { opacity: 0; transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rstop--l .rstop__box { transform: translate(38px, 20px); }
.rstop--r .rstop__box { transform: translate(-38px, 20px); }
.rstop__box.in { opacity: 1; transform: none; }

.rstop__ico { font-size: 2.1rem; color: var(--gold); margin-bottom: 12px; transition: transform .5s var(--ease), color .45s var(--ease); }
.rstop.is-active .rstop__ico { color: var(--red); transform: translateY(-4px) scale(1.08); }
.rstop__box h3 {
    font-family: var(--ff-body); font-weight: 600; font-size: 1.12rem; letter-spacing: 1.6px;
    text-transform: uppercase; color: var(--navy-900); margin: 0 0 14px; padding-bottom: 12px;
    position: relative;
}
.rstop__box h3::after {
    content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--gold); transform: scaleX(0); transform-origin: left;
    transition: transform .7s var(--ease) .2s, background .4s;
}
.rstop--r .rstop__box h3::after { transform-origin: right; }
.rstop__box.in h3::after { transform: scaleX(1); }
.rstop.is-active .rstop__box h3::after { background: var(--red); }
.rstop__box p { color: var(--muted); font-size: .97rem; margin: 0; }
.rstop__tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.rstop--r .rstop__tags { justify-content: flex-end; }
.rstop__tags span {
    display: inline-flex; align-items: center; gap: 7px; padding: 6px 14px; border-radius: 50px;
    background: #fff; border: 1px solid var(--line); font-size: .76rem; font-weight: 600;
    letter-spacing: .3px; color: var(--navy-800); box-shadow: var(--shadow-sm);
}
.rstop__tags i { color: var(--red); font-size: .7rem; }

/* ---------- Journey closing panel ---------- */
.road__end {
    position: relative; z-index: 1; max-width: 620px; margin: 30px auto 0; text-align: center;
    border-radius: 24px; padding: 46px 40px; color: #fff;
    background: linear-gradient(130deg, var(--navy-900), var(--navy-700)); box-shadow: var(--shadow-lg);
}
.road__end h3 { color: #fff; font-size: 1.7rem; }
.road__end p { color: #c8d4dc; margin: 0; }
.road__end i.big { font-size: 2.4rem; color: var(--gold-soft); margin-bottom: 14px; display: block; }

/* ============================================================
   HORIZONTAL MILESTONE TIMELINE (Home page)
   Icon on one side of the axis, year + text on the other.
   ============================================================ */
.htl-wrap { position: relative; margin-top: 60px; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.htl-wrap::-webkit-scrollbar { display: none; }
.htl { position: relative; display: flex; min-width: 1000px; padding: 0 8px; }

/* the axis */
.htl::before {
    content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 3px; margin-top: -1.5px;
    background: rgba(255, 255, 255, .28); border-radius: 3px;
}
.htl__run {
    position: absolute; left: 0; top: 50%; height: 3px; width: 0; margin-top: -1.5px; border-radius: 3px;
    background: linear-gradient(90deg, var(--gold), var(--red)); transition: width 1.6s var(--ease);
}
.htl.in .htl__run { width: 100%; }

.htl__i { flex: 1 1 0; position: relative; height: 430px; --c: var(--gold); }
.htl__i:nth-child(3n+3) { --c: var(--red); }
.htl__i:nth-child(3n+4) { --c: #eaf1f6; }

/* dot sitting on the axis */
.htl__dot {
    position: absolute; left: 50%; top: 50%; width: 22px; height: 22px; border-radius: 50%;
    background: var(--c); border: 4px solid var(--navy-900); transform: translate(-50%, -50%) scale(0);
    transition: transform .55s cubic-bezier(.34, 1.56, .64, 1); z-index: 2;
}
.htl__i.in .htl__dot { transform: translate(-50%, -50%) scale(1); }

/* big icon medallion */
.htl__ico {
    position: absolute; left: 50%; width: 96px; height: 96px; border-radius: 50%;
    display: grid; place-items: center; font-size: 2.1rem; background: var(--c); color: var(--navy-900);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .3);
    opacity: 0; transform: translateX(-50%) scale(.4);
    transition: opacity .5s var(--ease), transform .7s cubic-bezier(.34, 1.56, .64, 1);
}
.htl__i.in .htl__ico { opacity: 1; transform: translateX(-50%) scale(1); }
.htl__i.in:hover .htl__ico { transform: translateX(-50%) scale(1.08); }
/* stem joining medallion to the axis dot */
.htl__ico::after {
    content: ""; position: absolute; left: 50%; width: 2px; height: 42px; margin-left: -1px;
    background: var(--c); opacity: .65;
}

/* text block */
.htl__txt {
    position: absolute; left: 50%; width: 94%; text-align: center;
    opacity: 0; transition: opacity .6s var(--ease) .12s, transform .6s var(--ease) .12s;
}
.htl__i.in .htl__txt { opacity: 1; }
.htl__yr { display: block; font-family: var(--ff-head); font-weight: 800; font-size: 1.75rem; color: var(--c); line-height: 1; margin-bottom: 8px; }
.htl__txt h4 { font-family: var(--ff-body); font-size: .98rem; font-weight: 600; color: #fff; margin: 0 0 6px; }
.htl__txt p { font-size: .86rem; color: #a9bac4; margin: 0; line-height: 1.6; }

/* icon above the axis, text below */
.htl__i--up .htl__ico { bottom: calc(50% + 44px); }
.htl__i--up .htl__ico::after { top: 100%; }
.htl__i--up .htl__txt { top: calc(50% + 34px); transform: translate(-50%, 16px); }
.htl__i--up.in .htl__txt { transform: translateX(-50%); }
/* icon below the axis, text above */
.htl__i--dn .htl__ico { top: calc(50% + 44px); }
.htl__i--dn .htl__ico::after { bottom: 100%; }
.htl__i--dn .htl__txt { bottom: calc(50% + 34px); transform: translate(-50%, -16px); }
.htl__i--dn.in .htl__txt { transform: translateX(-50%); }

.htl__hint { margin-top: 6px; font-size: .8rem; color: #8ea0ab; letter-spacing: 1px; text-align: center; }
.htl__hint i { color: var(--gold-soft); }

/* ============================================================
   MILESTONE STRIP (About page)
   ============================================================ */
.mstone { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 56px; position: relative; }
.mstone::before {
    content: ""; position: absolute; left: 8%; right: 8%; top: 33px; height: 0;
    border-top: 2px dashed var(--gold); opacity: .6; z-index: 0;
}
.mstone__i { text-align: center; position: relative; z-index: 1; }
.mstone__b {
    width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center;
    background: linear-gradient(140deg, var(--navy-900), var(--navy-600)); color: var(--gold-soft);
    border: 4px solid var(--cream-2); font-size: 1.15rem; transition: all .45s var(--ease);
}
.mstone__i:hover .mstone__b { background: linear-gradient(140deg, var(--red), var(--red-dark)); color: #fff; transform: translateY(-5px) scale(1.06); }
.mstone__y { font-family: var(--ff-head); font-weight: 800; font-size: 1.4rem; color: var(--navy-900); display: block; }
.mstone__i h4 { font-size: 1rem; font-family: var(--ff-body); margin: 6px 0 6px; }
.mstone__i p { font-size: .87rem; color: var(--muted); margin: 0; }

/* ============================================================
   JOURNEY / TIMELINE — RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .rstop { grid-template-columns: 1fr; gap: 0; min-height: 0; padding: 0 0 58px 112px; align-items: start; }
    .rstop--l .rstop__box, .rstop--r .rstop__box { grid-column: 1; justify-self: start; text-align: left; max-width: none; transform: translate(0, 26px); }
    .rstop__box.in { transform: none; }
    .rstop--r .rstop__tags { justify-content: flex-start; }
    .rstop--r .rstop__box h3::after { transform-origin: left; }
    .rstop--l .rpin, .rstop--r .rpin { left: 46px; top: 40px; }
    .rpin { width: 76px; height: 76px; border-width: 5px; }
    .rpin b { font-size: 1.35rem; }
    .rpin--range b { font-size: .88rem; }
    .rpin::after { border-left-width: 11px; border-right-width: 11px; border-top-width: 17px; margin-left: -11px; }
    .rpin::before { width: 60px; margin-left: -30px; top: calc(100% + 16px); height: 16px; }
    .road__shoulder { stroke-width: 46; }
    .road__surface, .road__driven { stroke-width: 36; }
    .road__centre { stroke-dasharray: 15 18; }
    .mstone { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
    .mstone::before { display: none; }
}

@media (max-width: 768px) {
    .rstop { padding-left: 96px; padding-bottom: 46px; }
    .rstop--l .rpin, .rstop--r .rpin { left: 40px; }
    .rpin { width: 66px; height: 66px; }
    .rpin b { font-size: 1.15rem; }
    .rstop__box h3 { font-size: .98rem; letter-spacing: 1.1px; }
    .rstop__ico { font-size: 1.7rem; }
    .road__end { padding: 36px 26px; }
    .htl { min-width: 860px; }
    .htl__i { height: 400px; }
}

@media (max-width: 560px) {
    .mstone { grid-template-columns: repeat(2, 1fr); }
    .rstop { padding-left: 84px; }
    .rstop--l .rpin, .rstop--r .rpin { left: 34px; }
    .rpin { width: 58px; height: 58px; border-width: 4px; }
    .rpin b { font-size: 1rem; }
    .rpin--range b { font-size: .72rem; }
    .road__shoulder { stroke-width: 36; }
    .road__surface, .road__driven { stroke-width: 27; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    .rpin__pulse { animation: none; }
    .rpin, .rstop__box, .htl__ico, .htl__dot, .htl__txt, .htl__run { transition-duration: .01ms; }
}
