/* ============================================
   Absolute Nutrition Colfax — Stylesheet
   Bold Editorial / Terracotta + Sand
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --terracotta: #C1694F;
    --terracotta-dark: #A8553D;
    --terracotta-light: #D4896F;
    --sand: #E8D5C0;
    --sand-light: #F5E6D3;
    --sand-cream: #FAF3EB;
    --sand-dark: #C4A882;
    --charcoal: #1A1714;
    --charcoal-light: #2D2824;
    --warm-gray: #6B6560;
    --warm-gray-light: #9B9490;
    --white: #FEFCFA;
    --off-white: #F9F5F0;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slower: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    --shadow-sm: 0 1px 3px rgba(26, 23, 20, 0.06);
    --shadow-md: 0 4px 20px rgba(26, 23, 20, 0.08);
    --shadow-lg: 0 12px 40px rgba(26, 23, 20, 0.12);
    --shadow-xl: 0 24px 60px rgba(26, 23, 20, 0.16);
}

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

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

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--sand-cream);
    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 {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

::selection {
    background-color: var(--terracotta);
    color: var(--white);
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-2xl);
    }
}

/* ---------- Custom Cursor ---------- */
.cursor-dot {
    display: none;
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--terracotta);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, opacity 0.1s ease;
}

.cursor-ring {
    display: none;
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--terracotta);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .cursor-dot,
    .cursor-ring {
        display: block;
    }
    
    body {
        cursor: none;
    }
    
    a, button, .product-card, input, textarea, select {
        cursor: none;
    }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.15;
    color: var(--charcoal);
}

/* ---------- Eyebrow ---------- */
.section-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.eyebrow-line {
    display: block;
    width: 40px;
    height: 1.5px;
    background-color: var(--terracotta);
    flex-shrink: 0;
}

.eyebrow-text {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
}

/* ---------- Section Heading ---------- */
.section-heading {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--charcoal);
}

.heading-accent {
    color: var(--terracotta);
    font-style: italic;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--warm-gray);
    max-width: 560px;
    line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.875rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--terracotta);
    color: var(--white);
    border: 1.5px solid var(--terracotta);
}

.btn--primary:hover {
    background-color: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--ghost {
    background-color: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--charcoal);
}

.btn--ghost:hover {
    background-color: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* ---------- Header / Navigation ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(250, 243, 235, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(193, 105, 79, 0.08);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background-color: rgba(250, 243, 235, 0.95);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--charcoal);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.logo-mark {
    color: var(--terracotta);
    flex-shrink: 0;
}

.logo-text {
    line-height: 1.2;
}

.logo-accent {
    color: var(--terracotta);
    font-style: italic;
}

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

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

/* Nav */
.nav-list {
    display: none;
    align-items: center;
    gap: var(--space-xl);
}

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

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--warm-gray);
    letter-spacing: 0.02em;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--terracotta);
    transition: width var(--transition-base);
}

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

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

.nav-link--cta {
    color: var(--terracotta);
    font-weight: 500;
}

.nav-link--cta::after {
    background-color: var(--terracotta);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-fast);
}

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

.nav-toggle:hover {
    background-color: var(--sand-light);
}

.hamburger {
    display: block;
    width: 20px;
    height: 14px;
    position: relative;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: var(--charcoal);
    border-radius: 1px;
    position: absolute;
    transition: all var(--transition-base);
}

.hamburger::before {
    top: 0;
}

