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

:root {
    --plum-50: #fdf4f8;
    --plum-100: #fce7f0;
    --plum-200: #f9d0e0;
    --plum-300: #f2a8c0;
    --plum-400: #e5709a;
    --plum-500: #c44d78;
    --plum-600: #a3345e;
    --plum-700: #6B2D5B;
    --plum-800: #4a1f3f;
    --plum-900: #2d1326;
    --plum-950: #1a0b16;

    --amber-50: #fef9ee;
    --amber-100: #fdf0d4;
    --amber-200: #fbe0a8;
    --amber-300: #f7c868;
    --amber-400: #D4A03C;
    --amber-500: #b8860b;
    --amber-600: #92600a;
    --amber-700: #6b4408;
    --amber-800: #4a2f06;
    --amber-900: #2e1c04;

    --neutral-50: #fafaf9;
    --neutral-100: #f5f5f4;
    --neutral-200: #e7e5e4;
    --neutral-300: #d6d3d1;
    --neutral-400: #a8a29e;
    --neutral-500: #78716c;
    --neutral-600: #57534e;
    --neutral-700: #44403c;
    --neutral-800: #292524;
    --neutral-900: #1c1917;
    --neutral-950: #0c0a09;

    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--sans);
    color: var(--neutral-800);
    background: var(--neutral-50);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 249, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--neutral-200);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 1px 20px rgba(107, 45, 91, 0.08);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--plum-700);
    letter-spacing: -0.01em;
}

.nav-brand-icon {
    color: var(--plum-700);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-600);
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--amber-400);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--plum-700);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link--cta {
    background: var(--plum-700);
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    letter-spacing: 0.03em;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: var(--plum-800);
    color: white;
    transform: translateY(-1px);
}

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

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--plum-700);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: var(--neutral-50);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, var(--plum-100) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 30%;
    height: 40%;
    background: radial-gradient(ellipse, var(--amber-100) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg);
    position: relative;
    z-index: 1;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: var(--space-xl);
    align-items: center;
}

.hero-text {
    max-width: 560px;
}

.hero-eyebrow {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-600);
    margin-bottom: var(--space-md);
}

.hero-headline {
    font-family: var(--serif);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--neutral-900);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.hero-headline em {
    font-style: italic;
    color: var(--plum-700);
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--neutral-600);
    margin-bottom: var(--space-lg);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.hero-image {
    position: relative;
}

.hero-image-frame {
    border-radius: 200px 200px 16px 16px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(107, 45, 91, 0.12);
    position: relative;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-accent {
    position: absolute;
    bottom: -24px;
    left: -24px;
    opacity: 0.6;
    animation: pulse-slow 4s ease-in-out infinite;
}

@keyframes pulse-slow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neutral-400);
}

.hero-scroll svg {
    animation: bounce-down 2s ease-in-out infinite;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn--primary {
    background: var(--plum-700);
    color: white;
    box-shadow: 0 4px 16px rgba(107, 45, 91, 0.25);
}

.btn--primary:hover {
    background: var(--plum-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 45, 91, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--plum-700);
    border: 1.5px solid var(--plum-200);
}

.btn--ghost:hover {
    background: var(--plum-50);
    border-color: var(--plum-400);
}

.btn--ghost-light {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ===== SECTION COMMON ===== */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-600);
    margin-bottom: var(--space-sm);
}

.section-headline {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.section-headline--light {
    color: white;
}

.section-headline--dark {
    color: var(--neutral-900);
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--amber-400);
    border: none;
}

/* ===== ABOUT ===== */
.about {
    padding: var(--space-3xl) 0;
    background: var(--neutral-50);
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.about-layout {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-image-col img {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 24px 48px rgba(107, 45, 91, 0.1);
}

.about-image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100px;
    height: 100px;
    border: 2px solid var(--amber-300);
    border-radius: 16px;
    z-index: -1;
}

.about-content {
    max-width: 520px;
}

.about-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--neutral-600);
    margin-bottom: var(--space-md);
}

.about-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--neutral-200);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--plum-700);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--neutral-500);
    letter-spacing: 0.02em;
}

/* ===== SERVICES ===== */
.services {
    padding: var(--space-3xl) 0;
    background: var(--plum-900);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(212, 160, 60, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(107, 45, 91, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-xl);
}

.services-intro {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--plum-200);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: var(--space-lg);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(212, 160, 60, 0.3);
    transform: translateY(-4px);
}

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

