/* ============================================
   AMBROS A1 MART — Production Stylesheet
   ============================================ */

:root {
    --bg: #06140A;
    --bg-card: #0A1F0F;
    --bg-elevated: #0E2A16;
    --text-primary: #FFFFFF;
    --text-secondary: #A8C3B1;
    --text-muted: #759B81;
    --primary: #F2A900;
    --primary-hover: #FFC107;
    --accent: #32CD32;
    --accent-hover: #A8E455;
    --border-soft: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.14);
    --radius: 22px;
}

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

html, body {
    margin: 0; padding: 0;
    background: var(--bg);
    color: var(--text-primary);
    font-family: 'Manrope', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-display {
    font-family: 'Cabinet Grotesk', 'Manrope', sans-serif;
    letter-spacing: -0.02em;
    margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--primary); color: var(--bg); }

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1a3a23; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* Grain overlay */
.grain-overlay::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.04;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='3'/><feColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Text gradients */
.text-gold {
    background: linear-gradient(135deg, #F2A900 0%, #FFD86B 60%, #F2A900 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.text-lime {
    background: linear-gradient(135deg, #32CD32 0%, #A8E455 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* Sections */
.section { padding: 96px 0; position: relative; }
@media (min-width: 768px) { .section { padding: 128px 0; } }
.section--dark { background: #04100A; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.25s ease;
    border: none;
    text-decoration: none;
    cursor: pointer;
    line-height: 1;
}
.btn-sm { padding: 11px 22px; font-size: 14px; }
.btn-primary {
    background: var(--primary);
    color: var(--bg);
    box-shadow: 0 0 28px rgba(242, 169, 0, 0.28);
}
.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 36px rgba(242, 169, 0, 0.45);
}
.btn-accent {
    background: var(--accent);
    color: var(--bg);
}
.btn-accent:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    padding: 13px 27px;
}
.btn-ghost:hover { background: #fff; color: var(--bg); }
.btn i, .btn svg { width: 16px; height: 16px; }

/* Cards */
.solid-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.solid-card:hover { border-color: rgba(242, 169, 0, 0.4); }
.glass-card {
    background: rgba(10, 31, 15, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
}

/* Pills */
.pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(50, 205, 50, 0.1);
    color: var(--accent);
    border: 1px solid rgba(50, 205, 50, 0.25);
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 600;
}
.pill svg, .pill i { width: 12px; height: 12px; }
.pill-gold {
    background: rgba(242, 169, 0, 0.1);
    color: var(--primary);
    border: 1px solid rgba(242, 169, 0, 0.3);
}

/* ===== Navbar ===== */
.amb-nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 18px 0;
    transition: all 0.3s ease;
}
.amb-nav.scrolled .amb-nav__inner {
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(6, 20, 10, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.amb-nav__inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1280px; margin: 0 auto;
    padding: 10px 24px;
    border-radius: 18px;
    transition: all 0.3s ease;
}
@media (min-width: 768px) { .amb-nav__inner { padding: 10px 32px; margin: 0 24px; } }
.amb-logo {
    display: flex; align-items: center; gap: 12px;
}
.amb-logo__icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, #F2A900, #FFC107);
    box-shadow: 0 0 20px rgba(242, 169, 0, 0.45);
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.amb-logo__icon::after {
    content: ''; position: absolute; top: -2px; right: -2px;
    width: 14px; height: 14px; border-radius: 999px;
    background: var(--accent); border: 2px solid var(--bg);
}
.amb-logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.amb-logo__title { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 900; font-size: 18px; letter-spacing: -0.02em; color: #fff; }
.amb-logo__sub { font-size: 10px; letter-spacing: 0.3em; color: rgba(255,255,255,0.55); font-weight: 600; margin-top: 2px; }

.amb-nav__links {
    display: none;
    gap: 36px;
    align-items: center;
}
@media (min-width: 1024px) { .amb-nav__links { display: flex; } }
.amb-nav__links a {
    position: relative;
    font-size: 14px; font-weight: 500;
    color: rgba(255,255,255,0.85);
    padding: 8px 0;
    transition: color 0.2s ease;
}
.amb-nav__links a:hover { color: var(--primary); }
.amb-nav__links a.active { color: var(--primary); }
.amb-nav__links a::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0;
    height: 2px; background: var(--primary);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s ease;
}
.amb-nav__links a.active::after, .amb-nav__links a:hover::after { transform: scaleX(1); }
.amb-nav__cta {
    display: none;
    align-items: center; gap: 18px;
}
@media (min-width: 1024px) { .amb-nav__cta { display: flex; } }
.amb-nav__phone {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: rgba(255,255,255,0.85);
    transition: color 0.2s ease;
}
.amb-nav__phone:hover { color: var(--primary); }
.amb-nav__phone i { width: 16px; height: 16px; }
.amb-nav__toggle {
    background: transparent; border: none; color: #fff;
    padding: 8px; cursor: pointer;
    display: flex;
}
@media (min-width: 1024px) { .amb-nav__toggle { display: none; } }
.amb-nav__toggle i { width: 24px; height: 24px; }

.amb-nav.open .amb-nav__links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 12px; right: 12px;
    background: rgba(6, 20, 10, 0.95);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    margin-top: 8px;
    gap: 18px;
}
.amb-nav.open .amb-nav__links a::after { display: none; }

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    overflow: hidden;
    background: var(--bg);
}
.hero__bg {
    position: absolute; inset: 0;
    pointer-events: none;
    background-image: url('https://images.unsplash.com/photo-1604719312566-8912e9227c6a?crop=entropy&cs=srgb&fm=jpg&w=2000&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    will-change: transform;
}
.hero__bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, var(--bg) 0%, rgba(6,20,10,0.3) 40%, var(--bg) 100%);
}
.hero__glow {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(50, 205, 50, 0.18), transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(242, 169, 0, 0.18), transparent 50%);
    pointer-events: none;
    will-change: transform;
}
.hero__blob {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(120px);
    will-change: transform;
}
.hero__blob-1 { top: 15%; left: 8%; width: 420px; height: 420px; background: rgba(50, 205, 50, 0.1); }
.hero__blob-2 { bottom: 10%; right: 5%; width: 520px; height: 520px; background: rgba(242, 169, 0, 0.12); }

