/**
 * D20 Starter Theme
 *
 * Fonts
 * Tokens
 * Base Components
 */

/* =================================================================
   FONTS
   ================================================================= */

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Protest Strike';
    src: url('../fonts/ProtestStrike-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


/* =================================================================
   TOKENS
   ================================================================= */

:root {
    /* Primary (green) */
    --primary-50:  #e5fff1;
    --primary-100: #b3ffd4;
    --primary-200: #80ffb8;
    --primary-300: #4dff9c;
    --primary-400: #00e666;
    --primary-500: #00a94b;
    --primary-600: #019743;
    --primary-700: #008039;
    --primary-800: #004d22;
    --primary-900: #001a0b;

    /* Secondary (gold) */
    --secondary-50:  #fffbe5;
    --secondary-100: #fff2b3;
    --secondary-200: #ffea80;
    --secondary-300: #ffe14d;
    --secondary-400: #fad000;
    --secondary-500: #e8c100;
    --secondary-600: #b39500;
    --secondary-700: #806a00;
    --secondary-800: #4d4000;
    --secondary-900: #1a1500;

    /* Functional aliases. all existing var(--color-brand*) usage continues to work */
    --color-brand:       var(--primary-500);
    --color-brand-dark:  var(--secondary-500);
    --color-brand-light: var(--primary-50);

    --color-neutral-50: #fafafa;
    --color-neutral-100: #f5f5f5;
    --color-neutral-200: #e5e5e5;
    --color-neutral-300: #d4d4d4;
    --color-neutral-400: #a3a3a3;
    --color-neutral-500: #737373;
    --color-neutral-600: #525252;
    --color-neutral-700: #404040;
    --color-neutral-800: #262626;
    --color-neutral-900: #171717;

    /* Typography */
    --font-sans: 'Manrope', system-ui, -apple-system, sans-serif;
    --font-heading: 'Protest Strike', system-ui, -apple-system, sans-serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1.25rem;
    --text-lg: 1.5rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.75rem;
    --text-4xl: 2.75rem;
    --text-5xl: 3.375rem;

    --leading-tight: 1.2;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
     --space-3xl: clamp(3rem, 12.5vw, 12.5rem);

    /* Layout */
    --container-max: 1600px;
    --gutter: clamp(1.25rem, 5vw, 2rem);

    /* Misc */
    --radius: 0.5rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.875rem;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --transition: 200ms ease;
}

@media (max-width: 1081px) {
    :root {
        --text-2xl: 1.5rem;
        --text-3xl: 1.75rem;
        --text-4xl: 2.25rem;
        --text-5xl: 2.75rem;
    }
}

@media (max-width: 767px) {
    :root {
        --text-base: 1.125rem;
        --text-lg: 1.25rem;
        --text-2xl: 1.25rem;
        --text-3xl: 1.5rem;
        --text-4xl: 1.75rem;
        --text-5xl: 2rem;
    }
}


/* =================================================================
   BASE
   ================================================================= */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--color-neutral-900);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

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

/* Animate on scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =================================================================
   DECORATIVE ELEMENTS (desktop 1500px+ only, JS-injected)
   ================================================================= */

#deco-layer {
    display: none;
}

.deco-element {
    position: fixed;
    pointer-events: none;
    height: auto;
    display: block;
    z-index: 0;
    /* left/right transition: slide-in reveal (fires once on scroll trigger)  */
    /* transform transition: reveal rotation + hover tilt*/
    transition: left 0.6s ease-out, right 0.6s ease-out, transform 0.6s ease-out;
    will-change: left, right, transform;
}

#deco-yellow-towel,
#deco-blue-towel{
    z-index:1;
}

.home #main-content > section{
    position:relative;
    z-index:1;
    background:none;
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .deco-element {
        transition: none;
    }
}

@media (max-width: 1499px) {
    .deco-element{
        display:none!important;
    }
}

/* Background image utility for components */
[class*="--bg-image"] {
    position: relative;
    background: var(--color-neutral-900) center/cover no-repeat;
    color: #fff;
}
[class*="--bg-image"] .eyebrow { color: var(--color-brand-light); }
[class*="--bg-image"] > .container,
[class*="--bg-image"] > [class*="__inner"] { position: relative; z-index: 1; }
[class*="__overlay"] { position: absolute; inset: 0; }

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 var(--space-lg);
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: var(--leading-tight);
}

h1{
    font-size:var(--text-5xl);
}

h2 {
    font-size:var(--text-4xl);
}

h3 {
    font-size:var(--text-3xl);
}

h4 {
    font-size:var(--text-2xl);
}

p { margin: 0 0 var(--space-lg); }
p:last-child { margin-bottom: 0; }

a { color: var(--color-brand); }


/* =================================================================
   ACCESSIBILITY
   ================================================================= */

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: var(--space-sm);
    background: var(--color-brand);
    color: #fff;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    z-index: 9999;
}
.skip-link:focus {
    left: var(--space-sm);
    outline: 2px solid var(--color-brand-dark);
    outline-offset: 2px;
}

/* Screen reader only (visually hidden) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus visible states */
:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: 2px;
}
:focus:not(:focus-visible) {
    outline: none;
}

/* Focus on dark backgrounds */
[class*="--bg-dark"] :focus-visible,
[class*="--bg-brand"] :focus-visible,
[class*="--bg-image"] :focus-visible,
.site-footer :focus-visible {
    outline-color: #fff;
}

/* Minimum tap target size */
button,
.btn,
input[type="submit"],
input[type="button"],
a.btn {
    min-height: 44px;
}

/* Text overflow handling */
h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

/* Prevent iOS text resize issues */
html {
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

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

    /* Keep elements visible without animation */
    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Color tokens for accessible text */
:root {
    --color-text: var(--color-neutral-800);
    --color-text-muted: var(--color-neutral-600); /* 7.4:1 contrast on white */
}


/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.container--narrow { max-width: 960px; }
.container--wide { max-width: 1400px; }

/* Prose (WYSIWYG content) */
.prose h2 { font-size: var(--text-2xl); margin-top: var(--space-xl); }
.prose h3 { font-size: var(--text-xl); margin-top: var(--space-lg); }
.prose ul, .prose ol { padding-left: var(--space-lg); }
.prose li { margin-bottom: var(--space-xs); }
.prose a { color: var(--color-brand); text-decoration: underline; }

/* Eyebrow / Subhead */
.eyebrow {
    margin-bottom: var(--space-sm);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-brand);
}
.subhead {
    font-size: var(--text-lg);
    color: var(--color-neutral-600);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: clamp(20px, 1.5vw, 20px) clamp(30px, 3vw, 50px);
    font-family: var(--font-heading);
    font-size:20px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    border-radius: 35px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
}
.btn--primary {
    background: var(--color-brand);
    color: #fff;
    border-color: var(--color-brand);
}
.btn--primary:focus,
.btn--primary:hover {
    background: var(--color-brand-dark);
    border-color: var(--color-brand-dark);
}
.gform_button {
    display: inline-flex!important;
    align-items: center!important;
    justify-content: center!important;
    gap: var(--space-xs)!important;
    padding: clamp(20px, 1.5vw, 20px) clamp(30px, 3vw, 50px)!important;
    font-family: var(--font-heading)!important;
    font-size:20px!important;
    font-weight: 400!important;
    line-height: 1!important;
    text-transform: uppercase!important;
    white-space: nowrap!important;
    text-decoration: none!important;
    border-radius: 35px!important;
    border: 2px solid transparent!important;
    cursor: pointer!important;
    transition: all var(--transition)!important;
    background: var(--color-brand)!important;
    color: #fff;
    border-color: var(--color-brand)!important;
}
.gform_button:focus,
.gform_button:hover {
    background: var(--color-brand-dark)!important;
    border-color: var(--color-brand-dark)!important;
}
.btn--secondary {
    background: var(--secondary-500);
    color: var(--color-neutral-900);
    border-color: var(--secondary-500);
}
.btn--secondary:focus,
.btn--secondary:hover {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color:#fff;
}
.btn--white {
    background: #fff;
    color: var(--color-brand);
    border-color: #fff;
}
.btn--white:hover {
    background: var(--color-neutral-100);
}
.btn--outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.btn--outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 600;
    color: var(--color-brand);
    text-decoration: none;
}
.link-arrow svg { width: 1em; height: 1em; transition: transform var(--transition); }
.link-arrow:hover svg { transform: translateX(4px); }

/* Icons */
svg { width: 24px; height: 24px; flex-shrink: 0; }


/* =================================================================
   HEADER
   ================================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--color-neutral-200);
    box-shadow: none;
    transition: box-shadow 300ms ease;
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height 300ms ease;
}
.site-header__logo img {
    height: 60px;
    width: auto;
    transition: height 300ms ease;
}

/* Scrolled state */
body.scrolled .site-header {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}
body.scrolled .site-header__inner {
    height: 80px;
}
body.scrolled .site-header__logo img {
    height: 44px;
}
.site-header__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    background: none;
    border: none;
    cursor: pointer;
}
.site-header__toggle span,
.site-header__toggle::before,
.site-header__toggle::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-500);
    transition: var(--transition);
}

.site-header__toggle[aria-expanded="true"] {
    top: 2rem;
    right: 2rem;
    padding-right:0;
    z-index: 999;
    position:fixed;
}

.site-header__toggle[aria-expanded="true"] span {
    opacity: 0;
    transform: scaleX(0);
}

.site-header__toggle[aria-expanded="true"]::before,
.site-header__toggle[aria-expanded="true"]::after{
    width:32px;
    background-color:var(--primary-500);
}

.site-header__toggle[aria-expanded="true"]::before {
    transform: translateY(7px) rotate(45deg);
}

.site-header__toggle[aria-expanded="true"]::after {
    transform: translateY(-7px) rotate(-45deg);
}

.site-nav__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--space-lg);
}
.site-nav__menu a {
    font-weight: 500;
    text-decoration: none;
    color: var(--color-neutral-700);
}
.site-nav__menu a:hover { color: var(--color-brand); }

/* Parent menu items with children */
.site-nav__menu > .menu-item-has-children {
    position: relative;
}
.site-nav__menu > .menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}
.site-nav__menu > .menu-item-has-children > a::after {
    content: '';
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    padding: 2.75px;
    transform: rotate(45deg);
    margin-top: -4px;
    margin-left:2px;
    transition: transform var(--transition);
}

