/* ========================================================
   Highland Lakes Irrigation — Hill Country Modern
   ======================================================== */

:root {
    /* Palette */
    --cream:        #FAF8F4;
    --cream-dark:   #F0EDE6;
    --sand:         #E4DFD5;
    --border:       #D5CFC4;
    --forest:       #1B3A2D;
    --forest-mid:   #2A5240;
    --forest-light: #3A6B55;
    --sage:         #6B8F7B;
    --sage-light:   #A3BFB0;
    --copper:       #B5763B;
    --copper-hover: #CB8A4E;
    --copper-glow:  rgba(181, 118, 59, 0.12);
    --charcoal:     #1C1C1C;
    --text:         #3A3A3A;
    --text-light:   #6E6E6E;
    --text-lighter: #9A9A9A;
    --white:        #FFFFFF;

    /* Typography */
    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body:    'Figtree', system-ui, sans-serif;

    /* Spacing */
    --section-py: clamp(80px, 10vw, 120px);
    --container:  1200px;

    /* Effects */
    --shadow-sm:  0 1px 3px rgba(0,0,0,.06);
    --shadow-md:  0 4px 16px rgba(0,0,0,.08);
    --shadow-lg:  0 12px 40px rgba(0,0,0,.1);
    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --ease:       cubic-bezier(.25,.46,.45,.94);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
ul { list-style: none; }
fieldset { border: none; }
abbr { text-decoration: none; color: var(--copper); }

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

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); font-family: var(--font-body); font-weight: 600; }
h1 em, h2 em { font-style: italic; }

.lead {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* ---- Tag / Label ---- */
.tag {
    display: inline-block;
    padding: 6px 18px;
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--forest);
    border: 1px solid var(--sage-light);
    border-radius: 100px;
    margin-bottom: 18px;
}
.tag--light {
    color: var(--sage-light);
    border-color: rgba(255,255,255,.25);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 34px;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all .3s var(--ease);
}
.btn-accent {
    background: var(--copper);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(181,118,59,.35);
}
.btn-accent:hover {
    background: var(--copper-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(181,118,59,.4);
}
.btn-accent--lg {
    padding: 18px 44px;
    font-size: 1.05rem;
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.45);
}
.btn-outline:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.7);
}
.btn-outline--dark {
    background: transparent;
    color: var(--forest);
    border: 1.5px solid var(--border);
    padding: 12px 28px;
}
.btn-outline--dark:hover {
    border-color: var(--forest);
    background: var(--forest);
    color: var(--white);
}

/* ---- Section heads ---- */
.section-head { margin-bottom: 60px; }
.section-head--center { text-align: center; }
.section-head p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 540px;
    margin-top: 14px;
}
.section-head--center p { margin-left: auto; margin-right: auto; }

/* ---- Reveal animation ---- */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
/* stagger children inside grids */
.services-grid .reveal:nth-child(2) { transition-delay: .08s; }
.services-grid .reveal:nth-child(3) { transition-delay: .16s; }
.services-grid .reveal:nth-child(4) { transition-delay: .24s; }
.services-grid .reveal:nth-child(5) { transition-delay: .32s; }
.services-grid .reveal:nth-child(6) { transition-delay: .40s; }
.about-features .feature-item:nth-child(2) { transition-delay: .08s; }
.about-features .feature-item:nth-child(3) { transition-delay: .16s; }
.about-features .feature-item:nth-child(4) { transition-delay: .24s; }
.contact-grid .reveal:nth-child(2) { transition-delay: .1s; }
.contact-grid .reveal:nth-child(3) { transition-delay: .2s; }

/* ========================================================
   HEADER
   ======================================================== */
