/* ==========================================================================
   Saratoga Home Services & Landscaping — Global Stylesheet
   Pro Media Management | Built on brand guidelines, May 2026
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties — Brand Colors
   -------------------------------------------------------------------------- */
:root {
    --color-gold:        #F0A51E;   /* Primary: headlines, CTAs */
    --color-gold-dark:   #C97F0A;   /* Hover states, body text on light BG */
    --color-green:       #4BD296;   /* Leaf green: accents, icons */
    --color-teal:        #00A5C3;   /* Links, highlights, badges */
    --color-dark-bg:     #1A1A1A;   /* Header, footer, dark sections */
    --color-near-black:  #0D1117;   /* Body text */
    --color-logo-bg:     #000000;   /* True black — matches the logo file's own background exactly, since only black/white logo versions exist (no transparent PNG) */
    --color-mid-gray:    #CCCCCC;   /* Borders, dividers */
    --color-light-gray:  #F5F5F5;   /* Card and section backgrounds */
    --color-white:       #FFFFFF;   /* Base background, text on dark */

    /* Spacing — base unit 8px */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    --space-8: 64px;
    --space-10: 80px;

    /* Layout */
    --max-width: 1200px;
    --radius: 4px;
    --sidebar-width: 260px;

    /* Type */
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Lato', sans-serif;

    /* Signature gradient — mirrors the logo's gold-to-green-to-teal transition */
    --gradient-brand: linear-gradient(90deg, var(--color-gold) 0%, var(--color-green) 50%, var(--color-teal) 100%);
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-near-black);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.2;
}

h1 {
    font-weight: 700;
    font-size: 40px;
    color: var(--color-near-black);
}

h2 {
    font-weight: 600;
    font-size: 28px;
    color: var(--color-near-black);
}

h3 {
    font-weight: 600;
    font-size: 20px;
    color: var(--color-near-black);
}

h4 {
    font-weight: 500;
    font-size: 16px;
    color: var(--color-near-black);
}

@media (min-width: 768px) {
    h1 { font-size: 48px; }
    h2 { font-size: 32px; }
    h3 { font-size: 22px; }
    h4 { font-size: 18px; }
}

p {
    margin-bottom: var(--space-2);
}

.caption {
    font-size: 13px;
    color: #555555;
}

/* --------------------------------------------------------------------------
   Layout Helpers
   -------------------------------------------------------------------------- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-3);
}

section {
    padding: var(--space-6) 0;
}

@media (min-width: 768px) {
    section {
        padding: var(--space-10) 0;
    }
}

/* --------------------------------------------------------------------------
   Buttons / CTAs
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    padding: 14px 28px;
    min-height: 44px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.15s ease;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-near-black);
}

.btn-primary:hover {
    background-color: var(--color-gold-dark);
    color: var(--color-white);
}

.btn-secondary {
    background-color: var(--color-dark-bg);
    color: var(--color-white);
}

.btn-secondary:hover {
    opacity: 0.85;
}

.btn:active {
    transform: scale(0.98);
}

/* --------------------------------------------------------------------------
   Sidebar Navigation
   -------------------------------------------------------------------------- */
.site-sidebar {
    position: relative;
    width: 100%;
    background-color: var(--color-logo-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-1) var(--space-3);
    z-index: 100;
}

main,
.site-footer {
    margin-left: 0;
}

@media (min-width: 901px) {
    .site-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: var(--sidebar-width);
        height: 100vh;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: var(--space-4) var(--space-3);
        overflow-y: auto;
        box-shadow: 2px 0 8px rgba(0,0,0,0.15);
    }

    .site-sidebar::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 3px;
        background: var(--gradient-brand);
    }

    main,
    .site-footer {
        margin-left: var(--sidebar-width);
    }
}

.site-logo img {
    height: 56px;
    width: auto;
}

@media (min-width: 901px) {
    .site-logo {
        display: block;
        text-align: center;
        margin-bottom: var(--space-5);
    }

    .site-logo img {
        height: 150px;
        width: auto;
        margin-bottom: 0;
    }
}

@media (min-width: 901px) {
    .main-nav {
        position: relative;
        flex: 1;
        width: 100%;
    }
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-1);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;
}

.main-nav.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.main-nav.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.main-nav.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 901px) {
    .nav-toggle {
        display: none;
    }
}

.nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-logo-bg);
    display: none;
    flex-direction: column;
    padding: var(--space-2) var(--space-3) var(--space-3);
    gap: 0;
}

.main-nav.is-open .nav-list {
    display: flex;
}

@media (min-width: 901px) {
    .nav-list {
        position: static;
        display: flex !important;
        flex-direction: column;
        background: none;
        padding: 0;
        gap: var(--space-1);
        width: 100%;
    }
}

