/* ============================================================
   TEMPLATE 11 — TWILIGHT AMBER & DEEP FOREST
   Layout  : Full-width horizontal sticky top tabs (NO sidebar)
             Asymmetric split hero · Editorial card grid
   Palette : Deep Forest #0B1F14 · Emerald #1A5C38 · Amber #E8960A
             Gold #F5C518 · Pearl #FDFAF2 · Sand #F0E8D0
   Fonts   : Cormorant Garamond · DM Sans · Space Mono
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    /* Forest family */
    --forest-950: #050F09;
    --forest-900: #0B1F14;
    --forest-800: #122B1C;
    --forest-700: #1A3D28;
    --forest-600: #245235;
    --forest-500: #2E6842;
    --forest-400: #3D8556;
    --forest-300: #5EAD76;
    --forest-200: #9DD1B0;
    --forest-100: #D4EDE0;
    --forest-50: #EEF8F2;

    /* Amber / Gold family */
    --amber-900: #7A4F00;
    --amber-800: #9A6400;
    --amber-700: #B87800;
    --amber-600: #D48E00;
    --amber-500: #E8960A;
    --amber-400: #F5B020;
    --amber-300: #F9C94A;
    --amber-200: #FCDFA0;
    --amber-100: #FEF3CF;
    --amber-50: #FFFBEE;

    /* Pearl / Sand */
    --pearl-100: #FDFAF2;
    --pearl-200: #F8F2E0;
    --pearl-300: #F0E8D0;
    --pearl-400: #E4D8B8;
    --pearl-500: #CDBF9A;
    --pearl-600: #A89A78;

    /* Ink */
    --ink-900: #0D1A12;
    --ink-800: #1C301F;
    --ink-700: #2F4A33;
    --ink-600: #476350;
    --ink-500: #637D6A;
    --ink-400: #8FA598;
    --ink-300: #B8CCC0;
    --ink-200: #D8E5DC;
    --ink-100: #EDF4EF;

    /* Status */
    --green-open: #22C55E;
    --red-closed: #EF4444;

    /* Shadows */
    --shad-xs: 0 1px 3px rgba(11, 31, 20, .08);
    --shad-sm: 0 2px 10px rgba(11, 31, 20, .10);
    --shad-md: 0 6px 24px rgba(11, 31, 20, .14);
    --shad-lg: 0 16px 48px rgba(11, 31, 20, .18);
    --shad-xl: 0 28px 80px rgba(11, 31, 20, .24);
    --shad-amber: 0 8px 28px rgba(232, 150, 10, .30);
    --shad-forest: 0 8px 32px rgba(11, 31, 20, .35);
    --glow-amber: 0 0 40px rgba(232, 150, 10, .20);

    /* Fonts */
    --font-disp: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --font-mono: 'Space Mono', monospace;

    /* Layout */
    --content-max: 1380px;
    --section-pad: 0 44px;

    /* Radius */
    --r-xs: 3px;
    --r-sm: 7px;
    --r-md: 12px;
    --r-lg: 18px;
    --r-xl: 26px;
    --r-2xl: 36px;
    --r-pill: 9999px;

    /* Easing */
    --ease: cubic-bezier(.4, 0, .2, 1);
    --ease-out: cubic-bezier(0, 0, .2, 1);
    --ease-spr: cubic-bezier(.34, 1.56, .64, 1);
    --t-fast: all .14s var(--ease);
    --t-base: all .25s var(--ease);
    --t-slow: all .42s var(--ease);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-700);
    background: var(--pearl-200);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: var(--pearl-300);
}

::-webkit-scrollbar-thumb {
    background: var(--forest-400);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--amber-500);
}

/* ============================================================
   WRAPPER
   ============================================================ */
.wrap-am {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: var(--section-pad);
}

/* ============================================================
   HERO — ASYMMETRIC SPLIT
   ============================================================ */
.hero-am {
    position: relative;
    min-height: 600px;
    background: var(--forest-900);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 480px;
    align-items: stretch;
    margin-top: 78px;
}

/* BG image fills entire hero */
.hero-am-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .18;
    transform: scale(1.03);
    transition: transform 12s ease;
}

.hero-am:hover .hero-am-bg {
    transform: scale(1.0);
}

/* Noise texture overlay */
.hero-am-noise {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Left content pane */
.hero-am-left {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 52px 0 52px;
}

/* Angled amber bar on left edge */
.hero-am-left::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--amber-400), var(--amber-500), transparent);
}

/* Top badge row */
.hero-am-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 28px;
}

.hero-am-type {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-am-type-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--amber-400);
    box-shadow: 0 0 14px rgba(245, 193, 24, .6);
    animation: heroDot 2.4s ease infinite;
}

@keyframes heroDot {
    0%, 100% {
        box-shadow: 0 0 14px rgba(245, 193, 24, .6);
    }
    50% {
        box-shadow: 0 0 24px rgba(245, 193, 24, .9);
    }
}

.hero-am-type-label {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--amber-300);
}

.hero-am-type-bar {
    width: 32px;
    height: 1px;
    background: rgba(245, 193, 24, .3);
}

.hero-am-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.hero-am-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid rgba(245, 193, 24, .18);
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 500;
    color: var(--forest-100);
    background: transparent;
    transition: var(--t-base);
}

.hero-am-chip i {
    font-size: 10px;
    color: var(--amber-400);
}

.hero-am-chip:hover {
    background: rgba(245, 193, 24, .10);
    border-color: var(--amber-400);
    color: var(--amber-200);
}

.hero-am-chip-v {
    background: rgba(26, 92, 56, .25);
    border-color: rgba(93, 173, 118, .3);
    color: var(--forest-200);
}

.hero-am-chip-v i {
    color: var(--forest-300);
}

/* Main title block */
.hero-am-title-block {
    padding: 48px 0 44px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-am-eyebrow {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--amber-400);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-am-eyebrow::after {
    content: '';
    flex: 1;
    max-width: 48px;
    height: 1px;
    background: var(--amber-500);
    opacity: .5;
}

.hero-am-name {
    font-family: var(--font-disp);
    font-size: clamp(48px, 5.5vw, 96px);
    font-weight: 600;
    line-height: .92;
    letter-spacing: -1.5px;
    color: var(--pearl-100);
    margin-bottom: 18px;
    /* Gradient text */
    background: linear-gradient(145deg, #FDFAF2 0%, #F5C518 55%, #FDFAF2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-am-address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--forest-200);
    margin-bottom: 28px;
}

.hero-am-address i {
    font-size: 11px;
    color: var(--amber-500);
}

/* Stat pills */
.hero-am-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch;
    gap: 0;
    background: rgba(253, 250, 242, .05);
    border: 1px solid rgba(245, 193, 24, .14);
    border-radius: var(--r-lg);
    overflow: hidden;
    backdrop-filter: blur(12px);
    width: fit-content;
}

.hero-am-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 22px;
    border-right: 1px solid rgba(245, 193, 24, .10);
    transition: var(--t-base);
}

