/* =================================================================
   FLORIDA CLEAR ICE — styles.css
   Production stylesheet for floridaclearice.com
   Tested breakpoints: 360px, 480px, 768px, 1024px, 1440px+
   ================================================================= */


/* -----------------------------------------------------------------
   RESET & BOX MODEL
   ----------------------------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Visually hidden but readable by screen readers and search engines */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* -----------------------------------------------------------------
   CUSTOM PROPERTIES
   ----------------------------------------------------------------- */
:root {
    --black:          #0a0a0a;
    --white:          #fafafa;
    --amber:          #d4a574;
    --amber-dark:     #b8864f;
    --warm-glow:      rgba(212, 165, 116, 0.15);

    --navbar-height:  65px;

    /* Spacing tokens used consistently across breakpoints */
    --pad-x-lg:   2rem;
    --pad-x-md:   1.5rem;
    --pad-x-sm:   1.25rem;
    --pad-x-xs:   1rem;

    --pad-y-lg:   7rem;
    --pad-y-md:   5rem;
    --pad-y-sm:   3.5rem;
    --pad-y-xs:   3rem;
}


/* -----------------------------------------------------------------
   BASE
   ----------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Josefin Sans', 'Gill Sans MT', 'Gill Sans', Calibri,
                 'Trebuchet MS', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    letter-spacing: 0.3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Reserve space for the fixed navbar so content isn't hidden behind it */
    padding-top: var(--navbar-height);
}

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

a {
    -webkit-tap-highlight-color: rgba(212, 165, 116, 0.2);
}


/* -----------------------------------------------------------------
   LAYOUT — SECTIONS
   ----------------------------------------------------------------- */
section {
    padding: var(--pad-y-lg) var(--pad-x-lg);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Push scroll targets below the fixed navbar */
section[id] {
    scroll-margin-top: calc(var(--navbar-height) + 0.5rem);
}

/* Full-viewport-width sections — background spans entire screen.
   Inner content (titles, subtitles, grids) keeps its own max-width
   so the text column doesn't stretch edge-to-edge on wide monitors. */
.hero,
.cta-section,
.why-section {
    max-width: 100%;
}

.dark-section {
    background: var(--black);
}

/* Slightly lighter surface for visual rhythm between sections.
   Fades back to --black at both edges so the seam against
   neighboring .dark-section blocks reads as a smooth blend,
   not a hard line. */
.light-section {
    background: linear-gradient(180deg,
                var(--black) 0%, #161616 50%, var(--black) 100%);
}


/* -----------------------------------------------------------------
   SECTION HEADINGS (shared)
   ----------------------------------------------------------------- */

.section-title {
    font-family: 'Cormorant Garamond', 'Palatino Linotype', Palatino,
                 'Book Antiqua', Georgia, serif;
    font-size: clamp(2rem, 6vw, 4.5rem);
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 300;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--amber);
    margin: 2rem auto;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(0.95rem, 2vw, 1.3rem);
    color: rgba(250, 250, 250, 0.6);
    margin: 0 auto 5rem;
    font-weight: 300;
    max-width: 700px;
    line-height: 1.8;
}


/* -----------------------------------------------------------------
   NAVBAR
   ----------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--navbar-height);
    background: rgba(10, 10, 10, 0.85);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.08);
    -webkit-transition: background-color 0.4s ease, border-color 0.4s ease;
            transition: background-color 0.4s ease, border-color 0.4s ease;
}

/* Opaque once user scrolls past hero */
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.97);
    border-bottom-color: rgba(212, 165, 116, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--pad-x-lg);
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: space-between;
            justify-content: space-between;
}

.nav-brand {
    font-family: 'Josefin Sans', 'Gill Sans MT', Calibri, sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--amber);
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    -webkit-transition: opacity 0.3s ease;
            transition: opacity 0.3s ease;
}

.nav-brand:hover {
    opacity: 0.75;
}

.nav-links {
    display: -webkit-flex;
    display: flex;
    list-style: none;
    -webkit-align-items: center;
            align-items: center;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: 'Josefin Sans', 'Gill Sans MT', Calibri, sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgba(250, 250, 250, 0.65);
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: color 0.3s ease;
            transition: color 0.3s ease;
    white-space: nowrap;
}

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

