/* style.css */

/* ============ RESET & BASE ============ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --ink: #1A2E20;
    --ink-soft: #2A4A35;
    --ink-deep: #12211A;
    --salt: #F5F3EE;
    --salt-2: #EAE6DC;
    --citrus: #C8E63C;
    --citrus-deep: #B5D52A;
    --sage: #7CA987;
    --body: #4A5568;
    --body-light: #718096;
    --line: rgba(26, 46, 32, 0.12);
    --line-soft: rgba(26, 46, 32, 0.06);
    --white: #ffffff;

    --ff-display: "Space Grotesk", system-ui, sans-serif;
    --ff-body: "Plus Jakarta Sans", system-ui, sans-serif;

    --container: 1200px;
    --gutter: clamp(20px, 5vw, 32px);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 999px;

    --shadow-sm: 0 2px 8px rgba(26, 46, 32, 0.06);
    --shadow-md: 0 8px 28px rgba(26, 46, 32, 0.10);
    --shadow-lg: 0 20px 60px rgba(26, 46, 32, 0.18);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--ff-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--body);
    background: var(--salt);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--ff-display);
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

input,
textarea,
select {
    font: inherit;
    color: inherit;
}

::selection {
    background: var(--citrus);
    color: var(--ink);
}

/* ============ LAYOUT ============ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section {
    padding: clamp(64px, 10vw, 120px) 0;
}

.section-head {
    max-width: 760px;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ff-body);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--citrus);
}

.section-title {
    font-size: clamp(1.9rem, 4.5vw, 3.1rem);
    margin-bottom: 18px;
}

.section-intro {
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    color: var(--body);
    max-width: 620px;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.005em;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
    will-change: transform;
    cursor: pointer;
    text-align: center;
    line-height: 1.2;
}

.btn-sm {
    padding: 11px 20px;
    font-size: 0.88rem;
}

.btn-primary {
    background: var(--ink);
    color: var(--citrus);
    box-shadow: 0 8px 24px rgba(26, 46, 32, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--citrus);
    color: var(--ink);
    box-shadow: 0 12px 32px rgba(26, 46, 32, 0.30);
}

.btn-secondary {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
}

.btn-secondary:hover {
    background: var(--ink);
    color: var(--citrus);
    transform: translateY(-2px);
}

.btn-on-dark {
    color: var(--salt);
    border-color: rgba(245, 243, 238, 0.45);
}

.btn-on-dark:hover {
    background: var(--salt);
    color: var(--ink);
    border-color: var(--salt);
}

/* ============ HEADER ============ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(245, 243, 238, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-soft);
    transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
    background: rgba(245, 243, 238, 0.96);
    box-shadow: 0 1px 20px rgba(26, 46, 32, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.logo-mark {
    width: 38px;
    height: 38px;
    background: var(--ink);
    color: var(--citrus);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.logo-text {
    line-height: 1;
}

.logo-sub {
    color: var(--sage);
    font-weight: 500;
    margin-left: 4px;
    font-size: 0.85em;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav {
    display: none;
    align-items: center;
    gap: 30px;
}

.nav a {
    font-size: 0.94rem;
    font-weight: 500;
    color: var(--ink);
    position: relative;
    transition: color 0.2s;
}

.nav a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--citrus);
    transition: width 0.3s var(--ease);
}

.nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: none;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 6px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.3s var(--ease), opacity 0.2s;
    transform-origin: center;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 360px);
    background: var(--ink);
    color: var(--salt);
    padding: 90px 32px 32px;
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu a {
    font-family: var(--ff-display);
    font-size: 1.3rem;
    color: var(--salt);
    padding: 14px 0;
    border-bottom: 1px solid rgba(245, 243, 238, 0.1);
    transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu a:hover {
    color: var(--citrus);
    padding-left: 8px;
}

.mobile-menu .btn {
    margin-top: 22px;
}

.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.menu-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 110px 0 60px;
    overflow: hidden;
    background: var(--ink);
    color: var(--salt);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(26, 46, 32, 0.55) 0%, rgba(26, 46, 32, 0.85) 55%, var(--ink) 100%),
        radial-gradient(circle at 80% 20%, rgba(200, 230, 60, 0.08) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    background: rgba(200, 230, 60, 0.12);
    border: 1px solid rgba(200, 230, 60, 0.3);
    color: var(--citrus);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--citrus);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(200, 230, 60, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(200, 230, 60, 0.2);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(200, 230, 60, 0.05);
    }
}

.hero h1 {
    color: var(--salt);
    font-size: clamp(2.3rem, 7vw, 4.5rem);
    line-height: 1.02;
    margin-bottom: 24px;
    letter-spacing: -0.035em;
}

.hero h1 .accent {
    color: var(--citrus);
    font-style: italic;
    font-weight: 500;
    font-family: var(--ff-display);
}

.hero p.lead {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    line-height: 1.6;
    color: rgba(245, 243, 238, 0.82);
    max-width: 580px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 56px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 580px;
    padding-top: 28px;
    border-top: 1px solid rgba(245, 243, 238, 0.15);
}

.hero-stat-num {
    font-family: var(--ff-display);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--citrus);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(245, 243, 238, 0.65);
    margin-top: 8px;
}

/* ============ TRUST BAR ============ */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
}