.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all .35s var(--ease);
}
.header-scrolled {
    background: rgba(250,248,244,.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 12px rgba(0,0,0,.06);
    padding: 12px 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    transition: color .3s;
}
.logo em { font-style: italic; }
.logo-icon { color: var(--sage-light); transition: color .3s; }
.header-scrolled .logo { color: var(--charcoal); }
.header-scrolled .logo-icon { color: var(--forest); }

/* Nav */
.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-link {
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    letter-spacing: .3px;
    position: relative;
    transition: color .25s;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--copper);
    transition: width .3s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.header-scrolled .nav-link { color: var(--text); }
.header-scrolled .nav-link:hover { color: var(--charcoal); }

.nav-link--cta {
    padding: 8px 22px;
    border: 1.5px solid rgba(255,255,255,.35);
    border-radius: var(--radius-sm);
    color: var(--white);
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover {
    background: var(--copper);
    border-color: var(--copper);
    color: var(--white);
}
.header-scrolled .nav-link--cta {
    border-color: var(--copper);
    color: var(--copper);
}
.header-scrolled .nav-link--cta:hover {
    background: var(--copper);
    color: var(--white);
}

/* Header phone */
.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: .88rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-sm);
    transition: all .3s;
}
.header-phone:hover { background: rgba(255,255,255,.12); color: var(--white); }
.header-scrolled .header-phone {
    color: var(--forest);
    border-color: var(--border);
}
.header-scrolled .header-phone:hover {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s var(--ease);
}
.header-scrolled .mobile-toggle span { background: var(--charcoal); }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================================
   HERO
   ======================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 100px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    display: block;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    /* Fallback if img fails to load — uses current palette */
    background: linear-gradient(165deg, var(--forest), var(--sage)) center / cover no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        165deg,
        var(--forest-94, rgba(27,58,45,0.94)) 0%,
        var(--forest-88, rgba(27,58,45,0.88)) 35%,
        rgba(28,28,28,.82) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
}

.hero-tag {
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 28px;
}
.hero-title {
    color: var(--white);
    margin-bottom: 28px;
    line-height: 1.15;
}
.hero-title em {
    color: var(--sage-light);
}
.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: rgba(255,255,255,.78);
    max-width: 600px;
    margin: 0 auto 44px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}
.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 500;
    color: rgba(255,255,255,.65);
    letter-spacing: .3px;
}
.badge i { color: var(--sage-light); font-size: .9rem; }

/* scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.hero-scroll span {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: .4; transform: scaleY(1); }
    50%      { opacity: 1;  transform: scaleY(1.2); }
}

/* ========================================================
   ABOUT
   ======================================================== */
.about {
    padding: var(--section-py) 0;
    background: var(--cream);
}
.about-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 64px;
}
.about-label {
    position: sticky;
    top: 120px;
}
.about-body h2 {
    margin-bottom: 24px;
}
.about-body p {
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-item {
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--sand);
    transition: all .3s var(--ease);
}
.feature-item:hover {
    border-color: var(--sage-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--forest);
    color: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
    font-size: 1.1rem;
}
.feature-item h3 { margin-bottom: 8px; }
.feature-item p {
    font-size: .9rem;
    color: var(--text-light);
    margin: 0;
}

/* ========================================================
   SERVICES
   ======================================================== */
.services {
    padding: var(--section-py) 0;
    background: var(--white);
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.svc-card {
    position: relative;
    padding: 36px 28px 32px;
    background: var(--cream);
    border: 1px solid var(--sand);
    border-radius: var(--radius-md);
    transition: all .35s var(--ease);
    overflow: hidden;
}
.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--copper);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}
.svc-card:hover {
    border-color: var(--sage-light);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.svc-card:hover::before {
    transform: scaleX(1);
}
.svc-number {
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--sand);
    line-height: 1;
    transition: color .3s;
}
.svc-card:hover .svc-number { color: var(--copper-glow); }
.svc-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--forest);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    margin-bottom: 20px;
    transition: all .35s var(--ease);
}
.svc-card:hover .svc-icon {
    background: var(--copper);
    transform: scale(1.08);
}
.svc-card h3 { margin-bottom: 10px; }
.svc-card p {
    font-size: .92rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.65;
}

/* ========================================================
   WHY US
   ======================================================== */
