/* ============================================
   Coco's Loko's Vapes — Custom Styles
   Classic & Elegant · Forest Green + Off-White
   ============================================ */

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

:root {
    --color-forest: #1B4332;
    --color-forest-deep: #0D2818;
    --color-forest-light: #2D6A4F;
    --color-forest-muted: #40916C;
    --color-cream: #F5F0E8;
    --color-cream-light: #FAF7F2;
    --color-cream-dark: #E8E0D0;
    --color-gold: #C9A96E;
    --color-gold-light: #D4B87A;
    --color-text: #1A1A1A;
    --color-text-muted: #5C5C5C;
    --color-text-light: #8A8A8A;
    --color-white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-cream);
    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 {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

address {
    font-style: normal;
}

/* ---------- Typography ---------- */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--color-forest);
    margin-bottom: 1.5rem;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

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

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

.btn--primary:hover {
    background-color: var(--color-forest-deep);
    border-color: var(--color-forest-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 67, 50, 0.25);
}

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

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

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

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    transition: all var(--transition);
}

.nav.scrolled {
    box-shadow: 0 2px 24px rgba(27, 67, 50, 0.08);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-mark {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-forest);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--color-forest);
    border-radius: 4px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
    transition: color var(--transition);
    position: relative;
}

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

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

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

.nav-link--cta {
    background-color: var(--color-forest);
    color: var(--color-white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-weight: 500;
}

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

.nav-link--cta:hover {
    background-color: var(--color-forest-deep);
    color: var(--color-white) !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    width: 22px;
    height: 1.5px;
    background-color: var(--color-forest);
    transition: all var(--transition);
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background-color: rgba(13, 40, 24, 0.97);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

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

.nav-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

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

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

.nav-overlay-link--cta {
    color: var(--color-gold);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 169, 110, 0.3);
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--color-cream);
    padding: 72px 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.03) 0%, rgba(45, 106, 79, 0.06) 100%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.6;
}

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

.hero-content {
    padding-right: 1rem;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1.5px;
    background-color: var(--color-gold);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 500;
    line-height: 1.0;
    color: var(--color-forest);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-headline br {
    display: block;
}

.hero-subheadline {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--color-text-muted);
    max-width: 440px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.hero-stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-forest);
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--color-cream-dark);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-stack {
    position: relative;
}

.hero-img--main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(27, 67, 50, 0.15);
}

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

.hero-img--accent {
    position: absolute;
    bottom: -2rem;
    left: -3rem;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(27, 67, 50, 0.2);
    border: 4px solid var(--color-cream);
}

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

.hero-badge {
    position: absolute;
    top: 2rem;
    right: -1.5rem;
    background-color: var(--color-forest);
    color: var(--color-white);
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 24px rgba(27, 67, 50, 0.3);
}

/* ---------- About ---------- */
.about {
    padding: 8rem 0;
    background-color: var(--color-white);
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-image-col img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 24px 64px rgba(27, 67, 50, 0.12);
}

.about-image-accent {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 200px;
    height: 200px;
    background-color: var(--color-forest);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.1;
}

.about-text-col {
    padding: 1rem 0;
}

.about-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--color-cream-dark);
}

.about-value {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 500;
}

.about-value svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

/* ---------- Products ---------- */
.products {
    padding: 8rem 0;
    background-color: var(--color-cream);
}

.products-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.products-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid rgba(27, 67, 50, 0.06);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(27, 67, 50, 0.12);
}

.product-card-image {
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.product-card-body {
    padding: 1.75rem;
}

.product-card-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: 0.75rem;
}

.product-card-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* ---------- Why Us ---------- */
.why-us {
    padding: 8rem 0;
    background-color: var(--color-forest);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.why-us-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.why-us-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us-content .section-eyebrow {
    color: var(--color-gold);
}

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

.why-us-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.why-us-feature {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1.25rem;
}

.why-us-feature-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gold);
    padding-top: 0.15rem;
}

