/* ============================================================
   Golf Tournament Showcase Landing Page
   Page: pages/golf-tournaments-2026.html
   ============================================================ */

:root {
    /* NWCA brand */
    --primary: #4cb354;
    --primary-hover: #409a47;
    --primary-dark: #2d5f3f;
    --primary-light: #e8f5e9;

    /* Golf accents */
    --fairway: #3a7d44;
    --fairway-deep: #1f4d2c;
    --sand: #e9d8a6;
    --gold: #f59e0b;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-900: #111827;

    --text-primary: #111827;
    --text-secondary: #6b7280;

    --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);

    --radius: 8px;
    --radius-lg: 16px;
    --radius-pill: 999px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--gray-50);
    -webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   Header
   ============================================================ */

.g-header {
    background: var(--white);
    border-bottom: 3px solid var(--primary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.g-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.g-header__brand {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    color: inherit;
}

.g-header__logo { height: 56px; width: auto; }

.g-header__name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

.g-header__tag {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-top: 0.125rem;
}

.g-header__contact {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.g-header__contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.g-header__contact-item i { color: var(--primary); }
.g-header__contact-item:hover { color: var(--primary); }

@media (max-width: 720px) {
    .g-header__contact span { display: none; }
    .g-header__contact { gap: 1rem; }
    .g-header__tag { display: none; }
    .g-header__name { font-size: 1rem; }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1f4d2c 0%, #3a7d44 60%, #4cb354 100%);
    overflow: hidden;
    color: var(--white);
}

/* Subtle golf-course pattern overlay using SVG noise */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0,0,0,0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

/* Background photo (when hero has --has-image variant) */
.hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%; /* keeps the players' faces and embroidered chest logos visible */
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 58, 31, 0.35) 0%, rgba(15, 58, 31, 0.65) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Stronger overlay when there's a photo behind, so the white text stays readable */
.hero--has-image .hero__overlay {
    background:
        linear-gradient(180deg, rgba(15, 58, 31, 0.55) 0%, rgba(0, 0, 0, 0.75) 100%);
}

/* Lift content above the image + overlays */
.hero__inner {
    position: relative;
    z-index: 3;
}

.hero__inner {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    text-align: center;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero__eyebrow i { color: var(--sand); }

.hero__headline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero__sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.5;
    margin: 0 auto 2rem;
    max-width: 720px;
    color: rgba(255,255,255,0.95);
}

.hero__offer {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: var(--gray-900);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin: 0 auto 2rem;
    max-width: 720px;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-align: left;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gold);
}

.hero__offer-icon { font-size: 1.75rem; flex-shrink: 0; }

.hero__offer-text {
    font-size: 0.9375rem;
    line-height: 1.4;
}

/* Hero bonus grid (2 cards) — replaces hero__offer when both bonuses are featured */
.hero__bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 1.25rem;
    max-width: 920px;
    margin: 0 auto 2rem;
    text-align: left;
}

.hero__bonus-card {
    position: relative;
    isolation: isolate;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: var(--gray-900);
    padding: 1.5rem 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Decorative corner shimmer on both cards */
.hero__bonus-card::before {
    content: "";
    position: absolute;
    top: -45%;
    right: -25%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
    z-index: 0;
}

/* Keep card content above the shimmer */
.hero__bonus-card > * { position: relative; z-index: 1; }

.hero__bonus-card--feature {
    background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
}

/* Bonus card as anchor link (bag image card on hero — clicks to bag detail page) */
.hero__bonus-card--link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

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

.hero__bonus-card--link:hover .hero__bonus-card-image {
    transform: scale(1.05);
}

.hero__bonus-card--link:hover .hero__bonus-value-badge {
    transform: rotate(8deg) scale(1.06);
}

.hero__bonus-card-cta {
    margin-top: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 0.02em;
}

.hero__bonus-card--link:hover .hero__bonus-card-cta {
    color: var(--fairway-deep);
}

/* Logo Digitizing card — Ruthie portrait */
.hero__bonus-portrait {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--white);
    box-shadow: 0 8px 18px rgba(0,0,0,0.18), 0 0 0 4px var(--primary);
    margin: 0.25rem 0 0.125rem;
}

.hero__bonus-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 35% 30%;
    display: block;
    border-radius: 50%;
}