.trust-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 4vw, 44px);
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--ink-soft);
    font-weight: 500;
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--sage);
    flex-shrink: 0;
}

/* ============ SERVIZI ============ */
.services {
    background: var(--salt);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.service-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px;
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--citrus);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 54px;
    height: 54px;
    background: var(--salt);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    margin-bottom: 22px;
    transition: background 0.3s, color 0.3s, transform 0.3s var(--ease);
}

.service-card:hover .service-icon {
    background: var(--citrus);
    transform: rotate(-4deg);
}

.service-icon svg {
    width: 26px;
    height: 26px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--body);
}

.services-note {
    margin-top: 32px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--body);
}

.services-note a {
    color: var(--ink);
    font-weight: 600;
    border-bottom: 2px solid var(--citrus);
    padding-bottom: 1px;
    transition: color 0.2s;
}

.services-note a:hover {
    color: var(--ink-soft);
}

/* ============ PERCHÉ ============ */
.why {
    background: var(--ink);
    color: var(--salt);
    position: relative;
    overflow: hidden;
}

.why::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(200, 230, 60, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.why::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 169, 135, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.why>.container {
    position: relative;
    z-index: 1;
}

.why .eyebrow {
    color: var(--citrus);
}

.why .eyebrow::before {
    background: var(--citrus);
}

.why .section-title {
    color: var(--salt);
}

.why .section-intro {
    color: rgba(245, 243, 238, 0.72);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 56px;
}

.why-card {
    padding: 28px 0;
    border-top: 1px solid rgba(245, 243, 238, 0.12);
}

.why-card:last-child {
    border-bottom: 1px solid rgba(245, 243, 238, 0.12);
}

.why-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}

.why-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(200, 230, 60, 0.14);
    color: var(--citrus);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-card-icon svg {
    width: 22px;
    height: 22px;
}

.why-card h3 {
    color: var(--salt);
    font-size: 1.18rem;
}

.why-card p {
    color: rgba(245, 243, 238, 0.68);
    font-size: 0.94rem;
    line-height: 1.6;
    padding-left: 60px;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
    padding: 36px 28px;
    background: rgba(245, 243, 238, 0.04);
    border: 1px solid rgba(245, 243, 238, 0.1);
    border-radius: var(--radius-lg);
}

.why-stat-num {
    font-family: var(--ff-display);
    font-size: clamp(2.1rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--citrus);
    line-height: 1;
}

.why-stat-label {
    margin-top: 10px;
    color: rgba(245, 243, 238, 0.7);
    font-size: 0.86rem;
    line-height: 1.4;
}

/* ============ PROCESSO ============ */
.processo {
    background: var(--salt-2);
}

.process-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.process-step {
    position: relative;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    align-items: start;
}

.process-step:last-child {
    border-bottom: 1px solid var(--line);
}

.process-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s var(--ease);
}

.process-step:hover .process-step-num {
    background: var(--ink);
    color: var(--citrus);
    border-color: var(--ink);
    transform: scale(1.05);
}

.process-step-content h3 {
    font-size: 1.18rem;
    margin-bottom: 6px;
    padding-top: 4px;
}

.process-step-content p {
    color: var(--body);
    font-size: 0.94rem;
    line-height: 1.6;
}

/* ============ TESTIMONIANZE ============ */
.testimonials {
    background: var(--salt);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 18px;
    color: var(--citrus-deep);
}

.stars svg {
    width: 18px;
    height: 18px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 22px;
    flex-grow: 1;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--citrus);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 0.88rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: var(--ink);
    font-size: 0.94rem;
}

.author-role {
    font-size: 0.8rem;
    color: var(--body-light);
    margin-top: 2px;
}

