/* ================================================
   YAKINIKU JOM — Premium Dark Edition
   ================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
    --gold:          #C9973A;
    --gold-light:    #E8BC6A;
    --gold-dim:      rgba(201, 151, 58, 0.18);
    --bg:            #0a1128;
    --bg-surface:    #111a38;
    --bg-card:       rgba(255, 255, 255, 0.04);
    --border:        rgba(201, 151, 58, 0.22);
    --border-hover:  rgba(201, 151, 58, 0.55);
    --text-primary:  #F5F0E8;
    --text-muted:    rgba(245, 240, 232, 0.50);
    --text-dim:      rgba(245, 240, 232, 0.30);
    --white:         #ffffff;
    --radius:        12px;
    --radius-pill:   999px;
    --shadow-gold:   0 0 32px rgba(201, 151, 58, 0.12);
    --shadow-card:   0 8px 40px rgba(0, 0, 0, 0.45);
    --transition:    0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ---------- GOLD RULE ---------- */
.gold-rule {
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 32px;
}

/* ---------- SECTION LABEL ---------- */
.section-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

/* ---------- LAYOUT ---------- */
.airy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 96px 32px;
    text-align: center;
}

/* ---------- NAVIGATION ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(10, 17, 40, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

.site-nav {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1.5px solid rgba(201,151,58,0.4);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo-text .logo-main {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-logo-text .logo-sub {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.55);
    margin-top: 3px;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* ---------- BUTTONS ---------- */
.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    border-radius: var(--radius-pill);
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--gold);
    color: #0d0d0d;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
    box-shadow: 0 4px 20px rgba(201, 151, 58, 0.30);
}

.btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 6px 28px rgba(201, 151, 58, 0.50);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--border-hover);
    box-shadow: none;
}

.btn-ghost:hover {
    background: var(--gold-dim);
    color: var(--gold-light);
    box-shadow: 0 0 20px rgba(201, 151, 58, 0.20);
}

/* Hero pill — white outline */
.btn-hero {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.55);
    box-shadow: none;
    letter-spacing: 0.18em;
}

.btn-hero:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.85);
    box-shadow: none;
    color: var(--white);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.45);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    text-align: center;
    background: linear-gradient(
        to bottom,
        rgba(10,17,40,0.30) 0%,
        rgba(10,17,40,0.10) 40%,
        rgba(10,17,40,0.60) 100%
    );
}

.hero-eyebrow {
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

/* Typewriter line */
.hero-typewriter {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 4vw, 3rem);
    font-weight: 400;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 28px;
    min-height: 1.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--gold-light);
    margin-left: 3px;
    animation: blink 0.75s step-end infinite;
    vertical-align: middle;
}

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

.hero-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.70);
    max-width: 460px;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-hint::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ---------- CARDS (glass on dark) ---------- */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow-card);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-gold), var(--shadow-card);
    transform: translateY(-3px);
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid var(--border);
    margin-bottom: 20px;
    color: var(--gold);
}
.card-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.75;
}

.card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
}

/* ---------- INTRO SECTION ---------- */
.intro h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 48px;
}

.intro-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    text-align: left;
}

/* ---------- REVIEWS ---------- */
.reviews h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 8px;
}

.reviews-subtitle {
    color: var(--text-dim);
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 48px;
}

/* ── Carousel wrapper ── */
.reviews-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow: hidden;
    flex: 1;
    text-align: left;
}

/* Arrow buttons */
.reviews-arrow {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}
.reviews-arrow:hover:not(:disabled) {
    background: var(--gold-dim);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-gold);
}
.reviews-arrow:disabled { opacity: 0.25; cursor: default; }
.reviews-arrow svg { width: 18px; height: 18px; stroke-width: 2; }

/* Dots */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}
.reviews-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.25s;
    border: none;
    padding: 0;
}
.reviews-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

.review-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid var(--border-hover);
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.review-name {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.review-stars {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-muted);
    font-family: 'Raleway', sans-serif;
    font-size: 0.88rem;
    line-height: 1.75;
    font-style: italic;
}

/* ---------- CTA SECTION ---------- */
.cta {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(201,151,58,0.04) 0%, transparent 60%);
}

.cta h2 {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    color: var(--text-primary);
    margin-bottom: 12px;
}

