/* ================================================================
   Pelican Shops — Landing Site
   Premium design system for high-income, taste-driven customers
   ================================================================ */

:root {
    /* Matched to pelicanshops.com brand palette */
    --pelican-red: #FF5000;        /* primary accent — Pelican brand orange-red */
    --pelican-red-dark: #E64600;   /* hover / pressed state */
    --pelican-red-deep: #B33700;   /* very deep accent for borders / footer rules */
    --pelican-burgundy: #722F37;   /* deep, sophisticated wine — used on the Pelican wordmark */
    --ink: #414151;                /* body text — Pelican's soft charcoal */
    --ink-strong: #1f1f2b;         /* darker for headings */
    --ink-soft: #6c6c7a;
    --muted: #9a9aa6;
    --cream: #FFFFFF;              /* main background — matches site */
    --cream-2: #F5F5F5;            /* secondary background — Pelican light gray */
    --line: #e6e6e8;
    --gold: #b89866;
    --shadow-sm: 0 2px 10px rgba(20, 20, 20, 0.06);
    --shadow-md: 0 12px 32px rgba(20, 20, 20, 0.10);
    --shadow-lg: 0 24px 60px rgba(20, 20, 20, 0.14);
    --serif: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --container: 1240px;
    --radius: 4px;
}

/* ----- Reset / base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: #ffffff;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--pelican-red); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--pelican-red-dark); }

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 600;
    color: var(--ink-strong);
    letter-spacing: -0.01em;
    line-height: 1.18;
    margin: 0 0 .6em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.85rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
p  { margin: 0 0 1em; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

/* ----- Top utility bar (matched to pelicanshops.com) ----- */
.utility-bar {
    background: #000000;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0;
    text-transform: none;
}
.utility-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 9px;
    padding-bottom: 9px;
    flex-wrap: wrap;
    gap: 6px 20px;
}
.utility-bar a {
    color: #ffffff;
    font-weight: 400;
    transition: color .15s ease;
}
.utility-bar a:hover { color: var(--pelican-red); }

/* Inline location/phone list */
.util-locations {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 0;
}
.util-locations li {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}
.util-locations a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    font-size: 13px;
    color: #ffffff;
}
.util-locations a::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}
.util-loc a::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FF5000"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');
}
.util-phone a::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FF5000"><path d="M20 15.5c-1.25 0-2.45-.2-3.57-.57a1 1 0 0 0-1.02.24l-2.2 2.2a15.05 15.05 0 0 1-6.59-6.59l2.2-2.21a.96.96 0 0 0 .25-1A11.36 11.36 0 0 1 8.5 4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1c0 9.39 7.61 17 17 17a1 1 0 0 0 1-1v-3.5a1 1 0 0 0-1-1z"/></svg>');
}
.util-sep {
    width: 1px;
    height: 14px;
    background: #3a3a3a;
    margin: 0 2px;
}
.utility-bar .tagline {
    color: #b8b8c0;
    font-size: 12.5px;
    letter-spacing: 0;
}

/* ----- Navigation ----- */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    /* White section is ~half the original height; logo overflows below onto the hero */
    height: 60px;
    overflow: visible;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
    height: 100%;
    gap: 24px;
}
/* Anchor logo to top so it overflows downward (not upward into the utility bar) */
.brand { align-self: flex-start; position: relative; z-index: 1; }
/* Brand is now an image-based logo, no text fallback needed */
.brand {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    text-decoration: none;
    color: inherit;
}
.brand .brand-logo {
    height: 78px;             /* 40% bigger than the original 56px */
    width: auto;
    display: block;
    transition: height .25s ease, filter .25s ease;
}
.brand a { color: inherit; }
.brand small { display: none; } /* hide any leftover descriptor text */

.nav-links {
    list-style: none;
    display: flex;
    gap: 36px;
    margin: 0;
    padding: 0;
}
.nav-links a {
    color: var(--ink);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.01em;
    padding: 6px 0;
    position: relative;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--pelican-red);
    transition: width .25s ease, left .25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    left: 0;
}
.nav-links a.active { color: var(--pelican-red); }