.hero-am-stat:last-child {
    border-right: none;
}

.hero-am-stat:hover {
    background: rgba(245, 193, 24, .06);
}

.hero-am-stat-v {
    font-family: var(--font-disp);
    font-size: 22px;
    font-weight: 600;
    color: var(--pearl-100);
    line-height: 1;
}

.hero-am-stat-v.open {
    color: #4ADE80;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-am-stat-v.closed {
    color: var(--amber-400);
}

.hero-am-stat-k {
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--forest-300);
}

.hero-am-blink {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ADE80;
    animation: blink 1.6s ease infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .25;
    }
}

/* Right image pane */
.hero-am-right {
    position: relative;
    z-index: 10;
    overflow: hidden;
}


.hero-am-img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-am-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.hero-am:hover .hero-am-img-wrap img {
    transform: scale(1.04);
}

/* Overlay gradient on image pane */
.hero-am-img-tint {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(11, 31, 20, .5) 0%, rgba(11, 31, 20, .15) 60%, transparent 100%);
}

/* Floating logo card on image */
.hero-am-logo-card {
    position: absolute;
    z-index: 3;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(11, 31, 20, .85);
    border: 2px solid rgba(245, 193, 24, .30);
    border-radius: var(--r-xl);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(16px);
    white-space: nowrap;
    box-shadow: var(--shad-lg);
    min-width: 220px;
}

.hero-am-logo-img {
    width: 42px;
    height: 42px;
    border-radius: var(--r-md);
    object-fit: cover;
    border: 2px solid rgba(245, 193, 24, .35);
    flex-shrink: 0;
}

.hero-am-logo-name {
    font-family: var(--font-disp);
    font-size: 15px;
    font-weight: 600;
    color: var(--pearl-100);
    display: block;
    line-height: 1.2;
    margin-bottom: 2px;
}

.hero-am-logo-type {
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--amber-400);
}

.hero-am-verify-badge {
    margin-left: auto;
    width: 24px;
    height: 24px;
    background: var(--amber-500);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-am-verify-badge i {
    font-size: 10px;
    color: var(--forest-900);
}

/* Bottom curve */
.hero-am-curve {
    position: relative;
    line-height: 0;
    z-index: 11;
    grid-column: 1/-1;
    align-self: end;
}

.hero-am-curve svg {
    width: 100%;
    height: 56px;
    display: block;
}

/* ============================================================
   BOOKING BAR
   ============================================================ */
.booking-am-wrap {
    background: var(--pearl-200);
    padding: 0 0 40px;
}

.bam-form {
    background: var(--pearl-100);
    border: 1.5px solid var(--pearl-400);
    border-radius: var(--r-xl);
    padding: 22px 28px;
    box-shadow: var(--shad-md);
    display: grid;
    grid-template-columns:auto 1fr auto;
    gap: 22px;
    align-items: center;
    position: relative;
}

.bam-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-right: 22px;
    border-right: 1.5px solid var(--pearl-400);
}

.bam-brand-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--forest-700), var(--forest-900));
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shad-sm);
}

.bam-brand-icon i {
    font-size: 17px;
    color: var(--amber-400);
}

.bam-brand-title {
    font-family: var(--font-disp);
    font-size: 17px;
    font-weight: 600;
    color: var(--forest-900);
    display: block;
    line-height: 1.2;
    margin-bottom: 2px;
}

.bam-brand-sub {
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    color: var(--ink-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bam-fields {
    display: flex;
    gap: 13px;
    align-items: normal;
    flex-wrap: wrap;
}

.bam-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    flex: 1;
    min-width: 175px;
}

.bam-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ink-400);
}

.bam-label i {
    font-size: 10px;
    color: var(--amber-600);
}

.bam-input {
    width: 100%;
    padding: 11px 15px;
    background: var(--pearl-200);
    border: 1.5px solid var(--pearl-400);
    border-radius: var(--r-md);
    font-size: 13px;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--ink-800);
    outline: none;
    cursor: pointer;
    transition: var(--t-base);
    appearance: none;
    -webkit-appearance: none;
}

.bam-input::placeholder {
    color: var(--ink-400);
}

.bam-input:focus {
    border-color: var(--amber-500);
    background: var(--amber-50);
    box-shadow: 0 0 0 3px rgba(232, 150, 10, .12);
}

.bam-input option {
    background: var(--pearl-100);
    color: var(--ink-800);
}

.bam-occ-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bam-chev {
    color: var(--ink-400);
    font-size: 10px;
    transition: transform .2s var(--ease);
}

.bam-occ-panel {
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    right: 0;
    background: var(--pearl-100);
    border: 1.5px solid var(--pearl-400);
    border-radius: var(--r-lg);
    box-shadow: var(--shad-lg);
    padding: 13px 15px;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: var(--t-base);
}

.bam-occ-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bam-occ-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid var(--pearl-300);
}

.bam-occ-row:last-of-type {
    border-bottom: none;
}

.bam-occ-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-700);
}

.bam-ctr {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bam-ctr-btn {
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--pearl-400);
    background: var(--pearl-200);
    color: var(--forest-600);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: var(--t-fast);
    line-height: 1;
}

.bam-ctr-btn:hover {
    background: var(--forest-700);
    color: white;
    border-color: var(--forest-700);
    transform: scale(1.08);
}

.bam-ctr-val {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    color: var(--ink-800);
}

.bam-occ-apply {
    width: 100%;
    padding: 9px;
    margin-top: 9px;
    background: var(--forest-800);
    color: white;
    border: none;
    border-radius: var(--r-sm);
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--t-base);
}

.bam-occ-apply:hover {
    background: var(--amber-500);
    transform: translateY(-1px);
}

.bam-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--forest-600), var(--forest-900));
    color: white;
    border: none;
    border-radius: var(--r-md);
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: .8px;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--t-base);
    box-shadow: var(--shad-forest);
    position: relative;
    overflow: hidden;
}

.bam-submit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 35%, rgba(232, 150, 10, .22));
    opacity: 0;
    transition: opacity .3s;
}

.bam-submit:hover::after {
    opacity: 1;
}

.bam-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(11, 31, 20, .30);
}

.bam-submit i {
    font-size: 11px;
    transition: transform .2s;
}

.bam-submit:hover i {
    transform: translateX(3px);
}

/* ============================================================
   HORIZONTAL NAV — sticky top tabs
   ============================================================ */
