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

:root {
    /* ── BRAND COLOUR SYSTEM ─────────────────────────────────── */
    --fairway-deep:   #122A1C;
    --fairway-mid:    #25523A;
    --fairway-soft:   #3E7A57;
    --turf:           #EDEAE0;
    --chalk:          #FBFAF7;
    --ink:            #15201A;
    --ink-soft:       #4A564D;
    --flag-gold:      #CE9A3C;
    --flag-gold-dk:   #B98832;
    --flag-gold-soft: #E7C87C;
    --line:           rgba(21,32,26,0.12);
    --line-light:     rgba(251,250,247,0.18);
    --border:         1px solid rgba(21,32,26,0.12);
    --radius:         14px;
    --shadow:         0 12px 32px rgba(18,42,28,0.14);

    /* ── TYPOGRAPHY SYSTEM (CONSOLIDATED) ─────────────────────── */
    --font-primary:   'Inter', sans-serif;
    --font-serif:     'Fraunces', serif;
    --font-mono:      'IBM Plex Mono', monospace;

    /* Scaled Text Steps */
    --text-xs:        11px;  /* Eyebrows, Labels, Details, Badges */
    --text-sm:        12px;  /* Nav Links, Small Cards, Notes */
    --text-base:      16px;  /* Main Paragraphs, Input Text */
    --text-md:        18px;  /* Logos, Headings (H4), Lead copy */
    --text-lg:        20px;  /* Content H3 Subheadings */
    
    /* Fluid Responsive Headings */
    --text-xl:        clamp(24px, 3vw, 34px);  /* Content H2 Blocks */
    --text-xxl:       clamp(32px, 5vw, 52px);  /* Main Titles / Large Sections */
    --text-hero:      clamp(2.4rem, 5.2vw, 4.1rem); /* Main Landing Hero Title */
}

/* ── GLOBAL BASE ELEMENTS ─────────────────────────────────────── */
body { 
    font-family: var(--font-primary); 
    color: var(--ink); 
    background: var(--chalk); 
    font-size: var(--text-base);
    line-height: 1.55; 
}

h1, h2, h3, h4 { 
    font-family: var(--font-serif); 
    font-weight: 600; 
    letter-spacing: -0.01em; 
}

a { color: inherit; }
img, svg { display: block; max-width: 100%; opacity: 0.95; }

/* ── LAYOUT UTILITIES ─────────────────────────────────────────── */
/* --- UNIFIED SITE CONTAINER GRID --- */
.container,
.container-wide,
.wrap {
    width: 100%;
    max-width: 1200px; /* Choose one master width for your entire site */
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
}

/* Ensure padding shrinks slightly on mobile screens so content doesn't hit edge */
@media (max-width: 768px) {
    .container,
    .container-wide,
    .wrap {
        padding-right: 16px;
        padding-left: 16px;
    }
}



/* ───────────────────────────────────────────────────────────────
   ── LAYOUT COMPONENTS & SECTIONS ───────────────────────────────
   ─────────────────────────────────────────────────────────────── */

/* ── HEADER / NAV ─────────────────────────────────────────────── */
header {
    background: var(--chalk);
    padding: 5px 0;
    border-bottom: 2px solid var(--flag-gold);
    position: sticky; 
    top: 0; 
    z-index: 100;
    box-shadow: 0 2px 16px rgba(206,154,60,0.14);
}
header .container-wide { display: flex; justify-content: space-between; align-items: center; }

.logo-section { display: flex; align-items: center; gap: 15px; }
.logo-image {
    background-image: url('/img/theGoodGolferLogo8.png');
    background-size: cover; background-position: center; background-repeat: no-repeat;
    width: 104px; height: 104px; border-radius: 50%;
}
.logo { 
    font-family: var(--font-serif); 
    font-size: var(--text-md); 
    font-weight: 600; 
    color: var(--ink); 
}
.logo span { color: #9ca3af; font-weight: 400; }

nav { display: flex; gap: 30px; }
nav a {
    font-family: var(--font-primary); 
    font-size: var(--text-sm); 
    font-weight: 600;
    text-decoration: none; 
    color: var(--ink); 
    text-transform: uppercase; 
    letter-spacing: 0.3px;
    transition: color 0.3s; 
    position: relative;
}
nav a:hover, nav a.active { color: var(--fairway-mid); }
nav a::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 0; height: 2px; background: var(--flag-gold); transition: width 0.3s; }
nav a:hover::after { width: 100%; }

/* Scroll Putting Ball Anchor */
.wrapper { position: absolute; right: 0; bottom: 0; height: 100%; pointer-events: none; }
.flag { 
    position: absolute; 
    right: 56px; 
    bottom: 0; 
    width: 48px;  
    height: 48px;
    z-index: 101; 
}
.flag img {
    width: 100%;  
    height: 100%;
    display: block;
}

/* ── BUTTONS & INTERACTIVES ───────────────────────────────────── */
.btn-primary {
    background: var(--flag-gold);
    color: var(--fairway-deep);
    font-weight: 700;
    padding: 15px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 10px 24px rgba(206,154,60,0.3);
    border: none;
    cursor: pointer;
    transition: transform .15s ease;
}
.btn-primary:hover { transform: translateY(-1px); }

.btn-ghost {
    color: var(--chalk);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.82rem; 
    letter-spacing: .04em;
    border-bottom: 1px solid var(--line-light);
    padding-bottom: 2px;
}