/* CTA link in the nav — outlined amber button */
.nav-link-cta {
    color: var(--amber);
    border: 1px solid rgba(212, 165, 116, 0.45);
    padding: 0.5rem 1.25rem;
    min-height: 34px;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
            transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.nav-link-cta:hover {
    background: var(--amber);
    color: var(--black);
    border-color: var(--amber);
}

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
    display: none;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: center;
            justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    min-height: 44px;
    min-width: 44px;
    -webkit-align-items: center;
            align-items: center;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--amber);
    -webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease;
            transition:         transform 0.3s ease, opacity 0.3s ease;
    -webkit-transform-origin: center;
            transform-origin: center;
}

/* Animate hamburger → X when open */
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    -webkit-transform: translateY(6.5px) rotate(45deg);
            transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    -webkit-transform: translateY(-6.5px) rotate(-45deg);
            transform: translateY(-6.5px) rotate(-45deg);
}


/* -----------------------------------------------------------------
   HERO
   ----------------------------------------------------------------- */
.hero {
    /* Exactly fills the viewport visible below the navbar */
    min-height: calc(100vh - var(--navbar-height));
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    text-align: center;
    padding: 4rem var(--pad-x-lg);
    background: var(--black);
    /* background: radial-gradient(ellipse at center,
                rgba(212, 165, 116, 0.07) 0%, var(--black) 50%); */
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, var(--warm-glow), transparent 40%),
        radial-gradient(circle at 80% 30%, var(--warm-glow), transparent 50%);
    -webkit-animation: ambientGlow 12s ease-in-out infinite alternate;
            animation: ambientGlow 12s ease-in-out infinite alternate;
    pointer-events: none;
}

.logo-container {
    position: relative;
    z-index: 2;
    -webkit-animation: fadeInDown 1.4s ease-out both;
            animation: fadeInDown 1.4s ease-out both;
    margin-bottom: 3rem;
}

.logo {
    max-width: 450px;
    width: 100%;
    /* -webkit-filter: drop-shadow(0 20px 60px rgba(212, 165, 116, 0.3));
            filter: drop-shadow(0 20px 60px rgba(212, 165, 116, 0.3)); */
}

/* Currently unused — the <h1 class="hero-tagline"> (index.html
   ~line 80, "The Difference Is Clear") is commented out in favor of
   the logo standing alone in the hero. Kept for quick restoration,
   along with the glow effects below (text-shadow + ::before blur)
   that were drafted to accompany it. */
.hero-tagline {
    font-family: 'Cormorant Garamond', 'Palatino Linotype', Palatino,
                 'Book Antiqua', Georgia, serif;
    font-size: clamp(1.4rem, 4vw, 2.8rem);
    font-weight: 300;
    margin-top: 2rem;
    color: var(--amber-dark);
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
    /* text-shadow:
        0 0 15px rgba(212, 165, 116, 0.6),
        0 0 30px rgba(212, 165, 116, 0.45),
        0 0 60px rgba(212, 165, 116, 0.35),
        0 0 120px rgba(212, 165, 116, 0.25); */
    -webkit-animation: fadeIn 1.8s ease-out 0.4s both;
            animation: fadeIn 1.8s ease-out 0.4s both;
}

/* .hero-tagline::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: rgba(212, 165, 116, 0.2);
    filter: blur(40px);
    z-index: -1;
} */

.hero-tagline em {
    font-style: italic;
    text-transform: uppercase;
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.4rem);
    font-weight: 300;
    margin-top: 2rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    -webkit-animation: fadeIn 1.8s ease-out 0.8s both;
            animation: fadeIn 1.8s ease-out 0.8s both;
    max-width: 800px;
    line-height: 1.8;
}

.hero-location {
    font-family: 'Josefin Sans', 'Gill Sans MT', Calibri, sans-serif;
    font-size: clamp(0.8rem, 1.6vw, 1rem);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: capitalize;
    margin-top: 1.25rem;
    color: var(--amber);
    position: relative;
    z-index: 2;
    -webkit-animation: fadeIn 1.8s ease-out 1.1s both;
            animation: fadeIn 1.8s ease-out 1.1s both;
}

/* -----------------------------------------------------------------
   WHY CLEAR ICE — full benefit-card section
   ----------------------------------------------------------------- */
.why-section {
    /* background comes from .light-section utility class */
}