.cta p {
    color: var(--text-muted);
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
.site-footer {
    text-align: center;
    padding: 40px 24px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    border-top: 1px solid var(--border);
}

/* ---------- SCROLL FADE-UP ---------- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0);    }
}

.fade-up { opacity: 0; }
.fade-up.visible { animation: fadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.fade-up.visible:nth-child(2) { animation-delay: 0.12s; }
.fade-up.visible:nth-child(3) { animation-delay: 0.24s; }
.fade-up.visible:nth-child(4) { animation-delay: 0.36s; }
.fade-up.visible:nth-child(5) { animation-delay: 0.48s; }
.fade-up.visible:nth-child(6) { animation-delay: 0.60s; }

/* ---------- STATUS BADGE ---------- */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.status-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-badge.open {
    background: rgba(46, 125, 50, 0.12);
    color: #6fcf78;
    border: 1px solid rgba(111, 207, 120, 0.25);
}
.status-badge.open::before  { background: #6fcf78; }

.status-badge.closed {
    background: rgba(180, 60, 50, 0.10);
    color: #e07070;
    border: 1px solid rgba(224, 112, 112, 0.22);
}
.status-badge.closed::before { background: #e07070; }

/* ---------- NO-RESULTS ---------- */
.no-results {
    display: none;
    grid-column: 1 / -1;
    text-align: center;
    padding: 56px 24px;
    color: var(--text-muted);
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
}

.no-results.visible { display: block; }

/* ================================================
   PAGE TITLE (inner pages)
   ================================================ */
.page-hero {
    padding-top: 140px;
    padding-bottom: 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,151,58,0.10) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    color: var(--text-primary);
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text-muted);
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    max-width: 480px;
    margin: 0 auto;
}

/* ================================================
   MENU PAGE
   ================================================ */
.menu-subtitle {
    color: var(--text-muted);
    font-family: 'Raleway', sans-serif;
    margin-top: 8px;
    margin-bottom: 48px;
    font-size: 0.95rem;
}

.filter-bar {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
}
.filter-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    flex-shrink: 0;
}

.filter-btn:hover:not(.active) {
    border-color: var(--border-hover);
    color: var(--gold);
}

.filter-btn.active {
    background: var(--gold);
    color: #0d0d0d;
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(201, 151, 58, 0.30);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 20px;
    text-align: left;
}

.menu-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.menu-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-gold), var(--shadow-card);
    transform: translateY(-4px);
}

.menu-card-image {
    width: 100%;
    height: 210px;
    object-fit: cover;
    filter: brightness(0.88);
    transition: filter var(--transition);
}

.menu-card:hover .menu-card-image {
    filter: brightness(1);
}

.menu-card-body {
    padding: 22px 20px;
}

.menu-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.menu-card-desc {
    color: var(--text-muted);
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    margin-bottom: 14px;
    line-height: 1.65;
}

.menu-card-price {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 14px;
}

.menu-card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    font-family: 'Raleway', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tag-halal     { background: rgba(46, 125, 50, 0.15);  color: #6fcf78; border: 1px solid rgba(111,207,120,0.2); }
.tag-vegan     { background: rgba(85, 139, 47, 0.15);  color: #a8d97a; border: 1px solid rgba(168,217,122,0.2); }
.tag-no-seafood{ background: rgba(201, 151, 58, 0.12); color: var(--gold); border: 1px solid var(--border); }
.tag-hot       { background: rgba(211, 84, 0, 0.14);   color: #f0956a; border: 1px solid rgba(211,84,0,0.25); }
.tag-cold      { background: rgba(41, 128, 185, 0.14); color: #7ec8e3; border: 1px solid rgba(41,128,185,0.25); }

.menu-book-cta {
    margin-top: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 48px 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(201,151,58,0.05) 0%, transparent 70%);
}

.menu-book-cta p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-hero {
    width: 100%;
    max-height: 340px;
    overflow: hidden;
    position: relative;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--bg));
}

.contact-hero-image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    filter: brightness(0.50);
}

.contact-subtitle {
    color: var(--text-muted);
    font-family: 'Raleway', sans-serif;
    margin-top: 10px;
    margin-bottom: 52px;
    font-size: 0.95rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    text-align: center;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.contact-card p {
    color: var(--text-muted);
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    line-height: 1.75;
}

.contact-btn {
    margin-top: auto;
    padding: 12px 28px;
    font-size: 0.75rem;
}

/* ---- TRANSPORT & ORIGIN ROWS ---- */
.transport-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    width: 100%;
}

.transport-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.transport-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

.transport-icon svg { width: 15px; height: 15px; stroke-width: 1.75; }

.transport-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.transport-mode {
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.transport-detail {
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.origin-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    width: 100%;
}

.origin-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(201,151,58,0.08);
}

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

.origin-name {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.origin-meta {
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: right;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 4px;
}

.hours-table td {
    padding: 11px 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hours-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--text-muted);
}

.hours-table tr:last-child td { border-bottom: none; }

