/* ============================================
   MOTTRA STUDIO v3 — "Heat Wave"
   Warm Editorial / Alternating Dark & Cream
   ============================================ */

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

:root {
    --red: #8A151B;
    --red-hot: #B91C1C;
    --red-deep: #5C0E12;
    --red-glow: rgba(138, 21, 27, 0.12);

    --dark: #0C0807;
    --dark-warm: #110D0B;
    --surface: #171110;
    --surface-up: #1E1714;

    --cream: #F5EDE4;
    --cream-mid: #E8DDD2;
    --cream-dark: #D4C8BA;

    --text-light: #F5EDE4;
    --text-dark: #1A1210;
    --text-muted-light: rgba(245, 237, 228, 0.5);
    --text-muted-dark: rgba(26, 18, 16, 0.45);

    --border-dark: rgba(138, 21, 27, 0.1);
    --border-light: rgba(26, 18, 16, 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(--dark);
    color: var(--text-light);
    -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(--dark); }
::-webkit-scrollbar-thumb { background: var(--red-deep); border-radius: 10px; }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* --- Heat bar accent at very top --- */
.heat-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 999;
    background: linear-gradient(90deg, var(--red-deep), var(--red-hot), var(--red), var(--red-hot), var(--red-deep));
    background-size: 200% 100%;
    animation: heatPulse 4s ease-in-out infinite;
}

@keyframes heatPulse {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* --- Film grain on page --- */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    opacity: 0.018;
    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.7' 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: 9998;
}

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

.nav.scrolled {
    background: rgba(12, 8, 7, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

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

/* Logo on dark bg: invert to white. On cream sections JS toggles .nav-cream */
.nav-logo img {
    height: 30px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.4s;
}

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

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

.nav-links a {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted-light);
    transition: color 0.3s;
}

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

.nav-reserve {
    padding: 9px 24px !important;
    background: var(--red) !important;
    color: var(--cream) !important;
    border-radius: 2px;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}

.nav-reserve:hover {
    background: var(--red-hot) !important;
    box-shadow: 0 0 24px rgba(138, 21, 27, 0.35);
}

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

.burger span {
    width: 22px;
    height: 1.5px;
    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, 4.5px); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:last-child { transform: rotate(-45deg) translate(4px, -4.5px); }

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

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

.mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 300;
    color: var(--text-muted-light);
    padding: 10px 0;
    opacity: 0;
    transform: translateY(20px);
    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.06s; }
.mobile-nav.open a:nth-child(2) { transition-delay: 0.12s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.18s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.24s; }
.mobile-nav.open a:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.open a:nth-child(6) { transition-delay: 0.36s; }

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

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

/* ============================================
   HERO — Split Screen
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
}

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

.hero-left {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 100px 28px 60px;
    z-index: 2;
    background: var(--dark);
}

@media (min-width: 768px) {
    .hero-left { padding: 120px 60px 80px; }
}

/* Warm ambient glow */
.hero-left::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(138, 21, 27, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-tag {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--red-hot);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 0.8s 0.2s ease forwards;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 300;
    line-height: 0.95;
    color: var(--cream);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeIn 0.8s 0.4s ease forwards;
}

.hero-title em {
    font-style: italic;
    display: block;
    color: var(--red-hot);
}

.hero-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-muted-light);
    max-width: 380px;
    line-height: 1.8;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeIn 0.8s 0.6s ease forwards;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 0.8s 0.8s ease forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--red);
    color: var(--cream);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    transition: all 0.4s;
}

.btn-primary:hover {
    background: var(--red-hot);
    box-shadow: 0 0 40px rgba(138, 21, 27, 0.35);
    transform: translateY(-2px);
}

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

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

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: none;
    color: var(--text-muted-light);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--border-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.btn-ghost:hover {
    border-color: var(--red);
    color: var(--cream);
}

/* Hero image side */
.hero-right {
    position: relative;
    min-height: 50vh;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-right { min-height: 100vh; }
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.4) brightness(0.55) contrast(1.1);
    transform: scale(1.06);
    animation: slowPan 30s ease-in-out infinite alternate;
}

@keyframes slowPan {
    0% { transform: scale(1.06); }
    100% { transform: scale(1.12) translate(-1%, 1%); }
}

.hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(138, 21, 27, 0.3) 0%, transparent 50%),
        linear-gradient(to right, var(--dark) 0%, transparent 20%);
    pointer-events: none;
}

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

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
    background: var(--red-deep);
    padding: 13px 0;
    overflow: hidden;
}

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