/* ============ CONTATTI ============ */
.contact {
    background: var(--ink);
    color: var(--salt);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: "";
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 230, 60, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.contact>.container {
    position: relative;
    z-index: 1;
}

.contact .eyebrow {
    color: var(--citrus);
}

.contact .eyebrow::before {
    background: var(--citrus);
}

.contact .section-title {
    color: var(--salt);
}

.contact .section-intro {
    color: rgba(245, 243, 238, 0.72);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

.contact-form-wrap {
    background: var(--white);
    color: var(--body);
    border-radius: var(--radius-lg);
    padding: clamp(26px, 4vw, 40px);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.005em;
}

.form-group label .req {
    color: #d33;
}

.form-control {
    padding: 13px 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--salt);
    font-size: 0.95rem;
    font-family: var(--ff-body);
    color: var(--ink);
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--ink);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(26, 46, 32, 0.08);
}

.form-control::placeholder {
    color: #a0aec0;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    font-family: var(--ff-body);
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231A2E20' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 22px;
    font-size: 0.85rem;
    color: var(--body);
    line-height: 1.5;
}

.form-check input {
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: var(--ink);
    cursor: pointer;
}

.form-check label {
    cursor: pointer;
}

.form-check a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--ink);
    color: var(--citrus);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.form-submit:hover {
    background: var(--citrus);
    color: var(--ink);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(200, 230, 60, 0.25);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-foot {
    margin-top: 14px;
    font-size: 0.8rem;
    color: var(--body-light);
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(200, 230, 60, 0.12);
    color: var(--citrus);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
}

.contact-info-label {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(245, 243, 238, 0.55);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-info-value {
    color: var(--salt);
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.5;
}

.contact-info-value a {
    color: var(--salt);
    transition: color 0.2s;
}

.contact-info-value a:hover {
    color: var(--citrus);
}

.map-wrap {
    margin-top: 8px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(245, 243, 238, 0.1);
    position: relative;
    height: 220px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.3) contrast(1.05) brightness(0.95);
}

/* ============ FOOTER ============ */
.site-footer {
    background: var(--ink-deep);
    color: rgba(245, 243, 238, 0.7);
    padding: 60px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: var(--salt);
    margin-bottom: 16px;
}

.footer-brand .logo-sub {
    color: var(--sage);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 320px;
    color: rgba(245, 243, 238, 0.6);
}

.footer-col h4 {
    color: var(--salt);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
    font-family: var(--ff-body);
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col li {
    font-size: 0.9rem;
    color: rgba(245, 243, 238, 0.6);
    line-height: 1.5;
}

.footer-col a {
    font-size: 0.9rem;
    color: rgba(245, 243, 238, 0.65);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--citrus);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(245, 243, 238, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(245, 243, 238, 0.4);
    text-align: center;
}

/* ============ ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ============ MEDIA QUERIES ============ */
@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .why-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-grid .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 8px;
    }

    .footer-grid .footer-col {
        grid-column: span 1;
    }

    .contact-grid {
        grid-template-columns: 1.15fr 1fr;
        gap: 40px;
    }
}

@media (min-width: 1024px) {
    .nav {
        display: flex;
    }

    .header-cta {
        display: inline-flex;
    }

    .menu-toggle {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }

    .process-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
        position: relative;
    }

    .process-list::before {
        content: "";
        position: absolute;
        top: 28px;
        left: 12%;
        right: 12%;
        height: 2px;
        background: var(--line);
        z-index: 0;
    }

    .process-step {
        grid-template-columns: 1fr;
        border-top: none;
        border-bottom: none;
        padding: 0;
        text-align: left;
    }

    .process-step:last-child {
        border-bottom: none;
    }

    .process-step-num {
        width: 56px;
        height: 56px;
        margin-bottom: 22px;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.2fr;
        gap: 40px;
    }

    .footer-grid .footer-brand {
        grid-column: auto;
        margin-bottom: 0;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0 48px;
    }

    .why-card:first-child {
        border-top: 1px solid rgba(245, 243, 238, 0.12);
    }

    .why-card:nth-child(3) {
        border-top: 1px solid rgba(245, 243, 238, 0.12);
    }

    .why-card:last-child {
        border-bottom: 1px solid rgba(245, 243, 238, 0.12);
    }

    .why-card:nth-child(2) {
        border-top: none;
    }

    .why-card:nth-child(2) {
        border-bottom: 1px solid rgba(245, 243, 238, 0.12);
    }
}

@media (min-width: 1280px) {
    .hero h1 {
        letter-spacing: -0.045em;
    }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}