/* ============================================================
   Bass Trophy Master — Daylight Bass Tour
   Promo Website Stylesheet
   Theme: deep-lake teal + bass-belly gold + cattail green
   ============================================================ */

:root {
    /* Brand palette */
    --teal: #0E5760;
    --teal-dark: #083A41;
    --teal-light: #1F7E8B;
    --gold: #D9A857;
    --gold-dark: #A57A35;
    --gold-light: #EBC078;
    --green: #7CA85C;
    --green-dark: #577A3F;
    --aqua: #5BB4C4;
    --bronze: #B45F2A;
    --cream: #F2EDE0;
    --sand: #E8DFC8;
    --sand-raised: #F7F1E2;
    --ink: #2A2018;
    --ink-soft: #5A4E3C;
    --ink-mute: #8C8473;
    --border-soft: #D9D2BF;

    /* Gradients */
    --grad-daylight: linear-gradient(180deg, #F2EDE0 0%, #E8DFC8 100%);
    --grad-lake: linear-gradient(180deg, #1F7E8B 0%, #0E5760 60%, #083A41 100%);
    --grad-gold: linear-gradient(135deg, #EBC078 0%, #D9A857 50%, #A57A35 100%);
    --grad-sunset: linear-gradient(135deg, #D9A857 0%, #B45F2A 100%);

    /* Shadow */
    --shadow-sm: 0 1px 2px rgba(42, 32, 24, 0.08);
    --shadow-md: 0 2px 6px rgba(42, 32, 24, 0.12);
    --shadow-lg: 0 4px 12px rgba(42, 32, 24, 0.16);
    --shadow-xl: 0 8px 24px rgba(42, 32, 24, 0.22);

    /* Typography */
    --font-display: 'Fredoka', 'Baloo 2', system-ui, sans-serif;
    --font-body: 'Open Sans', system-ui, sans-serif;
}

/* ---------- Base ---------- */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    margin: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.15;
    margin: 0 0 0.4em;
    letter-spacing: -0.01em;
}

a { color: var(--teal-light); text-decoration: none; }
a:hover { color: var(--teal); text-decoration: underline; }

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

/* ---------- Topographic background pattern ---------- */

.topo-pattern {
    background-image:
        radial-gradient(circle at 20% 30%, rgba(217, 168, 87, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 80% 70%, rgba(124, 168, 92, 0.08) 0%, transparent 35%),
        repeating-linear-gradient(
            38deg,
            transparent 0px,
            transparent 22px,
            rgba(165, 122, 53, 0.04) 22px,
            rgba(165, 122, 53, 0.04) 23px
        );
}

/* ---------- Reusable typography treatments ---------- */

.eyebrow {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.eyebrow::before, .eyebrow::after {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.eyebrow.center { justify-content: center; }

.display-xl {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(40px, 7vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.02em;
}
.display-xl .accent-italic {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}
.display-xl .outlined {
    color: transparent;
    -webkit-text-stroke: 2px var(--cream);
}
.display-xl .gold-gradient {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 4px 18px rgba(165, 122, 53, 0.25);
}

.display-lg {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
}
.display-lg .italic-accent {
    font-style: italic;
    font-weight: 500;
    color: var(--teal);
}
.display-lg .gold-underline {
    background-image: linear-gradient(transparent 80%, rgba(217, 168, 87, 0.6) 80%);
    background-size: 100% 100%;
    padding: 0 6px;
}

.display-md {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.2;
}

/* ---------- Buttons ---------- */

.btn {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    padding: 14px 26px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.55rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    text-decoration: none;
    white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(0.97); }

.btn-primary {
    background: var(--grad-gold);
    color: var(--ink);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-primary:hover {
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: var(--ink);
}

.btn-secondary {
    background: var(--teal);
    color: var(--cream);
    box-shadow: var(--shadow-md);
}
.btn-secondary:hover {
    background: var(--teal-light);
    color: var(--cream);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
}
.btn-outline:hover {
    background: rgba(14, 87, 96, 0.08);
    color: var(--teal-dark);
}

.btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(242, 237, 224, 0.5);
}
.btn-ghost:hover {
    background: rgba(242, 237, 224, 0.12);
    color: var(--cream);
}

/* ---------- Top navigation ---------- */

.topnav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(242, 237, 224, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(165, 122, 53, 0.15);
}
.topnav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--ink);
}
.brand:hover { text-decoration: none; color: var(--teal); }
.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    background: var(--teal);
}
.brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
}
.brand-tag {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    line-height: 1;
    margin-top: 3px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}
.nav-links a {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 15px;
    color: var(--ink);
    text-decoration: none;
}
.nav-links a:hover { color: var(--teal); text-decoration: none; }
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--ink);
    padding: 6px;
    cursor: pointer;
}
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        right: 16px;
        flex-direction: column;
        gap: 0;
        background: var(--cream);
        border: 1px solid var(--border-soft);
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
        padding: 8px 0;
        min-width: 200px;
        display: none;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        padding: 10px 18px;
        width: 100%;
    }
    .nav-toggle { display: inline-flex; }
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(242, 237, 224, 0.4) 0%, rgba(232, 223, 200, 0.55) 100%),
        var(--grad-daylight);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/hero_bg.webp');
    background-size: cover;
    background-position: center 30%;
    opacity: 0.85;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(242, 237, 224, 0.05) 0%, rgba(242, 237, 224, 0.65) 65%, rgba(232, 223, 200, 0.95) 100%);
    z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
    .hero-actions { justify-content: center; }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(14, 87, 96, 0.12);
    color: var(--teal-dark);
    padding: 7px 14px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(14, 87, 96, 0.22);
}
.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px rgba(217, 168, 87, 0.7);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-sub {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.4vw, 18px);
    color: var(--ink-soft);
    max-width: 540px;
    margin: 1.25rem 0 2rem;
    text-align: left;
}
@media (max-width: 900px) {
    .hero-sub { margin-left: auto; margin-right: auto; text-align: center; }
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2rem;
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 14px;
    color: var(--ink-soft);
}
.hero-meta-item { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-meta-item svg { color: var(--green-dark); flex-shrink: 0; }

.hero-art {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.hero-art .fisherman {
    max-width: 380px;
    width: 100%;
    filter: drop-shadow(0 18px 30px rgba(42, 32, 24, 0.28));
    animation: float-y 6s ease-in-out infinite;
}
@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.hero-art .ring {
    position: absolute;
    inset: auto auto -10px 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 32px;
    background: radial-gradient(ellipse at center, rgba(217, 168, 87, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* ---------- Sections (general) ---------- */

.section {
    padding: 80px 0;
    position: relative;
}
.section-tight { padding: 56px 0; }
.section-cream { background: var(--cream); }
.section-sand { background: var(--sand); }
.section-teal {
    background: var(--grad-lake);
    color: var(--cream);
}
.section-teal h1, .section-teal h2, .section-teal h3 { color: var(--cream); }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-head {
    max-width: 740px;
    margin: 0 auto 3rem;
    text-align: center;
}
.section-head p {
    color: var(--ink-soft);
    font-size: 17px;
    margin-top: 1rem;
}
.section-teal .section-head p { color: rgba(242, 237, 224, 0.85); }

/* ---------- Wave divider ---------- */

.wave-top, .wave-bot {
    position: relative;
    height: 60px;
    overflow: hidden;
    background: var(--cream);
}
.wave-bot { background: var(--sand); }
.wave-top svg, .wave-bot svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ---------- Stats bar ---------- */

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-soft);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 3rem;
}
@media (max-width: 700px) {
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
}
.stat-cell {
    background: var(--sand-raised);
    padding: 22px 18px;
    text-align: center;
}
.stat-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 36px;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    letter-spacing: -0.02em;
}
.stat-label {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 13px;
    color: var(--ink-soft);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 6px;
}

/* ---------- Feature grid ---------- */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
    background: var(--sand-raised);
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(165, 122, 53, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-gold);
}
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: var(--gold-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}
.feature-icon.green { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); color: var(--cream); }
.feature-icon.gold { background: var(--grad-gold); color: var(--ink); }
.feature-icon.aqua { background: linear-gradient(135deg, var(--aqua) 0%, var(--teal-light) 100%); color: var(--cream); }
.feature-icon.bronze { background: var(--grad-sunset); color: var(--cream); }