.marquee-track span {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245, 237, 228, 0.35);
    white-space: nowrap;
    padding: 0 32px;
}

.marquee-track .sep { color: var(--red-hot); padding: 0 4px; }

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

/* ============================================
   SECTION BASES
   ============================================ */
.s-dark {
    position: relative;
    background: var(--dark-warm);
    color: var(--text-light);
    padding: 90px 20px;
}

.s-cream {
    position: relative;
    background: var(--cream);
    color: var(--text-dark);
    padding: 90px 20px;
}

@media (min-width: 768px) {
    .s-dark, .s-cream { padding: 130px 48px; }
}

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

.lbl-dark {
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.lbl-cream {
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.hdg {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 5vw, 3.4rem);
    font-weight: 300;
    line-height: 1.08;
    margin-bottom: 18px;
}

.hdg em { font-style: italic; }

.s-dark .hdg em { color: var(--red-hot); }
.s-cream .hdg em { color: var(--red); }

.txt-muted-dark { color: var(--text-muted-dark); }
.txt-muted-light { color: var(--text-muted-light); }

.body-copy {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 520px;
}

/* Reveal */
.rv {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.rv.vis { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: 0.08s; }
.rv-d2 { transition-delay: 0.16s; }
.rv-d3 { transition-delay: 0.24s; }
.rv-d4 { transition-delay: 0.32s; }

/* ============================================
   EXPERIENCE — on CREAM bg (surprise!)
   ============================================ */
.exp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 48px;
}

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

.exp-card {
    padding: 36px 28px;
    border: 1px solid var(--border-light);
    display: flex;
    gap: 18px;
    transition: all 0.4s;
}

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

.exp-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--cream-dark);
    line-height: 1;
    min-width: 40px;
    transition: color 0.4s;
}

.exp-card:hover .exp-num { color: var(--red); }

.exp-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.exp-card p {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--text-muted-dark);
    line-height: 1.75;
}

/* ============================================
   FULL IMAGE DIVIDER
   ============================================ */
.img-divider {
    position: relative;
    height: 45vh;
    min-height: 280px;
    overflow: hidden;
}

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

.img-divider-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, var(--cream) 0%, transparent 15%),
        linear-gradient(to top, var(--dark-warm) 0%, transparent 15%),
        radial-gradient(ellipse at center, rgba(138, 21, 27, 0.2) 0%, transparent 60%);
}

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

.img-divider-text blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 4.5vw, 2.8rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    text-align: center;
    max-width: 600px;
}

/* ============================================
   ABOUT
   ============================================ */
.about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

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

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

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

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

/* Corner accents */
.about-img-wrap::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    width: 50px;
    height: 50px;
    border-top: 1px solid var(--red);
    border-left: 1px solid var(--red);
    opacity: 0.4;
}

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

.about-body p {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: 16px;
}

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

/* ============================================
   PRICING — on CREAM bg
   ============================================ */
.price-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 52px;
}

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

.p-card {
    background: var(--cream);
    border: 1px solid var(--border-light);
    padding: 32px 24px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s;
    position: relative;
}

.p-card:hover {
    box-shadow: 0 16px 48px rgba(138, 21, 27, 0.08);
    transform: translateY(-4px);
}

.p-card.hot {
    border-color: var(--red);
    background: linear-gradient(170deg, var(--cream) 60%, rgba(138, 21, 27, 0.05) 100%);
}

.p-tag {
    position: absolute;
    top: 0;
    left: 24px;
    transform: translateY(-50%);
    background: var(--red);
    color: var(--cream);
    font-size: 0.48rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 4px 12px;
}

.p-card .p-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted-dark);
    margin-bottom: 18px;
}

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

.p-price small {
    font-family: 'Outfit', sans-serif;
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--text-muted-dark);
}

.p-sub {
    font-size: 0.7rem;
    color: var(--text-muted-dark);
    margin-bottom: 22px;
}

.p-list {
    list-style: none;
    flex: 1;
    margin-bottom: 24px;
}

