/* ============================================================
   Jaykrish AI Exports — BASE + DESIGN TOKENS (shared stylesheet)
   ------------------------------------------------------------
   Two-layer token system:
     Layer 1 — raw brand palette (--leaf-*, --navy, --green, ...)
     Layer 2 — semantic roles (--color-*, --text-*, --border-*,
               --surface-*, --radius-*, --shadow-*, --font-*)
   Change a token once in :root and the whole site follows.
   ============================================================ */

:root {
    /* Anchor jumps stop below the sticky navbar (~75px) with breathing room */
    scroll-behavior: smooth;
    scroll-padding-top: 90px;

    /* ─────────── Layer 1 · Brand palette ───────────
       Theme: Jaykrish LOGO GREENS (olive-leaf family)
       Logo colours (#34521A / #263D13 / #5B7A38) + derived tints.
       Warm gold #c9a84c is the PREMIUM decorative accent (hero eyebrows,
       stat numbers, marquee dots, footer deco, star ratings) — greens stay
       for CTAs / fills / dark bands. */
    --navy:       #34521a;   /* logo primary green (CTA / fills)     */
    --navy-deep:  #263d13;   /* logo darkest green (footer / dark)   */
    --green:      #5b7a38;   /* logo light olive (secondary accent)  */
    --green-deep: #34521a;   /* logo primary green (main fills)      */
    --green-dark: #2c4717;   /* primary hover (deepens)              */
    --green-soft: #edf2e1;   /* light green mist wash                */
    --orange:     #34521a;   /* alias → logo primary                 */
    --gold:       #c9a84c;   /* warm gold — premium decorative accent */
    --gold-soft:  #f5edd6;   /* legacy warm cream (unused)           */
    --deep-green: #263d13;   /* deepest green (dark sections)        */
    --teal-green: #5b7a38;   /* legacy name (unused)                 */
    --ivory:      #f5f7ee;   /* near-white green mist section bg     */
    --ivory-2:    #eaf0de;   /* light green mist section bg          */
    --white:      #ffffff;
    --wa-green:       #25d366;  /* WhatsApp                       */
    --wa-green-dark:  #1ebe5d;  /* WhatsApp hover                 */

    /* Ink ramp (neutrals) */
    --ink-900: #1a1a1a;   /* headings / strong text */
    --ink-700: #444444;   /* body text              */
    --ink-600: #555555;   /* secondary text         */
    --ink-500: #666666;   /* muted text             */
    --ink-400: #888888;   /* soft labels / meta     */
    --ink-300: #aaaaaa;   /* faint / placeholders   */
    --ink-200: #f0f0f0;   /* hairline               */
    --ink-100: #e8e8e8;   /* borders                */

    /* ─────────── Layer 2 · Semantic roles ─────────── */
    --color-primary:       var(--green-deep);   /* main olive fills       */
    --color-primary-deep:  var(--navy-deep);    /* darkest (footer/dark)  */
    --color-primary-soft:  var(--green-soft);   /* light mist wash        */
    --color-accent:        var(--green);        /* light olive accents    */
    --color-accent-dark:   #46612a;             /* olive accent hover     */
    --color-accent-bright: #a9bc8c;             /* pale sage — accents ON DARK */
    --color-accent-soft:   var(--green-soft);   /* chip / icon wash       */
    --color-gold:          var(--gold);         /* warm gold — premium accents */
    --color-blue:          var(--navy);         /* legacy name → primary  */
    --color-blue-soft:     #7fb2f0;             /* legacy (unused)        */
    --color-cta:           var(--navy);         /* CTA buttons / nav act  */
    --color-cta-dark:      #22360f;             /* CTA hover (darker)     */
    --color-deep:          var(--deep-green);
    --color-whatsapp:      var(--wa-green);
    --color-whatsapp-dark: var(--wa-green-dark);

    --surface-bg:     var(--white);
    --surface-card:   var(--white);
    --surface-ivory:  var(--ivory);
    --surface-cream:  var(--ivory-2);

    --text-strong: var(--ink-900);
    --text-body:   var(--ink-700);
    --text-second: var(--ink-600);
    --text-muted:  var(--ink-500);
    --text-soft:   var(--ink-400);
    --text-faint:  var(--ink-300);
    --text-on-dark: var(--white);

    --border-color:   var(--ink-100);
    --border-soft:    var(--ink-200);

    /* Warm-gold alpha tints (decorative — premium accent).
       Used on dark greens for eyebrows, dots, rings, dividers. */
    --gold-tint-040: rgba(201, 168, 76, 0.04);
    --gold-tint-050: rgba(201, 168, 76, 0.05);
    --gold-tint-080: rgba(201, 168, 76, 0.08);
    --gold-tint-120: rgba(201, 168, 76, 0.12);
    --gold-tint-200: rgba(201, 168, 76, 0.2);
    --gold-tint-150: rgba(201, 168, 76, 0.15);
    --gold-tint-250: rgba(201, 168, 76, 0.25);
    --gold-tint-280: rgba(201, 168, 76, 0.28);
    --gold-tint-400: rgba(201, 168, 76, 0.4);
    --gold-tint-500: rgba(201, 168, 76, 0.5);
    --gold-line:     rgba(201, 168, 76, 0.32);
    --primary-tint:  rgba(52, 82, 26, 0.05);
    --ink-050:       #f6f8f2;
    --white-tint-040: rgba(255, 255, 255, 0.04);
    --white-tint-070: rgba(255, 255, 255, 0.07);
    --white-tint-080: rgba(255, 255, 255, 0.08);
    --white-tint-120: rgba(255, 255, 255, 0.12);
    --white-tint-150: rgba(255, 255, 255, 0.15);
    --white-tint-200: rgba(255, 255, 255, 0.2);
    --white-tint-400: rgba(255, 255, 255, 0.4);
    --white-tint-600: rgba(255, 255, 255, 0.6);
    --white-tint-750: rgba(255, 255, 255, 0.75);

    /* Shadows */
    --shadow-xs: 0 2px 8px rgba(22, 33, 13, 0.07);
    --shadow-sm: 0 4px 16px rgba(22, 33, 13, 0.09);
    --shadow-md: 0 8px 24px rgba(44, 71, 23, 0.14);
    --shadow-lg: 0 12px 32px rgba(44, 71, 23, 0.16);
    --shadow-card-hover: 0 10px 28px rgba(44, 71, 23, 0.14);
    --shadow-wa: 0 3px 12px rgba(37, 211, 102, 0.3);
    --shadow-wa-hover: 0 5px 18px rgba(37, 211, 102, 0.45);
    --shadow-btn-glow: 0 10px 24px rgba(91, 122, 56, 0.35); /* CTA hover glow (logo olive) */
    --shine-gradient: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent); /* CTA shine sweep */

    /* Gradients & overlays */
    --gradient-footer: linear-gradient(135deg, var(--navy-deep) 0%, var(--green-deep) 160%);
    --gradient-footer-top: linear-gradient(90deg, var(--navy) 0%, var(--green-dark) 100%);
    --overlay-page: linear-gradient(90deg,
        rgba(26, 40, 13, 0.92) 0%, rgba(26, 40, 13, 0.55) 60%, rgba(26, 40, 13, 0.15) 100%);
    --overlay-slide: linear-gradient(90deg,
        rgba(26, 40, 13, 0.86) 0%, rgba(26, 40, 13, 0.5) 60%, rgba(26, 40, 13, 0.12) 100%);

    /* Radius scale */
    --radius-sm:  4px;
    --radius-md:  8px;
    --radius-lg:  12px;
    --radius-xl:  16px;
    --radius-pill: 999px;

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Motion (timings per docs/design-pattern/animations.md) */
    --transition-fast: 0.2s ease;   /* hover 0.2-0.3s */
    --transition-base: 0.25s ease;  /* hover 0.2-0.3s */
    --transition-slow: 0.4s ease;   /* image scale 0.3-0.4s */

    /* Feedback (form success / error) */
    --success-bg:    #e8f5e9;
    --success-text:  #1b5e20;
    --success-border:#c8e6c9;
    --error-bg:      #fdecea;
    --error-text:    #b71c1c;
    --error-border:  #f5c6cb;
    --badge-pop:     #e8624a;
    --shadow-strong: 0 8px 24px rgba(44, 71, 23, 0.32);

    /* Legacy aliases — existing inline var(--teal)/var(--gold) etc.
       in page markup keeps working; prefer semantic tokens above. */
    --teal: var(--green-deep);
    --teal-dark: var(--green-deep);
    --teal-light: var(--green-soft);
    --gold-light: var(--gold-soft);
    --ivory-3: var(--ivory);
}