/* Currently unused — the "Why Clear Ice" 6-card benefits grid
   (#why, index.html ~line 91) is commented out in favor of the
   shorter "Crafted for the Perfect Sip" intro section below it.
   Kept here for quick restoration: renders a responsive grid of
   numbered benefit cards (3 cols → 2 → 1) with hover lift + glow. */
/* 6 items — only valid column counts: 3 (default), 2, or 1 */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-card {
    background: linear-gradient(145deg, #0a0a0a, #141414);
    border: 1px solid rgba(212, 165, 116, 0.1);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    -webkit-transition: -webkit-transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
            transition:         transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 0%, var(--warm-glow), transparent 65%);
    opacity: 0;
    -webkit-transition: opacity 0.4s ease;
            transition: opacity 0.4s ease;
}

.benefit-card:hover {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
    border-color: rgba(212, 165, 116, 0.3);
    box-shadow: 0 20px 60px rgba(212, 165, 116, 0.12);
}

.benefit-card:hover::before { opacity: 1; }

.benefit-num {
    font-family: 'Cormorant Garamond', 'Palatino Linotype', Palatino,
                 'Book Antiqua', Georgia, serif;
    font-size: 3rem;
    letter-spacing: 2px;
    color: var(--amber);
    opacity: 0.85;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.benefit-title {
    font-family: 'Cormorant Garamond', 'Palatino Linotype', Palatino,
                 'Book Antiqua', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.benefit-desc {
    font-size: 0.95rem;
    color: rgba(250, 250, 250, 0.6);
    line-height: 1.7;
    font-weight: 300;
    position: relative;
    z-index: 1;
}


/* -----------------------------------------------------------------
   PRODUCTS GRID
   ----------------------------------------------------------------- */
/* Flexible, centered layout — wraps and stays centered no matter
   how many cards are present (adding/removing cards just reflows). */
.products-grid {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: center;
            justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.product-card {
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    border: 1px solid rgba(212, 165, 116, 0.1);
    -webkit-flex: 1 1 300px;
            flex: 1 1 300px;
    max-width: 340px;
    overflow: hidden;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                               border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                               box-shadow   0.5s cubic-bezier(0.4, 0, 0.2, 1);
            transition:        transform     0.5s cubic-bezier(0.4, 0, 0.2, 1),
                               border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                               box-shadow   0.5s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-animation: fadeInUp 0.9s ease-out both;
            animation: fadeInUp 0.9s ease-out both;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 0%, var(--warm-glow), transparent 60%);
    opacity: 0;
    -webkit-transition: opacity 0.5s ease;
            transition: opacity 0.5s ease;
}

/* Saved for later — would fade in the warm radial-glow overlay
   (.product-card::before) on hover. Left off for now since the
   card already has a permanent lift + glow shadow on hover below. */
/* .product-card:hover::before { opacity: 1; } */

.product-card:nth-child(1) { -webkit-animation-delay: 0.1s; animation-delay: 0.1s; }
.product-card:nth-child(2) { -webkit-animation-delay: 0.2s; animation-delay: 0.2s; }
.product-card:nth-child(3) { -webkit-animation-delay: 0.3s; animation-delay: 0.3s; }
.product-card:nth-child(4) { -webkit-animation-delay: 0.4s; animation-delay: 0.4s; }

.product-card {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
    border-color: rgba(212, 165, 116, 0.3);
    box-shadow: 0 30px 80px rgba(212, 165, 116, 0.15);
}

.product-image {
    width: 100%;
    height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
    background-color: #111;
    -webkit-filter: contrast(1.1) brightness(0.95);
            filter: contrast(1.1) brightness(0.95);
    min-height: 200px;
}

.product-info {
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.product-name {
    font-family: 'Cormorant Garamond', 'Palatino Linotype', Palatino,
                 'Book Antiqua', Georgia, serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--amber);
    font-weight: 400;
    letter-spacing: 1px;
}

.product-description {
    font-size: 1.1rem;
    color: rgba(250, 250, 250, 0.7);
    line-height: 1.3;
    font-weight: 300;
    margin-bottom: .5rem;
}

.product-size {
    font-size: .9rem;
    color: var(--amber);
    line-height: 1.3;
    font-weight: 200;
}


/* -----------------------------------------------------------------
   ABOUT SECTION — WHO WE ARE + WHO WE SERVE (two-column)
   Currently unused — #serve (index.html ~line 227) is commented out.
   Kept for quick restoration: a two-column layout pairing a "Who We
   Are" blurb with a "Who We Serve" list + description. The standalone
   .serve-list / .serve-item rules further down are still active —
   they power the live "Who We Serve" strip near the footer (#serving).
   ----------------------------------------------------------------- */
.about-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

/* Two-column grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    -webkit-align-items: start;
            align-items: start;
}

/* Column-level heading — smaller than full-section titles */
.about-heading {
    font-family: 'Cormorant Garamond', 'Palatino Linotype', Palatino,
                 'Book Antiqua', Georgia, serif;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 0.5rem;
    position: relative;
}

.about-heading::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--amber);
    margin: 1.25rem 0;
}