/* ---- MAP EMBED ---- */
.map-section {
    margin-top: 72px;
    text-align: center;
}

.map-embed-wrap {
    margin-top: 32px;
    width: 100%;
    height: 420px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

.map-embed-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* ================================================
   RESERVATION CALENDAR
   ================================================ */
.cal-section {
    margin-top: 72px;
    text-align: center;
}

.cal-heading {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--text-primary);
    margin-bottom: 10px;
}

.cal-subheading {
    color: var(--text-muted);
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 36px;
}

.cal-widget {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px 24px;
    box-shadow: var(--shadow-card);
}

/* Month navigation row */
.cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cal-nav-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--gold);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-nav-btn:hover {
    background: var(--gold-dim);
    border-color: var(--border-hover);
}

.cal-month-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.04em;
}

/* 7-column grid shared by DOW headers and day cells */
.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-dow-row {
    margin-bottom: 8px;
}

.cal-dow-row span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-align: center;
    padding: 4px 0;
}

/* Individual day cell */
.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
    position: relative;
    color: var(--text-primary);
    user-select: none;
}

/* Empty filler cells for offset */
.cal-day.empty {
    background: transparent;
    cursor: default;
    pointer-events: none;
}

/* Past dates */
.cal-day.past {
    color: var(--text-dim);
    cursor: default;
    pointer-events: none;
}

/* Today highlight */
.cal-day.today {
    border-color: var(--gold);
    color: var(--gold);
    font-weight: 700;
}

/* Availability states */
.cal-day.available { background: rgba(46, 125, 50, 0.12); }
.cal-day.available:hover { background: rgba(46, 125, 50, 0.24); border-color: rgba(111,207,120,0.4); }

.cal-day.limited  { background: rgba(201, 151, 58, 0.12); }
.cal-day.limited:hover  { background: rgba(201, 151, 58, 0.22); border-color: var(--border-hover); }

.cal-day.full     { background: rgba(180, 60, 50, 0.10); color: var(--text-dim); cursor: not-allowed; }

/* Selected state */
.cal-day.selected {
    border-color: var(--gold) !important;
    background: var(--gold-dim) !important;
    color: var(--gold-light) !important;
    font-weight: 700;
}

/* Small dot indicator at bottom of cell */
.cal-day::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: transparent;
}