.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
}
@media (min-width: 1024px) { .hero__grid { grid-template-columns: 7fr 5fr; gap: 80px; } }

.hero__title {
    font-size: clamp(40px, 7vw, 88px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.025em;
    margin: 28px 0 0;
}
.hero__sub {
    margin-top: 28px;
    max-width: 540px;
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255,255,255,0.75);
}
.hero__ctas {
    margin-top: 40px;
    display: flex; flex-wrap: wrap; gap: 16px;
}
.hero__points {
    margin-top: 40px;
    display: flex; flex-wrap: wrap; gap: 20px;
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em;
    color: rgba(255,255,255,0.55);
}
.hero__points span:nth-child(even) { color: var(--accent); }

.hero__cards {
    position: relative;
    height: 480px;
}
@media (min-width: 768px) { .hero__cards { height: 560px; } }
.hero__card {
    position: absolute;
    background: var(--bg-elevated);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 26px;
    width: 240px;
    will-change: transform;
}
.hero__card-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.hero__card-1 { top: 0; right: 0; box-shadow: 0 0 40px rgba(242,169,0,0.25); }
.hero__card-1 .hero__card-icon { background: rgba(242, 169, 0, 0.15); }
.hero__card-1 .hero__card-icon i { color: var(--primary); width: 22px; height: 22px; }
.hero__card-2 { top: 42%; left: 0; }
.hero__card-2 .hero__card-icon { background: rgba(50, 205, 50, 0.15); }
.hero__card-2 .hero__card-icon i { color: var(--accent); width: 22px; height: 22px; }
.hero__card-3 { bottom: 0; right: 36px; box-shadow: 0 0 40px rgba(50,205,50,0.25); }
.hero__card-3 .hero__card-icon { background: rgba(242, 169, 0, 0.15); }
.hero__card-3 .hero__card-icon i { color: var(--primary); width: 22px; height: 22px; }
.hero__card-cart {
    position: absolute;
    top: -24px; left: 50%; transform: translateX(-50%) rotate(-8deg);
    width: 80px; height: 80px; border-radius: 20px;
    background: linear-gradient(135deg, #F2A900, #FFC107);
    box-shadow: 0 0 40px rgba(242, 169, 0, 0.45);
    display: flex; align-items: center; justify-content: center;
}
.hero__card-cart i { width: 40px; height: 40px; color: var(--bg); stroke-width: 2.2; }
.hero__big { font-size: 36px; font-weight: 900; font-family: 'Cabinet Grotesk', sans-serif; line-height: 1; }
.hero__small-title { margin-top: 8px; font-size: 14px; font-weight: 600; letter-spacing: 0.05em; color: rgba(255,255,255,0.85); }
.hero__caption { margin-top: 6px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em; color: rgba(255,255,255,0.55); }
.hero__indicator {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.45);
}
.hero__indicator-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
    animation: pulse-slow 4s ease-in-out infinite;
}
.hero__indicator span { font-size: 10px; text-transform: uppercase; letter-spacing: 0.35em; }