.why {
    padding: var(--section-py) 0;
    background: var(--forest);
    color: var(--white);
}
.why h2 { color: var(--white); }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.why-intro {
    position: sticky;
    top: 120px;
}
.why-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.why-item {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: rgba(255,255,255,.06);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,.08);
    transition: all .3s var(--ease);
}
.why-item:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.15);
    transform: translateX(6px);
}
.why-marker {
    width: 4px;
    min-height: 100%;
    background: var(--copper);
    border-radius: 4px;
    flex-shrink: 0;
}
.why-item h3 {
    color: var(--white);
    margin-bottom: 8px;
}
.why-item p {
    font-size: .92rem;
    color: rgba(255,255,255,.65);
    margin: 0;
}

/* ========================================================
   AREAS
   ======================================================== */
.areas {
    padding: var(--section-py) 0;
    background: var(--charcoal);
    color: var(--white);
}
.areas h2 { color: var(--white); }
.areas h2 em { color: var(--sage-light); }
.areas .section-head p { color: rgba(255,255,255,.6); }
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}
.areas-grid > li { list-style: none; }
.area-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 100px;
    font-size: .9rem;
    font-weight: 500;
    color: inherit;
    text-decoration: none;
    transition: all .3s var(--ease);
}
.area-pill i { color: var(--copper); font-size: .8rem; }
.area-pill:hover,
.area-pill:focus-visible {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.2);
    transform: translateY(-2px);
    outline: none;
}
.areas-note {
    text-align: center;
    margin-top: 36px;
    font-size: .9rem;
    color: rgba(255,255,255,.45);
    font-style: italic;
}

/* ========================================================
   QUOTE FORM
   ======================================================== */
.quote {
    padding: var(--section-py) 0;
    background: var(--cream-dark);
    position: relative;
}
.quote::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 30%, var(--forest-03, rgba(27,58,45,0.03)) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(181,118,59,.04) 0%, transparent 50%);
    pointer-events: none;
}

.quote-form {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
}

.form-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--sand);
}
.form-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 32px;
}
.form-section legend {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.form-hint {
    font-size: .88rem;
    color: var(--text-lighter);
    margin-bottom: 20px;
}

/* Service selector cards */
.svc-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.svc-option input { display: none; }
.svc-option-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 22px 14px;
    background: var(--white);
    border: 1.5px solid var(--sand);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all .25s var(--ease);
    text-align: center;
}
.svc-option-card:hover {
    border-color: var(--sage-light);
    box-shadow: var(--shadow-sm);
}
.svc-option-card i {
    font-size: 1.4rem;
    color: var(--sage);
    transition: color .25s;
}
.svc-option-label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: .2px;
}
.svc-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--forest);
    color: var(--white);
    border-radius: 50%;
    font-size: .65rem;
    opacity: 0;
    transform: scale(.5);
    transition: all .25s var(--ease);
}

/* Checked state */
.svc-option input:checked + .svc-option-card {
    border-color: var(--forest);
    background: linear-gradient(to bottom, var(--forest-04, rgba(27,58,45,0.04)), var(--white));
    box-shadow: 0 2px 12px var(--forest-10, rgba(27,58,45,0.10));
}
.svc-option input:checked + .svc-option-card i { color: var(--forest); }
.svc-option input:checked + .svc-option-card .svc-check {
    opacity: 1;
    transform: scale(1);
}

/* Form inputs */
.form-row { margin-bottom: 18px; }
.form-row--half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group + .form-group { margin-top: 18px; }
.form-row .form-group + .form-group { margin-top: 0; }

.form-label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: .3px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--text);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: all .25s var(--ease);
    -webkit-appearance: none;
}
.form-input:focus {
    border-color: var(--copper);
    box-shadow: 0 0 0 3px var(--copper-glow);
}
.form-input::placeholder { color: var(--text-lighter); }
textarea.form-input {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}
select.form-input {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236E6E6E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Pill radio groups */
.pill-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.pill-option input { display: none; }
.pill-option span {
    display: inline-block;
    padding: 10px 20px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-light);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    transition: all .25s var(--ease);
}
.pill-option span:hover {
    border-color: var(--sage-light);
    color: var(--text);
}
.pill-option input:checked + span {
    background: var(--forest);
    border-color: var(--forest);
    color: var(--white);
}

