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

:root {
    --navy: #1a3a52;
    --navy-light: #2d5573;
    --gold: #c5a572;
    --gold-light: #d4b886;
    --cream: #faf8f3;
    --white: #ffffff;
    --gray: #5a6c7d;
    --gray-light: #8b9aa8;
    --shadow: 0 4px 20px rgba(26, 58, 82, 0.08);
    --shadow-lg: 0 10px 40px rgba(26, 58, 82, 0.12);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--navy);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* Skip link for keyboard / screen-reader users */
.skip-link {
    position: absolute;
    left: -10000px;
    top: 0;
    background: var(--navy);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    z-index: 2000;
    text-decoration: none;
    font-weight: 600;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

/* Header */
header {
    background: var(--white);
    border-bottom: 1px solid rgba(26, 58, 82, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--navy);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--white);
    letter-spacing: -1px;
}

.logo-text .brand {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    line-height: 1.1;
    margin-bottom: 0.125rem;
    font-weight: 600;
}

.logo-text .brand-sub {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 400;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--gold);
}

.cta-button {
    background: var(--gold);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--gold);
}

.cta-button:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: transparent;
    border: 2px solid rgba(26, 58, 82, 0.15);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    color: var(--navy);
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.nav-toggle .bars {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle .bars span {
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(197, 165, 114, 0.1), transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 960px) {
    .hero-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 4rem;
    }
}

.hero-photo {
    display: flex;
    justify-content: center;
    order: -1;
}

@media (min-width: 960px) {
    .hero-photo {
        order: 0;
    }
}