@keyframes pulse-slow { 0%,100%{opacity:0.7;} 50%{opacity:1;} }

/* ===== Marquee ===== */
.marquee {
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: var(--bg-card);
    padding: 20px 0;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee__track {
    display: flex;
    animation: marquee-scroll 32s linear infinite;
    width: max-content;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
    display: flex; align-items: center; gap: 14px;
    padding: 0 36px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
}
.marquee__item i { color: var(--primary); width: 20px; height: 20px; }
.marquee__dot { color: var(--accent); font-size: 20px; font-weight: 900; }
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ===== Section header ===== */
.sh { max-width: 760px; }
.sh--center { margin: 0 auto; text-align: center; }
.sh h2 {
    margin-top: 20px;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.02;
}
.sh p {
    margin-top: 24px;
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* ===== Grids ===== */
.grid {
    display: grid;
    gap: 24px;
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
.grid-5 { grid-template-columns: 1fr 1fr; }
@media (min-width: 768px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
    .grid-5 { grid-template-columns: 1fr 1fr 1fr; }
}
@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
    .grid-5 { grid-template-columns: repeat(5, 1fr); }
}

/* Stat cards */
.stat-card { padding: 24px; }
.stat-card__big { font-size: 36px; font-weight: 900; font-family: 'Cabinet Grotesk', sans-serif; line-height: 1; }
.stat-card__sub { margin-top: 6px; font-size: 14px; color: rgba(255,255,255,0.85); }
.stat-card__label { margin-top: 10px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.5); }

/* Benefit card */
.benefit-card { padding: 28px; }
.benefit-card__icon {
    width: 56px; height: 56px;
    border-radius: 18px;
    background: rgba(242, 169, 0, 0.1);
    border: 1px solid rgba(242, 169, 0, 0.2);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: background 0.3s ease;
}
.benefit-card:hover .benefit-card__icon { background: rgba(242, 169, 0, 0.2); }
.benefit-card__icon i { color: var(--primary); width: 24px; height: 24px; }
.benefit-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.benefit-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.55; }

/* Store format card */
.format-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 26px;
    overflow: hidden;
    position: relative;
}
.format-card__img {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.format-card__img-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.15);
    transition: transform 0.6s ease;
    will-change: transform;
}
.format-card:hover .format-card__img-bg { transform: scale(1.25); }
.format-card__img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(6,20,10,0.4), var(--bg-card));
}
.format-card__badge {
    position: absolute; top: 18px; left: 18px;
    padding: 6px 14px; border-radius: 999px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    z-index: 2;
}
.format-card__badge.gold { background: var(--primary); color: var(--bg); }
.format-card__badge.lime { background: var(--accent); color: var(--bg); }
.format-card__skus {
    position: absolute; top: 18px; right: 18px;
    text-align: right; z-index: 2;
}
.format-card__skus small { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.7); }
.format-card__skus strong { display: block; font-size: 16px; font-weight: 700; color: #fff; font-family: 'Cabinet Grotesk', sans-serif; }
.format-card__body { padding: 28px; }
.format-card__body h3 { font-size: 28px; font-weight: 900; margin-bottom: 12px; }
.format-card__body p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; min-height: 80px; margin-bottom: 20px; }
.format-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.format-card__tag {
    font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em;
    padding: 5px 12px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* Franchise model card */
.model-card { padding: 28px; position: relative; }
.model-card__code {
    position: absolute; top: -14px; left: 28px;
    padding: 4px 14px; border-radius: 999px;
    font-size: 11px; font-weight: 900; letter-spacing: 0.3em;
    text-transform: uppercase;
}
.model-card__code.gold { background: var(--primary); color: var(--bg); }
.model-card__code.lime { background: var(--accent); color: var(--bg); }
.model-card__tag {
    position: absolute; top: 22px; right: 22px;
    font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em;
    color: rgba(255,255,255,0.45);
}
.model-card h3 { font-size: 20px; font-weight: 700; margin: 24px 0 20px; }
.model-card dl { display: flex; flex-direction: column; gap: 14px; }
.model-card dl > div {
    display: flex; justify-content: space-between; gap: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.model-card dl > div:last-child { border-bottom: none; padding-bottom: 0; }
.model-card dt { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.55); }
.model-card dd { font-size: 14px; color: rgba(255,255,255,0.9); text-align: right; max-width: 60%; margin: 0; }

/* ===== Page hero (about/franchise/contact) ===== */
.page-hero {
    position: relative;
    min-height: 70vh;
    padding: 160px 0 100px;
    overflow: hidden;
}
.page-hero__bg {
    position: absolute; inset: 0;
    pointer-events: none;
    background-size: cover; background-position: center;
    opacity: 0.16;
    will-change: transform;
}
.page-hero__bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(6,20,10,0.3), rgba(6,20,10,0.4), var(--bg));
}
.page-hero__inner { position: relative; z-index: 2; max-width: 960px; }
.page-hero h1 {
    margin-top: 24px;
    font-size: clamp(40px, 7vw, 76px);
    font-weight: 900;
    line-height: 0.95;
}
.page-hero p {
    margin-top: 28px;
    max-width: 640px;
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}
.page-hero__ctas { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }

