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

:root {
    --emerald-950: #042f23;
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --cream-50: #faf9f6;
    --cream-100: #f5f0e8;
    --cream-200: #ebe4d6;
    --cream-300: #e0d5c0;
    --warm-700: #8b6914;
    --warm-600: #a07828;
    --warm-500: #b8923a;
    --warm-400: #d4a574;
    --warm-300: #e8c9a0;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #7a7a7a;
    --white: #ffffff;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-primary);
    background-color: var(--cream-50);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* Grain Overlay */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}

.site-header.scrolled {
    border-bottom-color: var(--cream-200);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--emerald-900);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.logo-mark {
    color: var(--emerald-800);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.3s var(--ease-smooth);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--emerald-700);
    transition: width 0.3s var(--ease-out);
}

.nav-list a:hover {
    color: var(--emerald-800);
}

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

.nav-cta {
    display: none;
    text-decoration: none;
    color: var(--emerald-800);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid var(--emerald-800);
    padding: 10px 20px;
    transition: all 0.3s var(--ease-smooth);
}

.nav-cta:hover {
    background: var(--emerald-800);
    color: var(--cream-50);
}

.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--text-primary);
    position: relative;
    transition: all 0.3s var(--ease-smooth);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 1px;
    background: var(--text-primary);
    left: 0;
    transition: all 0.3s var(--ease-smooth);
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.mobile-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.mobile-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream-50);
    z-index: 999;
    padding: 40px 24px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth);
}

.mobile-menu.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu nav ul {
    list-style: none;
    text-align: center;
}

.mobile-menu nav ul li {
    margin-bottom: 24px;
}

.mobile-menu nav ul li a {
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    transition: color 0.3s var(--ease-smooth);
}

.mobile-menu nav ul li a:hover {
    color: var(--emerald-700);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 100px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 24px;
    max-width: 540px;
}

.hero-sub {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 440px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.hero-image-frame img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.8s var(--ease-out);
}

.hero-image-frame:hover img {
    transform: scale(1.02);
}

.hero-accent-line {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 1px;
    background: var(--warm-400);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 2px;
    transition: all 0.3s var(--ease-smooth);
    cursor: pointer;
    border: none;
    background: none;
}

.btn-primary {
    background: var(--emerald-900);
    color: var(--cream-50);
}

.btn-primary:hover {
    background: var(--emerald-800);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(6, 78, 59, 0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--cream-300);
}

.btn-ghost:hover {
    border-color: var(--emerald-700);
    color: var(--emerald-800);
}

.btn-outline {
    background: transparent;
    color: var(--emerald-900);
    border: 1px solid var(--emerald-900);
}

.btn-outline:hover {
    background: var(--emerald-900);
    color: var(--cream-50);
}

.btn-large {
    padding: 18px 36px;
    font-size: 0.875rem;
}

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

/* Intro Strip */
.intro-strip {
    border-top: 1px solid var(--cream-200);
    border-bottom: 1px solid var(--cream-200);
    padding: 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.intro-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 32px 40px;
}

.intro-item:not(:last-child) {
    border-right: 1px solid var(--cream-200);
}

.intro-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.intro-value {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.intro-divider {
    display: none;
}

/* Section Shared */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 16px;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

/* About */
.about {
    padding: 120px 0;
}

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

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

.about-image-col img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 2px;
}

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

.about-text-col {
    padding-top: 8px;
}

.about-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 300;
}

.about-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.value-item svg {
    color: var(--emerald-700);
    flex-shrink: 0;
    margin-top: 2px;
}

.value-title {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.value-desc {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Services */
.services {
    padding: 100px 0 120px;
    background: var(--cream-100);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

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

.service-card {
    background: var(--cream-50);
    padding: 40px 32px;
    border-radius: 2px;
    border: 1px solid var(--cream-200);
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--cream-300);
}

.service-number {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    color: var(--warm-400);
    margin-bottom: 24px;
    font-weight: 400;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--cream-300);
    border-radius: 50%;
    margin-bottom: 24px;
    color: var(--emerald-800);
    transition: all 0.3s var(--ease-smooth);
}

.service-card:hover .service-icon {
    background: var(--emerald-900);
    border-color: var(--emerald-900);
    color: var(--cream-50);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 300;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--emerald-700);
    transition: gap 0.3s var(--ease-smooth);
}