.nav-cta {
    display: inline-block;
    background: var(--pelican-red);
    color: #fff;
    padding: 11px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover { background: var(--pelican-red-dark); color: #fff; transform: translateY(-1px); }

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
    transition: transform .25s ease, opacity .25s ease;
}

/* ----- Hero ----- */
.hero {
    position: relative;
    min-height: 160px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--cream-2);
}
/* At banner-strip heights the lead paragraph is dropped — eyebrow + headline only */
.hero .lead { display: none; }
.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-media img,
.hero-media .hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Bias toward the middle-lower portion of the photo so the building
       (red roof, Pelican wordmark, department signs) is visible. */
    object-position: center 55%;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 75%, rgba(0,0,0,0.85) 100%);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 16px 0 14px;
    max-width: 760px;
}
.hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 80, 0, 0.95);
    padding: 8px 16px;
    margin-bottom: 22px;
    border-radius: 2px;
}
.hero h1 {
    color: #fff;
    margin-bottom: 18px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.hero p.lead {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    color: #f4f4f4;
    max-width: 600px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.45);
}
.hero-actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all .2s ease;
}
.btn-primary { background: var(--pelican-red); color: #fff; border-color: var(--pelican-red); }
.btn-primary:hover { background: var(--pelican-red-dark); border-color: var(--pelican-red-dark); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover { background: #000; color: #fff; }

/* ----- Sections ----- */
section { padding: 60px 0; }
section.tight { padding: 40px 0; }
section.cream { background: var(--cream); }
section.dark { background: var(--ink); color: #f4f4f4; }
section.dark h1, section.dark h2, section.dark h3 { color: #fff; }

.section-eyebrow {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--pelican-red);
    font-weight: 600;
    margin: 0 0 14px;
    display: block;
}
.section-head { max-width: 760px; margin: 0 auto 36px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

/* ----- Category grid (home) ----- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.category-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .35s ease, box-shadow .35s ease;
    display: flex;
    flex-direction: column;
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.category-card .card-art {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: var(--cream-2);
}
.category-card .card-art::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
}
.category-card:hover .card-art::before { transform: scale(1.05); }
.category-card.hot-tubs .card-art::before  { background: linear-gradient(135deg, #6f97b8, #2c5174); }
.category-card.pools .card-art::before     { background: linear-gradient(135deg, #4fa1c9, #1a6996); }
.category-card.patio .card-art::before     { background: linear-gradient(135deg, #c5a268, #8a6b3e); }
.category-card.grills .card-art::before    { background: linear-gradient(135deg, #FF7A40, #B33700); }
.category-card.watersports .card-art::before { background: linear-gradient(135deg, #4eb1b8, #1f6f78); }

.card-art .card-art-svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .85; }
/* Real-photo card thumbnails (homepage category cards). Sits over the gradient pseudo-element. */
.card-art .card-art-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform .6s ease;
}
.category-card:hover .card-art .card-art-img { transform: scale(1.05); }

.category-card .card-body { padding: 28px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.category-card h3 { margin: 0 0 10px; }
.category-card p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 22px; flex: 1; }
.category-card .card-link {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pelican-red);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.category-card .card-link::after {
    content: "→";
    transition: transform .2s ease;
}
.category-card:hover .card-link::after { transform: translateX(4px); }

/* ----- Brand strip ----- */
.brand-strip {
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 36px 0;
}
.brand-strip .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 28px 50px;
}
.brand-strip span {
    font-family: var(--serif);
    font-style: italic;
    color: var(--ink-soft);
    font-size: 1.15rem;
    opacity: .85;
}

/* ----- Story / content blocks ----- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.split.reverse .split-text { order: 2; }

.split-text h2 { margin-bottom: 22px; }
.split-text p  { color: var(--ink-soft); font-size: 17px; }

.split-visual {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    background: var(--cream-2);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
}
.split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.split-visual.placeholder {
    background:
      linear-gradient(135deg, rgba(255,80,0,0.08), transparent 60%),
      repeating-linear-gradient(45deg, var(--cream) 0 14px, var(--cream-2) 14px 28px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.split-visual.placeholder::after {
    content: "Drop your photo here";
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ----- Why Pelican (value props) ----- */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}
.value-card {
    padding: 36px 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: left;
}
.value-card .icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--cream-2);
    color: var(--pelican-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: 700;
}
.value-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.value-card p { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* ----- Quote ----- */
.quote-block {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}
.quote-block blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    line-height: 1.45;
    color: var(--ink);
    margin: 0 0 24px;
    position: relative;
    padding: 0 30px;
}
.quote-block blockquote::before {
    content: "\201C";
    color: var(--pelican-red);
    font-size: 4rem;
    position: absolute;
    left: -10px;
    top: -30px;
    font-family: var(--serif);
}
.quote-block cite {
    font-family: var(--sans);
    font-size: 13px;
    font-style: normal;
    color: var(--muted);
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

/* ----- Contact / form ----- */
.contact-section {
    background: var(--cream);
    position: relative;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: start;
}
.contact-info h2 { margin-bottom: 18px; }
.contact-info p { color: var(--ink-soft); margin-bottom: 28px; }
.contact-detail {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    font-size: 15px;
    color: var(--ink-soft);
}
.contact-detail:last-child { border-bottom: 1px solid var(--line); }
.contact-detail strong { color: var(--ink); min-width: 130px; display: inline-block; font-weight: 600; }

.form-card {
    background: #fff;
    padding: 44px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--pelican-red);
}
.form-card h3 {
    font-family: var(--serif);
    margin-bottom: 6px;
    font-size: 1.6rem;
}
.form-card .form-sub {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 26px;
}

/* Plain HTML form (fallback when GHL not embedded) */
.pelican-form { display: grid; gap: 16px; }
.pelican-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pelican-form label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 6px;
    font-weight: 600;
}
.pelican-form input,
.pelican-form select,
.pelican-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #fdfcf8;
    padding: 13px 14px;
    font-family: var(--sans);
    font-size: 15px;
    color: var(--ink);
    border-radius: var(--radius);
    transition: border-color .2s, box-shadow .2s;
}
.pelican-form input:focus,
.pelican-form select:focus,
.pelican-form textarea:focus {
    outline: none;
    border-color: var(--pelican-red);
    box-shadow: 0 0 0 3px rgba(255, 80, 0, 0.15);
    background: #fff;
}
.pelican-form textarea { min-height: 120px; resize: vertical; }
.pelican-form button[type="submit"] {
    margin-top: 6px;
    background: var(--ink);
    color: #fff;
    border: 0;
    padding: 15px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
.pelican-form button[type="submit"]:hover { background: var(--pelican-red); transform: translateY(-1px); }
.pelican-form .form-fineprint {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
}
.form-success {
    display: none;
    background: #f0f8ee;
    border: 1px solid #c3deb4;
    color: #2c5d1a;
    padding: 14px 16px;
    border-radius: var(--radius);
    font-size: 14px;
}

/* GHL Embed container */
.ghl-embed-wrapper {
    /* When you paste the GoHighLevel iframe inside, it auto-sizes */
    width: 100%;
    min-height: 520px;
}
.ghl-embed-wrapper iframe { width: 100% !important; border: 0; min-height: 520px; }

/* ----- Footer ----- */
.site-footer {
    background: #0f0f0f;
    color: #c8c8c8;
    padding: 70px 0 30px;
    font-size: 14.5px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 50px;
}
.footer-grid h4 {
    color: #fff;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; line-height: 1.5; }
.footer-grid a { color: #c8c8c8; }
.footer-grid a:hover { color: #fff; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand small { color: #888; }
.footer-brand p { color: #999; margin-top: 16px; max-width: 320px; font-size: 14px; }
.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: #888;
    font-size: 13px;
}
.guarantee-banner {
    background: var(--pelican-red);
    color: #fff;
    text-align: center;
    padding: 14px 18px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* ----- Sub-page hero (category pages share storefront image) ----- */
.subhero {
    min-height: 160px;
}
.subhero .hero-inner { padding-top: 14px; padding-bottom: 12px; max-width: 700px; }

/* ----- Brand badges grid ----- */
.brand-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 30px;
}
.brand-badges .badge {
    background: #fff;
    border: 1px solid var(--line);
    padding: 10px 18px;
    font-family: var(--serif);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--ink);
    border-radius: 2px;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform.2s ease;
}
.brand-badges .badge:hover { transform: translateY(-2px); border-color: var(--pelican-red); }
.brand-badges .badge .badge-logo {
    height: 28px;
    width: auto;
    max-width: 64px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

/* ----- Locations strip ----- */
.locations-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
    margin-top: 24px;
}
.location-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 26px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, border-color .2s ease;
}
.location-card:hover { transform: translateY(-2px); border-color: var(--pelican-red); }
.location-card h4 {
    font-family: var(--serif);
    font-size: 1.2rem;
    margin: 0 0 6px;
    color: var(--ink);
}
.location-card .city-tag {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--pelican-red);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}
.location-card p { margin: 0 0 6px; color: var(--ink-soft); font-size: 14px; }
.location-card a { font-weight: 600; }


/* =================================================================
   Velocity-style additions
   Marquee ticker, scroll-reveal animations, sticky header states,
   mission block, credentials split, tier-card locations, spotlight
   testimonial, glowing CTAs, alternating section backgrounds.
   ================================================================= */

/* ----- Sticky header (normal flow, white, sits above hero) ----- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    transition: box-shadow .25s ease, padding .25s ease, background .25s ease;
}
.site-header .nav-links a { color: var(--ink); }
.site-header .nav-toggle span { background: var(--ink); }

/* Scrolled state — slight shadow + blur */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    backdrop-filter: saturate(140%) blur(8px);
}
.site-header.scrolled { height: 56px; }
.site-header.scrolled .nav { padding-top: 0; padding-bottom: 0; }
.site-header.scrolled .brand .brand-logo { height: 64px; } /* 40% bigger than the prior 46px; overflows a few px */