.topnav-am {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--forest-900);
    border-bottom: 2px solid rgba(245, 193, 24, .12);
    box-shadow: 0 4px 24px rgba(11, 31, 20, .30);
}

.topnav-am-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 44px;
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    scrollbar-width: none;
}

.topnav-am-inner::-webkit-scrollbar {
    display: none;
}

.topnav-am-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    height: 52px;
    font-size: 11px;
    font-weight: 600;
    color: var(--forest-300);
    text-transform: uppercase;
    letter-spacing: .8px;
    cursor: pointer;
    border: none;
    background: none;
    border-bottom: 3px solid transparent;
    transition: var(--t-base);
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
}

.topnav-am-tab i {
    font-size: 13px;
}

.topnav-am-tab:hover {
    color: var(--amber-300);
    background: rgba(245, 193, 24, .05);
}

.topnav-am-tab.active {
    color: var(--amber-400);
    border-bottom-color: var(--amber-400);
    background: rgba(245, 193, 24, .06);
}

.topnav-am-num {
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 700;
    color: rgba(245, 193, 24, .35);
    letter-spacing: 1px;
}

.topnav-am-tab.active .topnav-am-num {
    color: rgba(245, 193, 24, .6);
}

/* Business mini-info on right of nav */
.topnav-am-biz {
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 0 0 20px;
    border-left: 1px solid rgba(245, 193, 24, .10);
}

.topnav-am-biz-logo {
    width: 30px;
    height: 30px;
    border-radius: var(--r-sm);
    object-fit: cover;
    border: 1.5px solid rgba(245, 193, 24, .25);
}

.topnav-am-biz-name {
    font-family: var(--font-disp);
    font-size: 14px;
    font-weight: 600;
    color: var(--pearl-200);
    line-height: 1;
}

.topnav-am-biz-stat {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--forest-300);
    margin-top: 2px;
}

.topnav-am-biz-open {
    color: #4ADE80;
}

.topnav-am-biz-led {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4ADE80;
    animation: blink 1.6s ease infinite;
    margin-right: 3px;
}

/* ============================================================
   MAIN CONTENT AREA
   ============================================================ */
.main-am {
    background: var(--pearl-200);
    padding: 52px 0 96px;
}

/* Tab panels */
.panel-am {
    display: none;
}

.panel-am.active {
    display: block;
    animation: panelIn .3s var(--ease-out);
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Panel header */
.panel-am-hdr {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--pearl-400);
    position: relative;
}

.panel-am-hdr::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--amber-500), var(--amber-300));
    border-radius: var(--r-pill);
}

.panel-am-kicker {
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--amber-600);
    display: block;
    margin-bottom: 5px;
}

.panel-am-title {
    font-family: var(--font-disp);
    font-size: 32px;
    font-weight: 600;
    color: var(--forest-900);
    line-height: 1.1;
    letter-spacing: -.2px;
}

.panel-am-badge {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    color: var(--forest-600);
    background: var(--forest-50);
    border: 1.5px solid var(--forest-200);
    padding: 4px 13px;
    border-radius: var(--r-pill);
    white-space: nowrap;
}

/* ============================================================
   CATEGORY CHIPS
   ============================================================ */
.catam-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.catam-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 15px 7px 9px;
    background: var(--pearl-100);
    border: 1.5px solid var(--pearl-400);
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-600);
    cursor: pointer;
    transition: var(--t-base);
}

.catam-img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--pearl-300);
}

.catam-all {
    font-size: 12px;
    color: var(--amber-600);
    font-weight: 700;
}

.catam-chip:hover, .catam-chip.active-cat {
    background: var(--forest-900);
    border-color: var(--forest-800);
    color: var(--pearl-100);
    transform: translateY(-2px);
    box-shadow: var(--shad-sm);
}

.catam-chip.active-cat .catam-all {
    color: var(--amber-300);
}

/* ============================================================
   PRODUCT GRID — editorial style
   ============================================================ */
.prodam-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px;
}

.prodam-card {
    background: var(--pearl-100);
    border: 1.5px solid var(--pearl-400);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--t-base);
    position: relative;
}

.prodam-card:hover {
    transform: translateY(-5px);
    border-color: var(--amber-300);
    box-shadow: 0 14px 40px rgba(11, 31, 20, .13), 0 0 0 2px rgba(232, 150, 10, .08);
}

/* Image block */
.prodam-img-wrap {
    position: relative;
    overflow: hidden;
    background: var(--pearl-300);
    flex-shrink: 0;
    width: 100%;
    padding-top: 60%;
    border-bottom: 1.5px solid var(--pearl-400);
}

.prodam-img-link {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
}


.prodam-noimg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--pearl-300);
    min-height: 180px;
}

.prodam-noimg-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--pearl-600);
}

.prodam-noimg-inner i {
    font-size: 32px;
}

.prodam-noimg-inner span {
    font-size: 12px;
    font-weight: 500;
}

.prodam-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

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

.prodam-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 31, 20, .80) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 14px;
    opacity: 0;
    transition: var(--t-base);
}

.prodam-card:hover .prodam-img-overlay {
    opacity: 1;
}

.prodam-img-overlay span {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    color: var(--amber-300);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid var(--amber-400);
    padding-bottom: 2px;
}

/* Wishlist */
.prodam-wish {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(253, 250, 242, .92);
    border: 1.5px solid var(--pearl-400);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--t-base);
}

.prodam-wish:hover {
    background: var(--amber-500);
    border-color: var(--amber-500);
}

.prodam-wish i {
    font-size: 12px;
    color: var(--amber-600);
    transition: var(--t-fast);
}

.prodam-wish:hover i, .prodam-wish.active i {
    color: var(--forest-900);
}

.prodam-wish.active {
    background: var(--amber-500);
    border-color: var(--amber-500);
}

/* Badges */
.prodam-badge-feat {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--forest-600), var(--forest-900));
    color: var(--amber-300);
    padding: 4px 10px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    border-radius: var(--r-pill);
    z-index: 9;
    box-shadow: var(--shad-sm);
}

.prodam-badge-disc {
    position: absolute;
    top: 44px;
    left: 10px;
    background: var(--amber-500);
    color: var(--forest-900);
    padding: 4px 9px;
    font-size: 10px;
    font-weight: 900;
    border-radius: var(--r-sm);
    z-index: 9;
    box-shadow: var(--shad-amber);
}

.prodam-avail {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 3px 9px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-radius: var(--r-pill);
    z-index: 8;
}

.avail-in {
    background: rgba(34, 197, 94, .10);
    color: #166534;
    border: 1px solid rgba(34, 197, 94, .3);
}

.avail-led {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #16A34A;
    margin-right: 4px;
    vertical-align: middle;
}

.avail-out {
    background: rgba(239, 68, 68, .10);
    color: #991B1B;
    border: 1px solid rgba(239, 68, 68, .25);
}