.nav-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 15px;
    color: var(--color-white);
    padding: 12px 8px;
    border-left: 3px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

@media (min-width: 901px) {
    .nav-list a {
        padding: 12px 14px;
        border-radius: var(--radius);
    }
}

.nav-list a svg {
    color: var(--color-mid-gray);
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--color-gold);
    border-left-color: var(--color-gold);
    background-color: rgba(255,255,255,0.06);
}

.nav-list a:hover svg,
.nav-list a.active svg {
    color: var(--color-gold);
}

.sidebar-bottom {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

@media (min-width: 901px) {
    .sidebar-bottom {
        flex-direction: column;
        align-items: stretch;
        margin-top: var(--space-4);
        width: 100%;
    }
}

.sidebar-cta {
    padding: 10px 18px;
    font-size: 14px;
    white-space: nowrap;
}

@media (min-width: 901px) {
    .sidebar-cta {
        width: 100%;
        text-align: center;
        padding: 14px 28px;
        font-size: 15px;
    }
}

.sidebar-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-mid-gray);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.sidebar-phone span {
    display: none;
}

@media (min-width: 901px) {
    .sidebar-phone {
        justify-content: center;
    }

    .sidebar-phone span {
        display: inline;
    }
}

.sidebar-phone:hover {
    color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: var(--color-logo-bg);
    color: var(--color-mid-gray);
    padding-top: var(--space-8);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-3) var(--space-6);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
}

@media (min-width: 768px) {
    .footer-inner {
        grid-template-columns: 2fr 1fr 1fr 1.3fr;
    }
}

.footer-logo img {
    height: 64px;
    width: auto;
    margin-bottom: var(--space-2);
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: var(--space-3);
    max-width: 320px;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-social:hover {
    background-color: var(--color-teal);
    color: var(--color-white);
}

.footer-heading {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-white);
    margin-bottom: var(--space-2);
}

.footer-nav li,
.footer-contact li {
    margin-bottom: var(--space-1);
    font-size: 14px;
}

.footer-nav a,
.footer-contact a {
    color: var(--color-mid-gray);
    transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--color-gold);
}

.footer-cta {
    margin-top: var(--space-3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-3);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-1) var(--space-3);
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    font-size: 13px;
    color: var(--color-mid-gray);
}

.footer-credit {
    position: relative;
    overflow: visible;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 8px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.footer-credit:hover {
    border-color: var(--color-gold);
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.footer-credit-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Footer Credit — Grass & Flower Growth Easter Egg
   -------------------------------------------------------------------------- */
.footer-credit-grow {
    position: absolute;
    top: -70px;
    bottom: -70px;
    left: -90px;
    right: -90px;
    opacity: 0;
    transform: scale(0.85);
    transform-origin: center;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease, transform 0.4s ease;
}

.footer-credit-grow svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.footer-credit:hover .footer-credit-grow {
    opacity: 1;
    transform: scale(1);
}

.footer-credit-text {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blade {
    transform-box: fill-box;
    transform-origin: bottom center;
    opacity: 0;
    transform: scaleY(0);
    transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.3s ease;
    transition-delay: calc(var(--i, 0) * 0.014s);
}

.footer-credit:hover .blade {
    opacity: 1;
    transform: scaleY(1);
    animation: blade-sway 2.4s ease-in-out calc(var(--i, 0) * 0.014s + 0.45s) infinite;
}

@keyframes blade-sway {
    0%, 100% { transform: scaleY(1) rotate(-3deg); }
    50% { transform: scaleY(1) rotate(3deg); }
}

.flower {
    transform-box: fill-box;
    transform-origin: center;
    opacity: 0;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
    transition-delay: calc(var(--i, 0) * 0.014s + 0.25s);
}

.footer-credit:hover .flower {
    opacity: 1;
    transform: scale(1);
}

.footer-credit a {
    color: var(--color-teal);
    font-weight: 700;
}

.footer-credit a:hover {
    color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   Service Detail Sections (Services page)
   -------------------------------------------------------------------------- */
.service-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    align-items: center;
    padding: var(--space-5) 0;
    border-bottom: 1px solid var(--color-mid-gray);
    scroll-margin-top: 20px;
}

.service-detail:last-child {
    border-bottom: none;
}

@media (min-width: 768px) {
    .service-detail {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-5);
    }

    .service-detail:nth-child(even) .service-detail-image {
        order: 2;
    }
}

.service-detail-image img {
    border-radius: var(--radius);
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.service-detail-body .eyebrow {
    color: var(--color-gold-dark);
}

.service-detail-body h2 {
    margin-bottom: var(--space-2);
}

.service-detail-body p {
    color: #333333;
    margin-bottom: var(--space-3);
}

.service-detail-list {
    margin-bottom: var(--space-3);
}

.service-detail-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: var(--space-1);
    font-size: 15px;
    color: #333333;
}

.service-detail-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gradient-brand);
}

