/* ============================================
   IV Energy Lounge — Luxury Wellness
   ============================================ */

:root {
    --cream: #FAF7F2;
    --cream-warm: #F5EFE6;
    --beige: #EDE6DB;
    --beige-dark: #DDD5C9;
    --gold: #C4883C;
    --gold-light: #D4A05A;
    --gold-pale: #E8CFA8;
    --amber: #D4903A;
    --amber-glow: rgba(212, 144, 58, 0.2);
    --white: #FFFFFF;
    --mocha: #2C2420;
    --text-dark: #1E1A16;
    --text-medium: #4A433D;
    --text-light: #7A736C;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Jost', 'Helvetica Neue', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.8;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

.hero .reveal { transition-delay: 0.3s; }
.hero .reveal-delay-1 { transition-delay: 0.55s; }
.hero .reveal-delay-2 { transition-delay: 0.8s; }
.hero .reveal-delay-3 { transition-delay: 1.05s; }
body.loaded .hero .reveal { opacity: 1; transform: translateY(0); }

/* ---- SHIMMER ---- */
.shimmer { position: relative; overflow: hidden; }
.shimmer::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: shimmer 3.5s ease-in-out infinite;
}
@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 200%; }
    100% { left: 200%; }
}

/* ---- NAVIGATION ---- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}
.nav-scrolled {
    background: rgba(250, 247, 242, 0.96);
    border-bottom-color: rgba(196, 136, 60, 0.08);
    box-shadow: 0 1px 20px rgba(30, 26, 22, 0.04);
}

.nav-inner {
    max-width: 100%;
    margin: 0;
    padding: 0 48px 0 16px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 260px; width: auto; object-fit: contain; display: block; }

.nav-links { display: flex; gap: 40px; margin-left: auto; margin-right: 32px; }
.nav-links a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-bottom: 4px;
    transition: color 0.4s ease;
}
.nav-scrolled .nav-links a {
    color: var(--text-medium);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1px;
    background: var(--amber);
    transition: all 0.35s ease;
    transform: translateX(-50%);
}
.nav-links a:hover { color: var(--amber); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    background: #C9944A;
    border: 1px solid #C9944A;
    padding: 14px 32px;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(201, 148, 74, 0.3);
}
.nav-cta:hover {
    transform: scale(1.03);
    background: #D4A05A;
    box-shadow: 0 6px 28px rgba(201, 148, 74, 0.45), 0 0 20px rgba(201, 148, 74, 0.2);
    color: var(--white);
}

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 240px 40px 120px;
    background: linear-gradient(135deg, #EDE6DB 0%, #6F4E37 100%);
}

.hero-video {
    position: absolute;
    top: 50%;
    right: -5%;
    width: 55%;
    height: auto;
    object-fit: contain;
    z-index: 0;
    filter: contrast(1.15) saturate(1.2) brightness(1.05) sepia(0.08);
    transform: translateY(-50%);
    mix-blend-mode: multiply;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: none;
    pointer-events: none;
    backdrop-filter: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: #3B2A1A;
    margin-bottom: 36px;
    text-shadow: none;
    opacity: 0;
    animation: hero-text-in 1s ease forwards 0.2s;
}

@keyframes hero-text-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-headline {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 32px;
}

.hero-word {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 60px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #5C3D2E 0%, #8B6340 20%, #6B4A30 40%, #5C3D2E 60%, #8B6340 80%, #5C3D2E 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: word-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards,
               gold-shimmer 5s ease-in-out infinite 2s,
               hero-breathe 3.5s ease-in-out infinite 2.5s;
    opacity: 0;
    transform: translateY(20px);
    filter: drop-shadow(0 0 6px rgba(200, 170, 110, 0.3));
}

@keyframes gold-shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
@keyframes word-up {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-breathe {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(200, 170, 110, 0.3)); }
    50% { filter: drop-shadow(0 0 10px rgba(200, 170, 110, 0.45)); }
}

.hero-word-1 { animation-delay: 0.3s; }
.hero-word-2 { animation-delay: 0.7s; }
.hero-word-3 { animation-delay: 1.1s; }

.hero-subtext {
    font-size: 17px;
    font-weight: 300;
    color: #4A3728;
    text-shadow: none;
    margin-bottom: 48px;
    font-style: italic;
    opacity: 0;
    animation: hero-text-in 1s ease forwards 1.4s;
    line-height: 1.9;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero .btn-primary {
    background: linear-gradient(180deg, #D4A05A 0%, #B8842E 100%);
    border: 1px solid rgba(212, 170, 100, 0.5);
    box-shadow: 0 6px 24px rgba(200, 150, 60, 0.3), 0 0 12px rgba(200, 170, 110, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    letter-spacing: 3.5px;
}
.hero .btn-primary:hover {
    transform: scale(1.03);
    background: linear-gradient(180deg, #DCAD68 0%, #C08E38 100%);
    box-shadow: 0 8px 36px rgba(200, 150, 60, 0.45), 0 0 24px rgba(200, 170, 110, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.hero .btn-outline {
    color: var(--gold-pale);
    border-color: rgba(212, 160, 90, 0.4);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);
    letter-spacing: 3.5px;
}
.hero .btn-outline:hover {
    background: rgba(212, 144, 58, 0.15);
    color: var(--gold-pale);
    border-color: rgba(212, 160, 90, 0.6);
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(212, 160, 90, 0.15);
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 40px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    font-size: 12px;
    padding: 18px 48px;
    background: #C9944A;
    color: var(--white);
    border: 1px solid #C9944A;
    box-shadow: 0 6px 28px rgba(201, 148, 74, 0.3);
}
.btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 40px rgba(201, 148, 74, 0.45), 0 0 20px rgba(201, 148, 74, 0.2);
    background: #D4A05A;
}

.btn-outline {
    font-size: 12px;
    padding: 18px 48px;
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--beige-dark);
}
.btn-outline:hover {
    background: var(--amber);
    color: var(--white);
    border-color: var(--amber);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--amber-glow);
}

/* ---- SECTION SHARED ---- */
.section-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 50px;
    font-weight: 300;
    color: #5C3D2E;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.section-divider {
    width: 50px;
    height: 1px;
    background: var(--gold-light);
    margin-bottom: 24px;
}
.section-divider-center { margin-left: auto; margin-right: auto; }
.section-header { text-align: center; margin-bottom: 48px; }