/* Desktop dropdown */
@media (min-width: 769px) {
    .site-nav__menu .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 240px;
        list-style: none;
        margin: 0;
        padding: var(--space-sm) 0;
        background: #fff;
        border: 1px solid var(--color-neutral-200);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    }
    .site-nav__menu > .menu-item-has-children:hover > .sub-menu,
    .site-nav__menu > .menu-item-has-children:focus-within > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .site-nav__menu > .menu-item-has-children:hover > a::after {
        transform: rotate(-135deg);
        margin-top: 2px;
    }
    .site-nav__menu .sub-menu a {
        display: block;
        padding: var(--space-sm) var(--space-md);
        font-weight: 700;
        font-family:var(--font-sans);
        text-transform:none;
        font-size:1.125rem;
    }
    .site-nav__menu .sub-menu a:hover {
        background: var(--color-neutral-50);
    }
}

@media (max-width: 768px) {
    .site-nav {
        position: fixed;
        top: 72px;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        padding: var(--space-lg) 5%;
        padding-top: 5rem;
        transform: translateX(100%);
        transition: transform var(--transition);
        overflow-y: auto;
    }
    .site-nav.is-open { transform: translateX(0); }
    body.nav-open { overflow: hidden; }
    .site-nav__menu { flex-direction: column; gap: 0; }
    .site-nav__menu > li {
        display:flex;
        border-bottom: 1px solid var(--color-secondary-500);
        /* flex-direction:column; */
        /* align-items:flex-start!important; */
    }
    .site-nav__menu > .menu-item-has-children > a,
    .site-nav__menu > li > a { 
        display: block; 
        padding: 1.5rem 0 1rem 0; 
    }
    /* Row layout so the toggle button sits beside the link */
    .site-nav__menu > .menu-item-has-children {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content:flex-start;
    }
    .site-nav__menu > .menu-item-has-children > a {
        flex: 1;
        flex-basis: auto;
        min-width: 0;
        /* display: block; */
    }
    /* Sub-menu spans full width on its own row */
    .site-nav__menu > .menu-item-has-children > .sub-menu {
        flex-basis: 100%;
    }
    /* Hide the pseudo-element arrow ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â the button replaces it */
    .site-nav__menu > .menu-item-has-children > a::after {
        display: none;
    }
    /* Toggle button arrow */
    .submenu-toggle {
        background: none;
        border: none;
        padding: 1rem;
        cursor: pointer;
        color: inherit;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .submenu-toggle::before {
        content: '';
        border: solid #000;
        border-width: 0 2px 2px 0;
        padding: 8px;
        transform: rotate(45deg);
        margin-top: -6px;
        transition: all var(--transition);
        display: block;
    }
    .site-nav__menu > .menu-item-has-children.is-open > .submenu-toggle::before {
        transform: rotate(-135deg);
        border-color: #000;
        margin-top: 2px;
    }
    .site-nav__menu .sub-menu {
        list-style: none;
        margin: 0;
        padding: 0 0 var(--space-sm) var(--space-md);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: all var(--transition);
        width:100%; 
    }
    .site-nav__menu > .menu-item-has-children.is-open > .sub-menu {
        max-height: 500px;
        /* overflow-y: scroll; */
        padding-bottom:var(--space-sm);
    }
    .site-nav__menu .sub-menu li {

    }
    .site-nav__menu .sub-menu a {
        display: block;
        padding: .875rem 0;
        font-weight: 600;
        /* color: #fff; */
        font-size:1rem;
    }
}
@media (min-width: 769px) {
    .site-header__toggle { display: none; }

    /* Fluid height: 80px at 769px at 105px at ~1440px (1500px+ handled below) */
    .site-header__inner {
        height: clamp(101px, 6.5vw, 105px);
    }
    
    .site-header__logo img {
        height: 80px
    }

    .site-nav {
        display: flex;
        align-items: center;
    }

    /* Fluid gap: 20px at 769px at 48px at 1440px+ */
    .site-nav__menu {
        gap: clamp(20px, 3vw, 48px);
    }


    .site-nav__menu a,
    header .btn{
        font-size: clamp(14px, 1.4vw, 20px);
    }
    .site-nav__menu a {
        font-family: var(--font-heading);
        font-weight: 400;
        color: #1a1500;
        text-transform: uppercase;
        line-height: 1;
        white-space: nowrap;
        display:flex;
        align-items:center;
    }

    .site-nav__menu > li > a{
        padding:1rem 0;
    }

    .site-nav__menu a:hover {
        color: var(--color-brand);
    }

    .site-nav__actions {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }


}

@media (min-width: 1500px) {
    .site-header__inner {
        height: 177px;
    }
    .site-header__logo img {
        height: 122px;
    }
}

@media (min-width:871px) and (max-width:960px) {
    .site-header__logo img {
        height: 60px
    }
}

@media (min-width:769px) and (max-width:870px) {
    .site-header__logo img {
        height: 50px
    }

    header .btn{
        padding-left:1.125rem!important;
        padding-right:1.125rem!important;
    }
}

@media (min-width:769px) and (max-width:800px) {
    .site-nav__menu{
        gap:1rem;
    }

    .site-nav__actions{
        padding-left:1rem!important;
    }
}

/* Header actions (phone + CTA) */
.site-nav__actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    /* padding-top: var(--space-md); */
    /* border-top: 1px solid var(--color-neutral-100); */
}
.site-nav__phone {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 500;
    color: var(--color-neutral-700);
    text-decoration: none;
}
.site-nav__phone svg { width: 18px; height: 18px; }
.site-nav__phone:hover { color: var(--color-brand); }

@media (min-width: 769px) {
    .site-nav__actions {
        margin-top: 0;
        /* margin-left: var(--space-lg); */
        padding-top: 0;
        padding-left:  clamp(20px, 3vw, 48px);;
        border-top: none;
        /* border-left: 1px solid var(--color-neutral-200); */
    }
}

@media (min-width: 769px) and (max-width:1100px) {
    .menu-item-home{
        display:none;
    }
}

@media (max-width: 768px) {
    .site-nav__phone span { display: none; }
    .site-nav__phone svg { width: 24px; height: 24px; }
}

/* Small button variant */
.btn--sm {
    padding: var(--space-xs) var(--space-md);
    height: auto;
    font-size: var(--text-sm);
    border-radius: var(--radius);
}

@media (min-width: 769px) {
    .site-nav__menu > li.mobile-show, button.submenu-toggle {
        display: none !important;
    }
}


/* =================================================================
   FOOTER
   ================================================================= */

.site-footer {
    background: var(--color-neutral-900);
    color: #fff;
    padding: clamp(48px, 6vw, 80px) 0 0;
}

/* ---- Main flex row ---- */
.site-footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: var(--space-2xl);
    padding-bottom: clamp(48px, 6vw, 80px);
}
@media (min-width: 1082px) {
    .site-footer__inner { flex-wrap: nowrap; gap: clamp(32px, 7vw, var(--space-3xl)); }
    .site-footer__brand  { flex: 0 0 340px; }
    .site-footer__contact { flex: 0 0 auto; }
    .site-footer__nav    { flex: 1 1 auto; }
}

/* ---- Logo ---- */
.site-footer__logo img { width: 148px; height: auto; }
@media (min-width: 960px) { .site-footer__logo img { width: 340px; } }

/* ---- Shared column heading style ---- */
.site-footer__col-heading {
    font-family: var(--font-heading);
    font-size: clamp(22px, 2vw, 28px);
    color: var(--primary-500);
    line-height: 1.5;
    margin: 0 0 var(--space-md);
}

.site-footer__col-heading a{
    transition:all var(--transition);
    text-decoration:none;
}

/* ---- Contact column ---- */
.site-footer__contact-item { margin-bottom: var(--space-md); }
.site-footer__contact-label {
    display: block;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
}
.site-footer__contact-item a {
    display: block;
    font-size: clamp(18px, 1.5vw, 24px);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #fff;
    text-decoration: none;
    transition: color var(--transition);
}
.site-footer__contact-item a:hover { color: var(--secondary-500); }

/* ---- Social icons ---- */
.site-footer__social { 
    display: flex; 
    gap: 24px; 
    align-items: center; 
    margin-top: var(--space-xl); 
}
.site-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: color var(--transition), opacity var(--transition);
}
.site-footer__social a:hover,
.site-footer__social a:focus{
    opacity:0.6;
}
.site-footer__social svg { width: 40px; height: 40px; }

/* ---- Footer nav: top-level items as a flex row of columns ---- */
.site-footer__menu {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: var(--space-2xl);
    list-style: none;
    margin: 0;
    padding: 0;
}
@media (min-width: 960px) {
    .site-footer__menu { 
        gap: clamp(32px, 4vw, 72px); 
        gap:0;
        flex-wrap: nowrap; 
    }
}

/* Each top-level item is a flex column */
.site-footer__menu > li {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

/* Column headings (top-level links) */
.site-footer__menu .sub-menu li.parent-style a,
.site-footer__menu > li > a {
    font-family: var(--font-heading);
    font-size: clamp(22px, 2vw, 28px);
    color: var(--primary-500);
    text-decoration: none;
    line-height: 1.5;
    white-space: nowrap;
    transition: color var(--transition);
    font-weight:400;
}

.site-footer__menu .sub-menu li.parent-style{
    flex-basis:100%;
    padding-right:0;
}

.site-footer p a:hover,
.site-footer__menu > li > a:hover { color: var(--secondary-500); }

/* Sub-menu: 2-col grid, filling column-first to match Figma pairing */
.site-footer__menu .sub-menu {
    display:flex;
    flex-wrap:wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap:1rem;
    column-gap:0;
}

.site-footer__menu .sub-menu li{
    list-style-type:none;
    flex-basis:50%;
    padding-right:1rem;
}

.site-footer__menu .sub-menu a {
    font-weight: 800;
    font-size: clamp(16px, 1.2vw, 20px);
    line-height: 1.5;
    color: #fff;
    text-decoration: none;
    transition: color var(--transition);
    white-space: nowrap;
}
.site-footer__menu .sub-menu a:hover { 
    color: var(--secondary-500); 
}

/* ---- Responsive ---- */

/* Tablet (600px-959px): nav is first to go, brand + contact stay side by side */
@media (max-width: 1081px) {
    .site-footer__nav { display: none; }

    .site-footer__brand,
    .site-footer__contact{
        flex-basis:100%;
        text-align:center;
    }

    .site-footer__logo img{
        margin-left:auto;
        margin-right:auto;
        width:300px;
        max-width:90%;
    }

    .site-footer__social{
        justify-content:center;
    }

    .c-form-section .site-footer__social{
        justify-content:flex-start;
    }
}
@media (min-width: 600px) and (max-width: 959px) {

}


/* ---- Bottom bar ---- */
.site-footer__bottom-wrap{
    background: rgba(0, 0, 0, 0.4);
}
.site-footer__bottom {
    padding: var(--space-xl) 0;
    font-size: var(--text-sm);
    font-size: .75rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm) var(--space-lg);
    max-width:90vw;
    max-widht:90svw;
}