/* Footer brand on dark background */
.site-footer .brand .brand-logo {
    height: 100px;            /* 40% bigger than the prior 72px */
    filter: brightness(1.05);
}

/* ----- Glowing CTA variant ----- */
.btn-glow {
    background: var(--pelican-red);
    color: #fff;
    border-color: var(--pelican-red);
    box-shadow: 0 8px 26px rgba(255, 80, 0, 0.32);
    position: relative;
    overflow: hidden;
}
.btn-glow::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity .25s ease;
}
.btn-glow:hover {
    background: var(--pelican-red-dark);
    border-color: var(--pelican-red-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255, 80, 0, 0.42);
}
.btn-glow:hover::after { opacity: 1; }

/* ----- Marquee ticker ----- */
.marquee {
    background: var(--ink-strong);
    color: #fff;
    overflow: hidden;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    white-space: nowrap;
    position: relative;
}
.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 56px;
    padding-left: 56px;
    animation: marquee 38s linear infinite;
    will-change: transform;
}
.marquee-track span {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    gap: 56px;
}
.marquee-track span::after {
    content: "●";
    color: var(--pelican-red);
    font-size: 0.7rem;
    font-style: normal;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ----- Section variants (extends existing .cream / .dark) ----- */
section.accent {
    background:
        radial-gradient(ellipse at top, rgba(255, 80, 0, 0.06), transparent 70%),
        var(--cream);
}
section.ink {
    background: #0f0f0f;
    color: #c8c8c8;
}
section.ink h1, section.ink h2, section.ink h3 { color: #fff; }
section.ink .section-eyebrow { color: var(--pelican-red); }

/* ----- Scroll-reveal utility ----- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s ease;
    will-change: transform, opacity;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ----- Mission / manifesto section ----- */
.mission {
    padding: 70px 0;
    background: #fff;
    text-align: center;
}
.mission .inner { max-width: 920px; margin: 0 auto; padding: 0 28px; }
.mission .eyebrow {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--pelican-red);
    font-weight: 700;
    margin-bottom: 22px;
}
.mission h2 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink-strong);
    margin-bottom: 28px;
}
.mission h2 em {
    color: var(--pelican-red);
    font-style: italic;
}
.mission p {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: var(--ink-soft);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 32px;
}