/* ── MAIN LANDING HERO ────────────────────────────────────────── */
.hero {
    background:
      radial-gradient(ellipse at 15% 15%, rgba(206,154,60,0.16), transparent 55%),
      linear-gradient(180deg, var(--fairway-deep) 0%, var(--fairway-mid) 100%);
    color: var(--turf);
    padding: 76px 0 96px;
    position: relative;
    overflow: hidden;
}
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero-eyebrow { color: var(--flag-gold-soft); margin-bottom: 18px; }
.hero h1 {
    font-size: var(--text-hero);
    color: var(--chalk);
    max-width: 14ch;
    line-height: 1.03;
}
.hero p.lede {
    font-size: 1.18rem; 
    max-width: 46ch;
    color: rgba(251,250,247,0.86);
    margin: 20px 0 34px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-photo-wrap {
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    background: var(--fairway-mid);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    border: 1px solid var(--line-light);
}
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── PAGE INNER HERO BANNER ───────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--fairway-deep) 0%, var(--fairway-mid) 100%);
    padding: 80px 24px 70px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
    content: ""; position: absolute; top: -40%; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(206,154,60,0.14) 0%, transparent 70%);
    border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow {
    font-family: var(--font-primary); 
    font-size: var(--text-xs); 
    font-weight: 700;
    color: var(--flag-gold-soft); 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    margin-bottom: 16px;
}
.page-hero h1 {
    font-size: var(--text-xxl); 
    color: var(--chalk); 
    line-height: 1.08; 
    margin-bottom: 18px;
}
.page-hero p { 
    font-size: 17px; 
    color: rgba(255,255,255,0.82); 
    max-width: 640px; 
    margin: 0 auto; 
    line-height: 1.7; 
    padding-bottom: 12px;
}