.prodam-photocnt {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(11, 31, 20, .82);
    color: var(--amber-300);
    padding: 3px 8px;
    font-size: 9px;
    font-weight: 700;
    border-radius: var(--r-pill);
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 8;
}

.prodam-photocnt i {
    font-size: 9px;
}

.prodam-timer {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--amber-600);
    color: white;
    padding: 3px 10px;
    font-size: 9px;
    font-weight: 800;
    border-radius: var(--r-pill);
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 9;
    text-transform: uppercase;
    letter-spacing: .8px;
    white-space: nowrap;
    box-shadow: var(--shad-amber);
}

.prodam-watermark {
    position: absolute;
    top: 4px;
    right: 8px;
    font-family: var(--font-mono);
    font-size: 52px;
    font-weight: 700;
    color: rgba(255, 255, 255, .07);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

/* Body */
.prodam-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
}


.prodam-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.prodam-cat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--amber-700);
}

.prodam-cat-gem {
    font-size: 8px;
    color: var(--amber-400);
}

.prodam-ref {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--ink-300);
}

.prodam-title {
    font-family: var(--font-disp);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}


.prodam-title a {
    color: var(--forest-900);
    transition: var(--t-fast);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prodam-title a:hover {
    color: var(--amber-700);
}

.prodam-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.prodam-spec {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    color: var(--ink-600);
    background: var(--forest-50);
    border: 1px solid var(--forest-100);
    padding: 3px 8px;
    border-radius: var(--r-pill);
}

.prodam-spec i {
    font-size: 9px;
    color: var(--forest-400);
}

.prodam-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--pearl-400);
    margin-top: auto;
}

.prodam-price {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.prodam-price-from {
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink-400);
}

.prodam-price-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.prodam-cur {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-500);
}

.prodam-num {
    font-family: var(--font-disp);
    font-size: 26px;
    font-weight: 700;
    color: var(--forest-800);
    line-height: 1;
    letter-spacing: -.3px;
}

.btn-resam {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--forest-600), var(--forest-900));
    color: white;
    border: none;
    border-radius: var(--r-md);
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: .7px;
    cursor: pointer;
    transition: var(--t-base);
    white-space: nowrap;
    box-shadow: var(--shad-sm);
    flex-shrink: 0;
}

.btn-resam:hover {
    background: linear-gradient(135deg, var(--amber-600), var(--amber-500));
    transform: translateY(-2px);
    box-shadow: var(--shad-amber);
    color: var(--forest-900);
}

.btn-resam i {
    font-size: 11px;
}

.btn-resam-off {
    background: var(--pearl-300);
    color: var(--pearl-600);
    box-shadow: none;
    cursor: not-allowed;
}

.btn-resam-off:hover {
    transform: none;
    box-shadow: none;
    background: var(--pearl-300);
    color: var(--pearl-600);
}

/* Empty state */
.empty-am {
    text-align: center;
    padding: 72px 20px;
    border: 1.5px dashed var(--pearl-400);
    border-radius: var(--r-lg);
}

.empty-am-icon {
    font-size: 52px;
    color: var(--pearl-500);
    margin-bottom: 14px;
    display: block;
}

.empty-am h3 {
    font-family: var(--font-disp);
    font-size: 24px;
    font-weight: 600;
    color: var(--ink-600);
    margin-bottom: 6px;
}

.empty-am p {
    font-size: 13px;
    color: var(--ink-400);
}

/* ============================================================
   ABOUT PANEL
   ============================================================ */
.about-am {
    max-width: 700px;
}

.about-am-pull {
    font-family: var(--font-disp);
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    color: var(--forest-700);
    line-height: 1.65;
    border-left: 4px solid var(--amber-500);
    padding: 14px 22px;
    margin-bottom: 26px;
    background: linear-gradient(135deg, var(--amber-50), var(--forest-50));
    border-radius: 0 var(--r-md) var(--r-md) 0;
}

.about-am-body {
    font-size: 15px;
    line-height: 1.9;
    color: var(--ink-600);
}

.about-am-body p {
    margin-bottom: 16px;
}

.about-am-body h2, .about-am-body h3 {
    font-family: var(--font-disp);
    color: var(--forest-800);
    margin: 24px 0 10px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gal-am {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 12px;
}

.gal-am-feat {
    grid-column: 1/3;
}

.gal-am-item {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: pointer;
    border: 1.5px solid var(--pearl-400);
    transition: var(--t-base);
}

.gal-am-item:hover {
    transform: scale(1.02);
    border-color: var(--amber-300);
    box-shadow: 0 8px 24px rgba(232, 150, 10, .2);
}

.gal-am-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform .5s var(--ease);
}

.gal-am-feat img {
    aspect-ratio: 16/9;
}

.gal-am-item:hover img {
    transform: scale(1.06);
}

.gal-am-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 31, 20, .78) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 10px 12px;
    opacity: 0;
    transition: var(--t-base);
}

.gal-am-item:hover .gal-am-ov {
    opacity: 1;
}

.gal-am-idx {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    color: var(--amber-300);
}

.gal-am-exp {
    font-size: 13px;
    color: var(--pearl-200);
}

/* Lightbox */
.lb-am {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lb-am.active {
    display: flex;
    animation: fadeIn .25s ease;
}

.lb-am-bg {
    position: absolute;
    inset: 0;
    background: rgba(5, 15, 9, .97);
    cursor: pointer;
}

.lb-am-box {
    position: relative;
    z-index: 1;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lb-am-close {
    position: absolute;
    top: -42px;
    right: 0;
    font-size: 17px;
    font-weight: 700;
    color: var(--forest-300);
    cursor: pointer;
    background: var(--forest-800);
    border: 1.5px solid var(--amber-500);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
    transition: var(--t-fast);
}

.lb-am-close:hover {
    background: var(--amber-500);
    color: var(--forest-900);
}

.lb-am-img {
    max-height: 76vh;
    object-fit: contain;
    border-radius: var(--r-lg);
    border: 2px solid rgba(232, 150, 10, .35);
    box-shadow: var(--shad-xl);
}

.lb-am-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.lb-am-btn {
    padding: 8px 18px;
    background: var(--forest-800);
    color: white;
    border: 1.5px solid var(--amber-500);
    border-radius: var(--r-sm);
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: .8px;
    cursor: pointer;
    transition: var(--t-base);
}

.lb-am-btn:hover {
    background: var(--amber-500);
    color: var(--forest-900);
    transform: translateY(-1px);
}

.lb-am-ctr {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--forest-300);
    font-weight: 700;
}

/* ============================================================
   FACILITIES
   ============================================================ */
.fac-am {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
}

.fac-am-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    padding: 20px 12px;
    background: var(--pearl-100);
    border: 1.5px solid var(--pearl-400);
    border-radius: var(--r-lg);
    text-align: center;
    transition: var(--t-base);
}

