/* ============================================================
   Sugar Candy Kingdom — regal candy-kingdom promo site
   Palette: Regal Purple / Gold Foil / Candy Red / Royal Mint
   ============================================================ */

:root {
    --c-purple: #6A3FA0;
    --c-purple-light: #7E4FBC;
    --c-purple-deep: #4A2A78;
    --c-gold: #E9B84A;
    --c-gold-deep: #C9941F;
    --c-crown-gold: #F0C84A;
    --c-red: #E0445C;
    --c-mint: #7FD4B0;
    --c-magenta: #B0379A;
    --c-cream: #FBF1E6;
    --c-pearl: #EFE4F0;
    --c-white: #FCF7FB;
    --c-ink: #2E2238;
    --c-ink-2: #5B4B6A;
    --c-ink-3: #897C97;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--c-cream);
    color: var(--c-ink);
    font-family: 'Quicksand', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a { color: var(--c-purple-light); text-decoration: none; }
a:hover { color: var(--c-purple); }

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

/* AOS fallback — if the library never initializes, keep content visible
   (matters for screenshot tools, no-JS, and prefers-reduced-motion users) */
@media (prefers-reduced-motion: reduce) {
    [data-aos] { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   Decorative chrome — gold-foil divider, velvet textures
   ============================================================ */

.velvet-bg {
    background:
      radial-gradient(circle at 20% 0%, rgba(176, 55, 154, 0.18) 0%, transparent 50%),
      radial-gradient(circle at 80% 100%, rgba(106, 63, 160, 0.22) 0%, transparent 55%),
      linear-gradient(180deg, #2E2238 0%, #4A2A78 100%);
    color: var(--c-white);
}

.gold-divider {
    height: 3px;
    background: linear-gradient(90deg,
      transparent 0%,
      var(--c-gold) 20%,
      var(--c-crown-gold) 50%,
      var(--c-gold) 80%,
      transparent 100%);
    margin: 0;
    border: 0;
}

.crown-bullet::before {
    content: '♛';
    color: var(--c-gold);
    margin-right: 8px;
    font-size: 0.95em;
}

/* ============================================================
   Top bar — Variation #3 (hamburger for all sizes)
   ============================================================ */

.topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(46, 34, 56, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(233, 184, 74, 0.25);
}

.topbar .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--c-white);
}

.brand:hover { color: var(--c-crown-gold); }

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    box-shadow: 0 0 0 2px rgba(240, 200, 74, 0.5), 0 4px 14px rgba(0,0,0,0.35);
}

.brand-name {
    font-family: 'Cormorant Garamond', 'Baloo 2', serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.2px;
}

.nav-toggle {
    width: 42px; height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(240, 200, 74, 0.45);
    background: rgba(240, 200, 74, 0.08);
    color: var(--c-crown-gold);
    border-radius: 10px;
    cursor: pointer;
}

.nav-toggle:hover { background: rgba(240, 200, 74, 0.18); }

.nav-drawer {
    position: absolute;
    right: 24px;
    top: 72px;
    min-width: 220px;
    background: var(--c-white);
    color: var(--c-ink);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 24px 60px -10px rgba(0,0,0,0.45), 0 0 0 1px rgba(240, 200, 74, 0.5);
}

.nav-drawer a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--c-ink);
    font-weight: 600;
}

.nav-drawer a:hover { background: var(--c-pearl); color: var(--c-purple); }

/* ============================================================
   Hero — Variation #6 (layered parallax over generated bg)
   ============================================================ */

.hero {
    position: relative;
    min-height: 88vh;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero_bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    transform: scale(1.05);
    z-index: -2;
}

.hero-bg-fallback {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 30% 20%, rgba(240, 200, 74, 0.35) 0%, transparent 55%),
      linear-gradient(135deg, #4A2A78 0%, #2E2238 60%, #6A3FA0 100%);
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
      rgba(46, 34, 56, 0.55) 0%,
      rgba(46, 34, 56, 0.35) 30%,
      rgba(46, 34, 56, 0.85) 100%);
    z-index: -1;
}

.hero .container {
    position: relative;
    z-index: 1;
    padding-top: 88px;
    padding-bottom: 96px;
    color: var(--c-white);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(240, 200, 74, 0.18);
    border: 1px solid rgba(240, 200, 74, 0.55);
    color: var(--c-crown-gold);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-eyebrow .crown { font-size: 14px; }

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(48px, 8vw, 92px);
    line-height: 0.98;
    letter-spacing: -0.01em;
    margin: 20px 0 10px;
    text-shadow: 0 4px 36px rgba(0,0,0,0.6);
}

.hero-title .row { display: block; }

