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

:root {
    --ivory: #FAFAF7;
    --charcoal: #1A1A1A;
    --warm-gray: #6B6560;
    --accent: #8B7355;
    --accent-light: #C4A97D;
    --border: #E8E4DF;
    --cream: #F5F0EB;
    --white: #FFFFFF;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--ivory);
    color: var(--charcoal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 250, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-logo span {
    color: var(--accent);
}

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

.nav-links a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--warm-gray);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--charcoal);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--accent);
    border-radius: 1px;
}

.nav-cta {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white) !important;
    background: var(--charcoal);
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
    letter-spacing: 0.01em;
}

.nav-cta:hover {
    background: var(--accent);
    transform: translateY(-1px);
}

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

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 110;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.nav-toggle span:nth-child(1) { top: 2px; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 20px; }

.nav-toggle.open span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

/* ─── Common Elements ─── */
.page-top {
    padding-top: 72px;
}

.section-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: var(--accent-light);
    margin: 80px 0;
}

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

/* ─── Hero Section (Homepage) ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 40px 80px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139,115,85,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--charcoal);
    max-width: 800px;
    margin-bottom: 32px;
}

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

.hero-sub {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--warm-gray);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 48px;
}

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

.btn-primary {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    background: var(--charcoal);
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(139,115,85,0.2);
}

.btn-secondary {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    background: transparent;
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    border: 1.5px solid var(--border);
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* ─── Philosophy Section ─── */
.philosophy {
    padding: 0 40px 120px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.philosophy-left h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.philosophy-left p {
    color: var(--warm-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
}

.philosophy-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.phi-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.phi-item:first-child {
    border-top: 1px solid var(--border);
}

.phi-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.phi-item p {
    color: var(--warm-gray);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
}

/* ─── Credentials Band ─── */
.credentials {
    background: var(--charcoal);
    color: white;
    padding: 100px 40px;
}

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

.credentials h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 56px;
    letter-spacing: -0.02em;
    color: var(--accent-light);
}

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

.cred-item {
    border-left: 2px solid var(--accent);
    padding-left: 24px;
}

.cred-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 8px;
}

.cred-label {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

/* ─── Location Section ─── */
.location {
    padding: 120px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-header {
    text-align: center;
    margin-bottom: 64px;
}

.location-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.location-header p {
    color: var(--warm-gray);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto;
}

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

.loc-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 36px;
}

.loc-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.loc-card p {
    color: var(--warm-gray);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.6;
}

/* ─── Closing CTA ─── */
.closing {
    background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
    padding: 120px 40px;
    text-align: center;
}

.closing-inner {
    max-width: 680px;
    margin: 0 auto;
}

.closing h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    line-height: 1.2;
}

.closing p {
    color: var(--warm-gray);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* ─── Page Hero (Inner pages) ─── */
.page-hero {
    padding: 140px 40px 80px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 60px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139,115,85,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--charcoal);
    max-width: 700px;
    margin-bottom: 24px;
}

.page-hero h1 span {
    color: var(--accent);
}

.page-hero .hero-sub {
    margin-bottom: 0;
}

/* ─── About Page ─── */
.about-content {
    padding: 0 40px 120px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-bio h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.about-bio p {
    color: var(--warm-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 20px;
}

.about-bio p:last-child {
    margin-bottom: 0;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 32px;
}

.about-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--accent);
}

.about-card p, .about-card li {
    color: var(--warm-gray);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.7;
}

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

.about-card li {
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}

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

/* Timeline */
.timeline {
    padding: 80px 40px 120px;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
    text-align: center;
}

.timeline-items {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}

.timeline-items::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    padding-left: 36px;
    padding-bottom: 40px;
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 4px;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
}

.timeline-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.timeline-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.timeline-item p {
    color: var(--warm-gray);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.6;
}

/* ─── Services Page ─── */
.services-grid {
    padding: 0 40px 120px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    padding: 64px 0;
    border-bottom: 1px solid var(--border);
}

.service-card:first-child {
    border-top: 1px solid var(--border);
}

.service-card:last-child {
    border-bottom: none;
}

.service-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--warm-gray);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-card p:last-child {
    margin-bottom: 0;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-detail-item {
    background: var(--cream);
    border-radius: 10px;
    padding: 24px;
}

.service-detail-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--charcoal);
}

.service-detail-item p {
    color: var(--warm-gray);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Services approach section */
.approach-section {
    background: var(--charcoal);
    color: white;
    padding: 100px 40px;
}

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

.approach-inner h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 56px;
    letter-spacing: -0.02em;
}

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

.approach-item {
    border-left: 2px solid var(--accent);
    padding-left: 24px;
}

.approach-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.approach-item p {
    font-size: 0.92rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* ─── Contact Page ─── */
.contact-content {
    padding: 0 40px 120px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.contact-info > p {
    color: var(--warm-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 40px;
}

.contact-detail {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.contact-detail:first-of-type {
    border-top: 1px solid var(--border);
}

.contact-detail h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-detail p {
    color: var(--warm-gray);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
}

.contact-detail a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

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

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

.map-placeholder {
    background: var(--cream);
    border-radius: 12px;
    padding: 48px 36px;
    text-align: center;
}

.map-placeholder .map-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.map-placeholder h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.map-placeholder p {
    color: var(--warm-gray);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.6;
}

.info-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 32px;
}

.info-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--accent);
}

.info-card p {
    color: var(--warm-gray);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.7;
}

/* Areas served */
.areas-section {
    padding: 80px 40px 120px;
    max-width: 1200px;
    margin: 0 auto;
}

.areas-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
    text-align: center;
}

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