/* ----- Credentials (instructor-bio-style) ----- */
.credentials {
    padding: 70px 0;
    background: var(--cream-2);
}
.credentials .inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}
.credentials .portrait {
    aspect-ratio: 4 / 5;
    background: var(--cream);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.credentials .portrait::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius);
    pointer-events: none;
}
.credentials .portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.credentials .portrait.placeholder {
    background:
        linear-gradient(135deg, rgba(255,80,0,0.08), transparent 60%),
        repeating-linear-gradient(45deg, var(--cream) 0 14px, var(--cream-2) 14px 28px);
    display: flex; align-items: center; justify-content: center;
}
.credentials .portrait.placeholder::before {
    content: "TEAM PHOTO";
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.3em;
}
.credentials .bio .eyebrow {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--pelican-red);
    font-weight: 700;
    display: block;
    margin-bottom: 14px;
}
.credentials .bio h2 {
    font-size: clamp(2rem, 3.5vw, 2.85rem);
    margin-bottom: 24px;
}
.credentials .bio p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 18px;
}
.credentials .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 36px 0 28px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.credentials .stat .num {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 2.4rem;
    color: var(--pelican-red);
    line-height: 1;
    margin-bottom: 6px;
}
.credentials .stat .lbl {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 600;
}

/* ----- Tier-style location cards (formerly pricing tiers) ----- */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}
.tier-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    box-shadow: var(--shadow-sm);
}
.tier-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pelican-red);
}
.tier-card.featured {
    border-color: var(--pelican-red);
    box-shadow: 0 12px 36px rgba(255, 80, 0, 0.16);
    transform: translateY(-4px);
}
.tier-card.featured::before {
    content: "FLAGSHIP";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pelican-red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    padding: 6px 14px;
    border-radius: 30px;
    white-space: nowrap;
}
.tier-card .tier-tag {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--pelican-red);
    font-weight: 700;
    margin-bottom: 10px;
}
.tier-card h3 {
    font-family: var(--serif);
    font-size: 1.55rem;
    margin: 0 0 12px;
    color: var(--ink-strong);
}
.tier-card .address {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 18px;
}
.tier-card .phone {
    font-family: var(--serif);
    font-size: 1.55rem;
    color: var(--pelican-red);
    font-weight: 600;
    margin: 4px 0 18px;
    display: block;
    text-decoration: none;
}
.tier-card .phone:hover { color: var(--pelican-red-dark); }
.tier-card ul {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    flex: 1;
}
.tier-card ul li {
    font-size: 14px;
    color: var(--ink-soft);
    padding: 8px 0;
    border-bottom: 1px dashed var(--line);
    display: flex;
    align-items: center;
    gap: 10px;
}
.tier-card ul li::before {
    content: "✓";
    color: var(--pelican-red);
    font-weight: 700;
    font-size: 13px;
}
.tier-card ul li:last-child { border-bottom: 0; }
.tier-card .tier-cta {
    display: block;
    text-align: center;
    background: var(--ink-strong);
    color: #fff;
    padding: 13px 18px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s ease;
}
.tier-card .tier-cta:hover { background: var(--pelican-red); color: #fff; }
.tier-card.featured .tier-cta { background: var(--pelican-red); }
.tier-card.featured .tier-cta:hover { background: var(--pelican-red-dark); }

/* ----- Lifestyle gallery (after "Brands We Carry") ----- */
.gallery-section {
    padding: 60px 0;
    background: #fff;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.gallery-item {
    position: relative;
    aspect-ratio: 3 / 2;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .35s ease, box-shadow .35s ease;
    background: var(--cream-2);
    margin: 0;
}
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 20px 22px 18px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.88) 100%);
    color: #fff;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.35;
    text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}

