/* ============================================
   MOTTRA STUDIO v2 — "Siente el calor"
   Dark Atmospheric / Immersive
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Outfit:wght@200;300;400;500;600;700&display=swap');

:root {
    --red: #8A151B;
    --red-bright: #B91C1C;
    --red-deep: #5C0E12;
    --red-glow: rgba(138, 21, 27, 0.15);
    --black: #050505;
    --dark: #0A0A0A;
    --dark-warm: #0E0808;
    --surface: #111010;
    --surface-light: #1A1616;
    --cream: #F2EDE8;
    --cream-dim: rgba(242, 237, 232, 0.5);
    --cream-muted: rgba(242, 237, 232, 0.3);
    --warm-gray: #8A8078;
    --border: rgba(138, 21, 27, 0.08);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--black);
    color: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: var(--red);
    color: var(--cream);
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red-deep); }

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

/* ============================================
   AMBIENT GLOW BACKGROUNDS
   The "sauna" feeling — warm radial lights
   ============================================ */
.glow-top {
    position: fixed;
    top: -30vh;
    left: 50%;
    transform: translateX(-50%);
    width: 120vw;
    height: 60vh;
    background: radial-gradient(ellipse, rgba(138, 21, 27, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.glow-bottom {
    position: fixed;
    bottom: -20vh;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 50vh;
    background: radial-gradient(ellipse, rgba(92, 14, 18, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Grain overlay on entire page */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0 24px;
    transition: all 0.5s ease;
}

.nav.scrolled {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 32px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s;
}

.nav-logo img:hover { opacity: 1; }

.nav-links {
    display: none;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream-dim);
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--cream); }

.nav-cta-link {
    color: var(--red-bright) !important;
    font-weight: 600 !important;
}

/* Hamburger */
.burger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.burger span {
    width: 24px;
    height: 1px;
    background: var(--cream);
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.burger.open span:first-child {
    transform: rotate(45deg) translate(4px, 5px);
}
.burger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.burger.open span:last-child {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Fullscreen mobile menu */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 300;
    color: var(--cream-dim);
    padding: 12px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease, color 0.3s;
}

.mobile-nav.open a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.open a:nth-child(1) { transition-delay: 0.08s; }
.mobile-nav.open a:nth-child(2) { transition-delay: 0.14s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.26s; }
.mobile-nav.open a:nth-child(5) { transition-delay: 0.32s; }

.mobile-nav a:hover,
.mobile-nav a:active {
    color: var(--red-bright);
}

/* Small red line separator in mobile menu */
.mobile-nav a + a::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--red-deep);
    margin: 0 auto 12px;
}

@media (min-width: 768px) {
    .nav-links { display: flex; }
    .burger { display: none; }
}

/* ============================================
   HERO — CINEMATIC FULLSCREEN
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.6) brightness(0.25) contrast(1.1);
    transform: scale(1.08);
    animation: slowDrift 25s ease-in-out infinite alternate;
}

@keyframes slowDrift {
    0% { transform: scale(1.08) translate(0, 0); }
    100% { transform: scale(1.14) translate(-1%, -1%); }
}

/* Red heat overlay */
.hero-heat {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 30% 80%, rgba(138, 21, 27, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 20%, rgba(92, 14, 18, 0.2) 0%, transparent 50%),
        linear-gradient(to top, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.1) 40%, rgba(138, 21, 27, 0.08) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 28px 80px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-tag {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red-bright);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 1s 0.3s ease forwards;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 300;
    line-height: 0.95;
    color: var(--cream);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 1s 0.5s ease forwards;
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--red-bright);
}

.hero-line {
    width: 60px;
    height: 1px;
    background: var(--red);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 1s 0.7s ease forwards;
}

.hero-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--cream-dim);
    max-width: 400px;
    line-height: 1.7;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 1s 0.8s ease forwards;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 36px;
    background: var(--red);
    color: var(--cream);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeUp 1s 1s ease forwards;
}

.hero-btn:hover {
    background: var(--red-bright);
    box-shadow: 0 0 50px rgba(138, 21, 27, 0.4);
    transform: translateY(-2px);
}

.hero-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
}

.hero-btn:hover svg {
    transform: translateX(4px);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    right: 28px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s 1.2s ease forwards;
}

.hero-scroll-indicator span {
    writing-mode: vertical-rl;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream-muted);
}