/* Who We Serve — centered wrapping list in column context.
   Centering means partial rows land in the middle rather than left-flush. */
.about-col .serve-list {
    list-style-type: none;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 0.5rem 2.5rem;
    margin-top: 0;
}

.about-col .serve-item {
    font-size: 1rem;
}

.about-col .serve-description {
    margin: 1.5rem 0 0;
    font-size: 1rem;
}

/* Serve list / serve item base styles */
.serve-list {
    list-style-type: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    gap: 3rem;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 3rem;
}

.serve-item {
    font-family: 'Cormorant Garamond', 'Palatino Linotype', Palatino,
                 'Book Antiqua', Georgia, serif;
    font-size: 1.1rem;
    color: var(--amber);
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
    padding: 0 1rem;
}

/* Centered dash separator sitting in the gap between serve items */
.serve-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -2rem;
    width: 24px;
    height: 2px;
    background: var(--amber);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-radius: 999px;
}

.serve-description {
    margin: 3rem auto 0;
    font-size: 1.1rem;
    color: rgba(250, 250, 250, 0.7);
    max-width: 600px;
    font-weight: 300;
    line-height: 1.9;
}


/* -----------------------------------------------------------------
   PRICING SECTION
   Currently unused — #pricing (index.html ~line 256) is commented
   out. Kept for quick restoration: a 3-card grid ("By the Cut",
   "By Volume", "Sample Orders") with hover lift + glow, collapsing
   to a single column on tablets and below.
   ----------------------------------------------------------------- */
.pricing-section {
    /* Inherits from section base — max-width: 1400px, margin: 0 auto */
}

.pricing-section .section-subtitle {
    margin-bottom: 3rem;
}

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

.pricing-card {
    background: linear-gradient(145deg, #0a0a0a, #111);
    border: 1px solid rgba(212, 165, 116, 0.1);
    padding: 2.75rem 2.5rem;
    position: relative;
    overflow: hidden;
    -webkit-transition: -webkit-transform 0.4s ease, border-color 0.4s ease;
            transition:         transform 0.4s ease, border-color 0.4s ease;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 0%, var(--warm-glow), transparent 65%);
    opacity: 0;
    -webkit-transition: opacity 0.4s ease;
            transition: opacity 0.4s ease;
}

.pricing-card:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
    border-color: rgba(212, 165, 116, 0.3);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card h3 {
    font-family: 'Cormorant Garamond', 'Palatino Linotype', Palatino,
                 'Book Antiqua', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--amber);
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

/* Amber hairline under each pricing card heading */
.pricing-card h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--amber);
    margin-top: 0.85rem;
    opacity: 0.5;
}

.pricing-card p {
    font-size: 1rem;
    color: rgba(250, 250, 250, 0.65);
    line-height: 1.85;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* -----------------------------------------------------------------
   CTA / CONTACT
   ----------------------------------------------------------------- */
.cta-section {
    /* background: radial-gradient(ellipse at center,
                rgba(212, 165, 116, 0.07) 0%, var(--black) 50%); */
    text-align: center;
    padding: 8rem var(--pad-x-lg);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 50%, var(--warm-glow), transparent 50%),
        radial-gradient(circle at 70% 50%, var(--warm-glow), transparent 50%);
    -webkit-animation: ambientGlow 10s ease-in-out infinite alternate;
            animation: ambientGlow 10s ease-in-out infinite alternate;
}

.cta-title {
    font-family: 'Cormorant Garamond', 'Palatino Linotype', Palatino,
                 'Book Antiqua', Georgia, serif;
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: 2rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    font-weight: 300;
    letter-spacing: 2px;
}

.cta-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--amber);
    margin: 2rem auto 0;
}