.site-footer__bottom-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-xs) var(--space-lg);
}

.site-footer__copyright { margin: 0; color: var(--color-neutral-400);  }

.site-footer__bottom-nav { display: flex; align-items: center; }

.site-footer__bottom-menu {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
    margin: 0;
    padding: 0; 
}

.site-footer__bottom-menu a {
    text-decoration: none;
    transition: color var(--transition);
    color: var(--color-neutral-400); 
}

.site-footer__bottom-menu a:hover,
.site-footer__bottom-menu a:focus { color: var(--color-neutral-100); }

.site-footer__credits { 
    margin: 0; 
    color:var(--color-neutral-400); 
}

.site-footer__credits a {
    color: var(--color-neutral-400);
    text-decoration: none;
    transition: color var(--transition);
}

.site-footer__credits a:hover,
.site-footer__credits a:focus { color: var(--color-brand-light); }


/* =================================================================
   COMPONENTS
   ================================================================= */

/* Adjacent same-background components: collapse top padding */
[class*="--bg-white"] + [class*="--bg-white"],
[class*="--bg-light"] + [class*="--bg-light"],
[class*="--bg-dark"] + [class*="--bg-dark"],
[class*="--bg-brand"] + [class*="--bg-brand"] {
    padding-top: 0;
}

@media (min-width:768px){
    [class*="--bg-white"]:last-of-type,
    [class*="--bg-white"]:last-child{
        padding-bottom:0;
    }
}

/* ----------------------- UNDER CONSTRUCTION ----------------------- */

.c-under-construction {
    padding: var(--space-3xl) 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: var(--color-neutral-50);
}
.c-under-construction h1 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
    color: var(--color-neutral-700);
}
.c-under-construction p {
    color: var(--color-neutral-500);
    font-size: var(--text-lg);
}

/* ----------------------- HERO ----------------------- */

.c-hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: var(--space-2xl) 0;
    background: var(--color-neutral-900) center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}
.c-hero--h-full { min-height: 100vh; }
.c-hero--h-large { min-height: 640px; }
.c-hero--h-medium { min-height: 60vh; }
.c-hero--h-small { min-height: 40vh; }

.c-hero__overlay {
    position: absolute;
    inset: 0;
    background: #000;
}
.c-hero__inner {
    position: relative;
    z-index: 1;
}

/* Content: flex column with design-spec gap */
.c-hero__content {
    max-width: 731px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.c-hero--center { text-align: center; }
.c-hero--center .c-hero__inner { display: flex; flex-direction: column; align-items: center; }
.c-hero--center .c-hero__content { margin: 0 auto; align-items: center; }

.c-hero__eyebrow { opacity: 0.8; color: inherit; }

/* Headline: Protest Strike, fluid 32px-54px */
.c-hero__headline {
    font-family: var(--font-heading);
    /* font-size: clamp(2rem, 3.75vw, 54px); */
    line-height: 1.1;
    font-weight: 400;
    margin: 0;
}

/* Body copy */
.c-hero__subhead {
    /* font-size: var(--text-xl); */
    line-height: 1.5;
    opacity: 1;
    margin: 0;
    max-width: 640px;
}

/* Bold "Serving..." line - rendered as <strong> inside subhead */
.c-hero__subhead strong {
    display: block;
    font-weight: 800;
}

.c-hero__buttons { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin: 0; }
.c-hero--center .c-hero__buttons { justify-content: center; }


.c-hero--has-bg .c-hero__buttons .btn--white {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #fff;
}
.c-hero--has-bg .c-hero__buttons .btn--white:hover {
    background: var(--color-brand-dark);
    border-color: var(--color-brand-dark);
}

/* Split layout */
.c-hero--split { background: var(--color-neutral-900); }
.c-hero--split .c-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    max-width: none;
}
.c-hero--split .c-hero__content { max-width: none; }
.c-hero--split .c-hero__media { order: 1; }
.c-hero--split-left .c-hero__media { order: -1; }
.c-hero--split .c-hero__image {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

@media (max-width: 768px) {
    .c-hero--split .c-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .c-hero--split .c-hero__media { order: -1; }
    .c-hero--split .c-hero__buttons { justify-content: center; }
}

/* Minimal layout */
.c-hero--minimal {
    background: #fff;
    color: var(--color-neutral-900);
    min-height: auto;
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--color-neutral-200);
}
.c-hero--minimal .c-hero__headline {
    font-size: var(--text-3xl);
    margin-bottom: 0;
}

/* Parallax */
.c-hero__parallax {
    position: absolute;
    inset: -20%;
    background: center/cover no-repeat;
    will-change: transform;
}
.c-hero--parallax {
    background: transparent;
}

@media (max-width: 768px) {
    .c-hero { padding: var(--space-3xl) 0; }
    .c-hero--h-large { min-height: 0; }
    .c-hero__content { gap: var(--space-lg); }
    .c-hero__headline {/* font-size: var(--text-3xl); */}
    .c-hero__subhead { max-width: none; }
    .c-hero--minimal .c-hero__headline { font-size: var(--text-2xl); }
}

.c-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Breadcrumbs */
.breadcrumbs { margin-bottom: var(--space-sm); }
.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-xs);
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: var(--text-sm);
}
.breadcrumbs__item { display: flex; align-items: center; gap: var(--space-xs); }
.breadcrumbs__link { color: var(--color-neutral-500); text-decoration: none; }
.breadcrumbs__link:hover { color: var(--color-brand); }
.breadcrumbs__sep { color: var(--color-neutral-300); }
.breadcrumbs__current { color: var(--color-neutral-700); }


/* ----------------------- CONTENT + MEDIA ----------------------- */

.c-content-media { padding: var(--space-3xl) 0; }
@media (min-width:768px){
    .c-content-media.c-content-media--bg-white:last-child{
        padding-bottom:0;
    }
}
.c-content-media__inner {
    display: grid;
    gap: var(--space-2xl);
    align-items: stretch;
}

@media (min-width: 768px) {
    .c-content-media__inner { grid-template-columns: 3fr 2fr; }
    .c-content-media--left .c-content-media__inner { grid-template-columns: 2fr 3fr; }
    .c-content-media--left .c-content-media__media { order: -1; }

}

.c-content-media__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.c-content-media__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.c-content-media__media {
    overflow: hidden;
}

.c-content-media__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

img.c-content-media__image,
.c-content-media__image img{
    border-radius: var(--radius-xl);
}