/* Years-of-experience stamp on Ruthie's portrait */
.hero__bonus-portrait-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--fairway-deep) 100%);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    border: 3px solid var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.22);
    transform: rotate(-8deg);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.hero__bonus-card--digitize:hover .hero__bonus-portrait-badge {
    transform: rotate(-8deg) scale(1.06);
}

.hero__bonus-portrait-caption {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.125rem;
}

.hero__bonus-portrait-caption i {
    color: var(--gold);
    font-size: 0.85em;
}

/* OGIO bag card — image with $239 value badge */
.hero__bonus-card-imagewrap {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0.125rem 0 0.25rem;
}

.hero__bonus-value-badge {
    position: absolute;
    top: -10px;
    right: -12px;
    z-index: 2;
    background: linear-gradient(135deg, var(--gold) 0%, #d97706 100%);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.65rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 10px rgba(0,0,0,0.22);
    transform: rotate(8deg);
    transform-origin: center;
    text-transform: uppercase;
    white-space: nowrap;
    transition: transform 0.25s ease;
}

/* Inline link inside the bonus band ("free embroidered OGIO Vision 2.0 golf bag") */
.bonus-band__link {
    color: var(--fairway-deep);
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.bonus-band__link:hover,
.bonus-band__link:focus {
    color: var(--primary-dark);
    text-decoration-color: var(--primary-dark);
}

/* ============================================================
   Tournament Proof Gallery — close-up embroidery shots from past customer work
   ============================================================ */
.tournament-proof {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    border-top: 1px solid var(--gray-200);
}

.tournament-proof__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.tournament-proof__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.proof-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: default;
}

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

.proof-card__image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--gray-100);
}

.proof-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.proof-card:hover .proof-card__image img {
    transform: scale(1.05);
}

.proof-card__caption {
    padding: 0.75rem 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: center;
    border-top: 3px solid var(--primary);
    background: var(--white);
}

.tournament-proof__footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.tournament-proof__link {
    color: var(--primary-dark);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.tournament-proof__link:hover {
    color: var(--primary);
}

@media (prefers-reduced-motion: reduce) {
    .proof-card,
    .proof-card__image img { transition: none; }
}

.hero__bonus-card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: radial-gradient(circle at 50% 45%, #ffffff 55%, #f3f4f6 100%);
    border-radius: var(--radius);
    padding: 8px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15), inset 0 0 0 1px rgba(0,0,0,0.04);
    transition: transform 0.25s ease;
    display: block;
}

.hero__bonus-card-label {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--primary-dark);
    text-transform: uppercase;
}

.hero__bonus-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

.hero__bonus-card-sub {
    font-size: 0.8125rem;
    color: var(--gray-700);
    line-height: 1.35;
}

@media (max-width: 640px) {
    .hero__bonus-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
    .hero__bonus-portrait {
        width: 120px;
        height: 120px;
    }
    .hero__bonus-card-imagewrap {
        width: 130px;
        height: 130px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__bonus-card,
    .hero__bonus-card-image,
    .hero__bonus-value-badge { transition: none; }
    .hero__bonus-card--link:hover { transform: none; }
    .hero__bonus-card--link:hover .hero__bonus-card-image { transform: none; }
    .hero__bonus-card--link:hover .hero__bonus-value-badge { transform: rotate(8deg); }
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--white);
    color: var(--primary-dark);
    padding: 1rem 2.25rem;
    border-radius: var(--radius-pill);
    font-size: 1.0625rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    border: none;
    cursor: pointer;
}

.hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.hero__cta--white {
    background: var(--white);
    color: var(--primary-dark);
}

.hero__trust {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.85);
}

/* ============================================================
   Trust Band
   ============================================================ */

.trust-band {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 2rem 0;
}

.trust-band__inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.trust-band__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.trust-band__label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-700);
}