.feature-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 0.5rem;
}
.feature-card p {
    font-size: 15px;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.55;
}

/* ---------- How it works (numbered steps) ---------- */

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

.step {
    background: rgba(242, 237, 224, 0.08);
    border: 1px solid rgba(242, 237, 224, 0.18);
    border-radius: 16px;
    padding: 24px 20px;
    position: relative;
    counter-increment: step;
    backdrop-filter: blur(2px);
}
.step::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    top: -14px;
    left: 18px;
    background: var(--grad-gold);
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    padding: 4px 12px;
    border-radius: 999px;
    box-shadow: var(--shadow-md);
    letter-spacing: 0.05em;
}
.step h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    margin: 0.8rem 0 0.5rem;
    color: var(--cream);
}
.step p {
    font-size: 14px;
    margin: 0;
    color: rgba(242, 237, 224, 0.78);
    line-height: 1.55;
}

/* ---------- Trophy 5 row ---------- */

.trophy-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}
@media (max-width: 700px) {
    .trophy-row { grid-template-columns: repeat(3, 1fr); }
    .trophy-row > :nth-child(4),
    .trophy-row > :nth-child(5) { grid-column: span 1; }
}
@media (max-width: 480px) { .trophy-row { grid-template-columns: repeat(2, 1fr); } }