.hamburger span {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::after {
    bottom: 0;
}

.nav-toggle.is-active .hamburger::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.nav-toggle.is-active .hamburger span {
    opacity: 0;
}

.nav-toggle.is-active .hamburger::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background-color: var(--sand-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

.mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-inner {
    text-align: center;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--terracotta);
}

.mobile-nav-link--cta {
    color: var(--terracotta);
}

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 6rem;
    padding-bottom: var(--space-xl);
    background: linear-gradient(135deg, var(--sand-cream) 0%, var(--sand-light) 50%, var(--sand) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(193, 105, 79, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: var(--space-2xl);
    }
}

/* Hero Content */
.hero-content {
    max-width: 600px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.hero-eyebrow .eyebrow-line {
    width: 50px;
}

.hero-headline {
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
    color: var(--charcoal);
}

.headline-accent {
    color: var(--terracotta);
    font-style: italic;
}

.headline-serif {
    font-weight: 400;
    color: var(--warm-gray);
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--warm-gray);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(193, 105, 79, 0.15);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--terracotta);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(193, 105, 79, 0.2);
}

/* Hero Image Stack */
.hero-image-stack {
    position: relative;
    height: 500px;
}

@media (min-width: 1024px) {
    .hero-image-stack {
        height: 650px;
    }
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slower);
}

.hero-img:hover img {
    transform: scale(1.03);
}

.hero-img--main {
    width: 75%;
    height: 85%;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero-img--secondary {
    width: 55%;
    height: 45%;
    bottom: 8%;
    left: 0;
    z-index: 3;
    border: 4px solid var(--sand-cream);
}

.hero-img--accent {
    width: 45%;
    height: 32%;
    bottom: 0;
    right: 10%;
    z-index: 1;
}

.hero-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(to top, rgba(26, 23, 20, 0.7), transparent);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.hero-img:hover .hero-img-caption {
    opacity: 1;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
    animation: float 2.5s ease-in-out infinite;
}

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

/* ---------- Marquee Strip ---------- */
.marquee-strip {
    background-color: var(--charcoal);
    padding: var(--space-sm) 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: 0 var(--space-sm);
    animation: marquee 30s linear infinite;
}

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

.marquee-content span {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sand);
    white-space: nowrap;
}

.marquee-dot {
    color: var(--terracotta) !important;
    font-size: 0.5rem !important;
}

/* ---------- About Section ---------- */
.about {
    padding: var(--space-3xl) 0;
    background-color: var(--sand-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: var(--space-2xl);
    }
}

.about-image-col {
    position: relative;
}

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

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slower);
}

.about-img-wrapper:hover img {
    transform: scale(1.02);
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--sand-cream);
    z-index: 2;
}

@media (min-width: 768px) {
    .about-img-accent {
        width: 55%;
    }
}

.about-img-accent img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content-col {
    padding: var(--space-lg) 0;
}

.about-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: var(--space-md);
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(193, 105, 79, 0.12);
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.value-icon {
    color: var(--terracotta);
    flex-shrink: 0;
    margin-top: 2px;
}

.value-text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.4;
}

/* ---------- Products Section ---------- */
.products {
    padding: var(--space-3xl) 0;
    background-color: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

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

.section-header .section-subtitle {
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

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

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

.product-card {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 5 / 4;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slower);
}

.product-card:hover .product-card-img img {
    transform: scale(1.08);
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 23, 20, 0.5) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-card:hover .product-card-overlay {
    opacity: 1;
}

.product-card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    color: var(--terracotta);
    transition: transform var(--transition-base);
}

.product-card:hover .product-card-arrow {
    transform: rotate(-45deg);
}

.product-card-info {
    padding: var(--space-md);
}

.product-card-number {
    font-family: var(--font-serif);
    font-size: 0.75rem;
    color: var(--terracotta);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
}

.product-card-title {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.product-card-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--warm-gray);
}

/* ---------- Philosophy Section ---------- */
.philosophy {
    padding: var(--space-3xl) 0;
    background-color: var(--charcoal);
    color: var(--sand-cream);
    position: relative;
    overflow: hidden;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(193, 105, 79, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.philosophy-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .philosophy-layout {
        grid-template-columns: 1fr 0.8fr;
        gap: var(--space-2xl);
    }
}

.philosophy-text .section-eyebrow .eyebrow-line {
    background-color: var(--terracotta-light);
}

.philosophy-text .section-eyebrow .eyebrow-text {
    color: var(--terracotta-light);
}

.philosophy-heading {
    color: var(--sand-cream);
}

.philosophy-heading .heading-accent {
    color: var(--terracotta-light);
}

.philosophy-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--warm-gray-light);
    margin-bottom: var(--space-md);
}