.area-item {
    background: var(--cream);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
}

.area-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.area-item p {
    color: var(--warm-gray);
    font-size: 0.85rem;
    font-weight: 300;
}

/* ─── Forms ─── */
.form-section {
    padding: 0 0 120px;
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start;
}

.form-group-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.required {
    color: var(--accent);
}

.optional-label {
    font-weight: 400;
    color: var(--warm-gray);
    font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--charcoal);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #B5B0AA;
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.08);
}

.form-group input.field-error,
.form-group select.field-error,
.form-group textarea.field-error {
    border-color: #C45D4F;
    box-shadow: 0 0 0 3px rgba(196, 93, 79, 0.08);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B6560' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

/* Radio buttons */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-group-inline {
    flex-direction: row;
    gap: 24px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    flex-shrink: 0;
    transition: border-color 0.2s ease;
    position: relative;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: var(--accent);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

.radio-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--charcoal);
}

.radio-hint {
    color: var(--warm-gray);
    font-size: 0.82rem;
    font-weight: 300;
}

/* Form submit button */
.form-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Form error */
.form-error {
    background: #FEF2F0;
    border: 1px solid #E8C4BF;
    border-radius: 10px;
    padding: 14px 16px;
    color: #8B3A2F;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 16px;
}

/* Form sidebar info cards */
.form-sidebar .info-card {
    margin-bottom: 0;
}

.phone-link {
    color: var(--accent) !important;
    font-weight: 500 !important;
    text-decoration: none;
    white-space: nowrap;
}

.phone-link:hover {
    color: var(--charcoal) !important;
}

/* ─── Confirmation Pages ─── */
.confirmation-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 80px;
}

.confirmation-inner {
    text-align: center;
    max-width: 580px;
}

.confirmation-icon {
    margin-bottom: 32px;
}

.confirmation-page h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.confirmation-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.confirmation-subtext {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 40px;
}

.confirmation-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Click-to-Call ─── */
.mobile-call-btn {
    display: none;
}

/* ─── Footer ─── */
footer {
    padding: 48px 40px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

footer p {
    color: var(--warm-gray);
    font-size: 0.85rem;
    font-weight: 300;
}

footer a {
    color: var(--accent);
    text-decoration: none;
}

footer a:hover {
    color: var(--charcoal);
}

.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--warm-gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .nav-inner {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--ivory);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 105;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .page-hero {
        padding: 120px 24px 60px;
    }

    .philosophy {
        padding: 0 24px 80px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .credentials {
        padding: 80px 24px;
    }

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

    .location {
        padding: 80px 24px;
    }

    .location-cards {
        grid-template-columns: 1fr;
    }

    .closing {
        padding: 80px 24px;
    }

    .about-content, .services-grid, .contact-content {
        padding: 0 24px 80px;
    }

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

    .service-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0;
    }

    .approach-section {
        padding: 80px 24px;
    }

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

    .timeline {
        padding: 60px 24px 80px;
    }

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

    .areas-section {
        padding: 60px 24px 80px;
    }

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

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

    .btn-primary, .btn-secondary {
        text-align: center;
    }

    .form-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .form-section {
        padding: 0 0 80px;
    }

    .radio-group-inline {
        flex-direction: column;
        gap: 12px;
    }

    .confirmation-page {
        padding: 120px 24px 60px;
    }

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

    /* Show mobile call button */
    .mobile-call-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: 'Space Grotesk', sans-serif;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--white);
        background: var(--accent);
        padding: 10px 20px;
        border-radius: 8px;
        text-decoration: none;
        margin-left: auto;
        margin-right: 12px;
    }

    .mobile-call-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Nav Phone (click-to-call) ─── */
.nav-phone {
    display: none;
    align-items: center;
    gap: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.2s ease;
    margin-left: auto;
    margin-right: 16px;
}

.nav-phone:hover {
    color: var(--accent);
}

.nav-phone svg {
    flex-shrink: 0;
}

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

/* ─── Form Styles ─── */
.form-section {
    padding: 0 40px 120px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: start;
}

.form-group-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.form-group label .required {
    color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--charcoal);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #B0ADA8;
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B6560' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

.form-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.form-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 18px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 96px;
}

.accent-card {
    background: var(--charcoal) !important;
}

.accent-card h3 {
    color: var(--accent-light) !important;
}

.accent-card p {
    color: rgba(255,255,255,0.75) !important;
}

.accent-card a {
    color: var(--accent-light) !important;
}

.phone-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.phone-link:hover {
    color: var(--charcoal);
}

.phone-link-large {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    display: block;
    margin-top: 4px;
}

/* Contact page inline form adjustments */
.contact-inline-form {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

/* ─── Confirmation Page ─── */
.confirmation-page {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 40px 80px;
    max-width: 680px;
    margin: 0 auto;
}

.confirmation-icon {
    margin-bottom: 32px;
    animation: confirmPulse 0.6s ease-out;
}

@keyframes confirmPulse {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.confirmation-page h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.confirmation-message {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.confirmation-message strong {
    color: var(--charcoal);
    font-weight: 600;
}

.confirmation-sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 40px;
}

.confirmation-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ─── Form Responsive ─── */
@media (max-width: 768px) {
    .form-section {
        padding: 0 24px 80px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .form-sidebar {
        position: static;
    }

    .confirmation-page {
        padding: 120px 24px 60px;
    }

    .confirmation-actions {
        flex-direction: column;
        width: 100%;
    }

    .confirmation-actions .btn-primary,
    .confirmation-actions .btn-secondary {
        text-align: center;
    }
}