.c-content-media__video {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.c-content-media__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

.c-content-media--bg-white { background: #fff; }
.c-content-media--bg-light { background: var(--color-neutral-50); }
.c-content-media--bg-dark { background: var(--color-neutral-900); color: #fff; }
.c-content-media--bg-dark .eyebrow { color: var(--color-brand-light); }

@media (max-width: 767px) {    
    .c-content-media{
        /* padding:var(--space-xl) 0; */
    }

    .c-content-media__media{
        order:1;
    }

    .c-content-media__content{
        order:2;
    }
}

@media (max-width: 640px) {
    .c-content-media__content{
        order:2;
    }

    .c-content-media__inner{
        gap:28px;
    }
}

/* ----------------------- CARDS ----------------------- */

.c-cards { padding: var(--space-3xl) 0; }
.c-cards__header {max-width: 700px;/* margin: 0 0 var(--space-2xl); */}
.c-cards__grid { display: grid; gap: 28px; }

@media (min-width: 640px) {
    .c-cards--cols-2 .c-cards__grid,
    .c-cards--cols-3 .c-cards__grid,
    .c-cards--cols-4 .c-cards__grid { grid-template-columns: repeat(2, 1fr); }

}
@media (min-width: 960px) {
    .c-cards--cols-3 .c-cards__grid { grid-template-columns: repeat(3, 1fr); }
    .c-cards--cols-4 .c-cards__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 639px) {
    .c-card__content{
        gap:1rem!important;
    }

    .c-cards__grid{
        gap:var(--space-2xl);
    }

    .c-cards__header{
        margin-bottom:0;
    }
}

/* ---- Base card (default style: no background, open layout) ---- */
.c-card {
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-decoration: none;
    color: inherit;
}

/* ---- Image ---- */
.c-card__image {
    margin: 0;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.c-card__image img {
    aspect-ratio: 379 / 350;
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
    transition: transform var(--transition);
}
a.c-card:hover .c-card__image img { transform: scale(1.03); }

/* + icon: shown on linked cards, bottom-right of image */
a.c-card .c-card__image::after {
    content: '+';
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-500);
    font-size: 40px;
    font-weight:200;
    line-height: 60px;
    text-align: center;
    pointer-events: none;
    transition: background var(--transition), color var(--transition);
}
a.c-card:hover .c-card__image::after {
    background: var(--primary-500);
    color: #fff;
}

/* ---- Content ---- */
.c-card__content {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.c-card__title {
    font-family: var(--font-heading);
    /* font-size: clamp(22px, 2vw, 28px); */
    color: var(--secondary-900, #1a1500);
    line-height: 1.5;
    margin: 0;
}
.c-card__desc {
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.5;
    color: var(--color-neutral-800);
    margin: 0;
}

/* ---- Card Style: Horizontal ---- */
.c-cards--style-horizontal .c-card {
    flex-direction: row;
    gap: 0;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
a.c-cards--style-horizontal a.c-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.c-cards--style-horizontal .c-card__image { flex: 0 0 40%; max-width: 40%; border-radius: 0; overflow: visible; }
.c-cards--style-horizontal .c-card__image img { aspect-ratio: 1/1; height: 100%; }
.c-cards--style-horizontal .c-card__image::after { display: none; }
.c-cards--style-horizontal .c-card__content { padding: var(--space-lg); justify-content: center; }
@media (max-width: 639px) {
    .c-cards--style-horizontal .c-card { flex-direction: column; }
    .c-cards--style-horizontal .c-card__image { flex: none; max-width: 100%; }
    .c-cards--style-horizontal .c-card__image img { aspect-ratio: 16/9; height: auto; }
}

/* ---- Card Style: Overlay ---- */
.c-cards--style-overlay .c-card {
    gap: 0;
    position: relative;
    min-height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.c-cards--style-overlay .c-card__image { position: absolute; inset: 0; border-radius: 0; overflow: visible; }
.c-cards--style-overlay .c-card__image img { aspect-ratio: auto; height: 100%; transition: transform var(--transition); }
/* Overlay gradient via the card itself, not ::after (avoids conflict with + icon) */
.c-cards--style-overlay .c-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}
.c-cards--style-overlay a.c-card .c-card__image::after { display: none; }
.c-cards--style-overlay .c-card__content { position: relative; z-index: 1; padding: var(--space-lg); justify-content: flex-end; color: #fff; }
.c-cards--style-overlay .c-card__desc { color: var(--color-neutral-200); }
.c-cards--style-overlay a.c-card:hover .c-card__image img { transform: scale(1.05); }

/* ---- Card Style: Minimal ---- */
.c-cards--style-minimal .c-card {
    flex-direction: row;
    gap: 0;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: none;
    border: 1px solid var(--color-neutral-200);
    transition: border-color var(--transition);
}
.c-cards--style-minimal .c-card__image {
    order: 2;
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    margin: var(--space-lg);
    margin-left: 0;
    border-radius: 50%;
    overflow: hidden;
}
.c-cards--style-minimal .c-card__image::after { display: none; }
.c-cards--style-minimal .c-card__image img { aspect-ratio: 1/1; height: 100%; width: 100%; }
.c-cards--style-minimal .c-card__content { padding: var(--space-xl); flex: 1; gap: var(--space-sm); }
a.c-cards--style-minimal .c-card:hover { transform: none; border-color: var(--color-brand); }

/* ---- Background variants ---- */
.c-cards--bg-white { background: #fff; }
.c-cards--bg-light { background: var(--color-neutral-50); }
.c-cards--bg-dark { background: var(--color-neutral-900); color: #fff; }
.c-cards--bg-dark .c-card { background: var(--color-neutral-800); border-radius: var(--radius-lg); overflow: hidden; gap: 0; }
.c-cards--bg-dark .c-card__content { padding: var(--space-lg); gap: var(--space-sm); }
.c-cards--bg-dark .c-card__image { border-radius: 0; }
.c-cards--bg-dark .c-card__desc { color: var(--color-neutral-300); }
.c-cards--bg-dark.c-cards--style-minimal .c-card { border-color: var(--color-neutral-700); }
.c-cards--bg-dark.c-cards--style-minimal a.c-card:hover { border-color: var(--color-brand-light); }


/* ----------------------- CTA ----------------------- */

.c-cta { padding: 32rem 0; }
.c-cta__inner { display: flex; flex-direction: column; gap: var(--space-lg); }
.c-cta--center { text-align: center; }
.c-cta--center .c-cta__inner {
    align-items: center;
    width:90%;
    max-width: 740px;
    margin: 0 auto;
    padding:0;
}

@media (min-width: 768px) {
    .c-cta--split .c-cta__inner,
    .c-cta--has-form .c-cta__inner { flex-direction: row; justify-content: space-between; align-items: center; gap: var(--space-2xl); }
    .c-cta--split .c-cta__content,
    .c-cta--has-form .c-cta__content { flex: 1; }
    .c-cta--split .c-cta__form,
    .c-cta--has-form .c-cta__form { flex: 1; max-width: 500px; }
}

.c-cta__content h2 { 
    margin-bottom: var(--space-sm); 
    font-size:var(--text-5xl);
    text-shadow:1px 1px 0 rgba(0,0,0,0.25);
}
.c-cta__content p { 
    font-weight:700;
    text-shadow:1px 1px 0 rgba(0,0,0,0.25);
}
.c-cta__buttons { display: flex; flex-wrap: wrap; gap: var(--space-xl); }
.c-cta--center .c-cta__buttons { justify-content: center; }

.c-cta--center .c-cta__buttons .btn{
    width:348px;
}

.c-cta__form {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-xl);
    border-radius: var(--radius);
}

.c-cta--bg-light .c-cta__form {
    background: #fff;
    box-shadow: var(--shadow);
}

.c-cta__form .gform_wrapper { margin: 0; }
.c-cta__form .gfield { margin-bottom: var(--space-md); }
.c-cta__form input:not([type="submit"]),
.c-cta__form textarea,
.c-cta__form select {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    font-size: var(--text-base);
}

.c-cta--bg-light .c-cta__form input:not([type="submit"]),
.c-cta--bg-light .c-cta__form textarea,
.c-cta--bg-light .c-cta__form select {
    border-color: var(--color-neutral-300);
    background: #fff;
}

.c-cta__form .gform_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 0.75em 1.5em;
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    /* Default: white button for dark/brand backgrounds */
    background: #fff;
    color: var(--color-brand);
    border-color: #fff;
}

.c-cta__form .gform_button:hover {
    background: var(--color-neutral-100);
    border-color: var(--color-neutral-100);
}

/* Light background: use primary button style */
.c-cta--bg-light .c-cta__form .gform_button {
    background: var(--color-brand);
    color: #fff;
    border-color: var(--color-brand);
}

.c-cta--bg-light .c-cta__form .gform_button:hover {
    background: var(--color-brand-dark);
    border-color: var(--color-brand-dark);
}

.c-cta--bg-brand { background: var(--color-brand); color: #fff; }
.c-cta--bg-dark { background: var(--color-neutral-900); color: #fff; }
.c-cta--bg-light { background: var(--color-neutral-50); }

.c-cta--bg-image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}
.c-cta--bg-image .c-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    display:none;
}
.c-cta--bg-image .c-cta__inner { position: relative; z-index: 1; }

@media (max-width: 767px) {
    .c-cta--bg-image {padding: var(--space-2xl) 0;}
    .c-cta--bg-image .c-cta__overlay {display:block;}
    .c-cta--bg-image .c-cta__buttons { flex-direction: column; align-items: center; }
    .c-cta--bg-image .c-cta__buttons .btn { width: 100%; max-width: 360px; justify-content: center; }
}


/* ----------------------- TESTIMONIALS ----------------------- */

.c-testimonials { padding: var(--space-3xl) 0; }
.c-testimonials__header {/* text-align: center; *//* max-width: 700px; *//* margin: 0 auto var(--space-2xl); */ margin-bottom:var(--space-xl);}

.c-testimonial { text-align: center; max-width: 800px; margin: 0 auto; }
.c-testimonial__icon { width: 48px; height: 48px; margin: 0 auto var(--space-lg); color: var(--color-brand); opacity: 0.3; }
.c-testimonial__quote { font-size: var(--text-xl); font-style: italic; line-height: var(--leading-relaxed); margin-bottom: var(--space-lg); }
.c-testimonial--featured .c-testimonial__quote { font-size: var(--text-2xl); }
.c-testimonial__author { display: flex; align-items: center; justify-content: center; gap: var(--space-md); text-align: left; }
.c-testimonial__photo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.c-testimonial__author cite { display: block; font-style: normal; font-weight: 600; }
.c-testimonial__author span { font-size: var(--text-sm); color: var(--color-neutral-500); }

/* Slider nav */
.c-testimonials__nav { display: flex; align-items: center; justify-content: center; gap: var(--space-md); margin-top: var(--space-xl); }
.c-testimonials__prev,
.c-testimonials__next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid var(--color-neutral-300);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}
.c-testimonials__prev:hover,
.c-testimonials__next:hover { border-color: var(--color-neutral-500); }
.c-testimonials__prev svg,
.c-testimonials__next svg { width: 20px; height: 20px; }
.c-testimonials__dots { display: flex; gap: var(--space-xs); }
.c-testimonials__dot {
    width: 10px;
    height: 10px;
    background: var(--color-neutral-300);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}
.c-testimonials__dot:hover,
.c-testimonials__dot.is-active { background: var(--color-brand); }

/* Grid layout */
.c-testimonials--grid .c-testimonials__grid {
    display: grid;
    gap: var(--space-xl);
}
@media (min-width: 768px) {
    .c-testimonials--grid .c-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}
.c-testimonials--grid .c-testimonial {
    text-align: left;
    background: var(--color-brand-light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}
.c-testimonials--grid .c-testimonial__quote {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.02em;
    margin-left:0;
    margin-top:0;
    color: #000b1a;
    margin-bottom: var(--space-md);
}
.c-testimonials--grid .c-testimonial__quote::before { content: '\201C'; }
.c-testimonials--grid .c-testimonial__quote::after  { content: '\201D'; }
.c-testimonials--grid .c-testimonial__author { justify-content: flex-start; }
.c-testimonials--grid .c-testimonial__byline {
    font-size: var(--text-xl);
    font-weight: 800;
    font-style: normal;
    color: #000b1a;
}

.c-testimonials--bg-white { background: #fff; }
.c-testimonials--bg-light { background: var(--color-neutral-50); }
.c-testimonials--bg-dark { background: var(--color-neutral-900); color: #fff; }
.c-testimonials--bg-dark .c-testimonial__author span { color: var(--color-neutral-400); }

@media only screen and (min-width:768px) {
    .c-testimonials--bg-white:last-child{
        padding-bottom:0;
    }
}

@media screen and (max-width:650px){
    .c-testimonials--grid .c-testimonial{
        margin-right:0;
        padding:var(--space-lg);
    }

    .c-testimonials--grid .c-testimonial__quote{
        font-size:1.25rem;
    }
}

/* Single card in grid layout */
.c-testimonials--grid-single .c-testimonials__header { text-align: center; }
.c-testimonials--grid-single .c-testimonials__grid {
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
}


/* ----------------------- ACCORDION ----------------------- */

.c-accordion { padding: var(--space-3xl) 0; }
.c-accordion__header { text-align: center; margin-bottom: var(--space-2xl); }
.c-accordion__items { border-top: 1px solid var(--color-neutral-200); }
.c-accordion__item { border-bottom: 1px solid var(--color-neutral-200); }
.c-accordion__item h3 {margin: 0;font-size: var(--text-lg);}
.c-accordion__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    width: 100%;
    padding: var(--space-lg) 0;
    font: inherit;
    font-weight: 600;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
}
.c-accordion__trigger:hover { color: var(--color-brand); }
.c-accordion__icon { width: 20px; height: 20px; transition: transform var(--transition); }
.c-accordion__item.is-open .c-accordion__icon { transform: rotate(180deg); }
.c-accordion__content { padding-bottom: var(--space-lg); color: var(--color-neutral-600); }

.c-accordion--bg-white { background: #fff; }
.c-accordion--bg-light { background: var(--color-neutral-50); }


/* ----------------------- STATS ----------------------- */

.c-stats { padding: var(--space-3xl) 0; }
.c-stats__header { text-align: center; max-width: 700px; margin: 0 auto var(--space-2xl); }
.c-stats__grid { display: grid; gap: var(--space-xl); text-align: center; }
@media (min-width: 640px) {
    .c-stats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .c-stats__grid { grid-template-columns: repeat(4, 1fr); }
}
.c-stat__number { font-size: var(--text-4xl); font-weight: 700; color: var(--color-brand); line-height: 1; }
.c-stat__label { margin-top: var(--space-sm); font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-neutral-500); }

.c-stats--bg-white { background: #fff; }
.c-stats--bg-light { background: var(--color-neutral-50); }
.c-stats--bg-dark { background: var(--color-neutral-900); color: #fff; }
.c-stats--bg-dark .c-stat__number { color: var(--color-brand-light); }
.c-stats--bg-dark .c-stat__label { color: var(--color-neutral-400); }
.c-stats--bg-brand { background: var(--color-brand); color: #fff; }
.c-stats--bg-brand .c-stat__number { color: #fff; }
.c-stats--bg-brand .c-stat__label { color: rgba(255,255,255,0.8); }


/* ----------------------- LOGO GRID ----------------------- */

.c-logos { padding: var(--space-2xl) 0; }
.c-logos__header { text-align: center; margin-bottom: var(--space-xl); }
.c-logos__header h2 { font-size: var(--text-lg); font-weight: 500; }
.c-logos__grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: var(--space-lg) var(--space-xl); }
.c-logos__item { max-width: 140px; height: 48px; display: flex; align-items: center; }
.c-logos__item img { max-width: 100%; max-height: 100%; object-fit: contain; transition: filter var(--transition), opacity var(--transition); }
.c-logos--gray .c-logos__item img { filter: grayscale(100%); opacity: 0.6; }
.c-logos--gray .c-logos__item:hover img { filter: grayscale(0); opacity: 1; }

.c-logos--bg-white { background: #fff; }
.c-logos--bg-light { background: var(--color-neutral-50); }


/* ----------------------- FORM SECTION ----------------------- */

.c-form-section { padding: var(--space-3xl) 0; }
.c-form-section--center .c-form-section__inner { max-width: 600px; margin: 0 auto; }
.c-form-section--center .c-form-section__content { text-align: center; margin-bottom: var(--space-xl); }

@media (min-width: 768px) {
    .c-form-section--split .c-form-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); align-items: start; }
}

.c-form-section__form {
    background: var(--color-neutral-100);
    padding: var(--space-2xl);
    border-radius: var(--radius);
    /* box-shadow: var(--shadow); */
}

.c-form-section__form legend,
.c-form-section__form .gfield > .gform-field-label{
    font-family:var(--font-heading);
    font-size:var(--text-2xl);
}

.c-form-section__form .gform-field-label--type-sub,
.c-form-section__form .gfield_description {
    color:var(--color-neutral-900)!important;
}

.c-form-section--bg-white { background: #fff; }
.c-form-section--bg-light { background: var(--color-neutral-50); }
.c-form-section--bg-dark { background: var(--color-neutral-900); color: #fff; }
.c-form-section--bg-dark .eyebrow { color: var(--color-brand-light); }

.c-form-section__content .c-contact-info__items {
    margin-top: var(--space-xl);
}
.c-form-section__content .site-footer__social { margin-top: var(--space-xl); }
.c-form-section__content .site-footer__social a { color: var(--color-brand); }
.c-form-section__content .site-footer__social a:hover,
.c-form-section__content .site-footer__social a:focus { color: var(--primary-700); opacity: 1; }

.grecaptcha-badge{
	position:relative!important;
	bottom:auto!important;
	right:auto!important;
}

@media (max-width:767px) {
    .c-form-section__inner{
        display:flex;
        flex-direction:column;
        gap:var(--space-2xl)!important;
    }
}


/* ----------------------- TEXT BLOCK ----------------------- */

.c-text-block { padding: var(--space-3xl) 0; }

.c-text-block__inner {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    /* text-align: center; */
    gap: 28px;
}

.c-text-block h2 {
    /* font-family: var(--font-heading); */
    /* font-size: clamp(1.75rem, 3.1vw, 44px); */
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 400;
    color: #141516;
    margin: 0;
}

/* Body copy */
.c-text-block .prose {
    line-height: 1.5;
    color: #1a0900;
}

.c-text-block .prose p { margin: 0; }
.c-text-block .prose p + p { margin-top: 28px; }

.c-text-block--bg-white { background: #fff; }
.c-text-block--bg-light { background: var(--color-neutral-50); }

.c-color-coded-cards  + [class*="--bg-white"],
[class*="--bg-white"] + .c-color-coded-cards,
[class*="--bg-white"] + [class*="--bg-white"] {
    padding-top: 0;
}

@media (min-width:768px){
    .c-text-block h2,
    .c-text-block .prose{
        text-align:center;
    }
}


/* ----------------------- GALLERY ----------------------- */

.c-gallery { padding: var(--space-3xl) 0; }
.c-gallery__header { text-align: center; max-width: 700px; margin: 0 auto var(--space-2xl); }
.c-gallery__subhead { color: var(--color-neutral-600); margin-top: var(--space-sm); }

.c-gallery__grid {
    display: grid;
    gap: var(--space-md);
}
.c-gallery--cols-2 .c-gallery__grid { grid-template-columns: repeat(2, 1fr); }
.c-gallery--cols-3 .c-gallery__grid { grid-template-columns: repeat(2, 1fr); }
.c-gallery--cols-4 .c-gallery__grid { grid-template-columns: repeat(2, 1fr); }
.c-gallery--cols-5 .c-gallery__grid { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 640px) {
    .c-gallery--cols-3 .c-gallery__grid { grid-template-columns: repeat(3, 1fr); }
    .c-gallery--cols-4 .c-gallery__grid { grid-template-columns: repeat(3, 1fr); }
    .c-gallery--cols-5 .c-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .c-gallery--cols-4 .c-gallery__grid { grid-template-columns: repeat(4, 1fr); }
    .c-gallery--cols-5 .c-gallery__grid { grid-template-columns: repeat(5, 1fr); }
}

.c-gallery__item {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}
.c-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}
.c-gallery__item:hover img {
    transform: scale(1.05);
}

/* Aspect ratios */
.c-gallery--square .c-gallery__item { aspect-ratio: 1/1; }
.c-gallery--landscape .c-gallery__item { aspect-ratio: 4/3; }
.c-gallery--portrait .c-gallery__item { aspect-ratio: 3/4; }
.c-gallery--wide .c-gallery__item { aspect-ratio: 16/9; }

/* Masonry layout */
.c-gallery--masonry .c-gallery__grid {
    display: block;
    column-gap: var(--space-md);
}
.c-gallery--masonry.c-gallery--cols-2 .c-gallery__grid { column-count: 2; }
.c-gallery--masonry.c-gallery--cols-3 .c-gallery__grid { column-count: 2; }
.c-gallery--masonry.c-gallery--cols-4 .c-gallery__grid { column-count: 2; }
.c-gallery--masonry.c-gallery--cols-5 .c-gallery__grid { column-count: 2; }

@media (min-width: 768px) {
    .c-gallery--masonry.c-gallery--cols-3 .c-gallery__grid { column-count: 3; }
    .c-gallery--masonry.c-gallery--cols-4 .c-gallery__grid { column-count: 3; }
    .c-gallery--masonry.c-gallery--cols-5 .c-gallery__grid { column-count: 3; }
}
@media (min-width: 1024px) {
    .c-gallery--masonry.c-gallery--cols-4 .c-gallery__grid { column-count: 4; }
    .c-gallery--masonry.c-gallery--cols-5 .c-gallery__grid { column-count: 5; }
}

.c-gallery--masonry .c-gallery__item {
    break-inside: avoid;
    margin-bottom: var(--space-md);
    aspect-ratio: auto;
}
.c-gallery--masonry .c-gallery__item img {
    height: auto;
}

/* Carousel layout */
.c-gallery__carousel {
    position: relative;
}
.c-gallery__track {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: var(--space-sm);
}
.c-gallery__track::-webkit-scrollbar { display: none; }

.c-gallery__slide {
    flex: 0 0 auto;
    width: 300px;
    scroll-snap-align: start;
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
@media (min-width: 768px) {
    .c-gallery__slide { width: 400px; }
}
.c-gallery__slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition);
}
@media (min-width: 768px) {
    .c-gallery__slide img { height: 300px; }
}
.c-gallery__slide:hover img {
    transform: scale(1.05);
}

.c-gallery__prev,
.c-gallery__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: background var(--transition);
    z-index: 2;
}
.c-gallery__prev:hover,
.c-gallery__next:hover { background: var(--color-neutral-100); }
.c-gallery__prev { left: var(--space-sm); }
.c-gallery__next { right: var(--space-sm); }
.c-gallery__prev svg,
.c-gallery__next svg { width: 20px; height: 20px; }

/* Backgrounds */
.c-gallery--bg-white { background: #fff; }
.c-gallery--bg-light { background: var(--color-neutral-50); }
.c-gallery--bg-dark { background: var(--color-neutral-900); color: #fff; }
.c-gallery--bg-dark .eyebrow { color: var(--color-brand-light); }
.c-gallery--bg-dark .c-gallery__subhead { color: var(--color-neutral-400); }


/* ----------------------- LIGHTBOX ----------------------- */

.c-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.c-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}
.c-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
}
.c-lightbox__content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
}
.c-lightbox__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition);
}
.c-lightbox__close:hover { opacity: 1; }
.c-lightbox__close svg { width: 28px; height: 28px; }

.c-lightbox__prev,
.c-lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: background var(--transition);
}
.c-lightbox__prev:hover,
.c-lightbox__next:hover { background: rgba(255, 255, 255, 0.2); }
.c-lightbox__prev { left: var(--space-md); }
.c-lightbox__next { right: var(--space-md); }
.c-lightbox__prev svg,
.c-lightbox__next svg { width: 24px; height: 24px; }

.c-lightbox__figure {
    max-width: 90vw;
    max-height: 80vh;
    margin: 0;
    text-align: center;
}
.c-lightbox__image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
}
.c-lightbox__caption {
    color: var(--color-neutral-400);
    font-size: var(--text-sm);
    margin-top: var(--space-md);
}
.c-lightbox__counter {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-neutral-400);
    font-size: var(--text-sm);
}

@media (max-width: 768px) {
    .c-lightbox__prev,
    .c-lightbox__next {
        width: 40px;
        height: 40px;
        bottom: var(--space-3xl);
        top: auto;
        transform: none;
    }
    .c-lightbox__prev { left: var(--space-xl); }
    .c-lightbox__next { right: var(--space-xl); }
}


/* ----------------------- STICKY CTA ----------------------- */

.c-sticky-cta {
    display: none;
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 1000;
}

@media (max-width: 768px) {
    .c-sticky-cta { display: block; }
}

.c-sticky-cta__toggle {
    display: flex;
    align-items: center;
    height: 56px;
    padding: 0;
    background: var(--color-brand);
    border: none;
    border-radius: 28px;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: background var(--transition);
}
.c-sticky-cta__toggle:active { transform: scale(0.98); }

.c-sticky-cta__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}
.c-sticky-cta__icon svg { width: 24px; height: 24px; }

.c-sticky-cta__number {
    display: block;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 600;
    font-size: var(--text-base);
    color: #fff;
    text-decoration: none;
    transition: max-width 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.c-sticky-cta__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    overflow: hidden;
    flex-shrink: 0;
    transition: width 0.3s ease, padding 0.3s ease;
    padding: 0;
}
.c-sticky-cta__close svg { width: 20px; height: 20px; opacity: 0.8; }

/* Expanded state */
.c-sticky-cta.is-open .c-sticky-cta__toggle {
    background: var(--color-brand-dark);
}

.c-sticky-cta.is-open .c-sticky-cta__number {
    max-width: 200px;
    padding-right: var(--space-xs);
}

.c-sticky-cta.is-open .c-sticky-cta__close {
    width: 44px;
    padding-right: var(--space-sm);
}


/* =================================================================
   COLOR-CODED SYSTEM CARDS
   ================================================================= */

.c-color-coded-cards {
    padding: var(--space-3xl) 0;
    background: #fff;
}

.c-color-coded-cards__header {
    text-align: center;
    margin-bottom: 28px;
}

.c-color-coded-cards__header h2,
.c-color-coded-cards__header h3 {
    font-family: var(--font-heading);
    /* font-size: clamp(1.75rem, 3.1vw, 44px); */
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 400;
    color: #1a1500;
    margin: 0;
}

/* 4-column grid */
.c-color-coded-cards__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Card wrapper  extra top space for the floating image */
.c-color-coded-card {
    position: relative;
    padding-top: 42px;
    display: flex;
    flex-direction: column;
}

/* Image floats above the card body, centered */
.c-color-coded-card__image {
    position: absolute;
    top: 0;
    left: 50%;
    left:calc(50% - 70px);
    width: 140px;
    height: 126px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    z-index: 1;
}

/* Card body colored background */
.c-color-coded-card__body {
    background: var(--card-bg, #f5f5f5);
    border-radius: 8px;
    padding: 88px 35px 32px;
    padding-bottom: 48px;
    text-align: center;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
    flex: 1;
}

/* Title  card's accent color */
.c-color-coded-card__title {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.5;
    font-weight: 400;
    color: var(--card-color, currentColor);
    margin: 0 0 var(--space-sm);
}

/* Description Manrope, bold+regular mix via wysiwyg */
.c-color-coded-card__desc {
    /* font-size: var(--text-xl); */
    line-height: 1.5;
    color: #1a0900;
}

.c-color-coded-card__desc p { margin: 0; }
.c-color-coded-card__desc p + p { margin-top: var(--space-sm); }
.c-color-coded-card__desc strong { font-weight: 800; }

/* Responsive 2 cols at tablet */
@media (max-width: 1024px) {
    .c-color-coded-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive 1 col at mobile */
@media (max-width: 600px) {
    .c-color-coded-cards__grid {
        grid-template-columns: 1fr;
    }
    .c-color-coded-card__body {
        padding-left: var(--space-lg);
        padding-right: var(--space-lg);
    }
}


/* =================================================================
   SERVICE AREAS
   ================================================================= */

.c-service-areas {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top:1px solid var(--color-neutral-100);
    border-bottom:1px solid var(--color-neutral-100);
}

/* White fade: transparent on left (map shows), white on right (text sits here) */
.c-service-areas__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to left,
        rgba(255, 255, 255, 0.8)  0%,
        rgba(255, 255, 255, 0.64) 53.8%,
        rgba(255, 255, 255, 0)    100%
    );
}

.c-service-areas__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 772px;
    padding: var(--space-2xl) 0;
}

.c-service-areas__content {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.c-service-areas__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

@media (min-width:1621px) {
    .c-service-areas__content{
        padding-right:5rem;
    }
}

@media (max-width:1620px) {
    .c-service-areas__content{
        padding-right:var(--gutter);
        padding-left:var(--gutter);
    }
}

@media (max-width: 768px) {
    .c-service-areas__inner {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: var(--space-2xl) 0;
    }
    .c-service-areas__content {
        grid-column: 1;
        gap: 0;
    }
    .c-service-areas__overlay {
        background: rgba(255, 255, 255, 0.82);
    }
}


/* =================================================================
   ICON CARDS
   ================================================================= */

.c-icon-cards { padding: var(--space-3xl) 0; position: relative; }
.c-icon-cards--bg-light { background: var(--color-neutral-50); }
.c-icon-cards--bg-dark { background: var(--color-neutral-800); color: #fff; }
.c-icon-cards--bg-dark h2, .c-icon-cards--bg-dark h3, .c-icon-cards--bg-dark h4 { color: #fff; }
.c-icon-cards--bg-brand { background: var(--color-brand); color: #fff; }
.c-icon-cards--bg-brand h2, .c-icon-cards--bg-brand h3, .c-icon-cards--bg-brand h4 { color: #fff; }

.c-icon-cards__inner { position: relative; z-index: 1; }

.c-icon-cards__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}
.c-icon-cards__header h2, .c-icon-cards__header h3, .c-icon-cards__header h4 {
    /* font-size: var(--text-3xl); */
    /* margin-bottom: var(--space-md); */
}
.c-icon-cards__header .subhead {
    font-size: var(--text-lg);
    color: var(--color-neutral-600);
}
.c-icon-cards--bg-dark .c-icon-cards__header .subhead,
.c-icon-cards--bg-brand .c-icon-cards__header .subhead,
.c-icon-cards--bg-image .c-icon-cards__header .subhead { color: rgba(255,255,255,0.8); }

.c-icon-cards__grid {
    display: grid;
    gap: var(--space-xl);
}
.c-icon-cards--cols-2 .c-icon-cards__grid { grid-template-columns: repeat(2, 1fr); }
.c-icon-cards--cols-3 .c-icon-cards__grid { grid-template-columns: repeat(3, 1fr); }
.c-icon-cards--cols-4 .c-icon-cards__grid { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 991px) {
    .c-icon-cards--cols-3 .c-icon-cards__grid,
    .c-icon-cards--cols-4 .c-icon-cards__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .c-icon-cards__grid { grid-template-columns: 1fr !important; }
}

/* Card base */
.c-icon-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

/* Icon positioning */
.c-icon-cards--top .c-icon-card { text-align: center; align-items: center; }
.c-icon-cards--left .c-icon-card { flex-direction: row; align-items: flex-start; }

/* Card styles */
.c-icon-cards--boxed .c-icon-card {
    background: var(--primary-600);
    padding: var(--space-xl);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.c-icon-cards--bg-dark.c-icon-cards--boxed .c-icon-card,
.c-icon-cards--bg-brand.c-icon-cards--boxed .c-icon-card,
.c-icon-cards--bg-image.c-icon-cards--boxed .c-icon-card {
    background: rgb(0 0 0 / 10%);
    backdrop-filter: blur(10px);
}

.c-icon-cards--bordered .c-icon-card {
    border: 1px solid var(--color-neutral-200);
    padding: var(--space-xl);
    border-radius: var(--radius);
}
.c-icon-cards--bg-dark.c-icon-cards--bordered .c-icon-card,
.c-icon-cards--bg-brand.c-icon-cards--bordered .c-icon-card,
.c-icon-cards--bg-image.c-icon-cards--bordered .c-icon-card {
    border-color: rgba(255,255,255,0.2);
}

/* Icon */
.c-icon-card__icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-700);
    border-radius: var(--radius);
    color: #fff;
}
.c-icon-card__icon svg {
    width: 28px;
    height: 28px;
}
.c-icon-card__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.c-icon-cards--bg-dark .c-icon-card__icon,
.c-icon-cards--bg-brand .c-icon-card__icon,
.c-icon-cards--bg-image .c-icon-card__icon {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* Content */
.c-icon-card__content { flex: 1; }
.c-icon-card__title {
    /* font-size: var(--text-lg); */
    /* font-weight: 600; */
    /* margin-bottom: var(--space-xs); */
    color:#fff;
}
.c-icon-card__desc {
    color:#fff;
    font-weight:bold;
}
.c-icon-cards--bg-dark .c-icon-card__desc,
.c-icon-cards--bg-brand .c-icon-card__desc,
.c-icon-cards--bg-image .c-icon-card__desc { color: rgba(255,255,255,0.8); }

.c-icon-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 600;
    color: var(--color-brand);
    text-decoration: none;
    transition: gap 0.2s ease;
}
.c-icon-card__link:hover { gap: var(--space-sm); }
.c-icon-card__link svg { width: 16px; height: 16px; }

.c-icon-cards--bg-dark .c-icon-card__link,
.c-icon-cards--bg-brand .c-icon-card__link,
.c-icon-cards--bg-image .c-icon-card__link { color: #fff; }


/* =================================================================
   MAP EMBED
   ================================================================= */

.c-map { padding: var(--space-3xl) 0; position: relative; }
.c-map--bg-light { background: var(--color-neutral-50); }
.c-map--bg-dark { background: var(--color-neutral-800); color: #fff; }
.c-map--bg-dark h2, .c-map--bg-dark h3, .c-map--bg-dark h4 { color: #fff; }
.c-map--bg-brand { background: var(--color-brand); color: #fff; }
.c-map--bg-brand h2, .c-map--bg-brand h3, .c-map--bg-brand h4 { color: #fff; }

.c-map__inner { position: relative; z-index: 1; }

.c-map__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}
.c-map__header h2, .c-map__header h3, .c-map__header h4 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
}
.c-map__header .subhead {
    font-size: var(--text-lg);
    color: var(--color-neutral-600);
}
.c-map--bg-dark .c-map__header .subhead,
.c-map--bg-brand .c-map__header .subhead,
.c-map--bg-image .c-map__header .subhead { color: rgba(255,255,255,0.8); }

.c-map__embed {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.c-map__embed iframe {
    display: block;
    width: 100%;
    border: 0;
}

/* Height variants */
.c-map--h-small .c-map__embed iframe { height: 300px; }
.c-map--h-medium .c-map__embed iframe { height: 450px; }
.c-map--h-large .c-map__embed iframe { height: 600px; }

@media (max-width: 767px) {
    .c-map--h-small .c-map__embed iframe { height: 250px; }
    .c-map--h-medium .c-map__embed iframe { height: 350px; }
    .c-map--h-large .c-map__embed iframe { height: 450px; }
}


/* =================================================================
   CONTACT INFO BLOCK
   ================================================================= */

.c-contact-info { padding: var(--space-3xl) 0; position: relative; }
.c-contact-info--bg-light { background: var(--color-neutral-50); }
.c-contact-info--bg-dark { background: var(--color-neutral-800); color: #fff; }
.c-contact-info--bg-dark h2, .c-contact-info--bg-dark h3, .c-contact-info--bg-dark h4 { color: #fff; }
.c-contact-info--bg-brand { background: var(--color-brand); color: #fff; }
.c-contact-info--bg-brand h2, .c-contact-info--bg-brand h3, .c-contact-info--bg-brand h4 { color: #fff; }

.c-contact-info__inner { position: relative; z-index: 1; }

.c-contact-info__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}
.c-contact-info__header h2, .c-contact-info__header h3, .c-contact-info__header h4 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
}
.c-contact-info__header .subhead {
    font-size: var(--text-lg);
    color: var(--color-neutral-600);
}
.c-contact-info--bg-dark .c-contact-info__header .subhead,
.c-contact-info--bg-brand .c-contact-info__header .subhead,
.c-contact-info--bg-image .c-contact-info__header .subhead { color: rgba(255,255,255,0.8); }

/* Items layout */
.c-contact-info__items {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

/* Stacked layout (default) */
.c-contact-info--stacked .c-contact-info__items {
    /* flex-direction: column; */
    align-items: flex-start;
    justify-content:center;
    /* max-width: 500px; */
    margin: 0 auto;
}
.c-contact-info--stacked .c-contact-info__item {
    text-align: center;
    flex-direction: column;
    align-items:center;
}
.c-contact-info--stacked .c-contact-info__icon { margin-bottom: var(--space-sm); }

/* Inline layout */
.c-contact-info--inline .c-contact-info__items {
    justify-content: center;
}
@media (max-width: 991px) {
    .c-contact-info--inline .c-contact-info__items {
        flex-direction: column;
        align-items: center;
    }
}

/* Individual item */
.c-contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.c-contact-info__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-brand);
    border-radius: 50%;
    color: #fff;
}
.c-contact-info__icon svg {
    width: 22px;
    height: 22px;
}
.c-contact-info--bg-dark .c-contact-info__icon,
.c-contact-info--bg-brand .c-contact-info__icon,
.c-contact-info--bg-image .c-contact-info__icon {
    background: rgba(255,255,255,0.2);
}

.c-contact-info__content { flex: 1; }

.c-contact-info__label {
    font-size: var(--text-base);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-neutral-900);
    margin-bottom: var(--space-xs);
}
.c-contact-info--bg-dark .c-contact-info__label,
.c-contact-info--bg-brand .c-contact-info__label,
.c-contact-info--bg-image .c-contact-info__label { color: rgba(255,255,255,0.6); }

.c-contact-info__value,
.c-contact-info__value {
    font-size: var(--text-base);
    color: var(--color-neutral-900);
}
.c-contact-info--bg-dark .c-contact-info__value,
.c-contact-info--bg-brand .c-contact-info__value,
.c-contact-info--bg-image .c-contact-info__value { color: #fff; }

.c-contact-info__link {
    color: var(--color-brand);
    text-decoration: none;
    transition: color 0.2s ease;
}
.c-contact-info__link:hover {
    text-decoration: underline;
}
.c-contact-info--bg-dark .c-contact-info__link,
.c-contact-info--bg-brand .c-contact-info__link,
.c-contact-info--bg-image .c-contact-info__link { color: #fff; }

.c-contact-info__empty {
    text-align: center;
    color: var(--color-neutral-500);
    font-style: italic;
}


/* =================================================================
   ARCHIVE
   ================================================================= */

.archive-page { padding: var(--space-3xl) 0; }

.archive-page__header {
    margin-bottom: var(--space-2xl);
}
.archive-page__title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-sm);
}
.archive-page__description {
    font-size: var(--text-lg);
    color: var(--color-neutral-600);
    max-width: 700px;
}
.archive-page__description p:last-child { margin-bottom: 0; }

/* Archive grid */
.archive-page__grid {
    display: grid;
    gap: var(--space-xl);
}
.archive-page--grid.archive-page--cols-2 .archive-page__grid {
    grid-template-columns: repeat(2, 1fr);
}
.archive-page--grid.archive-page--cols-3 .archive-page__grid {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
    .archive-page--grid.archive-page--cols-3 .archive-page__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .archive-page__grid { grid-template-columns: 1fr !important; }
}

/* List layout */
.archive-page--list .archive-page__grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}
.archive-page--list .archive-card {
    flex-direction: row;
    align-items: flex-start;
}
.archive-page--list .archive-card__image {
    width: 280px;
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .archive-page--list .archive-card {
        flex-direction: column;
    }
    .archive-page--list .archive-card__image {
        width: 100%;
    }
}

/* Archive card */
.archive-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.archive-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.archive-card__image {
    display: block;
    overflow: hidden;
}
.archive-card__image img {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s ease;
}
.archive-card:hover .archive-card__image img {
    transform: scale(1.03);
}

.archive-card__content {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.archive-card__header { margin-bottom: var(--space-sm); }

.archive-card__title {
    font-size: var(--text-xl);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-xs);
}
.archive-card__title a {
    color: inherit;
    text-decoration: none;
}
.archive-card__title a:hover {
    color: var(--color-brand);
}

.archive-card__meta {
    font-size: var(--text-sm);
    color: var(--color-neutral-500);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}
.archive-card__sep { opacity: 0.5; }

.archive-card__excerpt {
    color: var(--color-neutral-600);
    flex: 1;
}
.archive-card__excerpt p { margin: 0; }

/* Empty state */
.archive-page__empty {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    color: var(--color-neutral-500);
}

/* Pagination */
.pagination {
    margin-top: var(--space-2xl);
    display: flex;
    justify-content: center;
}
.pagination__list {
    display: flex;
    gap: var(--space-xs);
    list-style: none;
    padding: 0;
    margin: 0;
}
.pagination__item a,
.pagination__item span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--space-sm);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}
.pagination__item a {
    color: var(--color-neutral-700);
    background: var(--color-neutral-100);
}
.pagination__item a:hover {
    background: var(--color-brand);
    color: #fff;
}
.pagination__item--current span {
    background: var(--color-brand);
    color: #fff;
}


/* =================================================================
   SINGLE POST
   ================================================================= */

.single-page { padding: var(--space-3xl) 0; }

/* Post article */
.single-post { margin-bottom: var(--space-2xl); }

.single-post__header {
    margin-bottom: var(--space-xl);
}
.single-post__title {
    font-size: var(--text-4xl);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-sm);
}
.single-post__meta {
    font-size: var(--text-sm);
    color: var(--color-neutral-500);
}

.single-post__image {
    margin-bottom: var(--space-xl);
    border-radius: var(--radius);
    overflow: hidden;
}
.single-post__image img {
    width: 100%;
    height: auto;
}

.single-post__content {
    margin-bottom: var(--space-xl);
}

.single-post__footer {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-neutral-200);
}
.single-post__taxonomies {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    align-items: center;
    margin-bottom: var(--space-sm);
}
.single-post__taxonomies:last-child { margin-bottom: 0; }
.single-post__tax-label {
    font-weight: 600;
    color: var(--color-neutral-600);
    margin-right: var(--space-xs);
}
.single-post__taxonomies a {
    color: var(--color-brand);
    text-decoration: none;
}
.single-post__taxonomies a:hover {
    text-decoration: underline;
}

/* Author box */
.author-box {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--color-neutral-50);
    border-radius: var(--radius);
    margin-bottom: var(--space-2xl);
}
@media (max-width: 600px) {
    .author-box {
        flex-direction: column;
        text-align: center;
    }
}

.author-box__avatar { flex-shrink: 0; }
.author-box__img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.author-box__content { flex: 1; }
.author-box__name {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
}
.author-box__name a {
    color: inherit;
    text-decoration: none;
}
.author-box__name a:hover {
    color: var(--color-brand);
}
.author-box__bio {
    color: var(--color-neutral-600);
    margin-bottom: var(--space-sm);
}
.author-box__bio p:last-child { margin-bottom: 0; }
.author-box__link {
    color: var(--color-brand);
    text-decoration: none;
    font-weight: 500;
}
.author-box__link:hover {
    text-decoration: underline;
}

/* Related posts */
.related-posts {
    margin-bottom: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-neutral-200);
}
.related-posts__title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-lg);
}
.related-posts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}
@media (max-width: 767px) {
    .related-posts__grid {
        grid-template-columns: 1fr;
    }
}

