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

:root {
    --midnight: #0A1628;
    --midnight-light: #132038;
    --midnight-mid: #1A2D4A;
    --mint: #7ECFC0;
    --mint-light: #A8E6D9;
    --mint-pale: #E0F5F0;
    --cream: #FAFAF8;
    --cream-dark: #F2F2EE;
    --text-primary: #0A1628;
    --text-secondary: #3D5A7C;
    --text-muted: #6B8299;
    --white: #FFFFFF;
    --border: rgba(10, 22, 40, 0.1);
    --border-strong: rgba(10, 22, 40, 0.2);

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-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;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

ul, ol {
    list-style: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.15;
    color: var(--midnight);
}

em {
    font-style: italic;
    color: var(--mint);
}

/* ===== SECTION EYEBROW ===== */
.section-eyebrow,
.hero-eyebrow,
.philosophy-eyebrow,
.about-eyebrow,
.contact-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: var(--space-md);
}

/* ===== SECTION HEADLINE ===== */
.section-headline,
.hero-headline,
.philosophy-headline,
.about-headline,
.contact-headline {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.section-headline--light,
.section-headline--light em {
    color: var(--white);
}

.section-headline em {
    color: var(--mint);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--midnight);
    color: var(--white);
    border: 1.5px solid var(--midnight);
}

.btn-primary:hover {
    background: var(--midnight-light);
    border-color: var(--midnight-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.25);
}

.btn-primary svg {
    transition: transform var(--transition);
}

.btn-primary:hover svg {
    transform: translate(3px, -3px);
}

.btn-ghost {
    background: transparent;
    color: var(--midnight);
    border: 1.5px solid var(--border-strong);
}

.btn-ghost:hover {
    border-color: var(--midnight);
    background: rgba(10, 22, 40, 0.04);
}

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

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.site-header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 1px 12px rgba(10, 22, 40, 0.06);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo--footer {
    text-decoration: none;
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--midnight);
    color: var(--mint);
    font-family: var(--font-serif);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--midnight);
    line-height: 1.2;
}

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

.nav-desktop a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-secondary);
    transition: color var(--transition);
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--mint);
    transition: width var(--transition);
}

.nav-desktop a:hover {
    color: var(--midnight);
}

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

.nav-cta {
    font-weight: 500 !important;
    color: var(--midnight) !important;
    padding: 0.55rem 1.2rem;
    border: 1.5px solid var(--border-strong);
    border-radius: var(--radius-sm);
    transition: all var(--transition) !important;
}

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

.nav-cta:hover {
    background: var(--midnight);
    color: var(--white) !important;
    border-color: var(--midnight);
}

/* Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--midnight);
    transition: all var(--transition);
    transform-origin: center;
}

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

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

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

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--midnight);
    transition: color var(--transition);
}

.mobile-nav-link:hover {
    color: var(--mint);
}

.mobile-nav-cta {
    margin-top: var(--space-sm);
    font-family: var(--font-sans) !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    padding: 0.75rem 2rem;
    background: var(--midnight);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    padding-bottom: var(--space-xl);
    overflow: hidden;
    position: relative;
    background: var(--cream);
}

.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(126, 207, 192, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

.hero-eyebrow {
    margin-bottom: var(--space-md);
}

.hero-headline {
    margin-bottom: var(--space-md);
    font-size: clamp(2.25rem, 5vw, 4rem);
}

.hero-accent {
    color: var(--mint);
}

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

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

.hero-image-col {
    position: relative;
    padding-left: var(--space-lg);
}

.hero-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(10, 22, 40, 0.12);
}

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

.hero-image-accent {
    position: absolute;
    bottom: -40px;
    left: -30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(10, 22, 40, 0.1);
    border: 4px solid var(--cream);
}

.hero-image-accent img {
    width: 100%;
    display: block;
}

.hero-accent-caption {
    font-family: var(--font-serif);
    font-size: 0.8rem;
    font-style: italic;
    color: var(--text-muted);
    text-align: center;
    padding: 0.6rem 0.75rem;
    background: var(--white);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ===== PHILOSOPHY ===== */
