/* ============================================
   Off The X Daiquiri Shop — Styles
   Bold Editorial · Forest Green + Off-White
   ============================================ */

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

:root {
    --green-950: #0a1f14;
    --green-900: #0f2d1c;
    --green-800: #1a3c2a;
    --green-700: #234d36;
    --green-600: #2d6a4f;
    --green-500: #3a8a64;
    --green-400: #52a87e;
    --green-100: #c9e8d4;
    --green-50:  #e8f5ec;
    
    --cream-950: #1a1814;
    --cream-900: #2a2520;
    --cream-800: #3d3630;
    --cream-700: #5c5249;
    --cream-600: #7a6e63;
    --cream-500: #9a8d80;
    --cream-200: #e8e0d4;
    --cream-100: #f2ece2;
    --cream-50:  #faf7f2;
    --cream-25:  #fdfcfa;
    
    --gold-500: #c9a84c;
    --gold-400: #d4b85e;
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--cream-50);
    color: var(--cream-900);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
    background-color: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--cream-200);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--cream-50);
    transition: color 0.3s ease;
}

.nav.scrolled .nav-logo {
    color: var(--green-800);
}

.nav-logo-mark {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-500);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold-500);
    border-radius: 8px;
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(250, 247, 242, 0.8);
    transition: color 0.3s ease;
    position: relative;
}

.nav.scrolled .nav-link {
    color: var(--cream-700);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold-500);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--cream-50);
}

.nav.scrolled .nav-link:hover {
    color: var(--green-700);
}

.nav-link--cta {
    padding: 10px 20px;
    border: 1.5px solid rgba(250, 247, 242, 0.4);
    border-radius: 100px;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.nav.scrolled .nav-link--cta {
    border-color: var(--green-700);
    color: var(--green-700);
}

.nav-link--cta:hover {
    background-color: var(--cream-50);
    border-color: var(--cream-50);
    color: var(--green-900);
}

.nav.scrolled .nav-link--cta:hover {
    background-color: var(--green-800);
    border-color: var(--green-800);
    color: var(--cream-50);
}

.nav-link--cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.nav-toggle:hover {
    background-color: rgba(250, 247, 242, 0.1);
}

.nav.scrolled .nav-toggle:hover {
    background-color: var(--cream-100);
}

.nav-toggle-icon {
    width: 22px;
    height: 22px;
    color: var(--cream-50);
    transition: color 0.3s ease;
}

.nav.scrolled .nav-toggle-icon {
    color: var(--green-800);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--green-950);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/31425021/pexels-photo-31425021.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 31, 20, 0.95) 0%,
        rgba(15, 45, 28, 0.88) 40%,
        rgba(26, 60, 42, 0.75) 100%
    );
}

.hero-grid {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--gold-500);
    flex-shrink: 0;
}

.hero-eyebrow span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-400);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--cream-50);
    margin-bottom: 24px;
}

.hero-headline-accent {
    font-style: italic;
    font-weight: 500;
    color: var(--gold-400);
}

.hero-subhead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(250, 247, 242, 0.7);
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out-expo);
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--gold-500);
    color: var(--green-950);
}

.btn--primary:hover {
    background-color: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn--ghost {
    background-color: transparent;
    color: var(--cream-50);
    border: 1.5px solid rgba(250, 247, 242, 0.3);
}

.btn--ghost:hover {
    border-color: var(--cream-50);
    background-color: rgba(250, 247, 242, 0.08);
    transform: translateY(-2px);
}

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

.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* --- Hero Cards --- */
.hero-cards {
    position: relative;
    height: 580px;
}

.hero-card {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.hero-card--main {
    width: 280px;
    height: 380px;
    top: 20px;
    right: 40px;
    z-index: 1;
}

.hero-card--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(10, 31, 20, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 12px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cream-50);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-card-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-500);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-card--stat {
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px;
    min-width: 180px;
    z-index: 2;
}

.hero-card--float-1 {
    bottom: 200px;
    right: 0;
    z-index: 3;
}

.hero-card--float-2 {
    bottom: 80px;
    right: 160px;
    z-index: 2;
}

.hero-card--float-3 {
    top: 80px;
    right: 0;
    z-index: 1;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--green-800);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-number span {
    font-size: 1.5rem;
    color: var(--gold-500);
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream-700);
}