@media (max-width: 720px) {
    .trust-band__inner {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Section title
   ============================================================ */

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    text-align: center;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

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

.section-sub {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
}

.section-sub--white { color: rgba(255,255,255,0.85); }

/* ============================================================
   How It Works
   ============================================================ */

.how {
    padding: 4rem 0;
    background: var(--white);
}

.how__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.how__step {
    background: var(--gray-50);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.how__step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.how__step-num {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(76,179,84,0.4);
}

.how__step h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.how__step p {
    color: var(--gray-700);
    font-size: 0.9375rem;
}

@media (max-width: 720px) {
    .how__steps { grid-template-columns: 1fr; }
}

/* ============================================================
   Bonus Band
   ============================================================ */

.bonus-band {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 1.5rem 0;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}

.bonus-band__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: var(--gray-900);
}

.bonus-band__icon { font-size: 2.5rem; flex-shrink: 0; }

.bonus-band__text { font-size: 1rem; line-height: 1.5; }

@media (max-width: 720px) {
    .bonus-band__inner { flex-direction: column; text-align: center; gap: 0.75rem; }
}

/* ============================================================
   Showcase / Product Grid
   ============================================================ */

.showcase {
    padding: 4rem 0;
    background: var(--gray-50);
}

.showcase__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.showcase__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    position: sticky;
    top: 88px;
    z-index: 50;
    background: rgba(249,250,251,0.95);
    backdrop-filter: blur(8px);
    padding: 0.875rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow);
}

.filter-chip {
    padding: 0.5rem 1.125rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
}

.filter-chip:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
}

.filter-chip--active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Category sections */
.category {
    margin-bottom: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.category__header {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--fairway) 100%);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.category__header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.category__header-meta {
    font-size: 0.875rem;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category__chevron {
    transition: transform 0.2s;
    font-size: 1rem;
}

.category--collapsed .category__chevron {
    transform: rotate(-90deg);
}

.category--collapsed .category__grid {
    display: none;
}

.category__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    padding: 1.25rem;
}

/* Product card */
.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.product-card__image {
    aspect-ratio: 1;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

.product-card__image-placeholder {
    color: var(--gray-300);
    font-size: 3rem;
}

.product-card__body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.product-card__sku {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 0.05em;
}

.product-card__name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.3;
    min-height: 2.6em;
}

.product-card__price-snapshot {
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray-100);
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
    flex-wrap: wrap;
}

.product-card__price-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-card__price-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.product-card__price-suffix {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.product-card__price-pending {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
}

.product-card__name-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card__name-link:hover .product-card__name {
    color: var(--primary-dark);
    text-decoration: underline;
}

.product-card__detail-link {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 0.75rem 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    transition: background 0.15s, transform 0.15s;
}

.product-card__detail-link:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary-dark));
}

.product-card__detail-link i:first-child {
    font-size: 0.9375rem;
}

.product-card__detail-link i:last-child {
    font-size: 0.75rem;
    transition: transform 0.15s;
}

.product-card__detail-link:hover i:last-child {
    transform: translateX(3px);
}

.product-card__expand {
    background: var(--gray-50);
    border: none;
    border-top: 1px solid var(--gray-200);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: inherit;
}

.product-card__expand:hover { background: var(--primary-light); }

.product-card__expand i { transition: transform 0.2s; }

.product-card__expand[aria-expanded="true"] i { transform: rotate(180deg); }

.product-card__pricing-table {
    display: none;
    background: var(--gray-50);
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--gray-200);
}

.product-card__expand[aria-expanded="true"] + .product-card__pricing-table {
    display: block;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
}

.pricing-table th,
.pricing-table td {
    padding: 0.375rem 0.5rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-table th {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pricing-table td {
    font-weight: 600;
    color: var(--gray-900);
}

.pricing-table .col-best {
    background: var(--primary-light);
    color: var(--primary-dark);
    position: relative;
}

.pricing-table .col-best::after {
    content: "BEST";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-dark);
    color: var(--white);
    font-size: 0.625rem;
    padding: 1px 6px;
    border-radius: 2px;
    letter-spacing: 0.05em;
}

.product-card__note {
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 0.5rem 1rem 0.75rem;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    text-align: center;
    font-style: italic;
}

/* Loading state */
.loading-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
}

.loading-state i { color: var(--primary); }

.loading-state--white { color: rgba(255,255,255,0.85); }

/* ============================================================
   Example Package
   ============================================================ */

.example-package {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--fairway-deep) 0%, var(--fairway) 100%);
    color: var(--white);
}

.example-package__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.example-package__card {
    background: var(--white);
    color: var(--gray-900);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-xl);
    text-align: left;
}