/* Elegant fallback when an image is missing — the figure still reads as intentional. */
.gallery-item.placeholder,
.gallery-item:has(img[src=""]),
.gallery-item img[style*="display: none"] + .caption {
    /* Hover for placeholder shouldn't zoom a missing image */
}
.gallery-item.placeholder {
    background:
        linear-gradient(135deg, rgba(255,80,0,0.06), transparent 60%),
        repeating-linear-gradient(45deg, var(--cream) 0 16px, var(--cream-2) 16px 32px);
}
.gallery-item.placeholder::before {
    content: "PHOTO";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.34em;
    color: var(--muted);
    font-weight: 700;
}
.gallery-item.placeholder .caption {
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink-soft);
    font-style: italic;
}

@media (max-width: 940px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-section { padding: 50px 0; }
    .gallery-item .caption { font-size: 0.95rem; padding: 14px 16px; }
}
@media (max-width: 560px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* ----- Spotlight testimonial ----- */
.spotlight {
    padding: 80px 0;
    background: var(--ink-strong);
    color: #f4f4f4;
    position: relative;
    overflow: hidden;
}
.spotlight::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 80, 0, 0.18), transparent 70%);
    pointer-events: none;
}
.spotlight .inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 28px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.spotlight .stars {
    color: var(--pelican-red);
    font-size: 1.1rem;
    letter-spacing: 0.4em;
    margin-bottom: 24px;
}
.spotlight blockquote {
    font-family: var(--serif);
    font-weight: 500;
    font-style: italic;
    font-size: clamp(1.5rem, 2.6vw, 2.4rem);
    line-height: 1.35;
    color: #fff;
    margin: 0 0 36px;
    letter-spacing: -0.01em;
}
.spotlight blockquote::before { content: "\201C"; color: var(--pelican-red); margin-right: 4px; }
.spotlight blockquote::after  { content: "\201D"; color: var(--pelican-red); margin-left: 4px; }
.spotlight .author {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}
.spotlight .author .avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pelican-red), var(--pelican-red-dark));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 600;
    font-size: 1.4rem;
}
.spotlight .author .who {
    text-align: left;
    font-family: var(--sans);
    color: #d8d8d8;
    font-size: 14px;
}
.spotlight .author .who strong {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 15px;
}