.scroll-line {
    width: 1px;
    height: 50px;
    position: relative;
    overflow: hidden;
    background: rgba(138, 21, 27, 0.2);
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%;
    height: 100%;
    background: var(--red);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

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

/* ============================================
   MARQUEE BAR — warm separator
   ============================================ */
.marquee-bar {
    background: var(--red-deep);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-track span {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(242, 237, 232, 0.4);
    white-space: nowrap;
    padding: 0 40px;
}

.marquee-track .dot {
    color: var(--red-bright);
    padding: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS — BASE
   ============================================ */
.sect {
    position: relative;
    padding: 100px 24px;
}

@media (min-width: 768px) {
    .sect { padding: 140px 48px; }
}

.sect-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.label {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}

.heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 20px;
}

.heading em {
    font-style: italic;
    color: var(--red-bright);
}

.body-text {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--warm-gray);
    max-width: 520px;
    line-height: 1.8;
}

/* Reveal animation */
.rv {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.rv.vis {
    opacity: 1;
    transform: translateY(0);
}

.rv-d1 { transition-delay: 0.1s; }
.rv-d2 { transition-delay: 0.2s; }
.rv-d3 { transition-delay: 0.3s; }
.rv-d4 { transition-delay: 0.4s; }

/* ============================================
   EXPERIENCE — What is Hot Pilates
   ============================================ */
.experience {
    background: var(--dark-warm);
    overflow: hidden;
}

/* Warm ambient glow behind the section */
.experience::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(138, 21, 27, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.exp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    margin-top: 56px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .exp-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.exp-item {
    background: var(--dark-warm);
    padding: 40px 32px;
    display: flex;
    gap: 20px;
    transition: background 0.5s ease;
    cursor: default;
}

.exp-item:hover {
    background: rgba(138, 21, 27, 0.04);
}

.exp-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--red-deep);
    line-height: 1;
    min-width: 42px;
}

.exp-item:hover .exp-num {
    color: var(--red);
    transition: color 0.4s;
}

.exp-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 8px;
}

.exp-item p {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--warm-gray);
    line-height: 1.75;
}

/* ============================================
   FULL-BLEED IMAGE BREAK
   ============================================ */
.img-break {
    position: relative;
    height: 50vh;
    min-height: 300px;
    overflow: hidden;
}

.img-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5) brightness(0.35);
}

.img-break-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, var(--black) 0%, transparent 30%),
        linear-gradient(to top, var(--black) 0%, transparent 30%),
        radial-gradient(ellipse at center, rgba(138, 21, 27, 0.15) 0%, transparent 70%);
}

.img-break-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.img-break-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    text-align: center;
    padding: 0 24px;
    opacity: 0.9;
}

/* ============================================
   ABOUT — NOSOTRAS
   ============================================ */
.about {
    background: var(--black);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 768px) {
    .about-layout {
        grid-template-columns: 5fr 6fr;
        gap: 80px;
    }
}

.about-img-wrap {
    position: relative;
}

.about-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    filter: grayscale(0.3) brightness(0.7);
    border-radius: 2px;
    transition: filter 0.6s;
}

.about-img:hover {
    filter: grayscale(0) brightness(0.8);
}

/* Red accent line on image */
.about-img-wrap::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 60px;
    height: 60px;
    border-top: 1px solid var(--red);
    border-left: 1px solid var(--red);
    opacity: 0.5;
}

.about-img-wrap::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 60px;
    height: 60px;
    border-bottom: 1px solid var(--red);
    border-right: 1px solid var(--red);
    opacity: 0.5;
}

.about-body p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--warm-gray);
    line-height: 1.9;
    margin-bottom: 18px;
}

.about-body .sig {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--red);
    margin-top: 28px;
}

/* ============================================
   PRICING — PAQUETES
   ============================================ */
.pricing {
    background: var(--dark-warm);
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to top, rgba(138, 21, 27, 0.04), transparent);
    pointer-events: none;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 56px;
}

@media (min-width: 640px) {
    .pricing-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
    .pricing-row { grid-template-columns: repeat(4, 1fr); }
}

.price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 36px 28px 28px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
    position: relative;
}

.price-card:hover {
    border-color: rgba(138, 21, 27, 0.2);
    box-shadow: 0 20px 60px rgba(138, 21, 27, 0.08);
    transform: translateY(-4px);
}

.price-card.hot {
    border-color: var(--red);
    background: linear-gradient(165deg, var(--surface) 0%, rgba(138, 21, 27, 0.06) 100%);
}

.hot-tag {
    position: absolute;
    top: 0;
    left: 28px;
    background: var(--red);
    color: var(--cream);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 5px 14px;
    transform: translateY(-50%);
}

.price-card .card-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 20px;
}

.price-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 4px;
}

.price-val small {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--warm-gray);
}

.price-sub {
    font-size: 0.72rem;
    color: var(--cream-muted);
    margin-bottom: 24px;
}

.price-list {
    list-style: none;
    flex: 1;
    margin-bottom: 28px;
}

.price-list li {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--cream-dim);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

.price-btn {
    display: block;
    width: 100%;
    padding: 13px;
    border: 1px solid rgba(242, 237, 232, 0.08);
    border-radius: 2px;
    background: transparent;
    color: var(--cream-dim);
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s;
}

.price-btn:hover {
    border-color: var(--red);
    color: var(--cream);
    background: rgba(138, 21, 27, 0.08);
}

.price-card.hot .price-btn {
    background: var(--red);
    border-color: var(--red);
    color: var(--cream);
}

.price-card.hot .price-btn:hover {
    background: var(--red-bright);
    box-shadow: 0 0 30px rgba(138, 21, 27, 0.3);
}

/* ============================================
   BOOKING — RESERVAR
   ============================================ */
