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


 :root {
     --primary: #2da593;
     --primary-fg: #ffffff;
     --secondary: #1A6B4A;
     --accent: #2da593;
     --foreground: #1a1a1a;
     --background: #f9e8e8;
     --muted: #f4f3ef;
     --muted-fg: #6b6b6b;
     --card: #ffffff;
     --border: #e5e3dc;
 }

body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--foreground);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
}

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

/* NAV */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    padding: 12px 24px;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 9999px;
    padding: 10px 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.15rem;
}

.nav-logo-dot {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.nav-links {
    display: flex;
    gap: 32px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-fg);
}

.nav-links a:hover {
    color: var(--foreground);
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 9999px;
    background: var(--primary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

/* HERO */
.contact-hero {
    padding: 128px 24px 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: rgba(200, 121, 26, .08);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-blob2 {
    position: absolute;
    top: 25%;
    right: 25%;
    width: 300px;
    height: 300px;
    background: rgba(26, 107, 74, .06);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    border: 1px solid rgba(200, 121, 26, .2);
    background: rgba(200, 121, 26, .06);
    margin-bottom: 24px;
}

.hero-badge span {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--primary);
}

.hero-h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 500;
    line-height: .95;
    letter-spacing: -.02em;
    margin-bottom: 24px;
}

.hero-h1 .italic {
    font-style: italic;
    color: var(--primary);
}

.hero-sub {
    font-size: 1rem;
    color: var(--muted-fg);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.contact-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 9999px;
    font-size: .875rem;
    font-weight: 500;
    transition: all .2s;
}

.contact-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pill-icon {
    font-size: 1rem;
}

/* SPLIT */
.split {
    padding: 64px 24px;
}

.split-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.section-tag {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: var(--primary);
    margin-bottom: 12px;
}

.split-h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin-bottom: 32px;
}

.split-h2 .italic {
    font-style: italic;
    color: var(--primary);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.info-row {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--card);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: border-color .2s, box-shadow .2s;
}

.info-row:hover {
    border-color: rgba(200, 121, 26, .3);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(200, 121, 26, .1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.info-label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted-fg);
    margin-bottom: 4px;
}

.info-val {
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.5;
}

.map-box {
    background: var(--muted);
    border-radius: 16px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.map-box-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 121, 26, .04), rgba(26, 107, 74, .04));
}

.map-box-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 24px;
}

.map-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.map-title {
    font-weight: 600;
    font-size: .875rem;
    margin-bottom: 4px;
}

.map-sub {
    font-size: .75rem;
    color: var(--muted-fg);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 12px;
}

/* FORM */
.form-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 24px;
}

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

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

.form-label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted-fg);
    display: block;
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    background: var(--input);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: .875rem;
    color: var(--foreground);
    outline: none;
    font-family: 'Inter', sans-serif;
    transition: border-color .2s;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200, 121, 26, .1);
}

.form-input::placeholder {
    color: var(--muted-fg);
}

.form-textarea {
    width: 100%;
    background: var(--input);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: .875rem;
    color: var(--foreground);
    outline: none;
    font-family: 'Inter', sans-serif;
    resize: none;
    transition: border-color .2s;
}

.form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200, 121, 26, .1);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: .875rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity .2s;
    box-shadow: 0 4px 16px rgba(200, 121, 26, .25);
}

.submit-btn:hover {
    opacity: .9;
}

.success-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    display: none;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(26, 107, 74, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.success-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.success-text {
    font-size: .875rem;
    color: var(--muted-fg);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.reset-btn {
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: transparent;
    font-size: .875rem;
    font-weight: 500;
    color: var(--muted-fg);
    cursor: pointer;
}

/* ABOUT SECTION */
.about-section {
    padding: 80px 24px;
    background: rgba(244, 243, 239, .4);
}

.about-inner {
    max-width: 1280px;
    margin: 0 auto;
}

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

.about-h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: .95;
    letter-spacing: -.02em;
    margin-bottom: 24px;
}

.about-h2 .italic {
    font-style: italic;
    color: var(--primary);
}

.about-text {
    font-size: .9rem;
    color: var(--muted-fg);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 24px;
}

.about-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary);
}

.about-stat-lbl {
    font-size: .65rem;
    color: var(--muted-fg);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 600;
    margin-top: 2px;
}

.quote-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
    position: relative;
    overflow: hidden;
}

.quote-blob {
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: rgba(200, 121, 26, .06);
    border-radius: 50%;
    filter: blur(40px);
}

.quote-icon {
    width: 48px;
    height: 48px;
    background: rgba(200, 121, 26, .1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.quote-avatar {
    width: 40px;
    height: 40px;
    background: var(--muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.quote-name {
    font-size: .875rem;
    font-weight: 600;
}

.quote-role {
    font-size: .75rem;
    color: var(--muted-fg);
}

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

.pillar-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    transition: box-shadow .3s, border-color .3s;
}

.pillar-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    border-color: rgba(200, 121, 26, .25);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.pillar-desc {
    font-size: .875rem;
    color: var(--muted-fg);
    line-height: 1.7;
}

/* FOOTER */
footer {
    border-top: 1px solid var(--border);
    background: var(--background);
    padding: 64px 24px;
}

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

.footer-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 32px;
    font-size: .875rem;
    font-weight: 500;
    color: var(--muted-fg);
    flex-wrap: wrap;
}

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

.footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-copy {
    font-size: .75rem;
    color: var(--muted-fg);
}

@media (max-width: 900px) {
    .split-inner {
        grid-template-columns: 1fr;
    }

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

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

    .nav-links {
        display: none;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

