/*
Theme Name: HandySuperman
Theme URI: https://handysuperman.co.uk
Author: HandySuperman
Author URI: https://handysuperman.co.uk
Description: Professional handyman services theme for HandySuperman – bold, dark, and built to convert.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: handysuperman
Tags: one-page, services, handyman, dark
*/

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --yellow:     #F5C518;
    --yellow-dark:#D4AA10;
    --black:      #0A0A0A;
    --dark:       #111111;
    --dark2:      #181818;
    --dark3:      #222222;
    --white:      #F5F2EA;
    --gray:       #888888;
    --gray-light: #BBBBBB;
    --red:        #C0392B;
    --font-head:  'Bebas Neue', sans-serif;
    --font-cond:  'Barlow Condensed', sans-serif;
    --font-body:  'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* =============================================
   NAVIGATION
   ============================================= */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 6vw;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10,10,10,0.0);
    transition: background 0.35s ease, border-color 0.35s ease;
    border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: rgba(245,197,24,0.12);
}

.nav-logo {
    font-family: var(--font-head);
    font-size: 1.7rem;
    letter-spacing: 1px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo .shield {
    width: 30px;
    height: 30px;
    background: var(--yellow);
    clip-path: polygon(50% 0%, 100% 20%, 100% 62%, 50% 100%, 0% 62%, 0% 20%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-head);
    font-size: 15px;
    color: var(--black);
    line-height: 1;
    padding-top: 2px;
}

.nav-logo .logo-hs { color: var(--white); }
.nav-logo .logo-accent { color: var(--yellow); }

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    color: var(--gray-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--yellow); }

.nav-cta {
    background: var(--yellow) !important;
    color: var(--black) !important;
    padding: 9px 22px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    transition: background 0.2s, transform 0.15s !important;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.nav-cta:hover {
    background: var(--yellow-dark) !important;
    transform: translateY(-1px);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-left {
    padding: 120px 5vw 80px 8vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,197,24,0.1);
    border: 1px solid rgba(245,197,24,0.28);
    color: var(--yellow);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 7px 14px;
    margin-bottom: 28px;
    width: fit-content;
}

.hero-badge .pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.6); }
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(3.8rem, 6.5vw, 7.5rem);
    line-height: 0.9;
    letter-spacing: 1px;
    margin-bottom: 26px;
}

.hero h1 .line-yellow { color: var(--yellow); display: block; }
.hero h1 .line-outline {
    -webkit-text-stroke: 2px var(--white);
    color: transparent;
    display: block;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--gray-light);
    max-width: 440px;
    margin-bottom: 40px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-cond);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 15px 34px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
}

.btn-primary svg, .btn-secondary svg { flex-shrink: 0; }