/* ── Continuous animations (docs/design-pattern/animations.md) ── */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-bob {
    animation: float 3s ease-in-out infinite;
}

/* ───────────────────────── Base ───────────────────────── */

*:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--surface-bg);
    overflow-x: hidden;
}

a {
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-strong);
}

/* ───── FONTS ───── */
.font-playfair {
    font-family: var(--font-display);
}

.font-playfair em {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.25;
}

/* ── PAGE HERO BANNER ── */
.page-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    background-image: url('../images/banner/banner-1.webp');
    background-size: cover;
    background-position: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--overlay-page);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-on-dark);
    padding: 80px 0;
}

.breadcrumb-item a {
    color: var(--color-accent-bright);
    text-decoration: none;
    font-size: 13px;
}

.breadcrumb-item.active {
    color: var(--text-on-dark);
    font-size: 13px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--text-soft);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.12;
}

/* Page titles sit on dark hero imagery — force light text there
   (the generic h1 rule would otherwise make them near-black). */
.page-hero-content .page-title,
.page-hero-content h1 {
    color: var(--text-on-dark);
}

.page-title em {
    font-style: italic;
    color: var(--color-gold);
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.25;
}

.section-title em {
    font-style: italic;
    color: var(--color-accent);
}

.bg-ivory {
    background: var(--surface-ivory);
}