.philosophy-visual {
    position: relative;
}

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

.philosophy-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.philosophy-quote {
    position: absolute;
    bottom: -30px;
    left: -20px;
    right: -20px;
    background-color: var(--terracotta);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    z-index: 2;
    box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
    .philosophy-quote {
        right: -40px;
        left: auto;
        width: 80%;
    }
}

.quote-mark {
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: var(--space-sm);
    display: block;
}

.philosophy-quote p {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.quote-attr {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* ---------- Visit Section ---------- */
.visit {
    padding: var(--space-3xl) 0;
    background-color: var(--sand-cream);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

@media (min-width: 1024px) {
    .visit-grid {
        grid-template-columns: 0.8fr 1.2fr;
        gap: var(--space-2xl);
    }
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid rgba(193, 105, 79, 0.12);
}

.visit-detail:first-child {
    padding-top: 0;
}

.visit-detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.visit-detail-icon {
    color: var(--terracotta);
    flex-shrink: 0;
    margin-top: 2px;
}

.visit-detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
    margin-bottom: 0.25rem;
}

.visit-detail-value {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.visit-detail-value a {
    color: var(--charcoal);
    transition: color var(--transition-fast);
}

.visit-detail-value a:hover {
    color: var(--terracotta);
}

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

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ---------- Contact Section ---------- */
.contact {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand-cream) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 0.8fr 1.2fr;
        gap: var(--space-2xl);
    }
}

.contact-subtitle {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--warm-gray);
    max-width: 440px;
}

/* Contact Form */
.contact-form {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

@media (max-width: 639px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--charcoal);
    background-color: var(--sand-cream);
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

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

.form-input:hover {
    border-color: rgba(193, 105, 79, 0.2);
}

.form-input:focus {
    border-color: var(--terracotta);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(193, 105, 79, 0.1);
}

.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 12 12' fill='none' stroke='%236B6560' stroke-width='1.5'%3E%3Cpath d='M3 4.5l3 3 3-3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background-color: rgba(193, 105, 79, 0.08);
    border-radius: var(--radius-sm);
    color: var(--terracotta-dark);
    font-size: 0.9375rem;
    font-weight: 500;
    margin-top: var(--space-md);
}

.form-success svg {
    flex-shrink: 0;
}

/* ---------- Footer ---------- */
.site-footer {
    background-color: var(--charcoal);
    color: var(--sand);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(232, 213, 192, 0.1);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: var(--space-xl);
    }
}

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

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--warm-gray-light);
    margin-top: var(--space-md);
    line-height: 1.6;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sand-dark);
    margin-bottom: var(--space-md);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--sand);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--terracotta-light);
}

.footer-contact address {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--sand);
}

.footer-phone a,
.footer-email a {
    color: var(--terracotta-light);
    transition: color var(--transition-fast);
}

.footer-phone a:hover,
.footer-email a:hover {
    color: var(--sand);
}

.footer-hours {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--sand);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
    padding-top: var(--space-lg);
}

.footer-copyright,
.footer-location {
    font-size: 0.8125rem;
    color: var(--warm-gray);
}

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.visible {
    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; }

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 767px) {
    .hero {
        padding-top: 5rem;
    }
    
    .hero-image-stack {
        height: 380px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }
    
    .stat-divider {
        display: none;
    }
    
    .about-img-accent {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: var(--space-md);
        border: none;
    }
    
    .philosophy-quote {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        width: 100%;
        margin-top: var(--space-lg);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-image-stack {
        height: 480px;
    }
}