/* Form submit area */
.form-submit {
    text-align: center;
    padding-top: 16px;
}
.form-privacy {
    margin-top: 14px;
    font-size: .82rem;
    color: var(--text-lighter);
}

/* Submit button states */
.form-submit .btn:disabled {
    opacity: .7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Success state */
.quote-success {
    display: none;
    position: relative;
}
.quote-success-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--sand);
    box-shadow: var(--shadow-md);
}
.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--forest);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    animation: successPop .5s var(--ease);
}
@keyframes successPop {
    0%   { transform: scale(0); }
    60%  { transform: scale(1.15); }
    100% { transform: scale(1); }
}
.quote-success h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.quote-success p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: .95rem;
}
.success-note {
    font-size: .88rem;
    color: var(--text-lighter);
    margin-bottom: 24px;
}
.success-note a {
    color: var(--copper);
    font-weight: 600;
}
.success-note a:hover { text-decoration: underline; }

/* ========================================================
   CONTACT
   ======================================================== */
.contact {
    padding: var(--section-py) 0;
    background: var(--cream);
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.contact-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: var(--radius-md);
    transition: all .3s var(--ease);
}
.contact-card:hover {
    border-color: var(--sage-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.contact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--forest);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
}
.contact-card h3 { margin-bottom: 10px; }
.contact-link {
    display: block;
    color: var(--copper);
    font-weight: 500;
    font-size: .92rem;
    margin-bottom: 4px;
}
.contact-link:hover { text-decoration: underline; }
.contact-card p {
    font-size: .9rem;
    color: var(--text-light);
    margin: 0;
}

/* ========================================================
   FOOTER
   ======================================================== */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,.7);
    padding: 72px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-logo .logo-icon { color: var(--sage-light); }
.footer-brand p {
    font-size: .88rem;
    line-height: 1.7;
    color: rgba(255,255,255,.45);
}
.footer-col h4 {
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 20px;
}
.footer-col li {
    margin-bottom: 10px;
    font-size: .9rem;
    color: rgba(255,255,255,.5);
}
.footer-col li a {
    color: rgba(255,255,255,.6);
    transition: all .25s;
}
.footer-col li a:hover {
    color: var(--white);
    padding-left: 4px;
}
.footer-col li i {
    width: 18px;
    color: var(--sage);
    margin-right: 6px;
    font-size: .8rem;
}
.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
}
.footer-bottom p {
    font-size: .82rem;
    color: rgba(255,255,255,.3);
    margin-bottom: 4px;
}

/* ========================================================
   FOCUS & A11Y
   ======================================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--copper);
    outline-offset: 2px;
}

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 1024px) {
    .about-features { grid-template-columns: repeat(2, 1fr); }
    .services-grid  { grid-template-columns: repeat(2, 1fr); }
    .why-grid       { grid-template-columns: 1fr; gap: 40px; }
    .why-intro      { position: static; }
    .footer-grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --section-py: clamp(60px, 8vw, 80px); }

    /* Mobile nav */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        height: 100svh;
        background: var(--charcoal);
        padding: 100px 36px;
        transition: right .35s var(--ease);
        z-index: 1000;
    }
    .nav-open { right: 0; }
    .nav-list { flex-direction: column; align-items: flex-start; gap: 24px; }
    .nav-link {
        color: rgba(255,255,255,.8);
        font-size: 1.1rem;
    }
    .nav-link--cta { border-color: var(--copper); }
    .header-phone { display: none; }
    .mobile-toggle { display: flex; }
    .mobile-toggle.active span { background: var(--white); }

    /* Hero */
    .hero { min-height: auto; padding: 140px 20px 80px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 280px; }
    .hero-badges { flex-direction: column; gap: 12px; }
    .hero-scroll { display: none; }

    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 24px; }
    .about-label { position: static; }
    .about-features { grid-template-columns: 1fr; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; }

    /* Quote form */
    .svc-selector { grid-template-columns: repeat(2, 1fr); }
    .form-row--half { grid-template-columns: 1fr; }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    .footer-logo { justify-content: center; }
}