.cta-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(250, 250, 250, 0.7);
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    font-weight: 300;
}

/* Currently unused — the .open-modal trigger buttons (index.html
   ~line 290, "Request Sample" / "Get Wholesale Pricing") are
   commented out along with the contact modal they open. Kept for
   quick restoration: a centered, wrapping row of amber outline/
   filled buttons with a slide-in fill on hover. */
.cta-buttons {
    display: -webkit-flex;
    display: flex;
    gap: 1.5rem;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Touch-friendly minimum per WCAG / Apple HIG */
.cta-button {
    display: inline-block;
    padding: 1.1rem 3rem;
    min-height: 44px;
    background: transparent;
    color: var(--amber);
    text-decoration: none;
    font-family: 'Josefin Sans', 'Gill Sans MT', Calibri, sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    border: 1px solid var(--amber);
    -webkit-transition: color 0.4s ease, background-color 0.4s ease;
            transition: color 0.4s ease, background-color 0.4s ease;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

/* Slide-in fill — the ::before slides from left on hover */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--amber);
    -webkit-transition: left 0.4s ease;
            transition: left 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before,
.cta-button:focus::before {
    left: 0;
}

.cta-button:hover,
.cta-button:focus {
    color: var(--black);
    outline: none;
}

.cta-button:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 3px;
}

.cta-button-primary {
    background: var(--amber);
    color: var(--black);
    border-color: var(--amber);
}

.cta-button-primary::before {
    background: var(--black);
}

.cta-button-primary:hover,
.cta-button-primary:focus {
    color: var(--amber);
    background: transparent;
}

/* -----------------------------------------------------------------
   MODAL
   Currently unused — #contactModal (index.html ~line 328) and the
   .open-modal buttons that trigger it are commented out (the
   request-a-sample / get-pricing flow was collapsed into the
   simpler Contact section). Kept for quick restoration: a centered
   backdrop + content box with a form (business name, email, phone)
   posting to Formspree, plus a close (×) button.
   ----------------------------------------------------------------- */

/* Backdrop — flex so the content box is centered */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-animation: fadeIn 0.25s ease both;
            animation: fadeIn 0.25s ease both;
}

.modal-content {
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    padding: 3rem;
    border: 1px solid rgba(212, 165, 116, 0.2);
    width: 90%;
    max-width: 500px;
    position: relative;
    color: var(--white);
    -webkit-animation: slideDown 0.3s ease both;
            animation: slideDown 0.3s ease both;
}

@-webkit-keyframes slideDown {
    from { opacity: 0; -webkit-transform: translateY(-40px); transform: translateY(-40px); }
    to   { opacity: 1; -webkit-transform: translateY(0);     transform: translateY(0); }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Modal heading */
.modal-content h2 {
    font-family: 'Cormorant Garamond', 'Palatino Linotype', Palatino,
                 'Book Antiqua', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--amber);
    margin-bottom: 2rem;
}

/* Form inputs */
.modal-content form input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 165, 116, 0.2);
    color: var(--white);
    font-family: 'Josefin Sans', 'Gill Sans MT', Calibri, sans-serif;
    font-size: 1rem;
    -webkit-transition: border-color 0.3s ease, background-color 0.3s ease,
                        box-shadow 0.3s ease;
            transition: border-color 0.3s ease, background-color 0.3s ease,
                        box-shadow 0.3s ease;
}

.modal-content form input:focus {
    outline: none;
    border-color: var(--amber);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(212, 165, 116, 0.1);
}

.modal-content form input::placeholder {
    color: rgba(250, 250, 250, 0.4);
}

/* Submit button — full-width, matches site amber style */
.submit-btn {
    width: 100%;
    padding: 1.2rem;
    min-height: 44px;
    background: var(--amber);
    color: var(--black);
    border: 1px solid var(--amber);
    font-family: 'Josefin Sans', 'Gill Sans MT', Calibri, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease, color 0.3s ease,
                        -webkit-transform 0.3s ease, box-shadow 0.3s ease;
            transition: background-color 0.3s ease, color 0.3s ease,
                                transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.submit-btn:hover {
    background: var(--amber-dark);
    border-color: var(--amber-dark);
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.25);
}

/* Close (×) button — top-right corner of modal content */
.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--amber);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    min-height: 44px;
    min-width: 44px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-transition: color 0.3s ease;
            transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--white);
}