.cal-day.available::after { background: #6fcf78; }
.cal-day.limited::after   { background: var(--gold); }
.cal-day.full::after      { background: #e07070; }

/* Legend */
.cal-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.cal-legend-item {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.dot-available { background: #6fcf78; }
.dot-limited   { background: var(--gold); }
.dot-full      { background: #e07070; }

/* Detail panel */
.cal-detail {
    margin-top: 20px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    animation: fadeUp 0.3s ease forwards;
}

.cal-detail-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cal-detail-date {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
}

.cal-detail-pax {
    font-family: 'Raleway', sans-serif;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.cal-book-btn {
    font-size: 0.75rem;
    padding: 11px 28px;
    letter-spacing: 0.14em;
}

.cal-book-btn.disabled {
    background: rgba(255,255,255,0.06);
    color: var(--text-dim);
    border-color: transparent;
    box-shadow: none;
    pointer-events: none;
    cursor: not-allowed;
}

/* ================================================
   RESPONSIVE
   ================================================ */
/* ── Tablet (641–900px) ── */
@media (max-width: 900px) and (min-width: 641px) {
    .reviews-carousel { grid-template-columns: repeat(2, 1fr); }

    .airy-container { padding: 72px 28px; }

    .intro-cards { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

    .menu-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

    .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile (≤640px) — iPhone 12 Pro = 390px ── */
@media (max-width: 640px) {
    /* Layout */
    .airy-container { padding: 56px 16px; }

    /* Nav — shrink gap and font so 4 links fit */
    .site-nav { padding: 14px 16px; }
    .nav-logo { gap: 8px; }
    .nav-logo-mark { width: 28px; height: 28px; }
    .nav-logo-text .logo-main { font-size: 0.85rem; }
    .nav-logo-text .logo-sub { font-size: 0.52rem; }
    .nav-links { gap: 14px; }
    .nav-link { font-size: 0.7rem; letter-spacing: 0.1em; }

    /* Hero */
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 0.85rem; max-width: 300px; }
    .hero-typewriter { font-size: clamp(1.2rem, 6vw, 1.8rem); }
    .hero-overlay { padding: 20px; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
    .hero-buttons .btn-primary { width: 100%; max-width: 280px; text-align: center; }

    /* Page hero (inner pages) */
    .page-hero { padding-top: 110px; padding-bottom: 40px; }
    .page-hero h1 { font-size: 2rem; }

    /* Grids → single column */
    .intro-cards,
    .contact-grid,
    .menu-grid { grid-template-columns: 1fr; }

    /* Section headings */
    h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); }

    /* Cards — reduce padding on mobile */
    .card { padding: 22px 18px; }

    /* Reviews carousel — hide arrows, go full-width 1 col */
    .reviews-carousel { grid-template-columns: 1fr; }
    .reviews-carousel-wrap { gap: 6px; }
    .reviews-arrow { width: 32px; height: 32px; flex-shrink: 0; }
    .reviews-arrow svg { width: 14px; height: 14px; }

    /* Menu filter bar — allow wrap, smaller buttons */
    .filter-bar { gap: 8px; }
    .filter-btn {
        font-size: 0.68rem;
        padding: 8px 14px;
        gap: 5px;
        letter-spacing: 0.08em;
    }

    /* Menu grid min → full width */
    .menu-grid { grid-template-columns: 1fr; }

    /* Calendar — reduce padding so cells don't crunch */
    .cal-widget { padding: 20px 12px 18px; }
    .cal-grid { gap: 2px; }
    .cal-day { font-size: 0.72rem; border-radius: 6px; }
    .cal-dow-row span { font-size: 0.58rem; letter-spacing: 0.06em; }
    .cal-month-label { font-size: 0.95rem; }
    .cal-detail { padding: 16px; }
    .cal-detail-date { font-size: 0.9rem; }

    /* Contact — transport & origin rows stay readable */
    .transport-list { gap: 8px; }
    .origin-name { font-size: 0.8rem; }
    .origin-meta { font-size: 0.72rem; }

    /* Map embed — shorter on mobile */
    .map-embed-wrap { height: 280px; }
    .map-section { margin-top: 48px; }

    /* CTA section buttons stack */
    .cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
    .cta-buttons .btn-primary { width: 100%; max-width: 300px; text-align: center; }

    /* Footer */
    .site-footer { padding: 24px 16px; font-size: 0.78rem; }
}

/* ================================================
   COURSE & PRICING PAGE
   ================================================ */

.course-subtitle {
    color: var(--text-muted);
    font-family: 'Raleway', sans-serif;
    margin-top: 10px;
    font-size: 0.95rem;
}

/* ---------- INPUT PANEL ---------- */
.course-input-panel {
    max-width: 560px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px 24px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.course-input-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.course-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-label-icon {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    stroke-width: 2;
}

.course-label-note {
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    text-transform: none;
}

/* ── Stepper (+/−/value) ── */
.course-stepper {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.stepper-btn {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stepper-btn:hover {
    background: var(--gold-dim);
}

.stepper-value {
    width: 48px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    background: transparent;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    -moz-appearance: textfield;
    outline: none;
}

.stepper-value::-webkit-inner-spin-button,
.stepper-value::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.course-input-divider {
    width: 1px;
    height: 64px;
    background: var(--border);
}

.course-pax-summary {
    width: 100%;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.course-pax-summary strong {
    color: var(--gold);
    font-weight: 700;
}

/* ---------- RESULTS LABEL ---------- */
.course-results-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.course-results-label strong {
    color: var(--gold);
}

/* ---------- COURSE GRID ---------- */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    text-align: left;
}

/* ---------- COURSE CARD ---------- */
.course-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-gold), var(--shadow-card);
    transform: translateY(-4px);
}

/* ── Image + badge ── */
.course-card-image-wrap {
    position: relative;
    overflow: hidden;
}

.course-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(0.80);
    transition: filter var(--transition);
}

.course-card:hover .course-card-image {
    filter: brightness(1);
}

.course-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(13, 13, 13, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-hover);
    color: var(--gold);
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
}

/* ── Body ── */
.course-card-body {
    padding: 22px 20px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-card-body h3 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.course-card-desc {
    color: var(--text-muted);
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

/* ── Includes list ── */
.course-card-includes {
    margin-bottom: 20px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.course-includes-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 8px;
    display: block;
}

.course-includes-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.course-includes-list li {
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    background: var(--gold-dim);
    border: 1px solid var(--border);
    color: var(--gold-light);
    letter-spacing: 0.04em;
}

/* ── Pricing section ── */
.course-card-pricing {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.course-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.course-price-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    color: var(--text-dim);
}

.course-price-value {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.course-price-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

.course-total-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.course-total-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
}

/* ---------- COURSE RESPONSIVE ---------- */
@media (max-width: 640px) {
    .course-input-panel {
        padding: 24px 20px 20px;
        gap: 16px;
    }

    .course-input-divider {
        width: 100%;
        height: 1px;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }

    .perk-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* ── Badge colour variants ── */
.course-card-badge {
    /* default — inherits styles from existing .course-card-badge */
}

/* "Best Value" — green */
.course-card-badge--best-value {
    background: rgba(46, 125, 50, 0.80) !important;
    border-color: rgba(111, 207, 120, 0.6) !important;
    color: #b9f5c2 !important;
}

/* "Most Popular" — gold (brand colour) */
.course-card-badge--most-popular {
    background: rgba(201, 151, 58, 0.88) !important;
    border-color: var(--gold-light) !important;
    color: #0d0d0d !important;
}

/* "Signature" — deep purple luxury */
.course-card-badge--signature {
    background: rgba(108, 52, 162, 0.82) !important;
    border-color: rgba(180, 130, 240, 0.5) !important;
    color: #e8d5ff !important;
}

/* ── VIP Perk Banner ── */
.course-perk-banner {
    max-width: 1000px;
    margin: 0 auto 40px;
    padding: 0 32px;
    animation: fadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.perk-banner-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, rgba(201,151,58,0.14) 0%, rgba(201,151,58,0.05) 100%);
    border: 1px solid rgba(201, 151, 58, 0.50);
    border-radius: var(--radius);
    padding: 18px 24px;
    box-shadow: 0 0 32px rgba(201, 151, 58, 0.10);
}

.perk-banner-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1;
}

.perk-banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.perk-banner-text strong {
    font-family: 'Raleway', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.04em;
}

.perk-banner-text span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.perk-banner-pax {
    color: var(--gold);
}

.perk-banner-cta {
    flex-shrink: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border-hover);
    padding: 9px 20px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.perk-banner-cta:hover {
    background: var(--gold);
    color: #0d0d0d;
    box-shadow: 0 4px 20px rgba(201, 151, 58, 0.35);
}



/* ================================================
   PAYMENT & BOOKING POLICY SECTION
   ================================================ */

.policy-section { text-align: center; }

.policy-heading {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    color: var(--text-primary);
    margin-bottom: 8px;
}

.policy-subheading {
    color: var(--text-muted);
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 48px;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    text-align: left;
}

.policy-card { display: flex; flex-direction: column; gap: 0; }

.policy-card-desc {
    color: var(--text-muted);
    font-family: 'Raleway', sans-serif;
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ── CATEGORIZED PAYMENT LOGOS ── */
.payment-categories {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.payment-cat-title {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: 12px;
}

.payment-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    height: 52px;
    padding: 10px;
    transition: all var(--transition);
    cursor: default;
}

.payment-logo-box:hover {
    border-color: var(--border-hover);
    box-shadow: 0 4px 16px rgba(201, 151, 58, 0.15);
    transform: translateY(-2px);
}

.payment-logo-box svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.payment-logo-cash {
    flex-direction: column;
    gap: 4px;
    color: var(--text-primary);
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px;
}
.payment-logo-cash i {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.policy-deposit-banner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(201, 151, 58, 0.08);
    border: 1px solid rgba(201, 151, 58, 0.30);
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.policy-deposit-icon {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 2px;
}

.policy-deposit-banner strong { color: var(--gold-light); }

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.policy-table thead tr { border-bottom: 1px solid var(--border); }

.policy-table th {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
    padding: 8px 8px 10px;
    text-align: left;
}

.policy-table td {
    padding: 11px 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    vertical-align: middle;
}

.policy-table tr:last-child td { border-bottom: none; }

.policy-timing {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}
.policy-timing--good { background: rgba(46,125,50,0.14);  color: #6fcf78; border: 1px solid rgba(111,207,120,0.22); }
.policy-timing--warn { background: rgba(201,151,58,0.12); color: var(--gold); border: 1px solid var(--border); }
.policy-timing--bad  { background: rgba(180,60,50,0.12);  color: #e07070; border: 1px solid rgba(224,112,112,0.22); }

.policy-refund {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}
.policy-refund--50   { background: rgba(46,125,50,0.14);  color: #6fcf78; border: 1px solid rgba(111,207,120,0.22); }
.policy-refund--25   { background: rgba(201,151,58,0.12); color: var(--gold); border: 1px solid var(--border); }
.policy-refund--none { background: rgba(180,60,50,0.12);  color: #e07070; border: 1px solid rgba(224,112,112,0.22); }

.policy-note {
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.policy-link { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; transition: color var(--transition); }
.policy-link:hover { color: var(--gold-light); }

@media (max-width: 640px) {
    .policy-grid { grid-template-columns: 1fr; }
    .policy-table th,
    .policy-table td { padding: 9px 4px; font-size: 0.75rem; }
}