/* ===== Leadership card ===== */
.leader-card { padding: 24px; }
.leader-card__avatar {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(242,169,0,0.3), rgba(50,205,50,0.2));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 22px; font-weight: 900;
    color: var(--primary);
}
.leader-card h3 { font-size: 18px; font-weight: 700; }
.leader-card__role { margin-top: 4px; font-size: 13px; color: rgba(255,255,255,0.55); }
.leader-card__email {
    margin-top: 20px;
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    transition: color 0.2s ease;
}
.leader-card__email:hover { color: var(--primary); }
.leader-card__email i { width: 14px; height: 14px; }

/* ===== Form ===== */
.form-section {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px;
}
@media (min-width: 768px) { .form-section { padding: 32px; } }
.form-section__head {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 24px;
}
.form-section__num {
    width: 40px; height: 40px; border-radius: 999px;
    background: var(--primary); color: var(--bg);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 18px; font-weight: 900;
}
.form-section__head h3 { font-size: 22px; font-weight: 700; }
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) {
    .form-grid { grid-template-columns: 1fr 1fr; }
    .form-grid .full { grid-column: 1 / -1; }
}
.amb-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 600;
}
.amb-label .req { color: var(--primary); }
.amb-input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    color: #fff;
    padding: 14px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    transition: all 0.2s ease;
    outline: none;
}
.amb-input:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 0 4px rgba(242, 169, 0, 0.12);
}
.amb-input::placeholder { color: rgba(168,195,177,0.55); }
select.amb-input { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A8C3B1' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
textarea.amb-input { resize: none; min-height: 130px; }
.radio-group { display: flex; flex-wrap: wrap; gap: 12px; }
.radio-pill {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    color: rgba(255,255,255,0.8);
    font-size: 13px; font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}
.radio-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg);
}
.form-foot {
    margin-top: 24px;
    display: flex; flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}
@media (min-width: 768px) {
    .form-foot { flex-direction: row; justify-content: space-between; align-items: center; }
}
.form-foot p { font-size: 13px; color: rgba(255,255,255,0.55); max-width: 440px; }

.form-success {
    text-align: center;
    padding: 60px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
}
.form-success__icon {
    width: 80px; height: 80px; border-radius: 999px;
    background: rgba(50,205,50,0.15);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
}
.form-success__icon i { width: 40px; height: 40px; color: var(--accent); }
.form-success h3 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.form-success p { color: rgba(255,255,255,0.7); max-width: 420px; margin: 0 auto 32px; }