.bg-ivory2 {
    background: var(--surface-cream);
}

/* ── Service Cards (icon-based, no images) — shared home + service ── */
.svc-card {
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--color-accent);
    border-radius: var(--radius-lg);
    background: var(--surface-card);
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
    height: 100%;
}

.svc-card:hover {
    border-left-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
}

.svc-icon-wrap {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--color-accent-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background var(--transition-base);
}

.svc-card:hover .svc-icon-wrap {
    background: var(--color-primary-soft);
}

.svc-icon-wrap i {
    font-size: 26px;
    color: var(--color-primary);
    transition: color var(--transition-base);
}

.svc-num {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-primary);
    color: var(--text-on-dark);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    border: 2px solid var(--surface-card);
}

.svc-body {
    flex: 1;
}

.svc-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-strong);
}

.svc-text {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 12px;
}

.svc-tags span {
    display: inline-block;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    margin: 2px 2px 0 0;
}

/* ── COLLECTION CARDS (shared: home collections + pro-details related) ── */
.cat-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--surface-card);
    text-decoration: none;
    color: var(--text-strong);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    display: block;
    height: 100%;
    position: relative;
}

.cat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
    color: var(--text-strong);
}

/* Image (compact height so title + desc stay above the fold) */
.cat-img {
    height: 170px;
    overflow: hidden;
    background: var(--surface-cream);
    position: relative;
}

.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.cat-card:hover .cat-img img {
    transform: scale(1.08);
}

/* Grade badge on image (product-badge pattern) */
.cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--color-primary);
    color: var(--text-on-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

/* Bottom gradient that deepens on hover (Image Overlay on Hover) */
.cat-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(38, 61, 19, 0.35) 100%);
    opacity: 0.55;
    transition: opacity var(--transition-base);
    pointer-events: none;
    z-index: 1;
}

.cat-card:hover .cat-img::after {
    opacity: 1;
}

/* Info strip */
.cat-info {
    padding: 18px 20px 16px;
    background: var(--surface-card);
}

.cat-name {
    font-family: var(--font-display);
    font-size: 16.5px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 3px;
}

/* Short description — live from DB, 2-line clamp */
.cat-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer: View Details + arrow (arrow slides on hover) */
.cat-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-soft);
    padding-top: 12px;
}

.cat-view {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--color-primary);
    transition: color var(--transition-fast);
}

.cat-card:hover .cat-view {
    color: var(--color-primary-deep);
}

.cat-arrow {
    width: 34px;
    height: 34px;
    background: var(--color-accent-soft);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.cat-arrow i {
    font-size: 13px;
}

.cat-card:hover .cat-arrow {
    background: var(--color-primary);
    color: var(--text-on-dark);
    transform: translateX(4px);
}

/* ── PRODUCT CARDS (shared: home + product + pro-details) ── */
.product-card {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
    cursor: pointer;
    height: 100%;
}

.product-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-img {
    height: 210px;
    overflow: hidden;
    position: relative;
    background: var(--surface-cream);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-img img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-primary);
    color: var(--text-on-dark);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.product-info {
    padding: 16px 18px;
}

.product-type {
    font-size: 11px;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.35;
}

.product-price {
    font-size: 19px;
    font-weight: 700;
    color: var(--color-primary);
}

.product-price small {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-soft);
}

.btn-view {
    background: var(--color-accent-soft);
    color: var(--color-primary);
    border: none;
    padding: 7px 16px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-base), color var(--transition-base);
    text-decoration: none;
    display: inline-block;
}

.btn-view:hover {
    background: var(--color-accent);
    color: var(--text-on-dark);
}

/* ── CTA STRIP ── */
.cta-strip {
    background: var(--color-primary);
}

.cta-strip .text-white,
.cta-strip h3 {
    color: var(--text-on-dark);
}

.btn-gold {
    position: relative;
    overflow: hidden;
    background: var(--color-primary);
    color: var(--text-on-dark);
    padding: 13px 30px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background var(--transition-base), color var(--transition-base),
        transform var(--transition-base), box-shadow var(--transition-base);
    border: none;
    cursor: pointer;
}