/* Contact grid — info (left column) / social links (right column) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 640px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 2;
}

.contact-col {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: center;
            align-items: center;
    text-align: center;
    gap: 1rem;
}

.contact-item {
    font-size: clamp(1.15rem, 2vw, 1.05rem);
    color: rgba(250, 250, 250, 0.7);
    font-weight: 300;
    line-height: 1.6;
}

.contact-link {
    color: var(--white);
    text-decoration: none;
    -webkit-transition: color 0.3s ease;
            transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--amber);
}

/* Social icon links — centered, stacked vertically in the right column */
.contact-social {
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    gap: 1.25rem;
    width: 100%;
}

.social-link {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--white);
    -webkit-transition: color 0.3s ease, background-color 0.3s ease;
            transition: color 0.3s ease, background-color 0.3s ease;
}

.social-link:hover,
.social-link:focus-visible {
    color: var(--black);
    background: var(--amber);
}

.social-link svg {
    width: 60px;
    height: 60px;
}


/* -----------------------------------------------------------------
   SERVING — compact strip above the footer
   ----------------------------------------------------------------- */
.serving-section {
    text-align: center;
    padding: 4rem var(--pad-x-lg) 5rem;
}

.serving-title {
    font-family: 'Cormorant Garamond', 'Palatino Linotype', Palatino,
                 'Book Antiqua', Georgia, serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--amber);
    margin-top: 5rem;
}


/* -----------------------------------------------------------------
   FOOTER
   ----------------------------------------------------------------- */
footer {
    background: var(--black);
    color: rgba(250, 250, 250, 0.5);
    text-align: center;
    padding: 3rem var(--pad-x-lg);
    font-size: 0.9rem;
    border-top: 1px solid rgba(212, 165, 116, 0.1);
}

