:root {
    --olive: #B5A848;
    --olive-dark: #9A8E3D;
    --olive-light: #C9BE6A;
    --cream: #FBF9F6;
    --cream-dark: #F3F0E8;
    --teal: #1D4E4E;
    --teal-light: #2A6363;
    --blush: #F7E8E1;
    --terracotta: #C4846C;
    --text: #2C3E3E;
    --text-light: #5A6B6B;
    --text-muted: #7A8A8A;
    --white: #FFFFFF;
    --border: rgba(29, 78, 78, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.65;
    font-size: 17px;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Lora', serif;
    font-weight: 400;
    line-height: 1.25;
    color: var(--teal);
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

/* SCROLL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

/* LEMON FLOAT */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(3deg);
    }
}

.lemon-float {
    animation: float 5s ease-in-out infinite;
}

.lemon-float-delay {
    animation-delay: 1.5s;
}

.lemon-float-delay-2 {
    animation-delay: 3s;
}

/* SUBTLE PULSE */
@keyframes pulse-soft {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

/* NAV */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--cream);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

header.scrolled {
    box-shadow: 0 2px 24px rgba(29, 78, 78, 0.08);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
}

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

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--olive);
    transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--teal);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--teal);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 78, 78, 0.2);
}

.nav-cta::after {
    display: none !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--teal);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* HERO */
.hero {
    padding: 140px 0 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    top: 60px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--olive) 0%, transparent 70%);
    opacity: 0.06;
    border-radius: 50%;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    min-height: 60vh;
    max-width: 720px;
}

.hero-content {
    position: relative;
    text-align: left;
}

.hero-lemon {
    position: absolute;
    top: -60px;
    right: -40px;
    width: 72px;
    height: auto;
}

.hero h1 {
    font-size: clamp(34px, 4vw, 46px);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 em {
    font-style: italic;
    color: var(--terracotta);
}

.hero-sub {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 580px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--teal);
    color: var(--white);
    padding: 16px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(29, 78, 78, 0.15);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-cta:hover {
    background: var(--teal-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(29, 78, 78, 0.25);
}

.hero-cta svg {
    transition: transform 0.3s ease;
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

/* WAVE SECTIONS - PROPERLY CONNECTED */
.section-olive {
    background: var(--olive);
}

.section-teal {
    background: var(--teal);
}

.section-cream {
    background: var(--cream);
}

.section-blush {
    background: var(--blush);
}

.wave-top {
    width: 100%;
    line-height: 0;
    margin-bottom: -1px;
}

.wave-bottom {
    width: 100%;
    line-height: 0;
    margin-top: -1px;
}

.wave-top svg,
.wave-bottom svg {
    width: 100%;
    height: 50px;
    display: block;
}

/* TRUSTED */
.trusted {
    background: var(--teal);
    padding: 48px 0;
}

.trusted-inner {
    text-align: center;
}

.trusted-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
}

.trusted-logos {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.trusted-logo {
    font-size: 17px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease, transform 0.3s ease;
}

.trusted-logo:hover {
    color: white;
    transform: scale(1.05);
}

.trusted-press {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trusted-press span {
    color: rgba(255, 255, 255, 0.6);
}

/* INTRO / ABOUT SNIPPET */
.intro {
    background: var(--cream);
    padding: 80px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content h2 {
    font-size: clamp(26px, 3vw, 34px);
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 16px;
}

.intro-content p:last-of-type {
    margin-bottom: 0;
}

.intro-visual {
    position: relative;
}

.intro-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 40px rgba(29, 78, 78, 0.08);
    position: relative;
}

.intro-card-lemon {
    position: absolute;
    top: -24px;
    right: 24px;
    width: 48px;
}

.intro-card-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.intro-card-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.intro-card-item:first-child {
    padding-top: 0;
}

.intro-card-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--olive-dark);
    margin-bottom: 4px;
}

.intro-card-text {
    font-family: 'Lora', serif;
    font-size: 18px;
    color: var(--teal);
}

/* RECOGNITION */
.recognition {
    background: var(--olive);
    padding: 80px 0;
}

.recognition-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.recognition h2 {
    font-size: clamp(26px, 3vw, 34px);
    color: var(--white);
}

.recognition-content {
    background: var(--cream);
    padding: 36px;
    border-radius: 16px;
}

.recognition-list {
    list-style: none;
}

.recognition-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
    color: var(--text);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.6;
    transition: transform 0.3s ease;
}

.recognition-list li:hover {
    transform: translateX(4px);
}

.recognition-list li:last-child {
    border-bottom: none;
}

.recognition-check {
    color: var(--olive);
    font-size: 18px;
    flex-shrink: 0;
}

.recognition-answer {
    font-size: 16px;
    color: var(--text);
    padding-top: 24px;
    border-top: 2px solid var(--olive);
    line-height: 1.7;
}

.recognition-answer strong {
    color: var(--teal);
}

/* WORK */
.work {
    background: var(--cream);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--olive-dark);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(26px, 3vw, 34px);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.case-grid {
    display: grid;
    gap: 32px;
}

.case-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 4px 24px rgba(29, 78, 78, 0.06);
    border: 1px solid var(--border);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 48px rgba(29, 78, 78, 0.12);
}

.case-card:nth-child(even) {
    direction: rtl;
}

.case-card:nth-child(even)>* {
    direction: ltr;
}

.case-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.case-client {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--olive-dark);
    margin-bottom: 12px;
}

.case-result {
    font-family: 'Lora', serif;
    font-size: 22px;
    color: var(--teal);
    margin-bottom: 16px;
    flex-grow: 1;
    line-height: 1.35;
}