/* ----- Velocity-style hero override (compact 160px banner strip) ----- */
.hero.v2 {
    min-height: 160px;
    align-items: center;
    background: var(--ink-strong);
}
.hero.v2 .hero-inner {
    padding: 18px 0;
    max-width: 880px;
}
.hero.v2 .hero-eyebrow {
    background: rgba(255, 80, 0, 0.95);
    margin-bottom: 10px;
    padding: 4px 10px;
    font-size: 10px;
}
.hero.v2 h1 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.15;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.hero.v2 h1 em {
    font-style: italic;
    color: var(--pelican-red);
}
/* At 160px banner height, lead text and CTAs don't fit — hide them. */
.hero.v2 .lead { display: none; }
.hero.v2 .hero-actions { display: none; }
.hero.v2::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.8) 100%);
}

/* ----- Departments grid (curriculum equivalent) — keep existing .category-grid */

/* ----- Subhero v2 (category page banner) — compact 160px strip ----- */
.subhero.v2 {
    min-height: 160px;
    align-items: center;
}
.subhero.v2 .hero-inner { padding: 16px 0; }
.subhero.v2 .lead { display: none; }
.subhero.v2 .hero-actions { display: none; }

/* ----- Responsive overrides for v2 ----- */
@media (max-width: 940px) {
    .credentials { padding: 50px 0; }
    .credentials .inner { grid-template-columns: 1fr; gap: 32px; }
    .credentials .portrait { aspect-ratio: 5 / 4; max-width: 420px; margin: 0 auto; }
    .tier-grid { grid-template-columns: 1fr 1fr; }
    .mission { padding: 48px 0; }
    .spotlight { padding: 56px 0; }
    .marquee-track span { font-size: 1.1rem; gap: 36px; }
    .marquee-track { gap: 36px; padding-left: 36px; }
    .hero.v2 { min-height: 120px; }
    .hero.v2 .hero-inner { padding: 12px 0; }
    .hero.v2 h1 { font-size: clamp(1.2rem, 4vw, 1.7rem); }
    .hero.v2 .hero-eyebrow { margin-bottom: 6px; }
    .subhero.v2 { min-height: 120px; }
    .subhero.v2 .hero-inner { padding: 10px 0; }
}
@media (max-width: 600px) {
    .tier-grid { grid-template-columns: 1fr; }
    .credentials .stats { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .credentials .stat .num { font-size: 1.8rem; }
}

/* ----- Responsive ----- */
@media (max-width: 940px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: block; }
    .site-header.menu-open .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 20px 28px 30px;
        box-shadow: var(--shadow-md);
    }
    .site-header.menu-open .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
    .site-header.menu-open .nav-cta {
        display: inline-block;
        margin: 14px 28px 28px;
        text-align: center;
    }
    .split { grid-template-columns: 1fr; gap: 40px; }
    .split.reverse .split-text { order: 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    section { padding: 44px 0; }
    .hero { min-height: 120px; }
    .subhero { min-height: 120px; }
    .hero-inner { padding: 14px 0 12px; }
    .subhero .hero-inner { padding-top: 12px; padding-bottom: 10px; }
    .hero h1 { font-size: clamp(1.2rem, 4.5vw, 1.7rem); margin-bottom: 4px; }
    .hero-eyebrow { margin-bottom: 8px; padding: 3px 9px; font-size: 10px; }
    .form-card { padding: 32px 24px; }
}
@media (max-width: 560px) {
    .utility-bar .locations { gap: 12px; }
    .utility-bar .locations a { font-size: 12px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .pelican-form .row-2 { grid-template-columns: 1fr; }
    .brand .brand-logo { height: 64px; } /* slightly smaller logo on phones so the hamburger has room */
    .container { padding: 0 20px; }
}