.fac-am-card:hover {
    border-color: var(--amber-300);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(232, 150, 10, .15);
    background: var(--amber-50);
}

.fac-am-icon {
    width: 50px;
    height: 50px;
    background: var(--pearl-200);
    border: 1.5px solid var(--pearl-400);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t-base);
}

.fac-am-card:hover .fac-am-icon {
    background: var(--forest-800);
    border-color: var(--forest-700);
}

.fac-am-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    transition: var(--t-fast);
}

.fac-am-card:hover .fac-am-icon img {
    filter: brightness(0) invert(1);
}

.fac-am-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-600);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.fac-am-card:hover .fac-am-name {
    color: var(--forest-700);
}

/* ============================================================
   HOURS
   ============================================================ */
.hours-am-wrap {
    border: 1.5px solid var(--pearl-400);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--pearl-100);
}

.hours-am-row {
    display: grid;
    grid-template-columns:180px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 15px 24px;
    border-bottom: 1px solid var(--pearl-300);
    transition: var(--t-fast);
}

.hours-am-row:last-child {
    border-bottom: none;
}

.hours-am-row:hover {
    background: var(--amber-50);
}

.hours-am-today {
    background: rgba(232, 150, 10, .05) !important;
    border-left: 3px solid var(--amber-500);
}

.hours-am-day {
    display: flex;
    align-items: center;
    gap: 9px;
}

.hours-am-today-tag {
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 700;
    background: var(--amber-500);
    color: var(--forest-900);
    padding: 2px 7px;
    border-radius: var(--r-pill);
    letter-spacing: 1px;
}

.hours-am-dayname {
    font-family: var(--font-disp);
    font-size: 17px;
    font-weight: 600;
    color: var(--forest-800);
}

.hours-am-dots {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--pearl-400) 0, var(--pearl-400) 4px, transparent 4px, transparent 8px);
}

.hours-am-open {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--forest-700);
    display: flex;
    align-items: center;
    gap: 7px;
}

.hours-am-arrow {
    color: var(--amber-500);
    font-size: 13px;
}

.hours-am-closed {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    color: #991B1B;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(239, 68, 68, .08);
    border: 1px solid rgba(239, 68, 68, .2);
    padding: 3px 10px;
    border-radius: var(--r-pill);
}

.hours-am-unset {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ink-300);
}

/* ============================================================
   LOCATION
   ============================================================ */
.loc-am-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.loc-am-info {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    border: 1.5px solid var(--pearl-400);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--pearl-100);
}

.loc-am-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-right: 1px solid var(--pearl-300);
    transition: var(--t-fast);
}

.loc-am-item:last-child {
    border-right: none;
}

.loc-am-item:hover {
    background: var(--amber-50);
}

.loc-am-ic {
    width: 38px;
    height: 38px;
    background: var(--forest-50);
    border: 1.5px solid var(--forest-100);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.loc-am-ic i {
    font-size: 14px;
    color: var(--forest-500);
}

.loc-am-img {
    max-width: 140px;
    width: 100%;
    height: auto;
}

.loc-am-lbl {
    display: block;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ink-400);
    margin-bottom: 3px;
}

.loc-am-val {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--forest-900);
    line-height: 1.4;
}

.loc-am-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.loc-am-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 20px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: .8px;
    cursor: pointer;
    border-radius: var(--r-md);
    transition: var(--t-base);
    text-decoration: none;
    border: none;
}

.loc-am-primary {
    background: linear-gradient(135deg, var(--forest-600), var(--forest-900));
    color: white;
    box-shadow: var(--shad-sm);
}

.loc-am-primary:hover {
    background: linear-gradient(135deg, var(--amber-600), var(--amber-500));
    transform: translateY(-2px);
    box-shadow: var(--shad-amber);
    color: var(--forest-900);
}

.loc-am-secondary {
    background: var(--pearl-200);
    color: var(--ink-700);
    border: 1.5px solid var(--pearl-400);
}

.loc-am-secondary:hover {
    background: var(--amber-50);
    border-color: var(--amber-300);
    color: var(--forest-700);
    transform: translateY(-2px);
}

.loc-am-tertiary {
    background: transparent;
    color: var(--forest-700);
    border: 1.5px solid var(--forest-200);
}

.loc-am-tertiary:hover {
    background: var(--forest-800);
    color: white;
    transform: translateY(-2px);
}

.loc-am-map-wrap {
    border: 1.5px solid var(--pearl-400);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shad-sm);
}

.loc-am-map {
    width: 100%;
    height: 420px;
    border: none;
}

/* ============================================================
   VIDEO
   ============================================================ */
.vid-am-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border: 1.5px solid var(--pearl-400);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shad-md);
}

.vid-am-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ============================================================
   ADS SECTION
   ============================================================ */
.ads-am-section {
    background: var(--forest-900);
    padding: 80px 0 88px;
    position: relative;
    overflow: hidden;
}

/* Top accent bar */
.ads-am-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--amber-500), var(--amber-300), var(--amber-500), transparent);
}

/* Bottom glow */
.ads-am-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 150, 10, .10) 0%, transparent 65%);
    pointer-events: none;
}

/* Geometric decorations */
.ads-am-geo1 {
    position: absolute;
    top: -50px;
    left: -30px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(232, 150, 10, .06);
    border-radius: 50%;
    pointer-events: none;
}

.ads-am-geo2 {
    position: absolute;
    bottom: 40px;
    left: 15%;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(232, 150, 10, .04);
    border-radius: 50%;
    pointer-events: none;
}

.ads-am-hdr {
    text-align: center;
    margin-bottom: 48px;
}

.ads-am-kicker {
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--amber-400);
    display: block;
    margin-bottom: 10px;
}

.ads-am-title {
    font-family: var(--font-disp);
    font-size: 52px;
    font-weight: 600;
    color: var(--pearl-100);
    letter-spacing: -.5px;
    line-height: 1;
    margin-bottom: 18px;
    background: linear-gradient(145deg, #FDFAF2 0%, #F5C518 55%, #FDFAF2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ads-am-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.ads-am-ornament span {
    width: 44px;
    height: 1px;
    background: rgba(232, 150, 10, .4);
}

.ads-am-ornament i {
    font-size: 12px;
    color: var(--amber-500);
}

.ads-am-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(255px, 1fr));
    gap: 18px;
}

.adcard-am {
    display: flex;
    flex-direction: column;
    background: rgba(26, 92, 56, .25);
    border: 1px solid rgba(232, 150, 10, .12);
    border-radius: var(--r-xl);
    overflow: hidden;
    text-decoration: none;
    transition: var(--t-base);
    backdrop-filter: blur(8px);
}