@media (max-width: 480px) {
    .svc-selector { grid-template-columns: 1fr; }
    .pill-group { flex-direction: column; }
    .pill-option span { width: 100%; text-align: center; }
    .btn { padding: 13px 24px; font-size: .9rem; }
    .btn-accent--lg { padding: 16px 32px; }
    .quote-success-inner { padding: 40px 24px; }
}

/* ========================================================
   SEO / ACCESSIBILITY ADDITIONS
   ======================================================== */

/* Skip link — visible only on focus */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 1000;
}
.skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 12px 20px;
    background: var(--charcoal, #1c1c1c);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    outline: 2px solid var(--copper, #c88a46);
    outline-offset: 2px;
}

/* Visually hidden but available to screen readers */
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* address element reset (used in contact card) */
address {
    font-style: normal;
}

/* ========================================================
   TRUST BAR
   ======================================================== */
.trustbar {
    background: var(--cream, #f5f4ec);
    border-top: 1px solid rgba(0,0,0,.06);
    border-bottom: 1px solid rgba(0,0,0,.06);
    padding: 28px 24px;
}
.trustbar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 24px 36px;
}
.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: .92rem;
    color: var(--charcoal, #1c1c1c);
    line-height: 1.3;
}
.trust-item i {
    width: 36px; height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--forest-08, rgba(27,58,45,0.08));
    color: var(--sage, #1b3a2d);
    font-size: 1rem;
    flex-shrink: 0;
}
.trust-item strong { font-weight: 700; }

@media (max-width: 720px) {
    .trustbar-inner { justify-content: flex-start; }
    .trust-item { font-size: .85rem; flex: 1 1 calc(50% - 24px); }
}

/* ========================================================
   PROCESS
   ======================================================== */