/* ===== CTA ===== */
.cta {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
}
.cta__blob {
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 999px;
    filter: blur(120px);
    pointer-events: none;
    will-change: transform;
}
.cta__blob-1 { top: 40px; left: 40px; background: rgba(242, 169, 0, 0.15); }
.cta__blob-2 { bottom: 40px; right: 40px; background: rgba(50, 205, 50, 0.15); }
.cta__inner { position: relative; text-align: center; z-index: 2; }
.cta h2 { font-size: clamp(40px, 6vw, 76px); font-weight: 900; line-height: 0.98; }
.cta p { margin: 28px auto 0; font-size: 18px; color: rgba(255,255,255,0.65); max-width: 600px; }
.cta__ctas { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 5fr 7fr; } }
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 26px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: border-color 0.3s ease;
    margin-bottom: 18px;
}
.contact-card:hover { border-color: rgba(242, 169, 0, 0.4); }
.contact-card__icon {
    width: 56px; height: 56px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-card__icon i { width: 24px; height: 24px; }
.contact-card--phone .contact-card__icon { background: rgba(242, 169, 0, 0.15); border: 1px solid rgba(242, 169, 0, 0.25); }
.contact-card--phone .contact-card__icon i { color: var(--primary); }
.contact-card--mail .contact-card__icon { background: rgba(50, 205, 50, 0.15); border: 1px solid rgba(50, 205, 50, 0.25); }
.contact-card--mail .contact-card__icon i { color: var(--accent); }
.contact-card--map .contact-card__icon { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255,255,255,0.1); }
.contact-card--map .contact-card__icon i { color: rgba(255,255,255,0.85); }
.contact-card small { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.contact-card strong { display: block; font-family: 'Cabinet Grotesk', sans-serif; font-size: 22px; font-weight: 700; }
.contact-card .alt { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 4px; }

.leader-list { padding: 26px; }
.leader-list h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.5); margin-bottom: 16px; font-weight: 600; }
.leader-list ul li {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.leader-list ul li:last-child { border-bottom: none; }
.leader-list .lname { font-size: 14px; font-weight: 600; }
.leader-list .lrole { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }
.leader-list .lemail { font-size: 12px; color: var(--primary); }
.leader-list .lemail:hover { text-decoration: underline; }

/* ===== Story section ===== */
.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}
@media (min-width: 1024px) { .story-grid { grid-template-columns: 7fr 5fr; gap: 80px; } }
.story-img {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}
.story-img__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.story-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, var(--bg), transparent);
}
.story-img__caption {
    position: absolute; bottom: 24px; left: 24px; right: 24px;
    z-index: 2;
}
.story-img__caption strong { display: block; font-family: 'Cabinet Grotesk', sans-serif; font-size: 22px; font-weight: 700; }
.story-img__caption small { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 4px; display: block; }

/* ===== Footer ===== */
.amb-footer {
    background: #04100A;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 80px 0 32px;
}
.amb-footer__inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .amb-footer__inner { padding: 0 40px; } }
.amb-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 768px) { .amb-footer__grid { grid-template-columns: 5fr 3fr 4fr; gap: 48px; } }
.amb-footer__desc {
    margin-top: 28px;
    color: rgba(255,255,255,0.65);
    max-width: 440px;
    line-height: 1.6;
}
.amb-pills { display: flex; gap: 12px; margin-top: 24px; }
.amb-footer__col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.amb-footer__col ul li { margin-bottom: 12px; }
.amb-footer__col ul a { color: rgba(255,255,255,0.85); transition: color 0.2s ease; }
.amb-footer__col ul a:hover { color: var(--primary); }
.amb-footer__contact li {
    display: flex; gap: 14px; align-items: flex-start;
    margin-bottom: 18px;
}
.amb-footer__contact li i { width: 16px; height: 16px; color: var(--accent); margin-top: 6px; flex-shrink: 0; }
.amb-footer__contact li span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(255,255,255,0.5); }
.amb-footer__contact li a { color: rgba(255,255,255,0.9); }
.amb-footer__contact li a:hover { color: var(--primary); }
.amb-footer__contact li small { display: block; font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 2px; }

.amb-footer__bottom {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; flex-direction: column; gap: 16px;
    justify-content: space-between;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
}
@media (min-width: 768px) { .amb-footer__bottom { flex-direction: row; align-items: center; } }
.amb-footer__motto { letter-spacing: 0.25em; text-transform: uppercase; font-size: 12px; }

/* ===== Toast ===== */
.toast {
    position: fixed;
    top: 100px; right: 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    padding: 16px 22px;
    border-radius: 14px;
    font-size: 14px;
    z-index: 100;
    transform: translateX(120%);
    transition: transform 0.4s ease;
    max-width: 360px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.toast.show { transform: translateX(0); }
.toast.success { border-color: rgba(50,205,50,0.4); }
.toast.error { border-color: rgba(255, 80, 80, 0.4); }

/* Reveal animation */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Utility */
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }
.mb-12 { margin-bottom: 48px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-4 { gap: 16px; }
.text-center { text-align: center; }
.relative { position: relative; }
.z-2 { z-index: 2; }