.booking {
    background: var(--black);
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(138, 21, 27, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Date strip */
.dates {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 4px 0 20px;
    margin-top: 48px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.dates::-webkit-scrollbar { display: none; }

.date-pill {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
    cursor: pointer;
    transition: all 0.3s;
    min-width: 68px;
}

.date-pill:hover {
    border-color: rgba(138, 21, 27, 0.25);
}

.date-pill.active {
    background: var(--red);
    border-color: var(--red);
}

.date-pill .d-day {
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.date-pill.active .d-day {
    color: rgba(242, 237, 232, 0.7);
}

.date-pill .d-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--cream);
    line-height: 1.2;
}

.date-pill .d-month {
    font-size: 0.48rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.date-pill.active .d-month {
    color: rgba(242, 237, 232, 0.6);
}

/* Class rows */
.schedule {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.class-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.class-row:hover {
    border-color: rgba(138, 21, 27, 0.2);
    background: var(--surface-light);
}

.class-row:active {
    transform: scale(0.995);
}

.cr-time {
    min-width: 56px;
}

.cr-time strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--cream);
    display: block;
    line-height: 1;
}

.cr-time span {
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--warm-gray);
    text-transform: uppercase;
}

.cr-sep {
    width: 1px;
    height: 36px;
    background: var(--border);
}

.cr-info {
    flex: 1;
}

.cr-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--cream);
}

.cr-meta {
    font-size: 0.68rem;
    font-weight: 300;
    color: var(--warm-gray);
    margin-top: 2px;
}

.cr-status {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 2px;
    white-space: nowrap;
}

.cr-status.ok { color: #6ee7b7; background: rgba(110, 231, 183, 0.06); }
.cr-status.low { color: #fbbf24; background: rgba(251, 191, 36, 0.06); }
.cr-status.no { color: #f87171; background: rgba(248, 113, 113, 0.06); }

/* Arrow icon */
.cr-arrow {
    width: 20px;
    height: 20px;
    color: var(--cream-muted);
    transition: all 0.3s;
}

.class-row:hover .cr-arrow {
    color: var(--red);
    transform: translateX(3px);
}

/* ============================================
   MODAL — Slide-over
   ============================================ */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.8);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.overlay.show { opacity: 1; pointer-events: all; }

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 440px;
    height: 100vh;
    height: 100dvh;
    background: var(--surface);
    z-index: 201;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.drawer.show { transform: translateX(0); }

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    border-bottom: 1px solid var(--border);
}

.drawer-head span {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.drawer-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: none;
    color: var(--cream-dim);
    cursor: pointer;
    transition: all 0.3s;
}

.drawer-close:hover {
    border-color: var(--red);
    color: var(--cream);
}

.drawer-close svg {
    width: 14px;
    height: 14px;
}

.drawer-body {
    padding: 32px 28px;
    flex: 1;
}

.drawer-body .d-class-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 28px;
}

.d-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.d-row svg {
    width: 16px;
    height: 16px;
    color: var(--red);
    flex-shrink: 0;
}

.d-row .d-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-gray);
    min-width: 76px;
}

.d-row .d-val {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--cream);
}

.d-desc {
    margin-top: 28px;
    padding: 20px;
    background: rgba(138, 21, 27, 0.04);
    border-left: 2px solid var(--red-deep);
    border-radius: 0 2px 2px 0;
}

.d-desc p {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--cream-dim);
    line-height: 1.75;
}

.drawer-foot {
    padding: 20px 28px;
    border-top: 1px solid var(--border);
}

.confirm-btn {
    display: block;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 2px;
    background: var(--red);
    color: var(--cream);
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s;
}

.confirm-btn:hover {
    background: var(--red-bright);
    box-shadow: 0 0 40px rgba(138, 21, 27, 0.35);
}

/* ============================================
   FOOTER
   ============================================ */
.foot {
    background: var(--dark-warm);
    border-top: 1px solid var(--border);
    padding: 56px 24px;
}

.foot-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
}

@media (min-width: 768px) {
    .foot-inner {
        grid-template-columns: 1fr 1fr 1fr;
        text-align: left;
    }
}

.foot-brand img {
    height: 36px;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .foot-brand img { margin: 0 auto 12px; }
}

.foot-brand p {
    font-size: 0.72rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

.foot-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 767px) {
    .foot-nav { align-items: center; }
}

.foot-nav a {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream-muted);
    transition: color 0.3s;
}

.foot-nav a:hover { color: var(--red); }

.foot-social {
    display: flex;
    gap: 12px;
}

@media (max-width: 767px) {
    .foot-social { justify-content: center; }
}

.foot-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 2px;
    color: var(--warm-gray);
    transition: all 0.3s;
}

.foot-social a:hover {
    border-color: var(--red);
    color: var(--red);
}

.foot-social a svg {
    width: 16px;
    height: 16px;
}

.foot-copy {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    font-size: 0.6rem;
    color: rgba(138, 128, 120, 0.4);
    letter-spacing: 0.05em;
}

/* ============================================
   PWA SAFE AREAS
   ============================================ */
@supports (padding: env(safe-area-inset-bottom)) {
    .foot { padding-bottom: calc(56px + env(safe-area-inset-bottom)); }
    .drawer-foot { padding-bottom: calc(20px + env(safe-area-inset-bottom)); }
}