.hero-title .accent {
    background: linear-gradient(180deg, var(--c-crown-gold) 0%, var(--c-gold-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    font-weight: 600;
}

.hero-title .outlined {
    color: transparent;
    -webkit-text-stroke: 2px var(--c-crown-gold);
    font-weight: 500;
}

.hero-sub {
    margin: 24px 0 32px;
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.55;
    max-width: 640px;
    color: rgba(252, 247, 251, 0.92);
}

.hero-sub strong { color: var(--c-crown-gold); font-weight: 600; }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 26px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    cursor: pointer;
    border: 0;
    min-height: 48px;
    line-height: 1.1;
}

.btn-primary {
    background: linear-gradient(180deg, var(--c-crown-gold) 0%, var(--c-gold-deep) 100%);
    color: #3B2A0E;
    box-shadow: 0 6px 22px -4px rgba(201, 148, 31, 0.55), inset 0 1px 0 rgba(255,255,255,0.45);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px -6px rgba(201, 148, 31, 0.7); color: #3B2A0E; }

.btn-ghost {
    background: rgba(252, 247, 251, 0.08);
    color: var(--c-white);
    border: 1px solid rgba(252, 247, 251, 0.35);
    backdrop-filter: blur(6px);
}

.btn-ghost:hover { background: rgba(252, 247, 251, 0.15); color: var(--c-crown-gold); border-color: var(--c-crown-gold); }

.btn-purple {
    background: linear-gradient(180deg, var(--c-purple-light) 0%, var(--c-purple) 100%);
    color: var(--c-white);
    box-shadow: 0 6px 22px -4px rgba(106, 63, 160, 0.55), inset 0 1px 0 rgba(255,255,255,0.18);
}

.btn-purple:hover { transform: translateY(-2px); color: var(--c-white); }

/* ============================================================
   Crest strip / stats
   ============================================================ */

.crest-strip {
    background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-pearl) 100%);
    border-top: 1px solid rgba(106, 63, 160, 0.12);
    border-bottom: 1px solid rgba(106, 63, 160, 0.12);
    padding: 40px 0;
}

.crest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.crest-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1;
    color: var(--c-purple);
}

.crest-num.gold {
    background: linear-gradient(180deg, var(--c-crown-gold) 0%, var(--c-gold-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.crest-lbl {
    margin-top: 6px;
    font-size: 12.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--c-ink-2);
}

@media (max-width: 760px) {
    .crest-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ============================================================
   Section headings
   ============================================================ */

.section {
    padding: 88px 0;
}

.section-eyebrow {
    display: inline-block;
    color: var(--c-purple);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(34px, 4.2vw, 52px);
    line-height: 1.08;
    margin: 0 0 14px;
    color: var(--c-ink);
}

.section-title .italic-accent { font-style: italic; color: var(--c-purple); font-weight: 500; }

.section-sub {
    color: var(--c-ink-2);
    font-size: 17px;
    line-height: 1.6;
    max-width: 680px;
    margin: 0 0 36px;
}

/* ============================================================
   How it works — alternating gold/cream timeline
   ============================================================ */

.howto {
    background: var(--c-cream);
    background-image:
      radial-gradient(circle at 90% 10%, rgba(240, 200, 74, 0.18) 0%, transparent 30%),
      radial-gradient(circle at 10% 90%, rgba(176, 55, 154, 0.10) 0%, transparent 30%);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.step {
    position: relative;
    background: var(--c-white);
    border-radius: 18px;
    padding: 30px 26px;
    border: 1px solid rgba(106, 63, 160, 0.10);
    box-shadow: 0 10px 32px -16px rgba(46, 34, 56, 0.18);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--c-crown-gold) 0%, var(--c-gold-deep) 100%);
    color: #3B2A0E;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px -4px rgba(201, 148, 31, 0.45);
}

.step h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 24px;
    margin: 0 0 8px;
    color: var(--c-ink);
}

.step p {
    margin: 0;
    color: var(--c-ink-2);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 860px) {
    .steps { grid-template-columns: 1fr; }
}

/* ============================================================
   Features — Variation #4 (accordion sections)
   ============================================================ */

.features {
    background: linear-gradient(180deg, var(--c-pearl) 0%, var(--c-cream) 100%);
}

.acc-list {
    display: grid;
    gap: 14px;
    max-width: 820px;
    margin: 0 auto;
}

.acc-item {
    background: var(--c-white);
    border-radius: 16px;
    border: 1px solid rgba(106, 63, 160, 0.12);
    overflow: hidden;
    box-shadow: 0 6px 22px -16px rgba(46, 34, 56, 0.25);
    transition: box-shadow 0.2s ease;
}

.acc-item.open {
    box-shadow: 0 14px 40px -16px rgba(106, 63, 160, 0.35);
    border-color: rgba(240, 200, 74, 0.45);
}

.acc-head {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    cursor: pointer;
    background: var(--c-white);
    border: 0;
    width: 100%;
    text-align: left;
    color: var(--c-ink);
}

.acc-emblem {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(240, 200, 74, 0.22), rgba(106, 63, 160, 0.12));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c-purple);
    font-size: 22px;
    flex-shrink: 0;
}