.adcard-am:hover {
    border-color: rgba(232, 150, 10, .40);
    transform: translateY(-7px);
    box-shadow: 0 20px 52px rgba(5, 15, 9, .50), 0 0 0 1px rgba(232, 150, 10, .20);
}

.adcard-am-img {
    position: relative;
    width: 100%;
    height: 186px;
    overflow: hidden;
    background: var(--forest-800);
}

.adcard-am-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.adcard-am:hover .adcard-am-img img {
    transform: scale(1.06);
}

.adcard-am-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 31, 20, .75) 0%, transparent 55%);
}

.adcard-am-noimg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.adcard-am-noimg i {
    font-size: 34px;
    color: var(--forest-500);
}

.adcard-am-num {
    position: absolute;
    top: 0;
    right: 0;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    color: var(--amber-300);
    background: var(--forest-900);
    padding: 4px 9px;
    border-radius: 0 0 0 var(--r-sm);
    letter-spacing: 1px;
}

.adcard-am-body {
    padding: 15px 18px;
    flex: 1;
}

.adcard-am-name {
    font-family: var(--font-disp);
    font-size: 18px;
    font-weight: 600;
    color: var(--pearl-100);
    line-height: 1.3;
    margin-bottom: 7px;
}

.adcard-am-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--forest-300);
}

.adcard-am-date i {
    color: var(--amber-500);
    font-size: 10px;
}

.adcard-am-foot {
    padding: 10px 18px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--amber-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--t-fast);
}

.adcard-am-foot i {
    transition: transform .2s var(--ease);
}

.adcard-am:hover .adcard-am-foot {
    color: var(--amber-300);
}

.adcard-am:hover .adcard-am-foot i {
    transform: translateX(4px);
}

/* ============================================================
   TOAST
   ============================================================ */
.am-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--forest-900);
    color: var(--amber-300);
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-body);
    border: 1.5px solid var(--amber-500);
    border-radius: var(--r-pill);
    box-shadow: var(--shad-amber);
    z-index: 99999;
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
}

.am-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Modal suppression */
.modal-backdrop, .modal-backdrop.fade, .modal-backdrop.show, .modal-backdrop.fade.show {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.modal, .modal.show {
    background-color: transparent;
}

.modal-dialog {
    position: relative;
    z-index: 1050;
}

button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
    outline: 2px solid var(--amber-500);
    outline-offset: 3px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

/* ============================================================
   RESPONSIVE — 1200px
   ============================================================ */
@media (max-width: 1200px) {
    :root {
        --section-pad: 0 28px;
    }

    .hero-am {
        grid-template-columns:1fr 400px;
    }

    .hero-am-name {
        font-size: clamp(42px, 5.5vw, 72px);
    }

    .bam-form {
        grid-template-columns:auto 1fr;
        grid-template-rows:auto auto;
    }

    .bam-submit {
        grid-column: 1/-1;
        width: 100%;
        justify-content: center;
    }

    .topnav-am-inner {
        padding: 0 28px;
    }

    .prodam-grid {
        grid-template-columns:repeat(2, 1fr);
    }
}

/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */
@media (max-width: 900px) {
    .hero-am {
        grid-template-columns:1fr;
    }

    .hero-am-right {
        display: none;
    }

    .hero-am-left {
        padding: 36px 28px 0 36px;
    }

    .hero-am-name {
        font-size: clamp(40px, 9vw, 64px);
    }

    .hero-am-left::before {
        height: 3px;
        width: auto;
        top: 0;
        bottom: auto;
        left: 0;
        right: 0;
    }

    .prodam-grid {
        grid-template-columns:repeat(2, 1fr);
        gap: 14px;
    }

}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --section-pad: 0 16px;
    }

    .hero-am-name {
        font-size: clamp(34px, 10vw, 56px);
    }

    .hero-am-left {
        padding: 28px 20px 0 20px;
    }

    .hero-am-stats {
        flex-wrap: wrap;
    }

    .bam-form {
        grid-template-columns:1fr;
        gap: 14px;
        padding: 20px 18px;
    }

    .bam-brand {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--pearl-400);
        padding-bottom: 12px;
    }

    .bam-fields {
        flex-direction: column;
    }

    .bam-submit {
        width: 100%;
        justify-content: center;
    }

    .topnav-am-biz-name {
        display: none;
    }

    .panel-am-title {
        font-size: 26px;
    }

    .prodam-grid {
        grid-template-columns:1fr 1fr;
        gap: 12px;
    }

    .gal-am {
        grid-template-columns:repeat(2, 1fr);
    }

    .gal-am-feat {
        grid-column: 1/-1;
    }

    .hours-am-row {
        grid-template-columns:1fr auto;
        gap: 8px;
        padding: 12px 14px;
    }

    .hours-am-dots {
        display: none;
    }

    .loc-am-info {
        grid-template-columns:1fr;
    }

    .loc-am-item {
        border-right: none;
        border-bottom: 1px solid var(--pearl-300);
    }

    .loc-am-item:last-child {
        border-bottom: none;
    }

    .loc-am-btns {
        flex-direction: column;
    }

    .loc-am-btn {
        width: 100%;
        justify-content: center;
    }

    .loc-am-map {
        height: 300px;
    }

    .ads-am-title {
        font-size: 34px;
    }

    .ads-am-grid {
        grid-template-columns:repeat(2, 1fr);
        gap: 14px;
    }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
    :root {
        --section-pad: 0 13px;
    }

    .hero-am-name {
        font-size: clamp(28px, 12vw, 46px);
        letter-spacing: -1px;
    }

    .hero-am-chips {
        display: none;
    }

    .topnav-am-tab {
        padding: 0 14px;
        font-size: 10px;
    }

    .topnav-am-num {
        display: none;
    }

    .topnav-am-biz {
        display: none;
    }

    .panel-am-title {
        font-size: 22px;
    }

    .prodam-grid {
        grid-template-columns:1fr;
        gap: 12px;
    }

    .fac-am {
        grid-template-columns:repeat(auto-fill, minmax(110px, 1fr));
    }

    .ads-am-title {
        font-size: 28px;
    }

    .ads-am-grid {
        grid-template-columns:1fr;
        gap: 12px;
    }
}

/* ============================================================
   RESPONSIVE — 360px
   ============================================================ */
@media (max-width: 360px) {
    .hero-am-name {
        font-size: 26px;
    }

    .panel-am-title {
        font-size: 20px;
    }

    .prodam-num {
        font-size: 22px;
    }

    .loc-am-map {
        height: 240px;
    }

    .ads-am-title {
        font-size: 24px;
    }
}

@media print {
    .booking-am-wrap, .topnav-am, .loc-am-btns, .ads-am-section {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }
}