.footer-credit {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

footer a {
    color: var(--amber);
    text-decoration: none;
    -webkit-transition: opacity 0.3s ease;
            transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.7;
}


/* -----------------------------------------------------------------
   KEYFRAME ANIMATIONS
   ----------------------------------------------------------------- */
@-webkit-keyframes ambientGlow {
    0%   { opacity: 0.3; }
    100% { opacity: 0.6; }
}
@keyframes ambientGlow {
    0%   { opacity: 0.3; }
    100% { opacity: 0.6; }
}

@-webkit-keyframes fadeInDown {
    from { opacity: 0; -webkit-transform: translateY(-40px); transform: translateY(-40px); }
    to   { opacity: 1; -webkit-transform: translateY(0);     transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@-webkit-keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-webkit-keyframes fadeInUp {
    from { opacity: 0; -webkit-transform: translateY(50px); transform: translateY(50px); }
    to   { opacity: 1; -webkit-transform: translateY(0);    transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* -----------------------------------------------------------------
   ACCESSIBILITY — REDUCED MOTION
   ----------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        -webkit-animation-duration:        0.01ms !important;
                animation-duration:        0.01ms !important;
        -webkit-animation-iteration-count: 1      !important;
                animation-iteration-count: 1      !important;
        -webkit-transition-duration:       0.01ms !important;
                transition-duration:       0.01ms !important;
    }
    html { scroll-behavior: auto; }
}


/* -----------------------------------------------------------------
   RESPONSIVE — 1024px  (tablets landscape, small laptops)
   Benefits: 3 cols → 2 cols × 3 rows
   Products: stays 2×2
   ----------------------------------------------------------------- */
@media (max-width: 1024px) {
    section {
        padding: var(--pad-y-md) var(--pad-x-lg);
    }

    .hero,
    .cta-section {
        padding: 4rem var(--pad-x-lg);
    }

    .about-grid {
        gap: 3rem;
    }

    /* Benefits: 3 cols → 2 cols × 3 rows */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 3rem;
    }

    /* Products: flex-wrap naturally settles into ~2 per row here;
       centering keeps any leftover card centered rather than orphaned */
    .products-grid {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }

    .section-subtitle {
        margin-bottom: 3.5rem;
    }
}


/* -----------------------------------------------------------------
   RESPONSIVE — 768px  (tablets portrait)
   ----------------------------------------------------------------- */
@media (max-width: 768px) {
    section {
        padding: 4rem var(--pad-x-md);
    }

    .hero {
        padding: 4rem var(--pad-x-md);
    }

    /* Stack nav links into a dropdown */
    .nav-container {
        padding: 0 var(--pad-x-md);
    }

    .nav-toggle {
        display: -webkit-flex;
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        -webkit-flex-direction: column;
                flex-direction: column;
        -webkit-align-items: center;
                align-items: center;
        padding: 1.75rem 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(212, 165, 116, 0.1);
        -webkit-backdrop-filter: blur(10px);
                backdrop-filter: blur(10px);
    }

    .nav-links.is-open {
        display: -webkit-flex;
        display: flex;
    }

    .nav-link-cta {
        padding: 0.6rem 2rem;
    }

    /* Two-col about → single column */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Benefits: stays 2 cols at 768px — collapses at 480px */

    /* Products: stays 2×2 at tablet — 1024px override already handles it */

    /* Pricing: single column */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Modal */
    .modal-content {
        padding: 2.5rem 2rem;
        width: 95%;
    }

    .modal-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .logo {
        max-width: 360px;
    }

    .logo-container {
        margin-bottom: 2rem;
    }

    .hero-tagline {
        letter-spacing: 2px;
    }

    .section-subtitle {
        margin-bottom: 3rem;
    }

    .cta-buttons {
        -webkit-flex-direction: column;
                flex-direction: column;
        -webkit-align-items: center;
                align-items: center;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        max-width: 360px;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 380px;
        text-align: center;
    }

    footer {
        padding: 2.5rem var(--pad-x-md);
    }
}


/* -----------------------------------------------------------------
   RESPONSIVE — 480px  (large phones / phone landscape)
   ----------------------------------------------------------------- */
@media (max-width: 480px) {
    section {
        padding: var(--pad-y-sm) var(--pad-x-sm);
    }

    .hero {
        padding: 3.5rem var(--pad-x-sm);
    }

    .logo {
        max-width: 300px;
    }

    .hero-tagline {
        letter-spacing: 1.5px;
        margin-top: 1.5rem;
    }

    .hero-subtitle {
        margin-top: 1.5rem;
    }

    .section-title {
        letter-spacing: 1px;
    }

    .about-heading {
        font-size: clamp(1.5rem, 5vw, 2rem);
        letter-spacing: 1px;
    }

    /* Benefits: 2 cols → 1 col × 6 rows */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2.5rem;
    }

    /* Products: cards stack full-width, still centered as a column */
    .products-grid {
        max-width: none;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .product-card {
        -webkit-flex-basis: 100%;
                flex-basis: 100%;
        max-width: 420px;
    }

    .product-image {
        height: 280px;
    }

    .product-info {
        padding: 1.75rem;
    }

    .product-name {
        font-size: 1.75rem;
    }

    .pricing-card {
        padding: 2rem 1.75rem;
    }

    /* Modal — inputs use 16px to prevent iOS auto-zoom */
    .modal-content {
        padding: 2rem 1.5rem;
        width: 96%;
    }

    .modal-content form input {
        font-size: 16px;
        padding: 0.9rem;
        margin-bottom: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        letter-spacing: 1.5px;
        max-width: 100%;
    }

    .contact-grid {
        max-width: 100%;
    }

    footer {
        padding: 2.5rem var(--pad-x-sm);
    }
}


/* -----------------------------------------------------------------
   RESPONSIVE — 360px  (small phones — iPhone SE, Galaxy A series)
   ----------------------------------------------------------------- */
@media (max-width: 360px) {
    section {
        padding: var(--pad-y-xs) var(--pad-x-xs);
    }

    .hero,
    .cta-section {
        padding: 3rem var(--pad-x-xs);
    }

    .logo {
        max-width: 260px;
    }

    .hero-tagline {
        letter-spacing: 1px;
        font-size: clamp(1.2rem, 5.5vw, 1.8rem);
    }

    .product-image {
        height: 240px;
    }

    .product-info {
        padding: 1.5rem 1rem;
    }

    .product-name {
        font-size: 1.6rem;
    }

    .pricing-card {
        padding: 1.75rem 1.25rem;
    }

    .contact-grid {
        gap: 2rem;
    }

    /* Modal */
    .modal-content {
        padding: 1.75rem 1.25rem;
    }

    .modal-content h2 {
        font-size: 1.35rem;
    }

    .cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    footer {
        padding: 2rem var(--pad-x-xs);
        font-size: 0.85rem;
    }
}