.services-intro {
    max-width: 720px;
    margin: 0 auto var(--space-2);
    text-align: center;
}

.services-intro p {
    color: #555555;
}

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
}

.gallery-filter-btn {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 18px;
    border-radius: var(--radius);
    background-color: var(--color-light-gray);
    color: var(--color-near-black);
    border: 1px solid var(--color-mid-gray);
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.gallery-filter-btn:hover {
    border-color: var(--color-gold);
}

.gallery-filter-btn.active {
    background-color: var(--color-near-black);
    color: var(--color-white);
    border-color: var(--color-near-black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-3);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: var(--space-2);
    background: linear-gradient(0deg, rgba(13,17,23,0.85) 0%, rgba(13,17,23,0) 100%);
    color: var(--color-white);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 14px;
}

.gallery-item.is-hidden {
    display: none;
}

.gallery-section {
    margin-bottom: var(--space-5);
}

.gallery-section.is-hidden {
    display: none;
}

.gallery-section-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    color: var(--color-near-black);
    margin-bottom: var(--space-2);
    padding-bottom: var(--space-1);
    border-bottom: 3px solid transparent;
    border-image: var(--gradient-brand) 1;
    display: inline-block;
}

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */
.gallery-item {
    cursor: pointer;
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(13, 17, 23, 0.94);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
}

.lightbox-overlay.is-open {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: var(--radius);
    display: block;
}

.lightbox-caption {
    color: var(--color-white);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 14px;
    margin-top: var(--space-2);
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: var(--space-1);
}

.lightbox-close:hover {
    color: var(--color-gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--color-white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.lightbox-nav:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

@media (max-width: 900px) {
    .lightbox-prev {
        left: var(--space-1);
    }
    .lightbox-next {
        right: var(--space-1);
    }
    .lightbox-close {
        top: var(--space-1);
        right: var(--space-1);
    }
}

/* --------------------------------------------------------------------------
   Service Area
   -------------------------------------------------------------------------- */
.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

@media (min-width: 900px) {
    .area-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.area-card {
    background-color: var(--color-light-gray);
    border-radius: var(--radius);
    padding: var(--space-3);
    text-align: center;
    border-top: 3px solid transparent;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.area-card:hover {
    transform: translateY(-4px);
    border-top-color: var(--color-gold);
}

.area-card .icon {
    display: inline-flex;
    margin-bottom: var(--space-2);
}

.area-card:nth-child(3n+1) .icon { color: var(--color-gold-dark); }
.area-card:nth-child(3n+2) .icon { color: var(--color-green); }
.area-card:nth-child(3n+3) .icon { color: var(--color-teal); }

.area-card h3 {
    margin-bottom: var(--space-1);
}

.area-card p {
    font-size: 14px;
    color: #555555;
    margin-bottom: 0;
}

.map-embed {
    position: relative;
    width: 100%;
    padding-bottom: 45%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-mid-gray);
}

.map-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --------------------------------------------------------------------------
   Contact Form
   -------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 3fr 2fr;
    }
}

.form-alert {
    background-color: #fdecea;
    border: 1px solid #f5c2c0;
    color: #8a1f1f;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius);
    margin-bottom: var(--space-3);
    font-size: 14px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-near-black);
}

.form-row input,
.form-row select,
.form-row textarea {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-near-black);
    background-color: var(--color-white);
    border: 1px solid var(--color-mid-gray);
    border-radius: var(--radius);
    padding: 12px 14px;
    width: 100%;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(0, 165, 195, 0.15);
}

.form-row textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    align-self: flex-start;
}

.form-response-note {
    font-size: 13px;
    color: #555555;
    margin-bottom: 0;
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.contact-info-card {
    background-color: var(--color-light-gray);
    border-radius: var(--radius);
    padding: var(--space-3);
}

.contact-info-card h3 {
    margin-bottom: var(--space-2);
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-2);
    font-size: 14px;
    color: var(--color-near-black);
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.contact-info-list svg {
    color: var(--color-teal);
    flex-shrink: 0;
}

.contact-info-list a {
    color: var(--color-near-black);
    transition: color 0.2s ease;
}

.contact-info-list a:hover {
    color: var(--color-gold-dark);
}

.contact-info-wrap .map-embed {
    padding-bottom: 65%;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: var(--space-8) 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,17,23,0.55) 0%, rgba(13,17,23,0.75) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-3);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    color: var(--color-gold);
    margin-bottom: var(--space-2);
}