.acc-title {
    flex: 1;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.15;
}

.acc-chev {
    color: var(--c-purple);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.acc-item.open .acc-chev { transform: rotate(180deg); }

.acc-body {
    padding: 0 22px 22px 82px;
    color: var(--c-ink-2);
    font-size: 15.5px;
    line-height: 1.65;
    display: none;
}

.acc-item.open .acc-body { display: block; }

@media (max-width: 600px) {
    .acc-body { padding-left: 22px; }
    .acc-title { font-size: 19px; }
}

/* ============================================================
   Sweet 5 — legendary card showcase
   ============================================================ */

.sweet5 {
    background: var(--c-cream);
}

.sweet5-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.s5-card {
    background: var(--c-white);
    border-radius: 16px;
    padding: 16px 14px 18px;
    text-align: center;
    border: 1px solid rgba(240, 200, 74, 0.45);
    box-shadow: 0 10px 26px -16px rgba(106, 63, 160, 0.4);
    transition: transform 0.25s ease;
}

.s5-card:hover { transform: translateY(-4px); }

.s5-portrait {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(180deg, var(--c-pearl) 0%, var(--c-white) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(240, 200, 74, 0.5);
    overflow: hidden;
}

.s5-portrait img { width: 78%; height: 78%; object-fit: contain; }

.s5-tag {
    display: inline-block;
    margin-top: 12px;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-purple);
    font-weight: 700;
}

.s5-name {
    margin-top: 6px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    color: var(--c-ink);
}

@media (max-width: 900px) {
    .sweet5-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 540px) {
    .sweet5-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Ranks — gold ladder
   ============================================================ */

.ranks {
    background: linear-gradient(180deg, var(--c-pearl) 0%, var(--c-cream) 100%);
}

.rank-list {
    display: grid;
    gap: 14px;
    max-width: 860px;
    margin: 0 auto;
}

.rank {
    display: flex;
    align-items: center;
    gap: 22px;
    background: var(--c-white);
    border-radius: 14px;
    padding: 18px 22px;
    border-left: 4px solid var(--c-crown-gold);
    box-shadow: 0 6px 20px -16px rgba(46, 34, 56, 0.4);
}

.rank-num {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--c-pearl);
    color: var(--c-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.rank-body { flex: 1; }

.rank-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--c-ink);
}

.rank-quote {
    margin-top: 4px;
    color: var(--c-ink-2);
    font-style: italic;
    font-size: 14.5px;
    line-height: 1.55;
}

/* ============================================================
   Screenshots — Variation #3 (compact swiper)
   ============================================================ */

.preview {
    background: var(--c-cream);
    text-align: center;
}

.preview .container { padding-top: 12px; }

.preview-wrap {
    margin: 0 auto;
    max-width: 1000px;
}

.swiper-app {
    padding: 30px 10px 40px;
}

.swiper-app .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-frame {
    width: 240px;
    aspect-ratio: 420 / 912;
    border-radius: 32px;
    padding: 10px;
    background: linear-gradient(145deg, #1a1224 0%, #3a2a52 100%);
    box-shadow:
      0 20px 50px -20px rgba(46, 34, 56, 0.65),
      0 0 0 2px rgba(240, 200, 74, 0.6),
      inset 0 0 0 2px rgba(252, 247, 251, 0.05);
    margin: 0 auto;
    position: relative;
}

.device-frame::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    border-radius: 4px;
    background: rgba(252, 247, 251, 0.1);
    z-index: 2;
}

.device-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}

.preview .swiper-pagination-bullet {
    background: var(--c-purple);
    opacity: 0.4;
}

.preview .swiper-pagination-bullet-active {
    background: var(--c-crown-gold);
    opacity: 1;
}

.preview .swiper-button-next, .preview .swiper-button-prev {
    color: var(--c-purple);
}

.preview .swiper-button-next::after, .preview .swiper-button-prev::after { font-size: 22px; }

/* ============================================================
   CTA section
   ============================================================ */

.cta {
    position: relative;
    overflow: hidden;
    padding: 88px 0;
    color: var(--c-white);
    isolation: isolate;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/cta_bg.webp');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.cta-bg-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4A2A78 0%, #2E2238 50%, #6A3FA0 100%);
    z-index: -2;
}

.cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(46,34,56,0.78) 0%, rgba(46,34,56,0.55) 60%, rgba(46,34,56,0.85) 100%);
    z-index: -1;
}