.service-title {
    font-family: var(--serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--plum-200);
}

/* ===== APPROACH ===== */
.approach {
    padding: var(--space-3xl) 0;
    background: var(--plum-800);
    position: relative;
    overflow: hidden;
}

.approach::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(212, 160, 60, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.approach-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 1;
}

.approach-layout {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: var(--space-xl);
    align-items: center;
}

.approach-content {
    max-width: 560px;
}

.approach-divider {
    width: 60px;
    height: 2px;
    background: var(--amber-400);
    margin-bottom: var(--space-lg);
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.approach-step {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.step-number {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--amber-400);
    line-height: 1;
    min-width: 3rem;
    padding-top: 0.25rem;
}

.step-title {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.375rem;
}

.step-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--plum-200);
}

.approach-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--neutral-900);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(107, 45, 91, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: var(--space-lg);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.testimonial-quote {
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--plum-100);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-author {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--amber-400);
    letter-spacing: 0.03em;
}

/* ===== CTA ===== */
.cta {
    padding: var(--space-3xl) 0;
    background: var(--plum-700);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(212, 160, 60, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(0, 0, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
}

.cta-headline {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.25;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.cta-body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--plum-100);
    margin-bottom: var(--space-lg);
}

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

/* ===== CONTACT ===== */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--neutral-50);
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact-info {
    max-width: 480px;
}

.contact-divider {
    width: 60px;
    height: 2px;
    background: var(--amber-400);
    margin-bottom: var(--space-md);
}

.contact-intro {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--neutral-600);
    margin-bottom: var(--space-lg);
}

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

.contact-detail {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neutral-400);
    margin-bottom: 0.25rem;
}

.contact-detail-value {
    font-size: 1rem;
    color: var(--neutral-800);
    line-height: 1.6;
}

.contact-detail-value a {
    color: var(--plum-700);
    transition: color 0.2s ease;
}

.contact-detail-value a:hover {
    color: var(--plum-500);
    text-decoration: underline;
}

.contact-form-wrap {
    background: white;
    border-radius: 20px;
    padding: var(--space-lg);
    box-shadow: 0 8px 32px rgba(107, 45, 91, 0.08);
    border: 1px solid var(--neutral-100);
}

.form-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.375rem;
}

.form-note {
    font-size: 0.875rem;
    color: var(--neutral-500);
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--neutral-700);
    margin-bottom: 0.375rem;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--neutral-200);
    border-radius: 10px;
    font-family: var(--sans);
    font-size: 0.9375rem;
    color: var(--neutral-800);
    background: var(--neutral-50);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--plum-400);
    box-shadow: 0 0 0 3px rgba(107, 45, 91, 0.1);
    background: white;
}

.form-input::placeholder {
    color: var(--neutral-400);
}

.form-select {
    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' fill='none'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%2378716c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    color: #166534;
    font-size: 0.9375rem;
    margin-top: var(--space-md);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--neutral-950);
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--neutral-800);
    margin-bottom: var(--space-lg);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neutral-200);
}

.footer-icon {
    color: var(--amber-400);
}

.footer-links {
    display: flex;
    gap: var(--space-md);
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--neutral-400);
    transition: color 0.2s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--neutral-500);
}

.footer-bottom a {
    color: var(--plum-400);
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--amber-400);
}

/* ===== MOBILE MENU ===== */
.nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 250, 249, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: var(--space-lg);
    border-bottom: 1px solid var(--neutral-200);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    gap: var(--space-sm);
}

.nav-links.mobile-open .nav-link {
    padding: var(--space-sm) 0;
    font-size: 1rem;
}

.nav-links.mobile-open .nav-link--cta {
    text-align: center;
    margin-top: var(--space-sm);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .hero-image {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-text {
        text-align: center;
        margin: 0 auto;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .about-image-col {
        max-width: 480px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-layout {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .approach-image {
        max-width: 480px;
        margin: 0 auto;
    }

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

    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: var(--space-xl);
    }

    .hero-scroll {
        display: none;
    }

    .hero-headline {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

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

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

    .about-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .footer-top {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

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

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

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 1.5rem;
        --space-xl: 2.5rem;
        --space-2xl: 4rem;
        --space-3xl: 5rem;
    }

    .hero-image-frame {
        border-radius: 120px 120px 12px 12px;
    }

    .contact-form-wrap {
        padding: var(--space-md);
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