.hero-photo img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(197, 165, 114, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

@media (min-width: 960px) {
    .hero-photo img {
        width: 360px;
        height: 360px;
        border-radius: 16px;
        border: 1px solid rgba(197, 165, 114, 0.4);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(197, 165, 114, 0.2);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
}

.hero-subheading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    color: var(--gold-light);
    font-weight: 400;
    line-height: 1.3;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-subheading {
        font-size: 1.4rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0.95;
    font-weight: 300;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-pill {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.625rem 1.25rem;
    border-radius: 30px;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Stats Section */
.stats {
    background: var(--white);
    padding: 3rem 2rem;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.stats-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(26, 58, 82, 0.08);
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--navy);
    font-weight: 600;
}

/* Main Content Sections */
section {
    padding: 5rem 2rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid rgba(26, 58, 82, 0.06);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--gold-light);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

/* Process Section */
.process {
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    position: relative;
    padding: 2rem;
    background: var(--cream);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.process-step p {
    color: var(--gray);
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose {
    background: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.why-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.why-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--gold);
}

.why-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* FAQ */
.faq {
    background: var(--cream);
}

.faq-list {
    max-width: 820px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(26, 58, 82, 0.06);
}

.faq-item summary {
    cursor: pointer;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    color: var(--navy);
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    line-height: 1.3;
}

.faq-item summary::-webkit-details-marker,
.faq-item summary::marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.75rem;
    color: var(--gold);
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item summary:hover {
    color: var(--gold);
}

.faq-answer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(26, 58, 82, 0.08);
    color: var(--gray);
    line-height: 1.7;
}

.faq-answer p + p {
    margin-top: 0.75rem;
}

/* Testimonials */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--cream);
    padding: 2.5rem 2rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(26, 58, 82, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.testimonial-quote {
    color: var(--navy);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    line-height: 1.55;
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-attribution {
    font-size: 0.9rem;
    color: var(--gray);
    border-top: 1px solid rgba(26, 58, 82, 0.1);
    padding-top: 1rem;
}

.testimonial-attribution .author {
    color: var(--navy);
    font-weight: 600;
    display: block;
    margin-bottom: 0.125rem;
}

.testimonials-disclaimer {
    max-width: 720px;
    margin: 2.5rem auto 0;
    text-align: center;
    color: var(--gray);
    font-size: 0.825rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonials-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--gray);
    font-size: 0.95rem;
}

.testimonials-footer a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

.testimonials-footer a:hover {
    color: var(--gold);
}

/* Language switcher */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 0.5px;
    margin-right: 0.5rem;
}

.lang-switcher a,
.lang-switcher span {
    color: var(--gray);
    text-decoration: none;
    padding: 0.25rem 0.4rem;
    border-radius: 4px;
    transition: all 0.2s;
}

.lang-switcher a:hover {
    color: var(--gold);
}

.lang-switcher .current {
    background: var(--navy);
    color: var(--white);
}

.lang-switcher .divider {
    color: rgba(26, 58, 82, 0.25);
    padding: 0;
}

/* About Section */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-bio {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-portrait {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.about-portrait img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--cream);
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.about-portrait-meta .portrait-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.about-portrait-meta .portrait-role {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-bio p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray);
}

.credentials {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(26, 58, 82, 0.08);
}

.credentials h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.credentials ul {
    list-style: none;
    padding: 0;
}

.credentials li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(26, 58, 82, 0.08);
    color: var(--navy);
    font-weight: 500;
    position: relative;
    padding-left: 2rem;
}

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

.credentials li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Contact Form */
.contact {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
}

.schedule-wrapper {
    max-width: 900px;
    margin: 3rem auto 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.schedule-wrapper .calendly-inline-widget {
    min-width: 320px;
    height: 720px;
}

@media (max-width: 768px) {
    .schedule-wrapper .calendly-inline-widget {
        height: 880px;
    }
}

.or-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 700px;
    margin: 3rem auto 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.or-divider::before,
.or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.contact .section-label {
    color: var(--gold-light);
}

.contact .section-title {
    color: var(--white);
}

.contact .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 3rem auto 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

form {
    display: grid;
    gap: 1.5rem;
}

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

label {
    display: block;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

input, select, textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(26, 58, 82, 0.15);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--white);
    color: var(--navy);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.1);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

button[type="submit"] {
    background: var(--gold);
    color: var(--white);
    padding: 1rem 2rem;
    border: 2px solid var(--gold);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

button[type="submit"]:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.form-note {
    font-size: 0.875rem;
    color: var(--gray);
    font-style: italic;
    text-align: center;
}

.fee-note {
    text-align: center;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.fee-note a {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Footer */
footer {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.3fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-locations h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-locations address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.footer-locations address strong {
    color: var(--gold-light);
    font-weight: 600;
    display: block;
    margin-bottom: 0.125rem;
    letter-spacing: 0.5px;
}

.footer-locations .by-appt {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-top: 0.25rem;
}

@media (max-width: 960px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.footer-about h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    color: var(--gold-light);
    border-color: var(--gold-light);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-links h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-bottom .copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.75rem;
    line-height: 1.7;
    text-align: center;
}

.footer-disclaimer p + p {
    margin-top: 0.5rem;
}

/* Tablet */
@media (max-width: 960px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-toggle {
        display: inline-flex;
        padding: 0.4rem 0.65rem;
    }

    .nav-toggle .nav-toggle-text {
        display: none;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding: 0 1rem;
        border-top: 0 solid rgba(26, 58, 82, 0.08);
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease, border-top-width 0.3s ease;
    }

    nav.open {
        max-height: 90vh;
        padding: 0.5rem 1rem 1rem;
        border-top-width: 1px;
        box-shadow: var(--shadow);
    }

    .lang-switcher {
        order: -1;
        margin: 0.75rem 0 0.25rem;
        justify-content: center;
        width: 100%;
    }

    nav a {
        padding: 0.875rem 0.5rem;
        border-bottom: 1px solid rgba(26, 58, 82, 0.06);
        width: 100%;
    }

    nav a:last-child {
        border-bottom: none;
    }

    .cta-button {
        margin-top: 0.5rem;
        text-align: center;
    }

    header {
        position: sticky;
    }

    .header-content {
        padding: 0.75rem 1rem;
    }

    .logo {
        gap: 0.625rem;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
        border-radius: 6px;
    }

    .logo-text .brand {
        font-size: 1.15rem;
        line-height: 1.1;
    }

    .logo-text .brand-sub {
        display: none;
    }

    .hero {
        padding: 2.25rem 1.25rem 3rem;
    }

    .hero-grid {
        gap: 1.5rem;
    }

    .hero-photo img {
        width: 130px;
        height: 130px;
        border-width: 3px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.85rem;
        margin-bottom: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-subheading {
        font-size: 1.2rem;
        margin-top: -0.25rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-features {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .feature-pill {
        font-size: 0.8rem;
        padding: 0.4rem 0.85rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .stats {
        padding: 2rem 1rem;
    }

    .stat-card {
        padding: 1.25rem 1rem;
    }

    .stat-value {
        font-size: 1.15rem;
    }

    section {
        padding: 3rem 1.25rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .service-card,
    .contact-form-wrapper,
    .credentials {
        padding: 1.75rem;
    }

    .about-portrait {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-item summary {
        font-size: 1.15rem;
    }

    html {
        scroll-padding-top: 70px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}