.trophy-tile {
    background: var(--sand-raised);
    border-radius: 16px;
    padding: 14px 12px 16px;
    text-align: center;
    border: 2px solid var(--gold);
    box-shadow: 0 0 0 1px var(--gold-dark) inset, var(--shadow-md);
    position: relative;
}
.trophy-tile img {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    margin: 0 auto 8px;
}
.trophy-tile .trophy-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
    margin: 0 0 4px;
    line-height: 1.2;
}
.trophy-tile .trophy-region {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}
.trophy-tile .stars {
    color: var(--gold);
    font-size: 14px;
    margin-top: 4px;
    letter-spacing: 2px;
}

/* ---------- Screenshots / device frames ---------- */

.preview-section {
    position: relative;
    overflow: hidden;
}
.swiper-screens {
    padding: 30px 0 60px;
    max-width: 1100px;
    margin: 0 auto;
}
.swiper-screens .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.device-frame {
    position: relative;
    width: 280px;
    max-width: 90vw;
    aspect-ratio: 9 / 19.5;
    background: #1a1a1a;
    border-radius: 36px;
    padding: 10px;
    box-shadow:
        0 0 0 2px #333,
        0 0 0 6px #1a1a1a,
        0 20px 40px rgba(42, 32, 24, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    margin: 0 auto;
}
.device-frame::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 18px;
    background: #1a1a1a;
    border-radius: 0 0 12px 12px;
    z-index: 3;
}
.device-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}
.swiper-screens .swiper-pagination-bullet {
    background: var(--ink-mute);
    opacity: 0.5;
}
.swiper-screens .swiper-pagination-bullet-active {
    background: var(--gold);
    opacity: 1;
    width: 28px;
    border-radius: 4px;
}

/* ---------- Compliance banner ---------- */

.compliance-banner {
    background: var(--sand-raised);
    border: 2px solid var(--green);
    border-left-width: 8px;
    border-radius: 14px;
    padding: 22px 24px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: var(--shadow-md);
}
.compliance-banner .icon-wrap {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--green);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}
.compliance-banner h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 20px;
    margin: 0 0 0.4rem;
}
.compliance-banner p {
    font-size: 15px;
    color: var(--ink-soft);
    margin: 0;
}

/* ---------- CTA section ---------- */