/* ============================================================
   REVIEWS SECTION — rv9 prefix
   Template 9 · Twilight Amber & Deep Forest
   ============================================================ */

/* ── Overview block ─────────────────────────────────────────── */
.rv9-overview {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 36px;
    align-items: center;
    background: var(--forest-900);
    border-radius: var(--r-xl);
    padding: 40px 44px;
    margin-bottom: 44px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(232, 150, 10, .15);
}

.rv9-overview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 15% 50%, rgba(232,150,10,.10) 0%, transparent 55%),
                radial-gradient(ellipse at 85% 50%, rgba(26,92,56,.13) 0%, transparent 55%);
    pointer-events: none;
}

/* ── Score Medallion ────────────────────────────────────────── */
.rv9-medallion {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.rv9-medal-ring {
    position: absolute;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    border: 2px solid rgba(232, 150, 10, .30);
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    animation: rv9RingPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes rv9RingPulse {
    0%, 100% { opacity: .4; transform: translateX(-50%) scale(1); }
    50%       { opacity: .85; transform: translateX(-50%) scale(1.07); }
}

.rv9-medal-inner {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber-600), var(--amber-400));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(232,150,10,.35), 0 8px 24px rgba(0,0,0,.40);
    position: relative;
    z-index: 1;
}

.rv9-medal-score {
    font-family: var(--font-disp);
    font-size: 34px;
    font-weight: 700;
    color: var(--forest-900);
    line-height: 1;
}

.rv9-medal-denom {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--forest-800);
    opacity: .75;
    letter-spacing: .5px;
    margin-top: 2px;
}

.rv9-medal-stars {
    display: flex;
    gap: 3px;
    color: var(--amber-300);
    font-size: 13px;
}

.rv9-medal-label {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--ink-400);
    letter-spacing: .4px;
    white-space: nowrap;
}

/* ── Rating Bars ────────────────────────────────────────────── */
.rv9-bars-col {
    display: flex;
    flex-direction: column;
    gap: 11px;
    position: relative;
    z-index: 1;
}

.rv9-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rv9-bar-lbl {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--amber-400);
    min-width: 30px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.rv9-bar-lbl i { font-size: 9px; color: var(--amber-500); }

.rv9-bar-track {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,.08);
    border-radius: var(--r-pill);
    overflow: hidden;
}

.rv9-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--amber-600), var(--amber-300));
    border-radius: var(--r-pill);
    transition: width 1.3s var(--ease-out);
}

.rv9-bar-cnt {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink-400);
    min-width: 18px;
    text-align: right;
}

/* ── Verdict Column ─────────────────────────────────────────── */
.rv9-verdict-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.rv9-verdict-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--r-md);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.06);
    transition: var(--t-base);
}

.rv9-verdict-item:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(232,150,10,.2);
}

.rv9-verdict-item > i {
    font-size: 15px;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.rv9-verd-pos > i { color: var(--amber-400); }
.rv9-verd-neu > i { color: var(--forest-300); }
.rv9-verd-neg > i { color: #EF4444; }

.rv9-verd-num {
    display: block;
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.rv9-verd-lbl {
    display: block;
    font-family: var(--font-body);
    font-size: 10px;
    color: var(--ink-400);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ── Slider Heading + Nav Group ─────────────────────────────── */
.rv9-slider-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 14px;
}

.rv9-slider-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-disp);
    font-size: 22px;
    font-weight: 600;
    color: var(--forest-900);
    letter-spacing: -.2px;
}

.rv9-slider-line {
    flex: 0 0 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--amber-500), transparent);
}

.rv9-nav-group {
    display: flex;
    gap: 10px;
}

/* ── Arrows ─────────────────────────────────────────────────── */
.rv9-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--amber-500);
    background: transparent;
    color: var(--amber-500);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: var(--t-base);
    flex-shrink: 0;
}

.rv9-arrow:hover:not(:disabled) {
    background: var(--amber-500);
    color: var(--forest-900);
    transform: scale(1.08);
    box-shadow: var(--shad-amber);
}

.rv9-arrow:disabled {
    opacity: .32;
    cursor: not-allowed;
    transform: none;
}

/* ── Slider Container ───────────────────────────────────────── */
.rv9-slider-outer { position: relative; }

.rv9-viewport {
    overflow: hidden;
    border-radius: var(--r-lg);
}

.rv9-track {
    display: flex;
    gap: 24px;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1);
    cursor: grab;
    user-select: none;
    will-change: transform;
}

.rv9-track.dragging {
    cursor: grabbing;
    transition: none;
}

/* ── Review Card ────────────────────────────────────────────── */
.rv9-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--pearl-100);
    border-radius: var(--r-lg);
    padding: 32px 28px 26px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--pearl-400);
    box-shadow: var(--shad-sm);
    transition: var(--t-base);
    opacity: .65;
    transform: translateY(5px);
}

.rv9-card.active {
    opacity: 1;
    transform: translateY(0);
}

.rv9-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber-600), var(--amber-300));
    opacity: 0;
    transition: opacity .3s var(--ease);
}

.rv9-card.active::before,
.rv9-card:hover::before {
    opacity: 1;
}

.rv9-card:hover {
    box-shadow: var(--shad-md);
    transform: translateY(-4px);
    border-color: var(--amber-200);
}

/* ── Quote Icon ─────────────────────────────────────────────── */
.rv9-quote {
    font-family: var(--font-disp);
    font-size: 72px;
    font-weight: 700;
    color: var(--amber-200);
    line-height: .6;
    margin-bottom: 14px;
    display: block;
    pointer-events: none;
}

/* ── Stars ──────────────────────────────────────────────────── */
.rv9-card-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 16px;
}

.rv9-card-stars .fa-star,
.rv9-card-stars .fa-star-half-alt {
    color: var(--amber-500);
    font-size: 13px;
}

.rv9-card-stars .rv9-empty-star {
    color: var(--pearl-500);
}

.rv9-rating-num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--ink-600);
    margin-left: 6px;
    font-weight: 600;
}

/* ── Review Text ────────────────────────────────────────────── */
.rv9-card-text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.75;
    color: var(--ink-700);
    margin: 0 0 22px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Divider ────────────────────────────────────────────────── */
.rv9-card-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--amber-200), var(--pearl-400), transparent);
    margin-bottom: 18px;
}

/* ── Card Author ────────────────────────────────────────────── */
.rv9-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rv9-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: .5px;
    box-shadow: 0 2px 10px rgba(0,0,0,.15);
}