.hero-eyebrow::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 3px;
    background: var(--gradient-brand);
}

.hero h1 {
    color: var(--color-white);
    max-width: 760px;
    margin-bottom: var(--space-2);
    font-size: 44px;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 58px;
    }
}

.hero-subhead {
    color: var(--color-white);
    font-size: 18px;
    max-width: 560px;
    margin-bottom: var(--space-4);
    opacity: 0.95;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

/* --------------------------------------------------------------------------
   Trust Bar
   -------------------------------------------------------------------------- */
.trust-bar {
    background-color: var(--color-near-black);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.trust-bar .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-5);
    padding-top: var(--space-3);
    padding-bottom: var(--space-3);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.trust-item svg {
    flex-shrink: 0;
}

.trust-item:nth-child(1) svg { color: var(--color-gold); }
.trust-item:nth-child(2) svg { color: var(--color-green); }
.trust-item:nth-child(3) svg { color: var(--color-teal); }
.trust-item:nth-child(4) svg { color: var(--color-gold); }

/* --------------------------------------------------------------------------
   Section Headings
   -------------------------------------------------------------------------- */
.section-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-5);
}

.eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    color: var(--color-teal);
    margin-bottom: var(--space-1);
}

.section-heading h2 {
    margin-bottom: var(--space-2);
}

.section-heading h2::after {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    background: var(--gradient-brand);
    margin: var(--space-2) auto 0;
    border-radius: 2px;
}

.section-heading p {
    color: #555555;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Service Overview Grid
   -------------------------------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-3);
}

@media (min-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card .icon {
    margin-bottom: var(--space-2);
}

.service-card:nth-child(6n+1) .icon,
.service-card:nth-child(6n+4) .icon { color: var(--color-teal); }
.service-card:nth-child(6n+2) .icon,
.service-card:nth-child(6n+5) .icon { color: var(--color-green); }
.service-card:nth-child(6n+3) .icon,
.service-card:nth-child(6n+6) .icon { color: var(--color-gold-dark); }

.service-card {
    background-color: var(--color-light-gray);
    border-radius: var(--radius);
    padding: var(--space-3);
    border-top: 3px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-top-color: var(--color-gold);
}

.service-card h3 {
    margin-bottom: var(--space-1);
}

.service-card p {
    font-size: 14px;
    color: #555555;
    margin-bottom: var(--space-2);
}

.service-card a.service-link {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-gold-dark);
}

.service-card a.service-link:hover {
    color: var(--color-teal);
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials-section {
    background-color: var(--color-dark-bg);
}

.testimonials-section .section-heading h2,
.testimonials-section .section-heading p {
    color: var(--color-white);
}

.testimonials-section .eyebrow {
    color: var(--color-gold);
}

.testimonials-section .section-heading p {
    color: var(--color-mid-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-3);
}

.testimonial-card {
    position: relative;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: var(--space-4) var(--space-3) var(--space-3);
    overflow: hidden;
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: -18px;
    left: 12px;
    font-family: Georgia, serif;
    font-size: 96px;
    line-height: 1;
    color: rgba(240, 165, 30, 0.18);
}

.testimonial-card:nth-child(2)::before { color: rgba(75, 210, 150, 0.18); }
.testimonial-card:nth-child(3)::before { color: rgba(0, 165, 195, 0.18); }
.testimonial-card:nth-child(4)::before { color: rgba(240, 165, 30, 0.18); }

.testimonial-card .stars {
    position: relative;
    color: var(--color-gold);
    margin-bottom: var(--space-2);
    font-size: 14px;
    letter-spacing: 2px;
}

.testimonial-card p {
    position: relative;
    color: var(--color-white);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: var(--space-2);
}

.testimonial-card .author {
    position: relative;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   About Teaser
   -------------------------------------------------------------------------- */
.about-teaser .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    align-items: center;
}

@media (min-width: 768px) {
    .about-teaser .container {
        grid-template-columns: 1fr 1fr;
    }
}

.about-teaser img {
    border-radius: var(--radius);
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about-teaser p {
    color: #333333;
}

/* --------------------------------------------------------------------------
   Contact CTA Band
   -------------------------------------------------------------------------- */
.cta-band {
    background-color: var(--color-dark-bg);
    text-align: center;
    border-top: 5px solid transparent;
    border-image: var(--gradient-brand) 1;
}

.cta-band h2 {
    color: var(--color-white);
    margin-bottom: var(--space-1);
}

.cta-band p {
    color: var(--color-mid-gray);
    margin-bottom: var(--space-3);
}

.cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2);
}