/* --- Hero Scroll --- */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(250, 247, 242, 0.5);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-scroll svg {
    width: 20px;
    height: 20px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

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

/* --- Marquee --- */
.marquee {
    background: var(--green-800);
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.marquee-track {
    display: flex;
    animation: marquee-scroll 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
    padding: 0 16px;
}

.marquee-content span {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream-200);
    white-space: nowrap;
}

.marquee-dot {
    color: var(--gold-500);
    font-size: 0.6rem;
}

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

/* --- Section Shared --- */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 16px;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gold-500);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--green-900);
    margin-bottom: 20px;
}

.title-accent {
    font-style: italic;
    font-weight: 500;
    color: var(--green-600);
}

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

.section-header--center .section-eyebrow {
    justify-content: center;
}

.section-header--center .section-eyebrow::before {
    display: none;
}

.section-header--center .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--cream-700);
    max-width: 520px;
}

/* --- Menu Section --- */
.menu {
    padding: 120px 0;
    background: var(--cream-50);
}

.menu .section-header {
    margin-bottom: 48px;
}

.menu-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cream-700);
    border: 1.5px solid var(--cream-200);
    border-radius: 100px;
    transition: all 0.3s var(--ease-out-expo);
    background: transparent;
}

.menu-tab:hover {
    border-color: var(--green-600);
    color: var(--green-700);
}

.menu-tab.active {
    background: var(--green-800);
    border-color: var(--green-800);
    color: var(--cream-50);
}

.menu-grid {
    display: block;
}

.menu-panel {
    display: none;
}

.menu-panel.active {
    display: block;
    animation: fadeIn 0.4s var(--ease-out-expo);
}

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

.menu-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--cream-200);
    transition: padding-left 0.3s var(--ease-out-expo);
}

.menu-item:hover {
    padding-left: 12px;
}

.menu-item:first-child {
    border-top: 1px solid var(--cream-200);
}

.menu-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--green-900);
    letter-spacing: -0.01em;
}

.menu-item-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--green-50);
    color: var(--green-700);
    border: 1px solid var(--green-100);
}

.menu-item-tag--spicy {
    background: #fef2f2;
    color: #b91c1c;
    border-color: #fecaca;
}

.menu-item-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--cream-700);
    max-width: 560px;
}

.menu-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 40px;
    padding: 20px 24px;
    background: var(--green-50);
    border-radius: 12px;
    border: 1px solid var(--green-100);
}

.menu-note svg {
    width: 20px;
    height: 20px;
    color: var(--green-600);
    flex-shrink: 0;
    margin-top: 2px;
}

.menu-note span {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--green-800);
}

/* --- About Section --- */
.about {
    padding: 120px 0;
    background: var(--cream-25);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--green-200);
    border-radius: 16px;
    z-index: -1;
}

.about-content {
    padding: 20px 0;
}

.about-body {
    margin-bottom: 40px;
}

.about-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--cream-700);
    margin-bottom: 20px;
}

.about-body p:last-child {
    margin-bottom: 0;
}

.about-values {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-800);
}

.value-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold-500);
    flex-shrink: 0;
}

/* --- Experience Section --- */
.experience {
    padding: 120px 0;
    background: var(--green-900);
    color: var(--cream-50);
}

.experience .section-title {
    color: var(--cream-50);
}

.experience .section-eyebrow {
    color: var(--gold-400);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.experience-card {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(250, 247, 242, 0.05);
    border: 1px solid rgba(250, 247, 242, 0.08);
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}

.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.experience-card-image {
    height: 260px;
    overflow: hidden;
}

.experience-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.experience-card:hover .experience-card-image img {
    transform: scale(1.05);
}

.experience-card-content {
    padding: 28px;
}

.experience-card-content h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cream-50);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.experience-card-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(250, 247, 242, 0.65);
}