/* ---- MENU SECTIONS ---- */
.menu-section {
    padding: 100px 0;
    background: var(--cream);
}
.menu-section-alt {
    background: var(--cream-warm);
}

.menu-card {
    max-width: 840px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 52px 56px 44px;
    box-shadow: 0 4px 32px rgba(30, 26, 22, 0.04);
    border: 1px solid rgba(196, 136, 60, 0.06);
}
.menu-card-compact { padding: 44px 56px 36px; }

.menu-item {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 24px 16px;
    border-bottom: 1px solid rgba(196, 136, 60, 0.06);
    border-radius: 8px;
    margin: 0 -16px;
    transition: background 0.3s ease;
}
.menu-item:hover { background: rgba(196, 136, 60, 0.02); }
.menu-item:first-child { padding-top: 8px; }
.menu-item:last-child { border-bottom: none; padding-bottom: 8px; }

.menu-item-left { flex-shrink: 1; min-width: 0; }

.menu-name {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.menu-item:hover .menu-name { color: var(--amber); }

.menu-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.6;
}

.menu-name-inline {
    font-family: var(--font-serif);
    font-size: 21px;
    font-weight: 400;
    color: var(--text-dark);
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.3s ease;
}
.menu-item:hover .menu-name-inline { color: var(--amber); }

.menu-dots {
    flex: 1;
    min-width: 20px;
    border-bottom: 1px dotted var(--beige-dark);
    margin-bottom: 5px;
}

.menu-price {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 500;
    color: var(--amber);
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-item-simple { align-items: center; padding: 18px 16px; }

/* ---- EXPAND TOGGLE ---- */
.expand-toggle { display: none; }
.expand-content {
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
    opacity: 0;
}
.expand-toggle:checked ~ .expand-content { max-height: 600px; opacity: 1; }

.expand-btn {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; margin: 24px auto 0; padding: 12px 32px;
    cursor: pointer;
    font-size: 11px; font-weight: 400; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--amber);
    border: 1px solid rgba(212, 144, 58, 0.25);
    border-radius: 30px; background: transparent;
    transition: all 0.4s ease;
    user-select: none; -webkit-user-select: none;
    width: fit-content;
}
.expand-btn:hover {
    background: var(--amber); color: var(--white); border-color: var(--amber);
    transform: translateY(-1px);
}
.expand-arrow { transition: transform 0.4s ease; }
.expand-toggle:checked ~ .expand-btn .expand-arrow { transform: rotate(180deg); }
.expand-btn-hide { display: none; }
.expand-toggle:checked ~ .expand-btn .expand-btn-show { display: none; }
.expand-toggle:checked ~ .expand-btn .expand-btn-hide { display: inline; }