/* CTA shine sweep (animations.md: CTA Button Shine Effect)
   Uses transform (GPU-accelerated) per the doc's performance rules. */
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--shine-gradient);
    transform: translateX(-100%) skewX(-20deg);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.btn-gold:hover::before,
.btn-gold:focus-visible::before {
    transform: translateX(230%) skewX(-20deg);
}

/* Arrow slide on CTA hover (animations.md: Button Arrow Slide) */
.btn-gold i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-gold:hover i,
.btn-gold:focus-visible i {
    transform: translateX(5px);
}

.btn-gold:hover,
.btn-gold:focus-visible {
    background: var(--color-primary-deep);
    color: var(--text-on-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-glow);
}

/* Buttons placed ON dark green surfaces flip to a light sage fill so
   the CTA stays high-contrast against the deep green band/image. */
.page-hero .btn-gold,
.slide-content .btn-gold,
.cta-strip .btn-gold,
.footer-nl-strip .btn-gold {
    background: var(--color-accent-bright);
    color: var(--color-primary-deep);
    border: 1.5px solid var(--white-tint-400);
}

.page-hero .btn-gold:hover,
.page-hero .btn-gold:focus-visible,
.slide-content .btn-gold:hover,
.slide-content .btn-gold:focus-visible,
.cta-strip .btn-gold:hover,
.cta-strip .btn-gold:focus-visible,
.footer-nl-strip .btn-gold:hover,
.footer-nl-strip .btn-gold:focus-visible {
    background: var(--text-on-dark);
    color: var(--color-primary);
    border-color: var(--text-on-dark);
}

.btn-outline-w {
    border: 1.5px solid var(--white-tint-600);
    color: var(--text-on-dark);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background var(--transition-base), color var(--transition-base);
}

.btn-outline-w:hover {
    background: var(--white-tint-120);
    color: var(--text-on-dark);
}

/* ── CONTACT FORM (shared: home + contact) ── */
.contact-form-wrap {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-xs);
    height: 100%; /* match side panel height so both cards align */
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 5px;
}

.form-control,
.form-select {
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 14px;
    padding: 11px 14px;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    background-color: var(--surface-bg);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-soft);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-faint);
}

.btn-submit {
    position: relative;
    overflow: hidden;
    background: var(--color-primary);
    color: var(--text-on-dark);
    padding: 13px 36px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background var(--transition-base), transform var(--transition-base),
        box-shadow var(--transition-base);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--shine-gradient);
    transform: translateX(-100%) skewX(-20deg);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.btn-submit:hover::before,
.btn-submit:focus-visible::before {
    transform: translateX(230%) skewX(-20deg);
}

.btn-submit:hover,
.btn-submit:focus-visible {
    background: var(--color-primary-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-glow);
}

/* ── CONTACT SIDE PANEL (shared: home + contact) ── */
.contact-side {
    background: var(--color-primary);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    color: var(--text-on-dark);
    height: 100%;
}

.side-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.side-sub {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 32px;
    line-height: 1.7;
}

.side-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.side-icon {
    width: 44px;
    height: 44px;
    background: var(--white-tint-120);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.side-icon i {
    font-size: 18px;
    color: var(--color-gold);
}

.side-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 4px;
}

.side-value {
    font-size: 14px;
    color: var(--text-on-dark);
    line-height: 1.6;
}

.side-value a {
    color: var(--text-on-dark);
    text-decoration: none;
}

.side-value a:hover {
    text-decoration: underline;
    color: var(--color-accent-bright);
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 32px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: var(--white-tint-120);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-on-dark);
    font-size: 17px;
    text-decoration: none;
    transition: background var(--transition-base), color var(--transition-base);
}

.social-btn:hover {
    background: var(--color-gold);
    color: var(--color-primary-deep);
}

.whatsapp-strip {
    background: var(--color-whatsapp);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    text-decoration: none;
    transition: background var(--transition-base);
}

.whatsapp-strip:hover {
    background: var(--color-whatsapp-dark);
}

.whatsapp-strip i {
    font-size: 26px;
    color: var(--text-on-dark);
}

.whatsapp-strip span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-on-dark);
    line-height: 1.4;
}

/* ── RESPONSE MSG (AJAX forms) ── */
.response-msg {
    font-size: 14px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
}

.response-msg.success {
    background: var(--success-bg);
    color: var(--success-text);
    border: 1px solid var(--success-border);
}

.response-msg.error {
    background: var(--error-bg);
    color: var(--error-text);
    border: 1px solid var(--error-border);
}

/* ── Reduced motion (animations.md performance rules) ── */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .float-bob,
    .story-img-badge,
    .marquee-inner {
        animation: none !important;
    }

    .btn-gold::before,
    .btn-submit::before {
        display: none;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}