.service-link:hover {
    gap: 10px;
}

.service-link svg {
    transition: transform 0.3s var(--ease-smooth);
}

.service-link:hover svg {
    transform: translateX(2px);
}

/* Approach */
.approach {
    padding: 120px 0;
}

.approach-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.approach-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
    margin-top: 24px;
    max-width: 400px;
}

.approach-steps {
    display: flex;
    flex-direction: column;
}

.step {
    padding: 32px 0;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}

.step-num {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    color: var(--warm-400);
    font-weight: 400;
    flex-shrink: 0;
}

.step-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.step-connector {
    color: var(--cream-300);
}

.step-desc {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-secondary);
    padding-left: 44px;
    font-weight: 300;
}

.step-divider {
    height: 1px;
    background: var(--cream-200);
    margin: 0 44px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--emerald-900);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-eyebrow {
    color: var(--warm-400);
}

.cta-heading {
    color: var(--cream-50);
    max-width: 480px;
}

.cta-body {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(250, 249, 246, 0.7);
    font-weight: 300;
    margin-top: 20px;
    max-width: 400px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}

.cta-actions .btn-primary {
    background: var(--cream-50);
    color: var(--emerald-900);
}

.cta-actions .btn-primary:hover {
    background: var(--cream-100);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.cta-actions .btn-outline {
    border-color: rgba(250, 249, 246, 0.4);
    color: var(--cream-50);
}

.cta-actions .btn-outline:hover {
    background: var(--cream-50);
    color: var(--emerald-900);
    border-color: var(--cream-50);
}

/* Contact */
.contact {
    padding: 120px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-intro {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 48px;
}

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

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

.contact-detail svg {
    color: var(--emerald-700);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
}

.contact-link {
    display: block;
    font-size: 0.9375rem;
    color: var(--emerald-700);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s var(--ease-smooth);
}

.contact-link:hover {
    color: var(--emerald-600);
    text-decoration: underline;
}

/* Form */
.contact-form-col {
    position: relative;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-primary);
    background: var(--cream-50);
    border: 1px solid var(--cream-300);
    border-radius: 2px;
    padding: 14px 16px;
    transition: border-color 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
    outline: none;
    width: 100%;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald-700);
    box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.08);
}

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

.form-group select {
    cursor: pointer;
    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='%237a7a7a' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    font-weight: 300;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    gap: 16px;
}

.form-success.visible {
    display: flex;
}

.form-success svg {
    color: var(--emerald-700);
}

.success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
}

/* Footer */
.site-footer {
    background: var(--emerald-950);
    color: var(--cream-100);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-light {
    color: var(--cream-100);
}

.logo-light .logo-mark {
    color: var(--cream-200);
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(235, 228, 214, 0.6);
    margin-top: 12px;
    max-width: 240px;
    line-height: 1.6;
    font-weight: 300;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav ul li a {
    text-decoration: none;
    color: rgba(235, 228, 214, 0.7);
    font-size: 0.875rem;
    font-weight: 400;
    transition: color 0.3s var(--ease-smooth);
}

.footer-nav ul li a:hover {
    color: var(--cream-50);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact p {
    font-size: 0.875rem;
    color: rgba(235, 228, 214, 0.6);
    font-weight: 300;
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(235, 228, 214, 0.7);
    text-decoration: none;
    transition: color 0.3s var(--ease-smooth);
}

.footer-contact a:hover {
    color: var(--cream-50);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: rgba(235, 228, 214, 0.4);
    font-weight: 300;
}

.footer-legal {
    max-width: 400px;
    text-align: right;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.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; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .about-layout,
    .approach-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-actions {
        flex-direction: row;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-nav {
        order: 3;
    }
}

@media (max-width: 768px) {
    .nav-list,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .hero .container {
        padding-bottom: 0;
    }

    .hero-image {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

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

    .intro-item {
        padding: 24px 0;
        border-right: none !important;
        border-bottom: 1px solid var(--cream-200);
    }

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

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

    .approach-layout {
        gap: 40px;
    }

    .step-header {
        flex-wrap: wrap;
    }

    .step-desc {
        padding-left: 0;
    }

    .step-divider {
        margin: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .footer-legal {
        text-align: center;
        max-width: 100%;
    }

    .cta-actions {
        flex-direction: column;
    }

    .about-image-accent {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .service-card {
        padding: 32px 24px;
    }
}