.cta-section {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
    background: var(--grad-lake);
    color: var(--cream);
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/cta_bg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    mix-blend-mode: lighten;
}
.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 58, 65, 0.55) 0%, rgba(14, 87, 96, 0.7) 100%);
}
.cta-section .container { position: relative; z-index: 2; text-align: center; }
.cta-section h2 { color: var(--cream); }
.cta-section h2 .gold-gradient {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.cta-section p {
    color: rgba(242, 237, 224, 0.88);
    max-width: 560px;
    margin: 1rem auto 2rem;
}
.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Footer ---------- */

.site-footer {
    background: var(--teal-dark);
    color: rgba(242, 237, 224, 0.78);
    padding: 56px 0 28px;
    font-size: 14px;
}
.site-footer a { color: var(--gold-light); }
.site-footer a:hover { color: var(--gold); text-decoration: underline; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.footer-brand img { width: 44px; height: 44px; border-radius: 10px; }
.footer-brand .name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--cream);
}
.footer-col h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--cream);
    margin: 0 0 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-bottom {
    border-top: 1px solid rgba(242, 237, 224, 0.12);
    padding-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 13px;
    color: rgba(242, 237, 224, 0.55);
}

/* ---------- Legal page (privacy/terms) ---------- */

.legal-hero {
    background: var(--grad-daylight);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}
.legal-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/hero_bg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}
.legal-hero .container { position: relative; z-index: 1; text-align: center; }
.legal-hero h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(34px, 5vw, 52px);
    color: var(--ink);
    margin: 0 0 0.5rem;
}
.legal-hero .updated {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--gold-dark);
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.legal-body {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}
.legal-body h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 26px;
    color: var(--ink);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}
.legal-body h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 19px;
    color: var(--teal);
    margin: 1.6rem 0 0.6rem;
}
.legal-body p, .legal-body li {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    text-align: left;
}
.legal-body ul { padding-left: 1.3rem; }
.legal-body li { margin-bottom: 0.5rem; }
.legal-body a { color: var(--teal-light); font-weight: 600; }
.legal-body strong { color: var(--ink); font-weight: 700; }

/* ---------- Contact form ---------- */

.contact-wrap {
    max-width: 720px;
    margin: 0 auto;
    background: var(--sand-raised);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(165, 122, 53, 0.15);
}
@media (max-width: 600px) { .contact-wrap { padding: 28px 22px; } }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 0.4rem;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea,
.form-group input[type="file"] {
    width: 100%;
    background: var(--cream);
    border: 1.5px solid var(--border-soft);
    border-radius: 12px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--ink);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(14, 87, 96, 0.18);
}
.form-group textarea {
    min-height: 140px;
    resize: vertical;
    font-family: var(--font-body);
}
.form-actions {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.form-success {
    display: none;
    background: #E1EED7;
    border-left: 4px solid #4F8C42;
    color: var(--ink);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.form-success.visible { display: block; }
.contact-info {
    margin-top: 2rem;
    text-align: center;
    color: var(--ink-soft);
    font-size: 15px;
}
.contact-info a {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--teal);
}

/* ---------- Privacy acceptance button ---------- */

.privacy-accept-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 20px 16px calc(20px + env(safe-area-inset-bottom));
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, rgba(242, 237, 224, 0) 0%, rgba(242, 237, 224, 0.96) 35%, rgba(232, 223, 200, 1) 100%);
    pointer-events: none;
}
.privacy-accept-btn .accept-btn {
    pointer-events: auto;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    background: var(--grad-gold);
    color: var(--ink);
    border: none;
    border-radius: 14px;
    padding: 16px 32px;
    width: 100%;
    max-width: 420px;
    min-height: 56px;
    cursor: pointer;
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    text-align: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.privacy-accept-btn .accept-btn:hover {
    box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.privacy-accept-btn .accept-btn:active { transform: scale(0.97); }
.privacy-accept-btn.hidden { display: none; }

/* ---------- AOS overrides for graceful no-JS ---------- */

[data-aos] { transition-property: transform, opacity; }
