/* ============================================
   THE BLOCK NUTRITION — Custom Styles
   ============================================ */

/* --- Custom Properties --- */
:root {
    --navy: #0A1628;
    --navy-light: #132238;
    --navy-mid: #1A2D47;
    --gold: #D4A017;
    --gold-light: #E8B94D;
    --gold-pale: #F5E6C0;
    --white: #FFFFFF;
    --off-white: #F8F6F1;
    --cream: #FDF9F0;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.10);
    --shadow-lg: 0 12px 40px rgba(10, 22, 40, 0.14);
    --shadow-xl: 0 20px 60px rgba(10, 22, 40, 0.18);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    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;
}

ul {
    list-style: none;
}

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--navy);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-size: 14px;
    font-weight: 500;
    transition: top var(--transition);
}
.skip-link:focus {
    top: 16px;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 48px;
    }
}

/* --- Typography --- */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 4px 14px rgba(212, 160, 23, 0.35);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow-md);
}
.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

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

/* --- Section Tags --- */
.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 160, 23, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: 0.02em;
    color: var(--navy);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 560px;
}

.section-header {
    margin-bottom: 56px;
}

.section-header--centered {
    text-align: center;
}
.section-header--centered .section-desc {
    margin: 0 auto;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* --- Logo --- */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-mark {
    width: 38px;
    height: 38px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 0.08em;
    color: var(--white);
}

.logo-accent {
    color: var(--gold);
}

.logo--light .logo-mark {
    background: var(--gold);
}

.logo--light .logo-text {
    color: var(--white);
}

/* --- Nav --- */
.nav ul {
    display: none;
    align-items: center;
    gap: 4px;
}

.nav a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-nav {
    background: var(--gold) !important;
    color: var(--navy) !important;
    font-weight: 600 !important;
    border-radius: var(--radius-sm) !important;
    margin-left: 8px;
}
.btn-nav:hover {
    background: var(--gold-light) !important;
}

/* --- Nav Toggle --- */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    padding: 4px 0;
    z-index: 1001;
}

.nav-toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
    .nav ul {
        display: flex;
    }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    overflow: hidden;
    padding: 120px 0 80px;
}

/* --- Geometric Background Shapes --- */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.12) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.geo-circle--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.geo-circle--3 {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(212, 160, 23, 0.15);
    top: 30%;
    left: 8%;
}

.geo-rect {
    position: absolute;
    border-radius: var(--radius-lg);
}

.geo-rect--1 {
    width: 120px;
    height: 120px;
    background: rgba(212, 160, 23, 0.07);
    rotate: 35deg;
    top: 15%;
    right: 15%;
}

.geo-rect--2 {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.06);
    rotate: 20deg;
    bottom: 25%;
    right: 25%;
}

/* --- Hero Content --- */
.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(212, 160, 23, 0.25);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 88px);
    line-height: 0.95;
    letter-spacing: 0.03em;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 36px;
    max-width: 480px;
}

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

/* --- Hero Visual --- */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-stack {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.hi-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hi-card--main {
    width: 100%;
}

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

.hi-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.9) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.hi-card-stat {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--gold);
    line-height: 1;
}

.hi-card-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    padding-bottom: 6px;
}

.hi-card--float {
    position: absolute;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hi-card--float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hi-card--fresh {
    width: 220px;
    bottom: -30px;
    left: -30px;
}

.hi-card--fresh img {
    height: 160px;
}

.hi-card-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--navy);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
}

.hi-card--baked {
    width: 200px;
    top: 20px;
    right: -20px;
}

.hi-card--baked img {
    height: 140px;
}

@media (min-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .hi-card--main img {
        height: 560px;
    }

    .hi-card--fresh {
        width: 260px;
        bottom: -40px;
        left: -40px;
    }

    .hi-card--fresh img {
        height: 180px;
    }

    .hi-card--baked {
        width: 220px;
        top: 30px;
        right: -30px;
    }

    .hi-card--baked img {
        height: 150px;
    }
}

/* --- Hero Wave --- */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    color: var(--off-white);
}
.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
    background: var(--off-white);
    padding: 96px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.product-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    display: block;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.pc-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.product-card:hover .pc-accent {
    transform: scaleX(1);
}

.product-card--gold .pc-accent {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.pc-icon {
    width: 56px;
    height: 56px;
    background: rgba(212, 160, 23, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.product-card:hover .pc-icon {
    background: var(--gold);
    color: var(--navy);
}

.pc-title {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 0.03em;
    color: var(--navy);
    margin-bottom: 10px;
}

.pc-desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.pc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    transition: gap var(--transition);
}
.product-card:hover .pc-link {
    gap: 10px;
}

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

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

/* ============================================
   ABOUT
   ============================================ */
.about {
    background: var(--white);
    padding: 96px 0;
}

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

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-md);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: -20px;
    left: -16px;
    background: var(--navy);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
}

.ab-number {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--gold);
    line-height: 1;
}

.ab-text {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.as-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.as-number {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--navy);
    letter-spacing: 0.02em;
}

.as-label {
    font-size: 13px;
    color: var(--gray-500);
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }

    .about-img-main img {
        height: 600px;
    }

    .about-img-accent {
        width: 240px;
        height: 240px;
        bottom: -40px;
        right: -30px;
    }
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
    background: var(--navy);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.why-us .section-title {
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}

.why-card:hover {
    background: var(--navy-mid);
    border-color: rgba(212, 160, 23, 0.2);
    transform: translateY(-4px);
}

.why-card-num {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(212, 160, 23, 0.15);
    line-height: 1;
    margin-bottom: 16px;
}

.why-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 160, 23, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.03em;
    color: var(--white);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
}

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

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: var(--gold);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
}

.cta-circle--1 {
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    top: -100px;
    left: -80px;
}

.cta-circle--2 {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.08);
    bottom: -60px;
    right: 10%;
}

.cta-rect {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.06);
    rotate: 30deg;
    top: 10%;
    right: 5%;
    border-radius: var(--radius-md);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: 0.03em;
    color: var(--navy);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(10, 22, 40, 0.7);
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* ============================================
   VISIT
   ============================================ */
.visit {
    background: var(--off-white);
    padding: 96px 0;
}

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

.visit-info .section-title {
    margin-bottom: 32px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vd-item {
    display: flex;
    gap: 16px;
}

.vd-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.vd-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.vd-value {
    display: block;
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
}

.vd-value a {
    color: var(--gold);
    transition: color var(--transition);
}
.vd-value a:hover {
    color: var(--navy);
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 380px;
}

@media (min-width: 1024px) {
    .visit-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: stretch;
    }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    background: var(--white);
    padding: 96px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.contact-info .section-title {
    margin-bottom: 16px;
}

.contact-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cq-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    padding: 12px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.cq-item:hover {
    background: rgba(212, 160, 23, 0.08);
    color: var(--gold);
}

.cq-icon {
    color: var(--gold);
    flex-shrink: 0;
}

/* --- Form --- */
.contact-form-wrap {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 36px;
    border: 1px solid var(--gray-200);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-800);
    transition: all var(--transition);
    outline: none;
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.12);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

/* --- Success State --- */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.fs-icon {
    width: 72px;
    height: 72px;
    background: rgba(212, 160, 23, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin: 0 auto 20px;
}

.fs-title {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 8px;
}

.fs-text {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 64px;
        align-items: start;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-brand {
    max-width: 300px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
    z-index: 999;
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-4px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.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; }
.reveal-delay-4 { transition-delay: 0.4s; }