.rv9-av-amber  { background: linear-gradient(135deg, var(--amber-700), var(--amber-400)); color: var(--forest-900); }
.rv9-av-forest { background: linear-gradient(135deg, var(--forest-700), var(--forest-400)); color: #fff; }
.rv9-av-teal   { background: linear-gradient(135deg, #0f766e, #14b8a6); color: #fff; }
.rv9-av-gold   { background: linear-gradient(135deg, #b45309, #f59e0b); color: #fff; }

.rv9-author-info {
    flex: 1;
    min-width: 0;
}

.rv9-author-name {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--forest-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.rv9-author-role {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--ink-600);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

.rv9-author-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    flex-shrink: 0;
}

.rv9-review-date {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ink-500);
    white-space: nowrap;
}

.rv9-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    color: var(--forest-400);
    background: rgba(26, 92, 56, .12);
    border: 1px solid rgba(26, 92, 56, .2);
    padding: 3px 8px;
    border-radius: var(--r-pill);
    white-space: nowrap;
}

.rv9-verified i { font-size: 10px; }

/* ── Controls ───────────────────────────────────────────────── */
.rv9-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
}

.rv9-play-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--amber-500);
    background: transparent;
    color: var(--amber-500);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 11px;
    transition: var(--t-base);
    flex-shrink: 0;
}

.rv9-play-btn:hover {
    background: var(--amber-500);
    color: var(--forest-900);
    box-shadow: 0 0 16px rgba(232,150,10,.35);
}

.rv9-dots {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.rv9-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pearl-500);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .3s var(--ease);
}

.rv9-dot.active {
    background: var(--amber-500);
    width: 24px;
    border-radius: var(--r-pill);
    box-shadow: 0 0 12px rgba(232,150,10,.45);
}

/* ── Progress Bar ───────────────────────────────────────────── */
.rv9-progress-wrap { margin-top: 12px; }

.rv9-progress {
    height: 2px;
    background: var(--pearl-400);
    border-radius: var(--r-pill);
    overflow: hidden;
}

.rv9-progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--amber-600), var(--amber-300));
    border-radius: var(--r-pill);
    transition: width .1s linear;
}

/* ── Stats Row ──────────────────────────────────────────────── */
.rv9-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--pearl-400);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-top: 40px;
    border: 1px solid var(--pearl-400);
    box-shadow: var(--shad-sm);
}

.rv9-stat-item {
    background: var(--pearl-100);
    padding: 26px 20px;
    text-align: center;
    transition: var(--t-base);
}

.rv9-stat-item:hover {
    background: var(--amber-50, #fffbee);
}

.rv9-stat-num {
    font-family: var(--font-disp);
    font-size: 34px;
    font-weight: 700;
    color: var(--amber-700);
    line-height: 1;
    margin-bottom: 7px;
}

.rv9-stat-lbl {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--ink-600);
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* ============================================================
   REVIEWS — RESPONSIVE
   ============================================================ */

/* ── 1024px ── */
@media (max-width: 1024px) {
    .rv9-overview {
        grid-template-columns: 170px 1fr 170px;
        gap: 28px;
        padding: 34px 32px;
    }

    .rv9-medal-inner { width: 90px; height: 90px; }
    .rv9-medal-score { font-size: 30px; }

    .rv9-card {
        flex: 0 0 calc(50% - 12px);
    }

    .rv9-stat-num { font-size: 30px; }
}

/* ── 768px ── */
@media (max-width: 768px) {
    .rv9-overview {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 24px;
        padding: 28px 22px;
    }

    .rv9-medallion  { grid-column: 1; grid-row: 1; }
    .rv9-verdict-col{ grid-column: 2; grid-row: 1; }
    .rv9-bars-col   { grid-column: 1 / -1; grid-row: 2; }

    .rv9-card {
        flex: 0 0 100%;
    }

    .rv9-slider-hdr {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .rv9-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .rv9-stat-item { padding: 22px 16px; }
    .rv9-stat-num  { font-size: 28px; }
}

/* ── 425px ── */
@media (max-width: 425px) {
    .rv9-overview {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 22px 16px;
    }

    .rv9-medallion  { grid-column: 1; grid-row: auto; }
    .rv9-verdict-col{ grid-column: 1; grid-row: auto; }
    .rv9-bars-col   { grid-column: 1; grid-row: auto; }

    .rv9-medal-inner { width: 86px; height: 86px; }
    .rv9-medal-score { font-size: 28px; }
    .rv9-medal-ring  { width: 100px; height: 100px; top: -7px; }

    .rv9-card { padding: 24px 18px 20px; }
    .rv9-quote { font-size: 52px; }
    .rv9-card-text {
        -webkit-line-clamp: 5;
        font-size: 13px;
    }
    .rv9-author-meta { display: none; }

    .rv9-slider-heading { font-size: 18px; }
    .rv9-slider-line    { flex: 0 0 24px; }

    .rv9-stats-row { grid-template-columns: repeat(2, 1fr); }
    .rv9-stat-item { padding: 18px 12px; }
    .rv9-stat-num  { font-size: 26px; }
    .rv9-stat-lbl  { font-size: 10px; }
}

/* ── 375px ── */
@media (max-width: 375px) {
    .rv9-overview { padding: 20px 14px; gap: 16px; }

    .rv9-medal-inner { width: 80px; height: 80px; }
    .rv9-medal-score { font-size: 26px; }
    .rv9-medal-ring  { width: 94px; height: 94px; }

    .rv9-card { padding: 20px 16px; }
    .rv9-quote { font-size: 48px; }

    .rv9-arrow { width: 36px; height: 36px; font-size: 12px; }

    .rv9-stats-row  { grid-template-columns: 1fr 1fr; }
    .rv9-stat-item  { padding: 16px 10px; }
    .rv9-stat-num   { font-size: 24px; }
}

/* ── 320px ── */
@media (max-width: 320px) {
    .rv9-overview { padding: 16px 12px; gap: 14px; }

    .rv9-medal-inner { width: 74px; height: 74px; }
    .rv9-medal-score { font-size: 22px; }
    .rv9-medal-ring  { width: 86px; height: 86px; top: -6px; }
    .rv9-medal-label { font-size: 10px; }

    .rv9-card         { padding: 18px 14px; }
    .rv9-quote        { font-size: 44px; }
    .rv9-card-text    { font-size: 12px; }
    .rv9-author-name  { font-size: 12px; }
    .rv9-author-role  { font-size: 10px; }

    .rv9-slider-heading { font-size: 16px; }
    .rv9-slider-line    { flex: 0 0 16px; }

    .rv9-arrow { width: 34px; height: 34px; font-size: 11px; }

    .rv9-stats-row { grid-template-columns: 1fr 1fr; }
    .rv9-stat-item { padding: 14px 8px; }
    .rv9-stat-num  { font-size: 22px; }
    .rv9-stat-lbl  { font-size: 9px; letter-spacing: .3px; }
}