/* ---- WHY CHOOSE US ---- */
.why {
    padding: 100px 0;
    background: var(--cream-warm);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.why-item {
    text-align: center;
    padding: 36px 20px;
    border-radius: 20px;
    transition: all 0.4s ease;
    background: var(--white);
    border: 1px solid rgba(196, 136, 60, 0.04);
    box-shadow: 0 2px 16px rgba(30, 26, 22, 0.02);
}
.why-item:hover {
    box-shadow: 0 8px 40px rgba(30, 26, 22, 0.06);
    transform: translateY(-4px);
    border-color: rgba(196, 136, 60, 0.1);
}

.why-icon {
    width: 72px; height: 72px;
    margin: 0 auto 24px;
    display: flex; align-items: center; justify-content: center;
    background: var(--cream);
    border-radius: 50%;
    color: var(--amber);
    transition: all 0.4s ease;
}
.why-item:hover .why-icon {
    background: var(--amber);
    color: var(--white);
    box-shadow: 0 4px 20px var(--amber-glow);
}

.why-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.why-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
}

/* ---- TRAINING ---- */
.training {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: var(--cream);
}

.training-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.training-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.15) saturate(1.1) brightness(0.85) sepia(0.08);
    border-radius: 0;
    box-shadow: none;
}

.training-overlay {
    position: absolute;
    inset: 0;
    background: rgba(237, 230, 219, 0.75);
    z-index: 1;
}

.training-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.training .section-label { color: var(--gold-light); font-weight: 500; }
.training .section-title { color: #5C3D2E; }
.training .section-divider { background: var(--amber); margin-left: auto; margin-right: 0; }

.training-text {
    font-size: 16px;
    font-weight: 300;
    color: #5C4A3A;
    line-height: 2;
    margin-bottom: 32px;
}

.training-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-light);
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 28px;
    margin-right: 50px;
}

/* ---- INQUIRY FORMS ---- */
.inquiry-section {
    padding: 100px 0;
    background: var(--cream);
}

.inquiry-section-alt {
    background: var(--cream-warm);
}

.inquiry-inner {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.inquiry-text {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 40px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form input[type="tel"],
.inquiry-form textarea {
    width: 100%;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--beige-dark);
    border-radius: 14px;
    padding: 18px 24px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(30, 26, 22, 0.03);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    border-color: var(--gold-light);
    box-shadow: 0 2px 16px rgba(196, 136, 60, 0.1);
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
    color: var(--text-light);
    font-weight: 300;
}

.inquiry-form textarea {
    resize: vertical;
    min-height: 100px;
}

.inquiry-radio-group {
    text-align: left;
    padding: 18px 24px;
    background: var(--white);
    border: 1px solid var(--beige-dark);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(30, 26, 22, 0.03);
}

.inquiry-radio-label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-medium);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.inquiry-radio-options {
    display: flex;
    gap: 28px;
}

.inquiry-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-dark);
    cursor: pointer;
}

.inquiry-radio input[type="radio"] {
    accent-color: var(--amber);
    width: 16px;
    height: 16px;
}

.inquiry-select-group,
.inquiry-checkbox-group {
    text-align: left;
}

.inquiry-field-label {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-medium);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.inquiry-form select {
    width: 100%;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--beige-dark);
    border-radius: 14px;
    padding: 18px 24px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(30, 26, 22, 0.03);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237A736C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
}

.inquiry-form select:focus {
    border-color: var(--gold-light);
    box-shadow: 0 2px 16px rgba(196, 136, 60, 0.1);
}

.inquiry-helper {
    font-size: 13px;
    font-weight: 300;
    font-style: italic;
    color: var(--amber);
    margin-top: 10px;
    padding-left: 4px;
}