.why-us-feature-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.why-us-feature-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.why-us-visual {
    position: relative;
}

.why-us-image-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-us-img--large img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 8px;
}

.why-us-img--small {
    border-radius: 8px;
    overflow: hidden;
}

.why-us-img--small img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* ---------- Hours ---------- */
.hours {
    padding: 8rem 0;
    background-color: var(--color-white);
}

.hours-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hours-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.hours-address {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-cream-dark);
}

.hours-address svg {
    color: var(--color-forest);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.hours-address address {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.6;
}

.hours-table {
    margin-bottom: 2.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(232, 224, 208, 0.6);
    font-size: 0.95rem;
}

.hours-day {
    font-weight: 500;
    color: var(--color-text);
}

.hours-time {
    color: var(--color-text-muted);
}

.hours-row--closed .hours-day,
.hours-row--closed .hours-time {
    color: var(--color-text-light);
}

.hours-row--closed .hours-time {
    font-style: italic;
}

.hours-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--color-forest);
    transition: color var(--transition);
}

.hours-contact-item:hover {
    color: var(--color-gold);
}

.hours-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(27, 67, 50, 0.1);
    aspect-ratio: 4/3;
    min-height: 400px;
}

/* ---------- Contact ---------- */
.contact {
    padding: 8rem 0;
    background-color: var(--color-cream);
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-content {
    padding-top: 1rem;
}

.contact-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.form-input {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text);
    background-color: var(--color-white);
    border: 1.5px solid var(--color-cream-dark);
    border-radius: 4px;
    padding: 0.875rem 1rem;
    transition: all var(--transition);
    outline: none;
    width: 100%;
}

.form-input:focus {
    border-color: var(--color-forest);
    box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.08);
}

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

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background-color: rgba(27, 67, 50, 0.06);
    border: 1px solid rgba(27, 67, 50, 0.15);
    border-radius: 4px;
    margin-top: 1rem;
}

.form-success svg {
    color: var(--color-forest);
    flex-shrink: 0;
}

.form-success p {
    font-size: 0.95rem;
    color: var(--color-forest);
    font-weight: 500;
}

.contact-visual {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.contact-visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(13, 40, 24, 0.9) 0%, transparent 100%);
}

.contact-visual-quote {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.contact-visual-attribution {
    font-size: 0.8rem;
    color: var(--color-gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ---------- Footer ---------- */
.footer {
    background-color: var(--color-forest-deep);
    color: var(--color-white);
    padding: 5rem 0 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-mark {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

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

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 260px;
}

.footer-nav-title {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--color-white);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--color-gold);
}

.footer-legal-text {
    font-size: 0.78rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.35);
    max-width: 280px;
}

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

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.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; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-container {
        gap: 2.5rem;
    }

    .hero-headline {
        font-size: clamp(2.75rem, 6vw, 4.5rem);
    }

    .hero-img--accent {
        left: -1.5rem;
        bottom: -1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding-top: 72px;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-img--accent {
        left: -0.75rem;
        bottom: -1rem;
        width: 55%;
    }

    .hero-badge {
        right: 0;
        top: 1rem;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-col img {
        height: 450px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .why-us-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-us-img--large img {
        height: 400px;
    }

    .hours-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hours-map {
        aspect-ratio: 16/9;
        min-height: 280px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-visual {
        order: -1;
    }

    .contact-visual img {
        min-height: 350px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .nav-inner {
        padding: 0 1.25rem;
    }

    .hero-container,
    .about-container,
    .products-container,
    .why-us-container,
    .hours-container,
    .contact-container,
    .footer-container {
        padding: 0 1.25rem;
    }

    .hero-headline {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
    }

    .hero-img--accent {
        display: none;
    }

    .hero-badge {
        position: relative;
        top: auto;
        right: auto;
        display: inline-flex;
        margin-bottom: 1.5rem;
    }

    .about-image-col img {
        height: 350px;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}