.case-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.case-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.case-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    background: var(--blush);
    color: var(--text);
    border-radius: 20px;
    transition: background 0.3s ease;
}

.case-card:hover .case-tag {
    background: var(--olive-light);
}

.case-visual {
    background: linear-gradient(145deg, var(--olive-light) 0%, var(--olive) 100%);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.case-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.case-card:hover .case-visual img {
    transform: scale(1.03);
}

.case-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.case-card:hover .case-visual::before {
    opacity: 1;
}

/* TESTIMONIALS */
.testimonials {
    background: var(--cream);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(29, 78, 78, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(29, 78, 78, 0.1);
}

.testimonial-quote {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 24px;
    flex-grow: 1;
    position: relative;
    font-style: italic;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -8px;
    font-family: 'Lora', serif;
    font-size: 48px;
    color: var(--olive-light);
    opacity: 0.5;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--olive) 0%, var(--olive-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.testimonial-info {
    min-width: 0;
}

.testimonial-name {
    font-weight: 600;
    color: var(--teal);
    font-size: 15px;
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* PROCESS */
.process {
    background: var(--blush);
    padding: 80px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.process-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(29, 78, 78, 0.1);
}

.process-lemon {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card:hover .process-lemon {
    opacity: 1;
}

.process-num {
    font-family: 'Lora', serif;
    font-size: 48px;
    color: var(--olive-light);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.process-card:hover .process-num {
    color: var(--olive);
}

.process-title {
    font-family: 'Lora', serif;
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--teal);
}

.process-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* SERVICES */
.services {
    background: var(--teal);
    padding: 80px 0;
}

.services .section-eyebrow {
    color: var(--olive-light);
}

.services .section-header h2 {
    color: var(--white);
}

.services .section-header p {
    color: rgba(255, 255, 255, 0.65);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: background 0.4s ease, transform 0.4s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.service-lemon {
    position: absolute;
    top: -18px;
    left: 32px;
    width: 40px;
}

.service-price {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--olive-light);
    margin-bottom: 8px;
}

.service-title {
    font-family: 'Lora', serif;
    font-size: 26px;
    color: var(--white);
    margin-bottom: 16px;
}

.service-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-includes {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

.service-includes strong {
    color: var(--white);
    display: block;
    margin-bottom: 8px;
}

.service-cta {
    display: inline-block;
    margin-top: 28px;
    background: var(--white);
    color: var(--teal);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ABOUT */
.about {
    background: var(--cream);
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 16px 48px rgba(29, 78, 78, 0.12);
    transition: transform 0.4s ease;
}

.about-photo:hover {
    transform: scale(1.02);
}

.about-location {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(29, 78, 78, 0.1);
}

.about-content h2 {
    font-size: clamp(26px, 3vw, 34px);
    margin-bottom: 16px;
}

.about-intro {
    font-size: 18px;
    font-family: 'Lora', serif;
    font-style: italic;
    color: var(--teal);
    margin-bottom: 20px;
    line-height: 1.65;
}

.about-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.75;
}

.about-fun {
    margin-top: 24px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(181, 168, 72, 0.1) 0%, rgba(181, 168, 72, 0.05) 100%);
    border-radius: 12px;
    border-left: 3px solid var(--olive);
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
}

.about-fun strong {
    color: var(--olive-dark);
}

.about-cred {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.about-cred-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--olive-dark);
    margin-bottom: 6px;
}

.about-cred-logos {
    font-size: 14px;
    color: var(--text-muted);
}

/* FAQ */
.faq {
    background: var(--olive);
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
}

.faq h2 {
    font-size: clamp(26px, 3vw, 34px);
    color: var(--white);
}

.faq-intro {
    color: rgba(255, 255, 255, 0.65);
    margin-top: 12px;
    font-size: 15px;
}

.faq-list {
    list-style: none;
}

.faq-item {
    background: var(--cream);
    padding: 24px 28px;
    border-radius: 12px;
    margin-bottom: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    transform: translateX(6px);
    box-shadow: -6px 6px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-family: 'Lora', serif;
    font-size: 17px;
    color: var(--teal);
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
}

/* CTA */
.final-cta {
    background: var(--cream);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-lemon {
    position: absolute;
    width: 56px;
}

.final-cta-lemon-1 {
    top: 40px;
    right: 15%;
}

.final-cta-lemon-2 {
    bottom: 50px;
    left: 12%;
}

.final-cta h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    max-width: 520px;
    margin: 0 auto 16px;
}

.final-cta p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 400px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--teal);
    color: var(--white);
    padding: 18px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(29, 78, 78, 0.2);
}

.final-cta-btn:hover {
    background: var(--teal-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(29, 78, 78, 0.3);
}

/* FOOTER */
footer {
    background: var(--teal);
    padding: 48px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo img {
    height: 44px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-copy {
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .logo img,
    .logo-svg {
        height: 40px;
    }

    nav {
        padding: 12px 20px;
    }

    .hero-grid,
    .intro-grid,
    .recognition-grid,
    .about-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-grid {
        min-height: auto;
    }

    .case-card {
        grid-template-columns: 1fr;
    }

    .case-card:nth-child(even) {
        direction: ltr;
    }

    .case-visual {
        min-height: 180px;
        order: -1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .process-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links.nav-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        gap: 16px;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .about-location {
        position: static;
        display: inline-flex;
        margin-top: 16px;
    }

    .hero-lemon,
    .intro-card-lemon,
    .process-lemon,
    .service-lemon,
    .final-cta-lemon {
        display: none;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
    }
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--olive);
    outline-offset: 3px;
}

::selection {
    background: var(--olive-light);
    color: var(--teal);
}