.p-list li {
    font-size: 0.76rem;
    font-weight: 300;
    color: var(--text-dark);
    opacity: 0.7;
    padding: 9px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.p-btn {
    display: block;
    width: 100%;
    padding: 12px;
    border: 1px solid var(--text-dark);
    background: none;
    color: var(--text-dark);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    border-radius: 2px;
    transition: all 0.3s;
}

.p-btn:hover {
    background: var(--text-dark);
    color: var(--cream);
}

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

.p-card.hot .p-btn:hover {
    background: var(--red-hot);
}

/* ============================================
   POLICY NOTE
   ============================================ */
.policy-note {
    margin-top: 40px;
    padding: 24px;
    background: rgba(26, 18, 16, 0.03);
    border-left: 2px solid var(--red);
    border-radius: 0 2px 2px 0;
}

.policy-note p {
    font-size: 0.76rem;
    font-weight: 300;
    color: var(--text-muted-dark);
    line-height: 1.7;
}

.policy-note strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   BOOKING
   ============================================ */
.dates {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 4px 0 16px;
    margin-top: 44px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

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

.dpill {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid var(--border-dark);
    background: var(--surface);
    cursor: pointer;
    transition: all 0.3s;
    min-width: 66px;
    border-radius: 2px;
}

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

.dpill.on {
    background: var(--red);
    border-color: var(--red);
}

.dpill .dd {
    font-size: 0.48rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted-light);
}

.dpill.on .dd { color: rgba(245, 237, 228, 0.7); }

.dpill .dn {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--cream);
    line-height: 1.2;
}

.dpill .dm {
    font-size: 0.46rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted-light);
}

.dpill.on .dm { color: rgba(245, 237, 228, 0.6); }

/* Schedule list */
.sched {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.srow {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: var(--surface);
    border: 1px solid var(--border-dark);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s;
}

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

.st { min-width: 52px; }

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

.st span {
    font-size: 0.52rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-muted-light);
    text-transform: uppercase;
}

.ssep {
    width: 1px;
    height: 34px;
    background: var(--border-dark);
}

.sinfo { flex: 1; }

.sinfo .sn {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--cream);
}

.sinfo .sm {
    font-size: 0.66rem;
    font-weight: 300;
    color: var(--text-muted-light);
    margin-top: 2px;
}

.sstatus {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 2px;
    white-space: nowrap;
}

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

.sarrow {
    width: 18px;
    height: 18px;
    color: var(--text-muted-light);
    transition: all 0.3s;
}

.srow:hover .sarrow {
    color: var(--red-hot);
    transform: translateX(3px);
}

/* ============================================
   DRAWER (modal)
   ============================================ */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 8, 7, 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: 420px;
    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: 20px 24px;
    border-bottom: 1px solid var(--border-dark);
}

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

.drawer-x {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-dark);
    border-radius: 2px;
    background: none;
    color: var(--text-muted-light);
    transition: all 0.3s;
}
.drawer-x:hover { border-color: var(--red); color: var(--cream); }
.drawer-x svg { width: 14px; height: 14px; }

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

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

.dr {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--border-dark);
}

.dr svg { width: 15px; height: 15px; color: var(--red); flex-shrink: 0; }

.dr .dl {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted-light);
    min-width: 72px;
}

.dr .dv {
    font-size: 0.82rem;
    color: var(--cream);
}

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

.dd-desc p {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--text-muted-light);
    line-height: 1.75;
}

.drawer-foot {
    padding: 18px 24px;
    border-top: 1px solid var(--border-dark);
}

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

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

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

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

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

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

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

.foot-brand p { font-size: 0.7rem; color: var(--text-muted-light); line-height: 1.7; }

.foot-nav { display: flex; flex-direction: column; gap: 9px; }
@media (max-width: 767px) { .foot-nav { align-items: center; } }

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

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

.foot-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-dark);
    border-radius: 2px;
    color: var(--text-muted-light);
    transition: all 0.3s;
}
.foot-social a:hover { border-color: var(--red); color: var(--red); }
.foot-social a svg { width: 15px; height: 15px; }

.foot-copy {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-dark);
    font-size: 0.58rem;
    color: rgba(245, 237, 228, 0.2);
    letter-spacing: 0.05em;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
}

.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
}

.wa-float svg { width: 26px; height: 26px; fill: white; }

@supports (padding: env(safe-area-inset-bottom)) {
    .wa-float { bottom: calc(24px + env(safe-area-inset-bottom)); }
    .foot { padding-bottom: calc(52px + env(safe-area-inset-bottom)); }
    .drawer-foot { padding-bottom: calc(18px + env(safe-area-inset-bottom)); }
}