/* --- Visit Section --- */
.visit {
    padding: 120px 0;
    background: var(--cream-50);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.visit-info {
    padding-right: 20px;
}

.visit-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.visit-detail {
    display: flex;
    gap: 16px;
}

.visit-detail svg {
    width: 22px;
    height: 22px;
    color: var(--gold-500);
    flex-shrink: 0;
    margin-top: 2px;
}

.visit-detail strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 4px;
}

.visit-detail p,
.visit-detail a {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--cream-700);
}

.visit-detail a:hover {
    color: var(--green-700);
    text-decoration: underline;
}

.visit-map {
    border-radius: 16px;
    overflow: hidden;
    height: 480px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--cream-200);
}

/* --- Contact Section --- */
.contact {
    padding: 120px 0;
    background: var(--cream-25);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--cream-700);
    margin-bottom: 36px;
    max-width: 440px;
}

.contact-social {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--green-700);
    transition: color 0.3s ease, gap 0.3s var(--ease-out-expo);
}

.social-link:hover {
    color: var(--green-500);
    gap: 16px;
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--gold-500);
}

/* --- Contact Form --- */
.contact-form-wrapper {
    background: var(--cream-50);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--cream-200);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-800);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    padding: 14px 16px;
    border: 1.5px solid var(--cream-200);
    border-radius: 10px;
    background: var(--cream-50);
    color: var(--cream-900);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--cream-500);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    gap: 16px;
}

.form-success svg {
    width: 56px;
    height: 56px;
    color: var(--green-500);
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-900);
}

.form-success p {
    font-size: 0.95rem;
    color: var(--cream-700);
    line-height: 1.6;
}

/* --- Footer --- */
.footer {
    background: var(--green-950);
    color: var(--cream-200);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(250, 247, 242, 0.08);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(250, 247, 242, 0.5);
    max-width: 300px;
    margin-top: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--cream-50);
}

.footer-logo-mark {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gold-500);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold-500);
    border-radius: 6px;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 20px;
}

.footer-col a,
.footer-col span {
    display: block;
    font-size: 0.9rem;
    color: rgba(250, 247, 242, 0.55);
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--cream-50);
}

.footer-closed {
    color: rgba(250, 247, 242, 0.3) !important;
    font-style: italic;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    font-size: 0.8rem;
    color: rgba(250, 247, 242, 0.35);
}

.footer-bottom p:last-child {
    color: rgba(250, 247, 242, 0.25);
}

/* --- Scroll Reveal (progressive enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
    }

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-cards {
        height: 400px;
        display: flex;
        justify-content: center;
    }

    .hero-card--main {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: -40px;
        z-index: 2;
    }

    .hero-card--float-1 {
        position: relative;
        bottom: auto;
        right: auto;
        margin-left: 16px;
    }

    .hero-card--float-2 {
        position: relative;
        bottom: auto;
        right: auto;
        margin-left: 16px;
    }

    .hero-card--float-3 {
        position: relative;
        top: auto;
        right: auto;
        margin-left: 16px;
    }

    .hero-cards {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: flex-start;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .visit-map {
        height: 360px;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--cream-50);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.4s var(--ease-out-expo);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        color: var(--cream-900) !important;
        font-size: 1rem;
    }

    .nav-link--cta {
        border-color: var(--green-700) !important;
        color: var(--green-700) !important;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-grid {
        padding: 100px 24px 100px;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-cards {
        height: auto;
        flex-direction: column;
    }

    .hero-card--main {
        width: 100%;
        height: 300px;
        margin-bottom: 16px;
    }

    .hero-card--stat {
        min-width: auto;
        width: 100%;
    }

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

    .menu-tabs {
        gap: 8px;
    }

    .menu-tab {
        padding: 10px 18px;
        font-size: 0.78rem;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    .about-values {
        flex-direction: column;
        gap: 16px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* --- Mobile overlay --- */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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