.philosophy {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.philosophy-layout {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.philosophy-number span {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--mint-pale);
    line-height: 1;
}

.philosophy-content {
    max-width: 720px;
}

.philosophy-headline {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: var(--space-md);
}

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

.philosophy-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

/* ===== SERVICES ===== */
.services {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.section-header {
    max-width: 600px;
    margin-bottom: var(--space-2xl);
}

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

.service-card {
    padding: var(--space-xl);
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--mint);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    border-color: var(--mint);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(10, 22, 40, 0.08);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--midnight);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
    margin-bottom: var(--space-md);
}

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--midnight);
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.service-details li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-left: 1rem;
    position: relative;
}

.service-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 4px;
    height: 4px;
    background: var(--mint);
    border-radius: 50%;
}

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

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

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

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(10, 22, 40, 0.1);
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-float {
    position: absolute;
    bottom: -50px;
    right: -30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(10, 22, 40, 0.1);
    border: 4px solid var(--cream);
}

.about-image-float img {
    width: 100%;
    display: block;
}

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

.about-headline {
    margin-bottom: var(--space-md);
}

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

.about-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.about-credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

.credential-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.credential-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.credential-value {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--midnight);
    line-height: 1.3;
}

/* ===== PROCESS ===== */
.process {
    padding: var(--space-3xl) 0;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(126, 207, 192, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.process::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(126, 207, 192, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

.process-step {
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(126, 207, 192, 0.3);
    transform: translateY(-4px);
}

.process-step-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--mint);
    line-height: 1;
    margin-bottom: var(--space-md);
    opacity: 0.6;
}

.process-step-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.process-step-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== TESTIMONIAL ===== */
.testimonial {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.testimonial-layout {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.testimonial-mark {
    color: var(--mint);
    margin-bottom: var(--space-lg);
    opacity: 0.5;
}

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

.testimonial-quote p {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--midnight);
}

.testimonial-attribution {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.testimonial-name {
    font-weight: 500;
    color: var(--text-secondary);
}

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

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

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

.contact-headline {
    margin-bottom: var(--space-md);
}

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

.contact-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

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

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

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: var(--mint-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--midnight);
    flex-shrink: 0;
}

.contact-detail-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.2rem;
}

.contact-detail-value {
    font-size: 0.95rem;
    color: var(--midnight);
    font-weight: 500;
}

.contact-detail-value a {
    color: var(--midnight);
    transition: color var(--transition);
}

.contact-detail-value a:hover {
    color: var(--mint);
}

/* Contact Form */
.contact-form-col {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--border);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--midnight);
}

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

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--midnight);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--mint);
    box-shadow: 0 0 0 3px rgba(126, 207, 192, 0.15);
}

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

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

.form-privacy {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
    text-align: center;
}

/* Success State */
.form-success {
    text-align: center;
    padding: var(--space-xl);
}

.success-icon {
    width: 56px;
    height: 56px;
    background: var(--mint-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--midnight);
    margin: 0 auto var(--space-md);
}

.success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--midnight);
    margin-bottom: var(--space-sm);
}

.success-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    max-width: 280px;
}

.logo--footer .logo-mark {
    background: var(--midnight-light);
    border: 1px solid rgba(126, 207, 192, 0.3);
}

.logo--footer .logo-text {
    color: var(--white);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: var(--space-sm);
}

.footer-nav {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--mint);
}

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

.footer-copy,
.footer-address {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.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; }

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

    .hero-image-col {
        padding-left: 0;
        max-width: 500px;
    }

    .hero-content {
        max-width: 100%;
    }

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

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

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

    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

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

    .nav-desktop {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-image-col {
        padding-left: 0;
    }

    .hero-image-accent {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: var(--space-sm);
    }

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

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

    .philosophy-number {
        display: none;
    }

    .about-image-float {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: var(--space-sm);
    }

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

    .footer-top {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    .service-card {
        padding: var(--space-md);
    }

    .contact-form-col {
        padding: var(--space-md);
    }
}
</style>