.example-package__line-items {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.example-package__line-items th {
    text-align: left;
    padding: 0.625rem 0.5rem;
    border-bottom: 2px solid var(--gray-200);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.example-package__line-items td {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.example-package__line-items .num { text-align: right; font-variant-numeric: tabular-nums; }

.example-package__line-items tfoot td {
    border-bottom: none;
    border-top: 2px solid var(--primary);
    font-weight: 700;
    color: var(--primary-dark);
    padding-top: 1rem;
}

.example-package__bonus {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid var(--gold);
    padding: 1rem 1.25rem;
    margin-top: 1.25rem;
    border-radius: var(--radius);
}

.example-package__bonus-header {
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.example-package__bonus-list {
    margin: 0;
    padding-left: 1.25rem;
    font-size: 0.9375rem;
    color: var(--gray-900);
}

.example-package__bonus-list li {
    margin-bottom: 0.25rem;
}

.example-package__caveat {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    font-style: italic;
}

/* ============================================================
   Quote Form
   ============================================================ */

.form-section {
    padding: 4rem 0;
    background: var(--white);
}

.form-section__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.quote-form {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.quote-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.quote-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.quote-form__field--full { width: 100%; margin-bottom: 1rem; }

.quote-form__label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.req { color: var(--gold); }

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 0.75rem 0.875rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--gray-900);
    transition: border-color 0.15s, box-shadow 0.15s;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(76,179,84,0.15);
}

.quote-form input:invalid:not(:placeholder-shown):not(:focus) {
    border-color: #ef4444;
}

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

.quote-form__fieldset {
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--white);
}

.quote-form__fieldset legend {
    padding: 0 0.5rem;
}

.quote-form__checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.quote-form__checkbox {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.15s;
    background: var(--white);
}

.quote-form__checkbox input { width: auto; margin: 0; }

.quote-form__checkbox:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.quote-form__checkbox:has(input:checked) {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary-dark);
}

.quote-form__submit {
    margin-top: 1.5rem;
    text-align: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-pill);
    font-size: 1.0625rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    font-family: inherit;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.quote-form__privacy {
    margin-top: 0.875rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

@media (max-width: 600px) {
    .quote-form__row { grid-template-columns: 1fr; }
    .quote-form { padding: 1.5rem 1rem; }
}

/* ============================================================
   Form Success State
   ============================================================ */

.form-success {
    text-align: center;
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
}

.form-success__icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.form-success h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.form-success__lead {
    font-size: 1.0625rem;
    color: var(--gray-700);
    max-width: 480px;
    margin: 0 auto 1rem;
}

.form-success__quote-id {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.form-success__cta a {
    color: var(--primary-dark);
    font-weight: 700;
    text-decoration: none;
}

.form-success__cta a:hover { text-decoration: underline; }

/* ============================================================
   FAQ
   ============================================================ */

.faq {
    padding: 4rem 0;
    background: var(--gray-50);
}

.faq__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.faq__item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq__item summary {
    padding: 1.125rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-900);
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary);
    transition: transform 0.2s;
    font-size: 0.875rem;
}

.faq__item[open] summary::after {
    transform: rotate(180deg);
}

.faq__item p {
    padding: 0 1.25rem 1.125rem;
    color: var(--gray-700);
}

/* ============================================================
   Footer
   ============================================================ */

.g-footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--fairway-deep) 100%);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.g-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.g-footer__rep {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.g-footer__rep-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--sand);
    flex-shrink: 0;
}

.g-footer__rep-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
    margin-bottom: 0.125rem;
}

.g-footer__rep-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.g-footer__rep-contact a {
    color: var(--white);
    text-decoration: none;
    line-height: 1.7;
}

.g-footer__rep-contact a:hover { text-decoration: underline; }

.g-footer__reps {
    margin-top: 0.875rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.8125rem;
    line-height: 1.5;
}

.g-footer__reps-label {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
    margin-bottom: 0.125rem;
}

.g-footer__reps a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.g-footer__reps a:hover { text-decoration: underline; color: var(--sand); }

.g-footer__name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.g-footer__addr {
    font-size: 0.9375rem;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.g-footer__since {
    font-size: 0.8125rem;
    opacity: 0.7;
    font-style: italic;
}

.g-footer__copyright {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 0.8125rem;
    opacity: 0.7;
}

@media (max-width: 720px) {
    .g-footer__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   Reduced motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* ============================================================
   Heritage strip — family-run since 1977 + factory in Milton
   ============================================================ */
.heritage {
    position: relative;
    padding: 4.5rem 0 4rem;
    background: linear-gradient(135deg, var(--fairway-deep) 0%, var(--fairway) 100%);
    color: var(--white);
    overflow: hidden;
}

.heritage::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1.5px);
    background-size: 18px 18px;
    pointer-events: none;
}