.related-posts__item {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.related-posts__image {
    display: block;
    overflow: hidden;
}
.related-posts__image img {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s ease;
}
.related-posts__item:hover .related-posts__image img {
    transform: scale(1.03);
}
.related-posts__item-title {
    font-size: var(--text-base);
    padding: var(--space-md);
    padding-bottom: var(--space-xs);
}
.related-posts__item-title a {
    color: inherit;
    text-decoration: none;
}
.related-posts__item-title a:hover {
    color: var(--color-brand);
}
.related-posts__date {
    display: block;
    padding: 0 var(--space-md) var(--space-md);
    font-size: var(--text-sm);
    color: var(--color-neutral-500);
}

/* Post navigation */
.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-neutral-200);
}
@media (max-width: 600px) {
    .post-nav {
        grid-template-columns: 1fr;
    }
}

.post-nav__link {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-lg);
    background: var(--color-neutral-50);
    border-radius: var(--radius);
    text-decoration: none;
    transition: background 0.2s ease;
}
.post-nav__link:hover {
    background: var(--color-neutral-100);
}
.post-nav__link--empty {
    opacity: 0;
    pointer-events: none;
}
.post-nav__link--next {
    text-align: right;
}

.post-nav__label {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-neutral-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.post-nav__link--next .post-nav__label {
    justify-content: flex-end;
}
.post-nav__label svg {
    width: 16px;
    height: 16px;
}

.post-nav__title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-neutral-800);
    line-height: var(--leading-tight);
}