.btn-secondary {
    color: var(--white);
    font-family: var(--font-cond);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 15px 0;
    border-bottom: 2px solid var(--yellow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.btn-secondary:hover { color: var(--yellow); }

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-num {
    font-family: var(--font-head);
    font-size: 2.4rem;
    color: var(--yellow);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
    display: block;
}

.hero-right {
    background: var(--dark2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 22px,
        rgba(245,197,24,0.025) 22px,
        rgba(245,197,24,0.025) 23px
    );
}

.big-shield-wrap {
    position: relative;
    z-index: 1;
    width: min(380px, 75%);
    aspect-ratio: 1;
}

.big-shield {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(245,197,24,0.055);
    clip-path: polygon(50% 0%, 100% 20%, 100% 65%, 50% 100%, 0% 65%, 0% 20%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.big-h-letter {
    font-family: var(--font-head);
    font-size: clamp(8rem, 16vw, 18rem);
    color: var(--yellow);
    opacity: 0.12;
    line-height: 1;
    user-select: none;
    padding-top: 8px;
}

.hero-floating-tags {
    position: absolute;
    inset: 0;
}

.ftag {
    position: absolute;
    background: var(--dark3);
    border: 1px solid rgba(245,197,24,0.15);
    color: var(--white);
    font-family: var(--font-cond);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 14px;
    white-space: nowrap;
    animation: floatTag 4s ease-in-out infinite;
}

.ftag:nth-child(1) { top: 14%; left: 8%;  animation-delay: 0s; }
.ftag:nth-child(2) { top: 28%; right: 6%; animation-delay: 0.8s; }
.ftag:nth-child(3) { top: 50%; left: 5%;  animation-delay: 1.4s; }
.ftag:nth-child(4) { bottom: 24%; right: 7%; animation-delay: 0.5s; }
.ftag:nth-child(5) { bottom: 14%; left: 14%; animation-delay: 1.9s; }

.ftag::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--yellow);
    margin-right: 8px;
    vertical-align: middle;
    margin-top: -2px;
}

@keyframes floatTag {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.hero-availability {
    position: absolute;
    bottom: 28px;
    right: 28px;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-cond);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 9px 16px;
    transform: rotate(-2deg);
    z-index: 2;
}

/* =============================================
   TICKER STRIP
   ============================================= */
.ticker-strip {
    background: var(--yellow);
    padding: 13px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    gap: 0;
    animation: ticker 22s linear infinite;
}

.ticker-item {
    font-family: var(--font-cond);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    padding: 0 32px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.ticker-item::after {
    content: '✦';
    opacity: 0.4;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* =============================================
   SECTION SHARED STYLES
   ============================================= */
.section-wrap { padding: 90px 8vw; }

.section-header { margin-bottom: 54px; }

.section-tag {
    font-family: var(--font-cond);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--yellow);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.section-tag::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--yellow);
    flex-shrink: 0;
}

.section-wrap h2 {
    font-family: var(--font-head);
    font-size: clamp(2.6rem, 4.5vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-intro {
    font-size: 1.02rem;
    color: var(--gray-light);
    max-width: 540px;
    line-height: 1.75;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
#services { background: var(--dark); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(245,197,24,0.06);
}

.service-card {
    background: var(--dark2);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.25s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { background: #1E1E1E; }

.card-bg-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-head);
    font-size: 5rem;
    color: rgba(245,197,24,0.06);
    line-height: 1;
    user-select: none;
}

.card-icon {
    width: 52px;
    height: 52px;
    background: rgba(245,197,24,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    flex-shrink: 0;
}

.card-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--yellow);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card-title {
    font-family: var(--font-cond);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.service-list { display: flex; flex-direction: column; gap: 10px; }

.service-list li {
    font-size: 0.9rem;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
}

.service-list li:hover { color: var(--white); }

.service-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--yellow);
    flex-shrink: 0;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* =============================================
   WHY US SECTION
   ============================================= */
#why-us {
    background: var(--black);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.04);
    margin-top: 0;
}

.why-card {
    background: var(--dark);
    padding: 36px 28px;
    transition: background 0.2s;
}

.why-card:hover { background: var(--dark2); }

.why-icon {
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(245,197,24,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.why-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--yellow);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-title {
    font-family: var(--font-cond);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
}

.why-desc {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
    background: var(--yellow);
    padding: 64px 8vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-band-text h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    color: var(--black);
    line-height: 1;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.cta-band-text p {
    font-size: 1rem;
    color: rgba(0,0,0,0.6);
}

.btn-dark {
    background: var(--black);
    color: var(--yellow);
    font-family: var(--font-cond);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 15px 34px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    white-space: nowrap;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-dark:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
#contact { background: var(--dark); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.contact-info h3 {
    font-family: var(--font-head);
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.contact-info p {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(245,197,24,0.1);
    border: 1px solid rgba(245,197,24,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--yellow);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-item-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 3px;
}

.contact-item-value {
    font-size: 0.95rem;
    color: var(--white);
}

/* CONTACT FORM */
.contact-form-wrap {
    background: var(--dark2);
    padding: 44px;
    border-top: 3px solid var(--yellow);
}

.form-title {
    font-family: var(--font-head);
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--white);
}

.form-subtitle {
    font-size: 0.88rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--yellow);
    background: rgba(245,197,24,0.04);
}

.form-group select option {
    background: var(--dark2);
    color: var(--white);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit {
    width: 100%;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-cond);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 24px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    margin-top: 6px;
}

.form-submit:hover {
    background: var(--yellow-dark);
    transform: translateY(-1px);
}

.form-submit.loading { opacity: 0.7; cursor: not-allowed; pointer-events: none; }

.form-message {
    margin-top: 16px;
    padding: 12px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: rgba(39,174,96,0.12);
    border: 1px solid rgba(39,174,96,0.3);
    color: #2ecc71;
    display: block;
}

.form-message.error {
    background: rgba(192,57,43,0.12);
    border: 1px solid rgba(192,57,43,0.3);
    color: #e74c3c;
    display: block;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--dark2);
    border-top: 1px solid rgba(245,197,24,0.1);
}

.footer-main {
    padding: 60px 8vw 44px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 52px;
}

.footer-brand .nav-logo {
    margin-bottom: 18px;
    display: inline-flex;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all 0.2s;
}

.social-btn:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.social-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-col-title {
    font-family: var(--font-cond);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 11px; }

.footer-links a {
    font-size: 0.88rem;
    color: var(--gray);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-links a:hover { color: var(--white); }

.footer-links a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--yellow);
    opacity: 0.4;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.footer-links a:hover::before { opacity: 1; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 8vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--gray);
}

.footer-bottom a { color: var(--yellow); }

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 500;
    width: 44px;
    height: 44px;
    background: var(--yellow);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    clip-path: polygon(50% 0%, 100% 30%, 100% 100%, 0% 100%, 0% 30%);
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top svg {
    width: 18px;
    height: 18px;
    stroke: var(--black);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 110px 6vw 72px; text-align: center; }
    .hero-badge { margin-left: auto; margin-right: auto; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }

    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 68px; left: 0; right: 0;
        background: rgba(10,10,10,0.98);
        padding: 16px 0;
        border-bottom: 1px solid rgba(245,197,24,0.12);
    }
    .nav-links.open a {
        padding: 14px 6vw;
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .nav-links.open .nav-cta {
        margin: 14px 6vw 0;
        clip-path: none !important;
        text-align: center;
        justify-content: center;
    }
    .nav-hamburger { display: flex; }

    .section-wrap { padding: 64px 5vw; }
    .why-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 22px; }
    .footer-main { grid-template-columns: 1fr; }
    .cta-band { text-align: center; justify-content: center; }
}