.heritage__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.heritage__intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.heritage__eyebrow {
    display: inline-block;
    background: var(--gold);
    color: var(--fairway-deep);
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
}

.heritage__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 0.875rem;
}

.heritage__sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.55;
}

.heritage__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 920px;
    margin: 0 auto;
}

.heritage__stat {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.25rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.heritage__stat:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.3);
}

.heritage__stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 0.625rem;
    letter-spacing: -0.02em;
}

.heritage__stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.heritage__stat-sub {
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255,255,255,0.72);
    line-height: 1.4;
}

.heritage__stat--with-photo {
    padding-bottom: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.heritage__stat-photo {
    margin: 1.25rem -1.25rem 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom-left-radius: calc(var(--radius-lg) - 1px);
    border-bottom-right-radius: calc(var(--radius-lg) - 1px);
    border-top: 1px solid rgba(255,255,255,0.18);
    background: rgba(0,0,0,0.25);
}

.heritage__stat-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.heritage__stat--with-photo:hover .heritage__stat-photo img {
    transform: scale(1.04);
}

/* Logo variant — embroidered patch shots, contain instead of cover */
.heritage__stat-photo--logo {
    background: #14233a; /* matches dark embroidery backing — keeps logo cohesive */
}

.heritage__stat-photo--logo img {
    object-fit: contain;
    padding: 0.625rem;
}

.heritage__stat--with-photo:hover .heritage__stat-photo--logo img {
    transform: scale(1.06);
}

@media (max-width: 768px) {
    .heritage { padding: 3rem 0; }
    .heritage__stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 380px;
    }
    .heritage__stat-num { font-size: 2.75rem; }
    .heritage__title { font-size: 1.5rem; }
}

/* ============================================================
   Team / Culture strip — meet the people behind the work
   ============================================================ */
.team {
    padding: 4rem 0 4.5rem;
    background: var(--white);
}

.team__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.team__intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.team__eyebrow {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
}

.team__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 0.875rem;
}

.team__sub {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.team__card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.team__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.team__card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--gray-100);
}

.team__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.team__card:hover .team__card-image img {
    transform: scale(1.04);
}

.team__card figcaption {
    padding: 0.875rem 1rem 1.125rem;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--gray-700);
    text-align: left;
    flex: 1;
}

.team__card--featured {
    border-color: var(--gold);
    box-shadow: 0 6px 14px rgba(245, 158, 11, 0.15);
}

.team__card--featured:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.28);
}

.team__card-ribbon {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 2;
    background: linear-gradient(135deg, var(--gold) 0%, #d97706 100%);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.65rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 3px 8px rgba(0,0,0,0.35);
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .team__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .team__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .team__title { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .team__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Hero CTA row — primary + ghost (browse apparel)
   ============================================================ */
.hero__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.hero__cta--ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.55);
    box-shadow: none;
}

.hero__cta--ghost:hover,
.hero__cta--ghost:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .hero__cta-row { gap: 0.625rem; }
    .hero__cta-row .hero__cta { width: 100%; justify-content: center; }
}

/* ============================================================
   Sticky anchor nav — slides in once user scrolls past hero
   ============================================================ */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.sticky-nav.is-visible {
    transform: translateY(0);
}

.sticky-nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sticky-nav__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.sticky-nav__links a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: var(--radius);
    transition: background 0.2s ease, color 0.2s ease;
}

.sticky-nav__links a i {
    color: var(--primary);
    font-size: 0.85em;
}

.sticky-nav__links a:hover,
.sticky-nav__links a:focus-visible {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.sticky-nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(76, 179, 84, 0.3);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.sticky-nav__cta:hover,
.sticky-nav__cta:focus-visible {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(76, 179, 84, 0.4);
}

.sticky-nav__cta i {
    font-size: 0.85em;
}

@media (max-width: 768px) {
    .sticky-nav__links { display: none; }
    .sticky-nav__inner { justify-content: flex-end; padding: 0.625rem 1rem; }
}

@media (prefers-reduced-motion: reduce) {
    .sticky-nav { transition: none; }
}

/* ============================================================
   Lightbox — full-screen viewer for team photos
   ============================================================ */
.team__card .team__card-image {
    cursor: zoom-in;
}

.team__card .team__card-image:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.92);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 4rem 5rem 2rem;
}