.inquiry-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--beige-dark);
    border-radius: 14px;
    padding: 20px 24px;
    box-shadow: 0 2px 8px rgba(30, 26, 22, 0.03);
}

.inquiry-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.3s ease;
}

.inquiry-checkbox:hover {
    color: var(--amber);
}

.inquiry-checkbox input[type="checkbox"] {
    accent-color: var(--amber);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.inquiry-btn {
    margin-top: 8px;
    padding: 20px 52px;
    font-size: 13px;
    letter-spacing: 3px;
    align-self: center;
}

.inquiry-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 36px rgba(212, 144, 58, 0.4), 0 0 20px rgba(212, 160, 90, 0.15);
}

.inquiry-thanks {
    padding: 60px 20px;
    text-align: center;
}

.inquiry-thanks-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 300;
    color: #5C3D2E;
    margin-bottom: 16px;
}

.inquiry-thanks-text {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
}

/* ---- CONTACT ---- */
.contact {
    padding: 120px 0;
    background: var(--cream-warm);
}

.contact .section-label {
    color: var(--gold-light);
    font-size: 14px;
    letter-spacing: 8px;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-top {
    text-align: left;
}

.contact-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-tagline {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.9;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 48px 0;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.contact-iv-anim {
    margin: 24px 0 28px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.iv-cable-svg {
    width: 200px;
    height: 50px;
}

.iv-draw {
    animation: cable-draw 1.5s ease forwards;
}

@keyframes cable-draw {
    to { stroke-dashoffset: 0; }
}

.iv-pulse-dot {
    opacity: 0;
    animation: pulse-glow 2s ease-in-out infinite 1.2s;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.iv-energy-left, .iv-energy-right {
    opacity: 0.7;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(92, 61, 46, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}
.contact-row:last-child { border-bottom: none; }
.contact-row:hover {
    padding-left: 0;
}

.contact-row-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(201, 148, 74, 0.1);
    border-radius: 50%;
    color: #C9944A;
    flex-shrink: 0;
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 148, 74, 0.15);
}
.contact-row:hover .contact-row-icon {
    background: #C9944A;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(201, 148, 74, 0.3);
}

.contact-row-text { flex: 1; }

.contact-row-title {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-row-detail {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.contact-row-arrow {
    color: var(--beige-dark);
    transition: all 0.4s ease;
    flex-shrink: 0;
}
.contact-row:hover .contact-row-arrow {
    color: #C9944A;
    transform: translateX(4px);
}

/* ---- FOOTER ---- */
.footer {
    padding: 60px 0 40px;
    background: #B8A088;
    border-top: none;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #3B2A1A;
}

.footer-links {
    display: flex;
    gap: 40px;
    list-style: none;
}
.footer-links a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(59, 42, 26, 0.7);
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}
.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1px;
    background: #3B2A1A;
    transition: all 0.35s ease;
    transform: translateX(-50%);
}
.footer-links a:hover {
    color: #3B2A1A;
}
.footer-links a:hover::after {
    width: 100%;
}

.footer-copy {
    font-size: 11px;
    font-weight: 300;
    color: rgba(59, 42, 26, 0.45);
    letter-spacing: 1px;
    margin-top: 8px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .container { padding: 0 36px; }
    .nav-inner { padding: 0 36px; }
    .nav-links { gap: 28px; }
    .hero-word { font-size: 48px; }
    .section-title { font-size: 42px; }
    .menu-card { padding: 44px 44px 36px; }
    .menu-card-compact { padding: 36px 44px 28px; }
    .menu-name { font-size: 22px; }
    .menu-name-inline { font-size: 19px; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .nav-inner { padding: 0 24px; height: 80px; }
    .nav-links { gap: 18px; }
    .nav-links a { font-size: 10px; }
    .nav-cta { font-size: 9px; padding: 10px 22px; }

    .hero { padding: 120px 24px 80px; }
    .hero-video {
        position: absolute;
        top: 50%;
        right: 0;
        width: 45%;
        height: auto;
        transform: translateY(-50%);
        opacity: 0.3;
    }
    .hero-word { font-size: 36px; letter-spacing: 3px; }
    .hero-headline { gap: 12px; }
    .hero-subtext { font-size: 15px; }
    .hero-buttons { gap: 14px; }

    .training-content { text-align: center; margin: 0 auto; }
    .training .section-divider { margin-left: auto; margin-right: auto; }

    .contact-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
    .contact-top { text-align: center; }
    .contact-iv-anim { justify-content: center; }

    .btn-primary, .btn-outline { font-size: 11px; padding: 16px 36px; }

    .menu-section, .why, .training, .booking, .contact { padding: 72px 0; }
    .section-title { font-size: 36px; }
    .section-header { margin-bottom: 36px; }

    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .why-item { padding: 28px 16px; }

    .menu-card { padding: 36px 32px 28px; }
    .menu-card-compact { padding: 28px 32px 22px; }
    .menu-name { font-size: 20px; }
    .menu-name-inline { font-size: 18px; }
    .menu-item { margin: 0 -10px; padding-left: 10px; padding-right: 10px; }


    .contact-top { padding: 0 24px; }
    .contact-rows { padding: 0 24px; }
    .footer-inner { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .nav-inner { padding: 0 20px; height: 68px; }
    .nav-links { display: none; }
    .nav-logo-img { height: 180px; margin-top: 8px; }
    .nav-logo { margin-left: -100px; }
    .nav-cta { display: none; }

    .hero { padding: 60px 20px 60px; min-height: 100svh; }
    .hero-video {
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none;
        opacity: 0.25;
    }
    .hero-tagline { font-size: 10px; letter-spacing: 5px; }
    .hero-word { font-size: 24px; letter-spacing: 2px; }
    .hero-headline { gap: 6px; }
    .hero-subtext { font-size: 13px; margin-bottom: 32px; }
    .hero-buttons { gap: 10px; }
    .hero-buttons .btn { font-size: 9px; padding: 14px 24px; }

    .contact-inner { padding: 0 20px; }
    .iv-cable-svg { width: 160px; height: 40px; }
    .contact-row-icon { width: 44px; height: 44px; }
    .contact-row-detail { font-size: 14px; }
    .footer-links { gap: 20px; flex-wrap: wrap; justify-content: center; }
    .footer-links a { font-size: 9px; letter-spacing: 2px; }

    .btn-primary, .btn-outline { font-size: 10px; padding: 14px 30px; letter-spacing: 2px; }

    .menu-section, .why, .training, .booking, .contact { padding: 56px 0; }
    .section-label { font-size: 9px; }
    .section-title { font-size: 30px; }
    .section-header { margin-bottom: 28px; }

    .menu-card { padding: 28px 24px 22px; border-radius: 18px; }
    .menu-card-compact { padding: 24px 24px 18px; }
    .menu-item { padding: 18px 10px; margin: 0 -6px; }
    .menu-item-simple { padding: 14px 10px; }
    .menu-name { font-size: 18px; }
    .menu-name-inline { font-size: 16px; white-space: normal; flex-shrink: 1; }
    .menu-desc { font-size: 12px; }
    .menu-price { font-size: 15px; }
    .menu-dots { min-width: 10px; }

    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .why-item { padding: 24px 12px; }
    .why-icon { width: 56px; height: 56px; margin-bottom: 18px; }
    .why-icon svg { width: 24px; height: 24px; }
    .why-title { font-size: 13px; }
    .why-desc { font-size: 12px; }

    .training-text { font-size: 14px; }
    .training-badge { font-size: 9px; padding: 8px 20px; margin-left: 40px; }

    .booking-text { font-size: 14px; }
    .booking-placeholder { padding: 52px 20px; }

    .contact-top { padding: 0 20px; }
    .contact-rows { padding: 0 20px; }
    .contact-item { padding: 20px 10px; }
    .contact-icon { width: 48px; height: 48px; }
    .contact-icon svg { width: 18px; height: 18px; }
    .contact-title { font-size: 10px; }
    .contact-detail { font-size: 12px; }

    .expand-btn { font-size: 10px; padding: 10px 24px; }
}

@media (max-width: 360px) {
    .hero-word { font-size: 22px; }
    .hero-buttons { flex-direction: column; gap: 10px; }
    .section-title { font-size: 26px; }
    .menu-name { font-size: 16px; }
    .menu-name-inline { font-size: 15px; }
    .menu-price { font-size: 14px; }
    .contact-detail { font-size: 11px; word-break: break-word; }
}