.cta .container { text-align: center; }

.cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.05;
    margin: 0 0 16px;
}

.cta h2 .italic-accent {
    font-style: italic;
    color: var(--c-crown-gold);
}

.cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(252, 247, 251, 0.88);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* ============================================================
   Compliance band
   ============================================================ */

.compliance {
    background: var(--c-pearl);
    padding: 28px 0;
    color: var(--c-ink-2);
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    border-top: 1px solid rgba(106, 63, 160, 0.10);
}

.compliance strong { color: var(--c-purple); }

/* ============================================================
   Footer — Variation #3 (centered stack)
   ============================================================ */

.footer {
    background: #2E2238;
    color: var(--c-white);
    padding: 56px 0 36px;
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.footer-brand img { width: 42px; height: 42px; border-radius: 10px; }

.footer-brand .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--c-crown-gold);
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.footer-links a {
    color: rgba(252, 247, 251, 0.78);
    font-weight: 600;
    font-size: 14.5px;
}

.footer-links a:hover { color: var(--c-crown-gold); }

.footer-fine {
    font-size: 12.5px;
    color: rgba(252, 247, 251, 0.55);
    line-height: 1.55;
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================================
   Legal pages (privacy / terms / contact)
   ============================================================ */

.legal-hero {
    padding: 100px 0 48px;
    background: linear-gradient(180deg, #2E2238 0%, #4A2A78 100%);
    color: var(--c-white);
    text-align: center;
}

.legal-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(40px, 5vw, 64px);
    margin: 0 0 10px;
}

.legal-hero h1 .italic-accent { font-style: italic; color: var(--c-crown-gold); }

.legal-hero p {
    color: rgba(252, 247, 251, 0.75);
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0;
}

.legal-body {
    background: var(--c-cream);
    padding: 64px 0 96px;
}

.legal-card {
    background: var(--c-white);
    border-radius: 18px;
    padding: 40px 44px;
    max-width: 820px;
    margin: 0 auto;
    box-shadow: 0 14px 50px -28px rgba(46, 34, 56, 0.45);
    border: 1px solid rgba(240, 200, 74, 0.25);
    text-align: left;
}

.legal-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 26px;
    color: var(--c-purple);
    margin: 32px 0 10px;
    border-bottom: 2px solid rgba(240, 200, 74, 0.4);
    padding-bottom: 6px;
}

.legal-card h2:first-child { margin-top: 0; }

.legal-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--c-ink);
    margin: 22px 0 8px;
}

.legal-card p, .legal-card li {
    color: var(--c-ink-2);
    line-height: 1.7;
    font-size: 15px;
}

.legal-card ul {
    padding-left: 22px;
    margin: 10px 0 14px;
}

.legal-card a { color: var(--c-purple); text-decoration: underline; }

.legal-card .meta {
    color: var(--c-ink-3);
    font-size: 13.5px;
    font-style: italic;
    margin-bottom: 24px;
}

@media (max-width: 600px) {
    .legal-card { padding: 28px 22px; }
}

/* ============================================================
   Contact form
   ============================================================ */

.form-row { margin-bottom: 18px; }

.form-row label {
    display: block;
    margin-bottom: 6px;
    color: var(--c-ink);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1.5px solid rgba(106, 63, 160, 0.22);
    background: var(--c-white);
    color: var(--c-ink);
    font: inherit;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--c-purple);
    box-shadow: 0 0 0 4px rgba(106, 63, 160, 0.15);
}

.form-row textarea { min-height: 140px; resize: vertical; }

.form-row input[type="file"] {
    padding: 10px;
    background: var(--c-pearl);
    cursor: pointer;
}

.form-submit { display: flex; justify-content: flex-start; margin-top: 6px; }

/* ============================================================
   Privacy acceptance button (mobile webview)
   ============================================================ */

.privacy-accept-btn {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    padding: 16px 18px 22px;
    background: linear-gradient(180deg, transparent 0%, var(--c-cream) 32%, var(--c-cream) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.privacy-accept-btn.hidden { display: none; }

.accept-btn {
    width: 100%;
    max-width: 460px;
    padding: 16px 24px;
    border-radius: 14px;
    border: 0;
    background: linear-gradient(180deg, var(--c-crown-gold) 0%, var(--c-gold-deep) 100%);
    color: #3B2A0E;
    font: inherit;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 8px 24px -6px rgba(201, 148, 31, 0.55);
}

.accept-btn:active { transform: scale(0.985); }

/* ============================================================
   Utilities
   ============================================================ */

.center { text-align: center; margin-left: auto; margin-right: auto; }

@media (max-width: 600px) {
    .section { padding: 64px 0; }
    .hero .container { padding-top: 56px; padding-bottom: 64px; }
}