.lightbox.is-open {
    display: flex;
    animation: lightbox-fade-in 0.18s ease;
}

@keyframes lightbox-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.lightbox__content {
    margin: 0;
    max-width: 1100px;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.lightbox__image {
    max-width: 100%;
    max-height: calc(100vh - 9rem);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
    background: #111;
}

.lightbox__caption {
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    max-width: 720px;
    margin: 0;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
    padding: 0;
    line-height: 1;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover,
.lightbox__close:focus-visible,
.lightbox__prev:focus-visible,
.lightbox__next:focus-visible {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
}

.lightbox__close { top: 1.25rem; right: 1.25rem; }
.lightbox__prev  { left: 1.25rem;  top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 1.25rem; top: 50%; transform: translateY(-50%); }

.lightbox__prev:hover, .lightbox__next:hover,
.lightbox__prev:focus-visible, .lightbox__next:focus-visible {
    transform: translateY(-50%) scale(1.06);
}

@media (max-width: 640px) {
    .lightbox { padding: 3rem 0.5rem 1rem; }
    .lightbox__close,
    .lightbox__prev,
    .lightbox__next { width: 40px; height: 40px; font-size: 1rem; }
    .lightbox__close { top: 0.75rem; right: 0.75rem; }
    .lightbox__prev  { left: 0.5rem;  }
    .lightbox__next  { right: 0.5rem; }
    .lightbox__caption { font-size: 0.875rem; }
}

@media (prefers-reduced-motion: reduce) {
    .lightbox.is-open { animation: none; }
}

/* ============================================================
   Showroom CTA — drive tournament organizers to visit Milton
   ============================================================ */
.showroom-cta {
    padding: 4.5rem 0 5rem;
    background: linear-gradient(180deg, var(--white) 0%, #f5f1e4 100%);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.showroom-cta__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.showroom-cta__photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(0,0,0,0.2);
    aspect-ratio: 4 / 3;
    transition: transform 0.3s ease;
}

.showroom-cta__photo:hover { transform: translateY(-4px); }

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

.showroom-cta__photo-tag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--fairway-deep);
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.showroom-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--primary-dark);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.125rem;
}

.showroom-cta__eyebrow i { font-size: 0.85em; color: var(--gold); }

.showroom-cta__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.showroom-cta__lead {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.showroom-cta__lead em {
    font-style: italic;
    color: var(--primary-dark);
    font-weight: 600;
}

.showroom-cta__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.showroom-cta__detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.showroom-cta__detail i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.showroom-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.showroom-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.4rem;
    border-radius: var(--radius-pill);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: 2px solid transparent;
}

.showroom-cta__btn--primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(76, 179, 84, 0.35);
}

.showroom-cta__btn--primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 179, 84, 0.45);
}

.showroom-cta__btn--ghost {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--primary);
}

.showroom-cta__btn--ghost:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .showroom-cta__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 540px) {
    .showroom-cta__details { grid-template-columns: 1fr; gap: 0.875rem; }
    .showroom-cta__btn { width: 100%; justify-content: center; }
}

/* ============================================================
   Sponsor extras — banners + stickers cross-sell
   ============================================================ */
.sponsor-extras {
    padding: 4rem 0 4.5rem;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.sponsor-extras__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sponsor-extras__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--gray-900);
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.125rem;
}

.sponsor-extras__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 800;
    line-height: 1.18;
    color: var(--gray-900);
    margin-bottom: 1.125rem;
    letter-spacing: -0.01em;
}

.sponsor-extras__lead {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 1.25rem;
}

.sponsor-extras__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.sponsor-extras__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.45rem 0;
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.45;
}

.sponsor-extras__list i {
    color: var(--primary);
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.sponsor-extras__close {
    font-size: 0.95rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    background: var(--primary-light);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    line-height: 1.5;
}

.sponsor-extras__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.sponsor-extras__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.875rem 1.4rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-pill);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(76, 179, 84, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sponsor-extras__btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 179, 84, 0.45);
}

.sponsor-extras__photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(0,0,0,0.18);
    aspect-ratio: 4 / 3;
}

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

.sponsor-extras__photo-tag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--gray-900);
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

@media (max-width: 900px) {
    .sponsor-extras__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .sponsor-extras__photo { order: -1; }
}

@media (max-width: 540px) {
    .sponsor-extras__btn { width: 100%; justify-content: center; }
}