/* Search form */
.search-form-wrap {
    margin-bottom: var(--space-2xl);
}
.search-form {
    display: flex;
    gap: var(--space-sm);
    max-width: 500px;
}
.search-form label {
    flex: 1;
}
.search-form .search-field {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-neutral-300);
    border-radius: var(--radius);
    font-size: var(--text-base);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.search-form .search-field:focus {
    outline: none;
    border-color: var(--color-brand);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.search-form .search-submit {
    padding: var(--space-sm) var(--space-lg);
    background: var(--color-brand);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}
.search-form .search-submit:hover {
    background: var(--color-brand-dark);
}


/* =================================================================
   404 PAGE
   ================================================================= */

.error-404 {
    padding: var(--space-3xl) 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: var(--color-neutral-50);
}
.error-404 .container { width: 100%; max-width: 600px; }
.error-404__code {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 700;
    line-height: 1;
    color: var(--color-neutral-200);
    margin-bottom: var(--space-md);
}
.error-404 h1 {
    font-size: var(--text-3xl);
    color: var(--color-neutral-800);
    margin-bottom: var(--space-md);
}
.error-404__content {
    color: var(--color-neutral-600);
    margin-bottom: var(--space-xl);
}
.error-404__content p { margin-bottom: var(--space-md); }
.error-404__content p:last-child { margin-bottom: 0; }
.error-404__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.page-content { padding: var(--space-3xl) 0; }
.page-content h1 { margin-bottom: var(--space-xl); }


/* =================================================================
   PRINT STYLES
   ================================================================= */

@media print {
    /* Page setup */
    @page {
        margin: 0.75in;
        size: letter;
    }

    /* Reset colors for print */
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    /* Typography adjustments */
    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    h1 { font-size: 24pt; }
    h2 { font-size: 20pt; }
    h3 { font-size: 16pt; }
    h4, h5, h6 { font-size: 14pt; }

    /* Hide non-printable elements */
    .site-header,
    .site-footer,
    .site-nav,
    .mobile-nav-toggle,
    .skip-link,
    .c-sticky-cta,
    .btn,
    .btn--primary,
    .btn--secondary,
    .c-hero__buttons,
    .c-cta__buttons,
    .c-content-media__buttons,
    .c-cards .c-card__link,
    .search-form,
    .post-nav,
    .pagination,
    .gform_wrapper,
    .c-form-section,
    .global-cta,
    video,
    iframe,
    .c-gallery[data-layout="carousel"],
    .c-testimonials__nav,
    .c-testimonials__dots,
    noscript {
        display: none !important;
    }

    /* Show main content area */
    .site-main,
    main {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Container adjustments */
    .container {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Component spacing for print */
    .component {
        padding: 0.5in 0 !important;
        margin: 0 !important;
        page-break-inside: avoid;
    }

    /* Hero - simplified */
    .c-hero {
        min-height: auto !important;
        height: auto !important;
        padding: 0.25in 0 !important;
        background: none !important;
    }
    .c-hero::before { display: none !important; }
    .c-hero__content {
        position: static !important;
        transform: none !important;
    }
    .c-hero__eyebrow { color: #666 !important; }
    .c-hero__headline { font-size: 28pt !important; }

    /* Content + Media - stack vertically */
    .c-content-media__inner {
        display: block !important;
    }
    .c-content-media__media {
        max-width: 100% !important;
        margin-bottom: 0.25in !important;
    }
    .c-content-media__media img {
        max-width: 4in !important;
        height: auto !important;
    }

    /* Cards - grid for print */
    .c-cards__grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.25in !important;
    }
    .c-card {
        border: 1px solid #ccc !important;
        padding: 0.15in !important;
        page-break-inside: avoid;
    }
    .c-card__image {
        max-height: 1.5in !important;
        overflow: hidden;
    }

    /* Testimonials - show all */
    .c-testimonials__slider {
        display: block !important;
        overflow: visible !important;
    }
    .c-testimonials__slider .c-testimonial {
        display: block !important;
        width: 100% !important;
        margin-bottom: 0.25in !important;
        border: 1px solid #ccc !important;
        padding: 0.15in !important;
        page-break-inside: avoid;
    }
    .c-testimonials__slider .c-testimonial[hidden] {
        display: block !important;
    }

    /* Accordion - expand all for print */
    .c-accordion__content {
        display: block !important;
        max-height: none !important;
        overflow: visible !important;
        padding: 0.1in 0 !important;
    }
    .c-accordion__item {
        border: 1px solid #ccc !important;
        margin-bottom: 0.1in !important;
        padding: 0.1in !important;
        page-break-inside: avoid;
    }
    .c-accordion__icon { display: none !important; }

    /* Stats */
    .c-stats__grid {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.25in !important;
    }
    .c-stat {
        flex: 1 1 30% !important;
        text-align: center;
    }

    /* Logo grid */
    .c-logos__grid {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.15in !important;
    }
    .c-logos__item {
        width: 1in !important;
        filter: none !important;
    }
    .c-logos__item img {
        max-width: 100% !important;
        max-height: 0.75in !important;
    }

    /* Gallery - grid only */
    .c-gallery__grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.1in !important;
    }
    .c-gallery__item img {
        max-height: 1.5in !important;
    }

    /* Icon cards */
    .c-icon-cards__grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.2in !important;
    }
    .c-icon-card {
        border: 1px solid #ccc !important;
        padding: 0.1in !important;
        page-break-inside: avoid;
    }

    /* Contact info */
    .c-contact-info__items {
        display: block !important;
    }
    .c-contact-info__item {
        margin-bottom: 0.1in !important;
    }

    /* Map - show placeholder text */
    .c-map__embed {
        border: 1px solid #ccc !important;
        padding: 0.25in !important;
        text-align: center;
    }
    .c-map__embed::after {
        content: "[Map - See website for interactive version]";
        display: block;
        font-style: italic;
        color: #666 !important;
    }

    /* Images */
    img {
        max-width: 100% !important;
        height: auto !important;
        page-break-inside: avoid;
    }

    /* Links - show URLs */
    a[href^="http"]:after,
    a[href^="https"]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #666 !important;
        word-break: break-all;
    }

    /* Don't show URL for buttons or images */
    a.btn:after,
    a.c-card:after,
    a > img:after,
    .c-logos__item a:after {
        content: none !important;
    }

    /* Page break hints */
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        page-break-inside: avoid;
    }

    p, blockquote, ul, ol, dl, table, figure {
        page-break-inside: avoid;
    }

    /* Orphan/widow control */
    p {
        orphans: 3;
        widows: 3;
    }

    /* Archive/blog posts */
    .archive-page__grid {
        display: block !important;
    }
    .archive-card {
        display: flex !important;
        gap: 0.2in !important;
        border-bottom: 1px solid #ccc !important;
        padding: 0.15in 0 !important;
        page-break-inside: avoid;
    }
    .archive-card__image {
        width: 1.5in !important;
        flex-shrink: 0;
    }

    /* Single post */
    .single-post__featured {
        max-height: 3in !important;
        overflow: hidden;
    }
    .author-box {
        border: 1px solid #ccc !important;
        padding: 0.15in !important;
        margin: 0.25in 0 !important;
    }

    /* Prose content */
    .prose {
        max-width: 100% !important;
    }
    .prose a:after {
        content: none !important; /* Too noisy in body text */
    }

    /* CTA section - text only */
    .c-cta {
        border: 2px solid #000 !important;
        padding: 0.25in !important;
        text-align: center;
    }

    /* Background sections - add border for visual separation */
    .bg--dark,
    .bg--brand,
    .bg--light {
        border: 1px solid #ccc !important;
        padding: 0.2in !important;
        margin: 0.1in 0 !important;
    }
}

/* =================================================================
   COLOR CODE TOWELS SHORTCODE
   ================================================================= */

.sc-color-code-towels {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px 20px;
}

.sc-color-code-towels--center { justify-content: center; }
.sc-color-code-towels--right  { justify-content: flex-end; }

.sc-cct-item {
    text-align: center;
    width: 140px;
}

.sc-cct-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--cct-bg);
    margin: 0 auto 12px;
}

.sc-cct-img {
    width: 100px;
    height: 86px;
    object-fit: contain;
    display: block;
}

.sc-cct-label {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: var(--leading-tight);
    color: var(--cct-color);
    margin: 0;
}

@media (max-width: 767px) {
    .sc-color-code-towels {
        max-width: 300px; /* exactly 2 items (140px) + 1 gap (20px) */
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
}