/* ── BREADCRUMBS ──────────────────────────────────────────────── */
.breadcrumb { background: var(--turf); border-bottom: 1px solid var(--line); padding: 12px 0; }
.breadcrumb span { 
    font-family: var(--font-primary); 
    font-size: var(--text-xs); 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { color: #bbb; margin: 0 8px; }
.breadcrumb .current { color: var(--ink); }

/* ── GENERAL SHELL SECTION ────────────────────────────────────── */
/* --- UNIFIED SECTION ENGINE --- */
section,
.welcome-section,
.stories-section,
.community-section,
.quote-section,
.newsletter,
.content-area {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Shrink section heights uniformly on mobile screens */
@media (max-width: 768px) {
    section,
    .welcome-section,
    .stories-section,
    .community-section,
    .quote-section,
    .newsletter,
    .content-area {
        padding-top: 48px;
        padding-bottom: 48px;
    }
}


section { padding: 42px 0; }
.section-head { max-width: 100%; margin: 0 auto 24px; text-align: left; }
.section-head .eyebrow { color: var(--fairway-soft); margin-bottom: 10px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--ink); }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; max-width: 52ch; }

/* ── NEXT EVENT BANNER ────────────────────────────────────────── */
.next-event { padding: 0; margin-top: -46px; position: relative; z-index: 100; }
.next-event-card {
    background: var(--chalk);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px 28px;
    display: flex; flex-wrap: wrap; align-items: center; gap: 6px 18px;
}
.ne-tag {
    font-family: var(--font-mono); 
    font-size: var(--text-xs); 
    letter-spacing: .1em; text-transform: uppercase;
    background: var(--flag-gold); color: var(--fairway-deep); padding: 5px 10px; border-radius: 999px; font-weight: 700;
    flex-basis: 100%; width: max-content; margin-bottom: 6px;
}
.next-event-card h3 { font-size: 1.2rem; margin: 0; flex: 0 0 auto; }
.ne-details {
    font-family: var(--font-mono); 
    font-size: 0.85rem; 
    color: var(--ink-soft);
    display: flex; gap: 8px; flex-wrap: wrap; align-items: center; flex: 1 1 320px;
}
.ne-notes { flex-basis: 100%; margin: 2px 0 0; color: var(--ink-soft); font-size: 0.9rem; }
.ne-spots {
    font-family: var(--font-mono); 
    font-size: 0.78rem; 
    font-weight: 600;
    color: var(--fairway-mid); flex-basis: 100%;
}
.ne-cta { padding: 11px 22px; font-size: .9rem; box-shadow: none; margin-left: auto; }

/* ── WELCOME LAYOUT BLOCK ─────────────────────────────────────── */
.welcome-section {
    padding: 60px 20px;
    background: white;
    text-align: center;
    border-bottom: 4px solid #c1ff72;
}
.welcome-section h2 {
    font-size: var(--text-xxl); 
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: 1px;
}
.welcome-section p {
    font-size: var(--text-md); 
    color: #3a3a3a;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

/* ---------- SESSION TIMELINE FLOW ---------- */
.flow {
    background: var(--fairway-deep);
    color: var(--turf);
    border-radius: 24px;
    padding: 52px 40px 44px;
    position: relative;
    overflow: hidden;
}
.flow .eyebrow { color: var(--flag-gold-soft); }
.flow h2 { color: var(--chalk); }
.flow-path { margin-top: 44px; }

.flow-stops { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.flow-stops::before {
    content: ''; position: absolute; top: 22px; left: 8%; right: 8%; height: 2px;
    background: repeating-linear-gradient(90deg, var(--flag-gold-soft) 0 10px, transparent 10px 18px);
    opacity: .6;
}

.flow-stops-grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.flow-stops-grid3::before {
    content: ''; position: absolute; top: 22px; left: 8%; right: 8%; height: 2px;
    background: repeating-linear-gradient(90deg, var(--flag-gold-soft) 0 10px, transparent 10px 18px);
    opacity: .6;
}

.stop { position: relative; padding: 0 14px; text-align: left; }
.stop .dot {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--fairway-mid); border: 2px solid var(--flag-gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono); font-weight: 600; font-size: .85rem;
    color: var(--flag-gold-soft); margin-bottom: 16px;
}
.stop h4 { font-family: var(--font-serif); font-size: 1.15rem; margin: 0 0 6px; color: var(--chalk); }
.stop p { margin: 0; color: rgba(251,250,247,0.75); font-size: .95rem; }
.stop .mins {
    display: block; font-family: var(--font-mono); font-size: var(--text-xs);
    color: var(--flag-gold-soft); margin-top: 8px; letter-spacing: .04em;
}

/* ── CALLOUT UTILITY BOXES ────────────────────────────────────── */
.callout { border-left: 4px solid var(--flag-gold); background: #FBF6EB; padding: 20px 24px; margin: 32px 0; border-radius: 0 var(--radius) var(--radius) 0; }
.callout-title { 
    font-family: var(--font-primary); 
    font-size: var(--text-sm); 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: var(--ink); 
    margin-bottom: 8px; 
}
.callout p { margin-bottom: 0; font-size: 15px; }
.callout-dark { background: var(--fairway-deep); border-left: 4px solid var(--flag-gold); padding: 24px 28px; margin: 32px 0; border-radius: 0 var(--radius) var(--radius) 0; }
.callout-dark .callout-title { color: var(--flag-gold-soft); }
.callout-dark p { color: #d7ddd8; margin-bottom: 0; }

/* ── CARDS UTILITY MATRIX ─────────────────────────────────────── */
.card-grid { display: grid; gap: 24px; margin: 32px auto; max-width: 780px; width: 100%; }
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.info-card { 
    border: var(--border); border-radius: var(--radius); padding: 28px 24px; background: var(--chalk); box-shadow: var(--shadow); 
    transition: transform 0.3s, box-shadow 0.3s; 
}
.info-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(206,154,60,0.22); }
.info-card .card-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.info-card h3 { font-size: 17px; font-weight: 600; text-transform: none; letter-spacing: normal; margin: 0 0 10px; }
.info-card p { font-size: var(--text-sm); color: var(--ink-soft); line-height: 1.65; margin: 0; }
.info-card.accent { background: #FBF0DB; }
.info-card.dark { background: var(--fairway-deep); border-color: var(--fairway-deep); }
.info-card.dark h3, .info-card.dark p { color: var(--chalk); }

.loc-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; background: var(--chalk); }
.loc-card .day { 
    font-family: var(--font-mono); font-size: var(--text-xs); 
    letter-spacing: .1em; text-transform: uppercase; color: var(--fairway-soft); font-weight: 600; 
}
.loc-card h3 { font-size: 1.3rem; margin: 8px 0 4px; }
.loc-card p { color: var(--ink-soft); margin: 0; }

.path-card { background: var(--chalk); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); position: relative; }
.path-card .tag {
    display: inline-block; font-family: var(--font-mono); font-size: var(--text-xs); 
    letter-spacing: .1em; text-transform: uppercase; background: var(--turf); color: var(--fairway-mid);
    padding: 5px 10px; border-radius: 999px; margin-bottom: 16px; font-weight: 600;
}
.path-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.path-card p { color: var(--ink-soft); margin-bottom: 0; }
.path-card.highlight { border-color: var(--flag-gold); }
.path-card.highlight .tag { background: var(--flag-gold); color: var(--fairway-deep); }

/* ── FEATURED STORIES GRID ────────────────────────────────────── */
.stories-section { padding: 110px 20px; background: white; }
.stories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 45px; }

.story-card { background: white; border: 3px solid #1a1a1a; overflow: hidden; transition: all 0.4s; position: relative; }
.story-card:hover { box-shadow: 0 16px 45px rgba(193, 255, 114, 0.25); transform: translateY(-8px); }

.story-label {
    position: absolute; top: 15px; left: 15px; background: #1a1a1a; color: #c1ff72; padding: 8px 14px;
    font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.5px; border: 2px solid #c1ff72;
}
.story-content { padding: 40px; }
.story-content h3 { font-family: var(--font-serif); font-size: 24px; font-weight: 700; color: #1a1a1a; margin-bottom: 15px; letter-spacing: 0.5px; }
.story-content p { font-size: 15px; color: #3a3a3a; line-height: 1.7; margin-bottom: 20px; letter-spacing: 0.3px; }
.story-author { font-family: var(--font-primary); font-size: var(--text-sm); font-weight: 700; color: #242523; letter-spacing: 0.8px; }

/* ── COMMUNITY SECTION ────────────────────────────────────────── */
.community-section { padding: 110px 20px; background: var(--turf); border-top: 4px solid #1a1a1a; border-bottom: 4px solid #1a1a1a; }
.community-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: center; }
.community-text h2 { font-size: var(--text-xxl); font-weight: 700; color: #1a1a1a; margin-bottom: 30px; letter-spacing: 1px; line-height: 1.1; }
.community-text p { font-size: 17px; color: #1a1a1a; margin-bottom: 30px; line-height: 1.8; letter-spacing: 0.3px; }

/* ── ARTICLE QUOTE HIGHLIGHTS ─────────────────────────────────── */
.quote-section {
    background: #1a1a1a; color: #c1ff72; padding: 100px 20px; text-align: center; position: relative; overflow: hidden;
    border-top: 4px solid #c1ff72; border-bottom: 4px solid #c1ff72;
}
.quote-section::before {
    content: """; position: absolute; top: 15px; left: 50%; transform: translateX(-50%);
    font-size: 110px; opacity: 0.15; font-family: var(--font-primary); font-weight: 700;
}
.quote-section p { font-family: var(--font-serif); font-size: 36px; font-weight: 700; max-width: 900px; margin: 0 auto 30px; line-height: 1.8; position: relative; z-index: 2; letter-spacing: 0.5px; }
.quote-section .author { font-family: var(--font-primary); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #c1ff72; }

/* ── NEWSLETTER CONTAINER ─────────────────────────────────────── */
.newsletter { font-family: var(--font-primary); background: white; padding: 100px 20px; text-align: center; border-top: 4px solid #c1ff72; }
.newsletter h2 { font-size: var(--text-xxl); font-weight: 700; color: #1a1a1a; margin-bottom: 18px; letter-spacing: 1px; }
.newsletter p { font-size: 17px; color: #3a3a3a; margin-bottom: 45px; max-width: 650px; margin-left: auto; margin-right: auto; letter-spacing: 0.3px; }
.newsletter-form { max-width: 580px; margin: 0 auto; display: flex; gap: 0; border: 3px solid #1a1a1a; }
.newsletter-form input { flex: 1; padding: 16px 24px; border: none; border-right: 3px solid #1a1a1a; font-size: var(--text-sm); background: white; letter-spacing: 0.3px; }
.newsletter-form input:focus { outline: none; background: #f5f5f5; }

/* ── WEEKLY TEE TIMES LOGIC ───────────────────────────────────── */
.week-list { display: flex; flex-direction: column; gap: 10px; }
.week-item {
    display: flex; align-items: center; gap: 16px;
    background: var(--chalk); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 20px;
}
.week-item.full { opacity: .6; }
.week-date {
    font-family: var(--font-mono); background: var(--fairway-deep); color: var(--chalk);
    border-radius: 10px; padding: 8px 10px; text-align: center; min-width: 58px; flex-shrink: 0;
}
.week-date .wd-day { font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; color: var(--flag-gold-soft); }
.week-date .wd-num { font-size: 1.15rem; font-weight: 700; line-height: 1.15; }
.week-date .wd-mon { font-size: .6rem; color: rgba(251,250,247,0.7); }
.week-info { flex: 1; min-width: 0; }
.week-info h4 { font-size: 1rem; margin: 0 0 2px; }
.week-info p { margin: 0; color: var(--ink-soft); font-size: .85rem; }
.week-spots { font-family: var(--font-mono); font-size: .8rem; font-weight: 600; color: var(--fairway-soft); white-space: nowrap; }
.week-spots.low { color: var(--flag-gold); }
.week-spots.full { color: #B14A2E; }
.week-empty { color: var(--ink-soft); font-size: .95rem; background: var(--chalk); border: 1px dashed var(--line); border-radius: var(--radius); padding: 20px; }

/* ── CONTENT ARTICLE AREA / INTERNAL TYPOGRAPHY ───────────────── */
.content-area { padding: 70px 24px 90px; }
.content-body { max-width: 1080px; margin: 0 auto; }
.content-body h2 { font-size: var(--text-xl); color: var(--ink); margin: 60px 0 20px; line-height: 1.2; }
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { font-size: var(--text-lg); color: var(--ink); margin: 32px 0 12px; text-transform: none; }
.content-body p { color: var(--ink-soft); line-height: 1.85; margin-bottom: 20px; }
.content-body ul, .content-body ol { padding-left: 0; margin-bottom: 20px; list-style: none; }
.content-body ul li, .content-body ol li {
    color: var(--ink-soft); line-height: 1.7; padding: 8px 0 8px 32px; position: relative; border-bottom: 1px solid var(--line);
}
.content-body ul li::before { 
    content: ''; position: absolute; left: 0; top: 8px;
    background-image: url('/assets/img/golf-ball.svg'); background-size: contain; background-repeat: no-repeat;
    width: 14px; height: 14px;
}
.content-body ol { counter-reset: tgg-counter; }
.content-body ol li { counter-increment: tgg-counter; }
.content-body ol li::before {
    content: counter(tgg-counter);
    position: absolute; left: 0; top: 8px;
    font-family: var(--font-primary); font-size: var(--text-xs); font-weight: 700;
    color: var(--flag-gold); background: var(--fairway-deep); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.content-body strong { color: var(--ink); font-weight: 700; }
.content-body a { color: var(--fairway-deep); text-decoration: underline; text-underline-offset: 3px; }
.content-body a:hover { color: var(--fairway-mid); }

/* ── REUSABLE CORE IMAGE WRAPPERS ─────────────────────────────── */
.container-image { width: 100%; height: 450px; background: linear-gradient(135deg, #c1ff72 0%, #a3e042 100%); border: 3px solid #1a1a1a; overflow: hidden; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15); }
.container-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

.story-image { width: 100%; height: 300px; background: linear-gradient(135deg, #c1ff72 0%, #a3e042 100%); overflow: hidden; position: relative; }
.story-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }

.community-image { width: 100%; height: 450px; background: linear-gradient(135deg, #c1ff72 0%, #a3e042 100%); border: 3px solid #1a1a1a; overflow: hidden; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15); }
.community-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--turf); }
.path-photo-wrap { aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; margin-bottom: 18px; background: var(--turf); }
.loc-photo-wrap { aspect-ratio: 16/9; border-radius: 10px; overflow: hidden; margin-bottom: 16px; background: var(--turf); }

/* ── MEDIA GALLERY MATRIX ─────────────────────────────────────── */
.gallery { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; height: 420px; }
.gallery-item { border-radius: 14px; overflow: hidden; background: var(--turf); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item.big { grid-row: 1 / span 2; }

/* ── DECORATIVE ACCENTS & DIVIDERS ────────────────────────────── */
.section-rule { border: none; border-top: 1px solid var(--line); margin: 50px 0; }
.section-label {
    font-family: var(--font-primary); font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2.5px; color: var(--fairway-mid);
    background: transparent; display: inline-block; padding: 0; margin-bottom: 16px;
}
.section-title {
    font-size: var(--text-xxl); font-weight: 700; color: #1a1a1a; margin-bottom: 80px;
    text-align: center; letter-spacing: 1px; position: relative; padding-bottom: 25px;
}
.section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: #c1ff72; }
.highlight { color: #1a1a1a; font-weight: 700; text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 4px; }
.eyebrow { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; }

/* ── PAGE LAYOUT SECTIONS ─────────────────────────────────────── */
.pathway { padding: 60px 0px; }
.pathway h2 { font-size: var(--text-xxl); font-weight: 700; color: #1a1a1a; text-align: center; margin-bottom: 80px; letter-spacing: 1px; }
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

/* ── CTA BOTTOM STRIP ─────────────────────────────────────────── */
.cta-strip { background: linear-gradient(135deg, var(--fairway-deep) 0%, var(--fairway-mid) 100%); padding: 60px 24px; text-align: center; margin: 70px 0 0; }
.cta-strip h2 { font-size: clamp(24px, 4vw, 40px); font-weight: 600; text-transform: none; color: var(--chalk); margin-bottom: 14px; letter-spacing: -0.01em; }
.cta-strip p { font-size: var(--text-base); color: rgba(255,255,255,0.82); margin-bottom: 28px; line-height: 1.6; }

/* ── FOOTER LAYOUT ────────────────────────────────────────────── */
footer { background: var(--fairway-deep); padding: 70px 24px 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-section h4 { font-family: var(--font-serif); font-size: 13px; font-weight: 600; color: var(--flag-gold-soft); text-transform: none; letter-spacing: 0.3px; margin-bottom: 18px; }
.footer-section p { font-size: var(--text-sm); color: #a9b3ac; line-height: 1.8; }
.footer-section a { font-size: var(--text-sm);; color: #a9b3ac; text-decoration: none; display: block; margin-bottom: 8px; transition: color 0.2s; }
.footer-section a:hover { color: var(--flag-gold-soft); }
.footer-bottom { border-top: 1px solid var(--line-light); padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: var(--text-sm); color: #6f7a72; }

/* ── PRICING SCORECARD ────────────────────────────────────────── */
.pricing { background: var(--turf); }
.scorecard {
    background: var(--chalk);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.scorecard-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 28px; background: var(--fairway-deep); color: var(--chalk);
}
.scorecard-head span { 
    font-family: var(--font-mono); 
    font-size: 0.75rem; 
    letter-spacing: .1em; 
    text-transform: uppercase; 
    color: var(--flag-gold-soft); 
}
.rows { display: grid; grid-template-columns: 1fr 1fr; }
.row { padding: 30px 28px; border-top: 1px solid var(--line); }
.row:first-child { border-right: 1px solid var(--line); }

.row .price { 
    font-family: var(--font-serif); 
    font-size: 2.2rem; 
    font-weight: 600; 
    margin: 6px 0 4px; 
}
.row .price small { 
    font-family: var(--font-mono); 
    font-size: 0.9rem; 
    font-weight: 500; 
    color: var(--ink-soft); 
}
.row .badge {
    display: inline-block; background: var(--flag-gold); color: var(--fairway-deep);
    font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: .08em; text-transform: uppercase;
    padding: 4px 9px; border-radius: 999px; font-weight: 700; margin-bottom: 10px;
}
.row p.note { color: var(--ink-soft); font-size: 0.92rem; margin: 8px 0 0; }
.extras {
    padding: 20px 28px; border-top: 1px solid var(--line);
    font-family: var(--font-mono); font-size: 0.82rem; color: var(--ink-soft);
    background: var(--turf);
}

/* ── LOGISTICS ────────────────────────────────────────────────── */
.logistics { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-item { border-top: 1px solid var(--line); padding: 20px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h4 { font-family: var(--font-serif); font-size: 1.1rem; margin: 0 0 6px; }
.faq-item p { margin: 0; color: var(--ink-soft); }

/* ── SIGNUP FORM CARD ─────────────────────────────────────────── */
.signup {
    background: linear-gradient(180deg, var(--fairway-mid) 0%, var(--fairway-deep) 100%);
    color: var(--chalk);
}
.signup .section-head h2 { color: var(--chalk); }
.signup .section-head p { color: rgba(251,250,247,0.78); }
.signup .section-head .eyebrow { color: var(--flag-gold-soft); }

.form-card {
    background: var(--chalk); color: var(--ink);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.28);
    max-width: 100%;
}
.field { margin-bottom: 18px; }
.field label {
    display: block; font-family: var(--font-mono); font-size: var(--text-xs); 
    letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 7px; font-weight: 600;
}
.field input[type=text],
.field input[type=email],
.field input[type=tel] {
    width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px;
    font-family: var(--font-primary); font-size: 0.98rem; background: var(--turf);
}
.field input:focus { outline: 2px solid var(--fairway-soft); outline-offset: 1px; }

/* Pricing Tier Pickers */
.price-choice-group { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.price-choice {
    border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; cursor: pointer;
    background: var(--turf); transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
    position: relative;
}
.price-choice:has(input:checked) { border-color: var(--flag-gold); background: #FBF0DB; box-shadow: 0 0 0 2px rgba(206,154,60,.25); }
.price-choice input { position: absolute; top: 16px; right: 16px; width: 18px; height: 18px; accent-color: var(--flag-gold); }
.price-choice .pc-badge {
    display: block; width: max-content; font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: .08em; text-transform: uppercase;
    background: var(--flag-gold); color: var(--fairway-deep); padding: 3px 8px; border-radius: 999px; font-weight: 700; margin-bottom: 10px;
}
.price-choice .pc-label {
    font-family: var(--font-primary); font-size: 0.8rem; font-weight: 600; color: var(--ink-soft);
    padding-right: 26px; line-height: 1.35; margin-bottom: 6px;
}
.price-choice .pc-amount { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.price-choice .pc-amount small { font-family: var(--font-mono); font-size: 0.8rem; font-weight: 500; color: var(--ink-soft); }
.price-choice .pc-desc { font-size: 0.85rem; color: var(--ink-soft); margin: 0; }

.choice-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice-group.three { grid-template-columns: 1fr 1fr 1fr; }
.choice-group.times { grid-template-columns: 1fr 1fr; }
.field .hint { display: block; font-family: var(--font-primary); text-transform: none; letter-spacing: normal; font-size: 0.82rem; color: var(--ink-soft); font-weight: 400; margin-top: -2px; margin-bottom: 10px; }
.choice {
    border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; cursor: pointer;
    font-size: 0.9rem; background: var(--turf); transition: border-color .15s ease, background .15s ease;
}
.choice input { margin-right: 8px; }
.choice:has(input:checked) { border-color: var(--fairway-soft); background: #E4EEE6; }
.consent { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 22px; }
.consent input { margin-top: 3px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.submit-btn {
    width: 100%; background: var(--flag-gold); color: var(--fairway-deep);
    font-weight: 700; padding: 15px; border: none; border-radius: 999px; font-size: 1rem; cursor: pointer;
}
.form-msg { margin-top: 14px; font-size: 0.9rem; padding: 12px 14px; border-radius: 8px; display: none; }
.form-msg.show { display: block; }
.form-msg.success { background: #E4EEE6; color: #1E4A2F; }
.form-msg.error { background: #F7E3DD; color: #7A2B12; }

/* ── INTERACTIVE QUIZ ENGINE MODULE ───────────────────────────── */
#quiz-section {
    padding: 80px 20px;
    background: var(--chalk); 
}

/* Tracking / Progress Metrics */
.progress-wrap { margin-bottom: 50px; }
.progress-meta {
    display: flex; 
    justify-content: space-between;
    font-family: var(--font-primary); 
    font-size: var(--text-xs); 
    font-weight: 700;
    text-transform: uppercase; 
    letter-spacing: 1px;
    color: var(--ink-soft); 
    margin-bottom: 10px;
}
.progress-track {
    height: 6px; 
    background: #e8e8e8;
    position: relative;
}
.progress-fill {
    height: 100%; 
    background: #c1ff72; 
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
}

/* Target Question Cards */
.question-card {
    display: none;
    animation: fadeUp 0.4s ease;
}
.question-card.active { display: block; }

@container q-anim {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.q-icon {
    font-size: 42px; 
    margin-bottom: 18px;
    display: block; 
    text-align: center;
}
.q-counter {
    font-family: var(--font-primary); 
    font-size: var(--text-xs); 
    font-weight: 700;
    color: var(--fairway-soft); 
    text-transform: uppercase;
    letter-spacing: 2px; 
    text-align: center;
    margin-bottom: 12px;
}
.q-text {
    font-family: var(--font-serif); 
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700; 
    color: var(--ink);
    text-align: center; 
    margin-bottom: 40px;
    line-height: 1.3;
}

/* Option Mechanics Array Matrix */
.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 680px; 
    margin: 0 auto;
}
.option-btn {
    display: flex; 
    align-items: center; 
    gap: 16px;
    padding: 18px 24px;
    border: 2px solid #d0d0d0;
    background: var(--chalk);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 15px; 
    color: var(--ink);
    transition: all 0.2s;
    position: relative;
}
.option-btn:hover {
    border-color: #c1ff72;
    background: rgba(193, 255, 114, 0.08);
}
.option-btn.selected {
    border-color: var(--ink);
    background: #c1ff72;
    color: var(--ink);
    font-weight: 600;
}
.option-letter {
    font-family: var(--font-primary);
    font-size: var(--text-sm); 
    font-weight: 800;
    width: 32px; 
    height: 32px; 
    min-width: 32px;
    border: 2px solid currentColor;
    display: flex; 
    align-items: center; 
    justify-content: center;
    transition: all 0.2s;
}

/* ── QUIZ NAVIGATION CONTROLS ─────────────────────────────────── */
.quiz-nav {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    margin-top: 40px; 
    max-width: 680px; 
    margin-left: auto; 
    margin-right: auto;
}
.btn-prev {
    font-family: var(--font-primary);
    background: none; 
    border: none; 
    cursor: pointer;
    font-size: var(--text-sm); 
    font-weight: 700;
    text-transform: uppercase; 
    letter-spacing: 1px;
    color: var(--ink-soft); 
    display: flex; 
    align-items: center; 
    gap: 8px;
    transition: color 0.2s;
}
.btn-prev:hover { color: var(--ink); }
.btn-prev:disabled { opacity: 0.3; cursor: default; }

/* ── LEAD CAPTURE SYSTEM ──────────────────────────────────────── */
#lead-section {
    display: none;
    padding: 80px 20px;
    background: #ddecca; 
}
.lead-inner {
    max-width: 680px; 
    margin: 0 auto;
    text-align: center;
}
.score-reveal {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 96px; 
    font-weight: 800;
    color: var(--fairway-deep); 
    line-height: 1;
    margin-bottom: 10px;
}
.score-reveal sup {
    font-size: 36px; 
    vertical-align: super;
}
.result-label {
    font-family: var(--font-primary);
    font-size: 22px; 
    font-weight: 700;
    text-transform: uppercase; 
    letter-spacing: 1px;
    color: var(--fairway-deep); 
    margin-bottom: 20px;
}
.result-message {
    font-size: var(--text-base); 
    color: var(--fairway-deep);
    line-height: 1.8; 
    max-width: 560px;
    margin: 0 auto 40px;
}

/* Lead Submission Form Layout */
.lead-form-card {
    background: var(--fairway-deep); 
    padding: 45px 40px;
    text-align: left;
}
.lead-form-card h3 {
    font-family: var(--font-serif);
    font-size: 22px; 
    font-weight: 700;
    color: #c1ff72; 
    text-transform: uppercase;
    letter-spacing: 0.5px; 
    margin-bottom: 8px;
}
.lead-form-card p {
    font-size: var(--text-sm); 
    color: #b0b0b0;
    margin-bottom: 28px; 
    line-height: 1.6;
}

/* Grid parameters for fields */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px; 
    margin-bottom: 16px;
}
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-family: var(--font-mono); 
    font-size: 10px; 
    font-weight: 700;
    text-transform: uppercase; 
    letter-spacing: 1px;
    color: #888;
}
.form-group input {
    background: #2d2d2d; 
    border: 2px solid #3a3a3a;
    color: var(--chalk); 
    padding: 12px 16px;
    font-family: var(--font-primary); 
    font-size: var(--text-sm); 
    transition: border-color 0.2s; 
    outline: none;
}
.form-group input:focus { border-color: #c1ff72; }
.form-group input::placeholder { color: #666; }
.form-submit-row { margin-top: 24px; }

.btn-submit {
    width: 100%; 
    padding: 18px;
    background: #c1ff72; 
    border: none;
    font-family: var(--font-primary);
    font-size: var(--text-sm); 
    font-weight: 800;
    text-transform: uppercase; 
    letter-spacing: 1.5px;
    cursor: pointer; 
    color: var(--fairway-deep);
    transition: background 0.2s;
}
.btn-submit:hover { background: #a8e856; }

.form-disclaimer {
    font-size: var(--text-xs); 
    color: #666;
    margin-top: 14px; 
    text-align: center; 
    line-height: 1.5;
}

/* ── INTERACTIVE THANK YOU SCREEN ─────────────────────────────── */
#thankyou-section {
    display: none;
    padding: 100px 20px;
    background: var(--fairway-deep);
    text-align: center;
}
.ty-emoji { 
    font-size: 72px; 
    margin-bottom: 20px; 
    display: block; 
}
.ty-title {
    font-family: var(--font-serif);
    font-size: var(--text-xxl); 
    font-weight: 800; 
    color: #c1ff72;
    text-transform: uppercase; 
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.ty-message {
    font-size: var(--text-md); 
    color: #ccc;
    max-width: 560px; 
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Dynamic validation notification alerts */
.alert-error {
    background: #ffe0e0; 
    border: 2px solid #e05555;
    padding: 16px 20px; 
    margin-bottom: 20px;
    font-size: var(--text-sm); 
    color: #c00;
}

/* ── GRAPHICAL FILTER UTILITIES ───────────────────────────────── */
.invert-icon {
    filter: brightness(0) invert(1);
    transition: filter 0.2s ease;
}
.invert-icon:hover {
    filter: none;
}

/* ── SHORTCUT / KEYBOARD CUE TYPOGRAPHY ───────────────────────── */
.styled-text {
    display: inline-block; 
}
.styled-text::first-letter {
    text-transform: uppercase;   
    text-decoration: underline;  
}

/* ── COMPACT RESPONSIVE MEDIA BREAKPOINTS ─────────────────────── */
@media (max-width: 768px) {
    :root {
        --header-height: 165px; 
    }
    .container { padding: 0 15px; }

    header .container {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }
    .logo-section { justify-content: center; }

    nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        top: -38px;
    }
    nav a { font-size: 10px; } 

    .page-hero h1 { font-size: 48px; }
    .page-hero p { font-size: 18px; }
    .section-title, .pathway h2, .welcome-section h2 { font-size: 36px; }
    .quote-section p { font-size: 26px; }

    .community-grid,
    .pathway-grid { grid-template-columns: 1fr; }

    .flow-stops,
    .flow-stops-grid3 { grid-template-columns: 1fr; gap: 28px; }
    .flow-stops::before,
    .flow-stops-grid3::before { display: none; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

    .newsletter-form { flex-direction: column; border: none; }
    .newsletter-form input { border: 3px solid #1a1a1a; border-bottom: none; }

    .cta-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 320px; }
    
    .hero .wrap { grid-template-columns: 1fr; }
    .hero-photo-wrap { aspect-ratio: 16/9; order: -1; }
    .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
    .gallery-item.big { grid-row: auto; grid-column: 1 / span 2; aspect-ratio: 16/9; }
    .gallery-item { aspect-ratio: 4/3; }
    .next-event { margin-top: -32px; }
    .next-event-card { padding: 20px; }
    .ne-cta { margin-left: 0; width: 100%; text-align: center; }
    
    .paths, .logistics, .rows { grid-template-columns: 1fr; }
    .row:first-child { border-right: none; border-bottom: 1px solid var(--line); }
    .choice-group.three, .choice-group.times { grid-template-columns: 1fr; }
    .nav-brand { font-size: 0.92rem; }
    .hero { padding: 56px 0 64px; }
    section { padding: 56px 0; }
}

@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
    .lead-form-card { padding: 30px 20px; }
}

@media (max-width: 560px) {
    .week-item { flex-wrap: wrap; }
    .week-spots { flex-basis: 100%; padding-left: 74px; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .price-choice-group { grid-template-columns: 1fr; }
}

/* ── SYSTEM VARIABLES REFERENCE ─────────────────────────────────
   --font-primary, --font-serif, --font-mono
   --text-xs (11px), --text-sm (12px), --text-base (16px), --text-md (18px), --text-lg (20px)
   --text-xl (clamp 24-34px), --text-xxl (clamp 32-52px)
   ───────────────────────────────────────────────────────────── */

/* ── CONTACT SECTION WRAPPERS ─────────────────────────────────── */
.contact-section { 
    padding: 80px 0; /* Unified section engine spacing baseline */
    background: var(--chalk); 
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* ── LEFT UTILITY INFO PANEL ──────────────────────────────────── */
.contact-info .section-eyebrow {
    font-family: var(--font-primary);
    font-size: var(--text-xs); 
    font-weight: 800;
    text-transform: uppercase; 
    letter-spacing: 3px;
    color: #c1ff72; 
    background: var(--fairway-deep);
    display: inline-block; 
    padding: 5px 12px;
    margin-bottom: 20px;
}
.contact-info h2 {
    font-family: var(--font-serif); /* Shifted headers to luxury serif scale */
    font-size: var(--text-xxl); /* Standardised down to responsive fluid scale token */
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink); 
    line-height: 1.2; 
    margin-bottom: 16px;
}
.contact-info > p {
    font-size: 15px; 
    color: var(--ink-soft);
    line-height: 1.8; 
    margin-bottom: 40px;
}

/* Detail list timelines */
.contact-detail {
    display: flex; 
    align-items: flex-start;
    gap: 18px; 
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 2px solid var(--line);
}
.contact-detail:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-detail-icon {
    width: 48px; 
    min-width: 48px; 
    height: 48px;
    background: #c1ff72; 
    border: var(--border);
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: var(--text-lg); 
    flex-shrink: 0;
}
.contact-detail-label {
    font-family: var(--font-mono); /* Re-routed tracking numbers to clean geometric mono */
    font-size: 10px; 
    font-weight: 800;
    text-transform: uppercase; 
    letter-spacing: 1.5px;
    color: #aaa; 
    margin-bottom: 4px;
}
.contact-detail-value {
    font-size: 15px; 
    color: var(--ink);
    line-height: 1.5; 
    font-weight: 500;
}
.contact-detail-value a {
    color: var(--ink); 
    text-decoration: none;
    border-bottom: 2px solid #c1ff72;
    padding-bottom: 1px; 
    transition: opacity 0.2s;
}
.contact-detail-value a:hover { opacity: 0.7; }

/* Social Interaction Matrix */
.social-row {
    display: flex; 
    gap: 12px; 
    margin-top: 36px;
}
.social-btn {
    width: 46px; 
    height: 46px;
    border: var(--border);
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: var(--text-md); 
    text-decoration: none;
    transition: all 0.25s; 
    background: var(--chalk);
    color: var(--ink);
}
.social-btn:hover { 
    background: #c1ff72; 
    color: var(--fairway-deep);
}

/* ── EMBEDDED MAP STRIP MODULE ────────────────────────────────── */
.map-strip {
    background: var(--turf);
    border-top: var(--border);
    border-bottom: var(--border);
}
.map-strip-header {
    display: flex; 
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px; 
    gap: 20px;
    flex-wrap: wrap;
}
.map-strip-header h3 {
    font-family: var(--font-serif);
    font-size: var(--text-xl); /* Clean layout fluid headline token scale */
    font-weight: 600; 
    color: var(--ink);
}
.map-strip-header p { 
    font-size: var(--text-sm); 
    color: var(--ink-soft); 
    margin-top: 4px; 
}

.map-frame {
    border: var(--border);
    overflow: hidden;
    line-height: 0;
}
.map-frame iframe {
    width: 100%; 
    height: 380px;
    border: none; 
    display: block;
}

.map-caption {
    background: var(--fairway-deep);
    padding: 14px 20px;
    display: flex; 
    align-items: center; 
    gap: 12px;
}
.map-caption span {
    font-family: var(--font-mono);
    font-size: var(--text-xs); 
    font-weight: 700;
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: #aaa;
}
.map-caption strong { color: #c1ff72; }

/* ── MULTI-DEVICE SCREEN OVERRIDES ────────────────────────────── */
@media (max-width: 820px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