.process {
    padding: 100px 24px;
    background: var(--white, #fff);
}
.process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 60px auto 0;
    list-style: none;
    padding: 0;
    counter-reset: process;
}
.process-step {
    position: relative;
    padding: 40px 28px 32px;
    background: var(--cream, #f5f4ec);
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.04);
    transition: transform .4s var(--ease, ease), box-shadow .4s var(--ease, ease);
}
.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px -20px rgba(0,0,0,.18);
}
.process-num {
    position: absolute;
    top: -22px;
    left: 24px;
    width: 44px; height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sage, #1b3a2d);
    color: #fff;
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 400;
    box-shadow: 0 8px 20px -8px var(--forest-40, rgba(27,58,45,0.40));
}
.process-step h3 {
    margin: 8px 0 12px;
    font-size: 1.15rem;
    color: var(--charcoal, #1c1c1c);
}
.process-step p {
    color: rgba(28,28,28,.72);
    line-height: 1.6;
    font-size: .95rem;
}
.process-step a { color: var(--sage, #1b3a2d); font-weight: 600; }

@media (max-width: 960px) {
    .process-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .process { padding: 70px 20px; }
    .process-list { grid-template-columns: 1fr; gap: 40px; }
}

/* ========================================================
   FAQ
   ======================================================== */
.faq {
    padding: 100px 24px;
    background: var(--cream, #f5f4ec);
}
.faq-list {
    max-width: 860px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--white, #fff);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow .3s var(--ease, ease), border-color .3s var(--ease, ease);
}
.faq-item[open] {
    box-shadow: 0 14px 40px -24px rgba(0,0,0,.16);
    border-color: var(--forest-18, rgba(27,58,45,0.18));
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--charcoal, #1c1c1c);
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span { flex: 1; }
.faq-item summary > i {
    width: 32px; height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--forest-08, rgba(27,58,45,0.08));
    color: var(--sage, #1b3a2d);
    font-size: .8rem;
    transition: transform .3s var(--ease, ease), background .3s var(--ease, ease);
    flex-shrink: 0;
}
.faq-item[open] summary > i {
    transform: rotate(45deg);
    background: var(--sage, #1b3a2d);
    color: #fff;
}
.faq-body {
    padding: 0 26px 26px;
    color: rgba(28,28,28,.78);
    line-height: 1.75;
    font-size: .98rem;
}
.faq-body p { margin: 0; }
.faq-body a { color: var(--sage, #1b3a2d); font-weight: 600; }

@media (max-width: 560px) {
    .faq { padding: 70px 18px; }
    .faq-item summary { padding: 18px 20px; font-size: .96rem; }
    .faq-body { padding: 0 20px 22px; font-size: .94rem; }
}

/* ========================================================
   BREADCRUMB (city pages)
   ======================================================== */
.breadcrumb {
    background: var(--cream, #FAF8F4);
    border-bottom: 1px solid rgba(0,0,0,.06);
    padding: 18px 24px;
    font-size: .88rem;
}
.breadcrumb ol {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
}
.breadcrumb li {
    display: inline-flex;
    align-items: center;
    color: rgba(28,28,28,.6);
}
.breadcrumb li + li::before {
    content: "/";
    margin: 0 10px;
    color: rgba(28,28,28,.3);
    font-weight: 300;
}
.breadcrumb a {
    color: var(--sage, #6B8F7B);
    font-weight: 500;
    text-decoration: none;
    transition: color .2s ease;
}
.breadcrumb a:hover { color: var(--sage-light, #A3BFB0); }
.breadcrumb [aria-current="page"] {
    color: var(--charcoal, #1C1C1C);
    font-weight: 600;
}

/* ========================================================
   LOCAL CONDITIONS (city pages)
   ======================================================== */
.local-conditions {
    padding: 100px 24px;
    background: var(--cream, #FAF8F4);
}
.local-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 60px auto 0;
}
.local-card {
    background: var(--white, #fff);
    padding: 38px 30px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.05);
    transition: transform .4s var(--ease, ease), box-shadow .4s var(--ease, ease);
}
.local-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px -20px rgba(0,0,0,.16);
}
.local-icon {
    width: 56px; height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(107,143,123,.12);
    color: var(--sage, #6B8F7B);
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.local-card h3 {
    margin: 0 0 14px;
    font-size: 1.15rem;
    color: var(--charcoal, #1C1C1C);
}
.local-card p {
    color: rgba(28,28,28,.74);
    line-height: 1.7;
    font-size: .95rem;
    margin: 0;
}
@media (max-width: 960px) {
    .local-grid { grid-template-columns: 1fr; gap: 20px; }
    .local-conditions { padding: 70px 20px; }
}

/* ========================================================
   FOOTER NAP (Name / Address / Phone)
   ======================================================== */
.footer-nap {
    margin-top: 18px;
    font-size: .88rem;
    line-height: 1.65;
    color: rgba(255,255,255,.7);
}
.footer-nap strong { color: rgba(255,255,255,.92); font-weight: 600; }
.footer-nap a { color: rgba(255,255,255,.85); }
.footer-nap a:hover { color: #fff; }

/* ========================================================
   PRINT
   ======================================================== */
@media print {
    .header, .hero-actions, .hero-scroll, .mobile-toggle,
    .form-submit, .quote-success, .skip-link { display: none; }
    .hero { min-height: auto; padding: 40px; }
    .hero-overlay { background: var(--white); }
    .hero-bg img { display: none; }
    .hero-title, .hero-sub, .hero-tag { color: var(--charcoal); }
    .why { background: var(--white); color: var(--charcoal); }
    .why h2, .why h3, .why-item p { color: var(--charcoal); }
    .areas { background: var(--white); color: var(--charcoal); }
    .areas h2, .area-pill { color: var(--charcoal); }
    .trustbar, .process, .faq { padding: 30px 0; }
    .faq-item { box-shadow: none !important; border: 1px solid #ccc; page-break-inside: avoid; }
    .faq-item[open] .faq-body { display: block; }
    .faq-body { display: block !important; }
    .footer-nap, .footer-nap strong, .footer-nap a { color: var(--charcoal) !important; }
    a[href^="tel:"]::after { content: " (" attr(href) ")"; font-size: .85em; }
}
