/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --plum: #5B2C6F;
    --plum-light: #7D3C91;
    --plum-dark: #4A235A;
    --amber: #F59E0B;
    --amber-light: #FCD34D;
    --amber-dark: #D97706;
    --white: #FFFFFF;
    --off-white: #FAFAF8;
    --gray-50: #F7F7F5;
    --gray-100: #EFEFEA;
    --gray-200: #E2E2DC;
    --gray-300: #C8C8C0;
    --gray-400: #A0A098;
    --gray-500: #6B6B64;
    --gray-600: #4A4A44;
    --gray-700: #2E2E28;
    --gray-800: #1A1A16;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    font-size: 15px;
    letter-spacing: 0.01em;
}

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

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

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

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

.nav.scrolled {
    box-shadow: 0 1px 20px rgba(91, 44, 111, 0.06);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--plum);
    letter-spacing: -0.02em;
}

.nav-logo-icon {
    color: var(--plum);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-500);
    transition: color 0.3s var(--ease-out);
    position: relative;
}

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

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

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

.nav-link--cta {
    color: var(--plum);
    font-weight: 500;
    border: 1px solid var(--plum);
    padding: 8px 20px;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
}

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

.nav-link--cta:hover {
    background: var(--plum);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--gray-700);
    transition: all 0.3s var(--ease-out);
    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);
}

/* ── Hero ───────────────────────────────────────── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--white);
    overflow: hidden;
}

.hero-container {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber-dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--amber);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 400;
    line-height: 1.08;
    color: var(--gray-800);
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.hero-headline em {
    font-style: italic;
    color: var(--plum);
}

.hero-subheadline {
    font-size: 17px;
    line-height: 1.75;
    color: var(--gray-500);
    max-width: 440px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.35s var(--ease-out);
}

.btn--primary {
    background: var(--plum);
    color: var(--white);
    border-color: var(--plum);
}

.btn--primary:hover {
    background: var(--plum-dark);
    border-color: var(--plum-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(91, 44, 111, 0.25);
}

.btn--ghost {
    background: transparent;
    color: var(--gray-600);
    border-color: var(--gray-200);
}

.btn--ghost:hover {
    border-color: var(--plum);
    color: var(--plum);
}

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

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-400);
    letter-spacing: 0.02em;
}

.hero-detail svg {
    color: var(--amber);
    flex-shrink: 0;
}

.hero-right {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.hero-image-wrapper:hover img {
    transform: scale(1.03);
}

.hero-image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--amber);
    border-radius: 4px;
    z-index: -1;
}

.hero-line {
    height: 1px;
    background: linear-gradient(to right, var(--gray-100), transparent);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Section Shared ─────────────────────────────── */
.section-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber-dark);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.12;
    color: var(--gray-800);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.section-divider {
    width: 48px;
    height: 1px;
    background: var(--amber);
    margin-bottom: 40px;
}

/* ── Services ───────────────────────────────────── */
.services {
    padding: 120px 0;
    background: var(--off-white);
}

.services .section-header {
    margin-bottom: 72px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gray-100);
    border: 1px solid var(--gray-100);
    border-radius: 4px;
    overflow: hidden;
}

.service-card {
    background: var(--white);
    padding: 48px 36px;
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.service-card:hover {
    background: var(--plum);
}

.service-card:hover .service-icon svg,
.service-card:hover .service-name,
.service-card:hover .service-desc {
    color: var(--white);
}

.service-card:hover .service-icon {
    color: var(--amber);
}

.service-icon {
    color: var(--plum);
    margin-bottom: 24px;
    transition: color 0.4s var(--ease-out);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-name {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--gray-800);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    transition: color 0.4s var(--ease-out);
}

.service-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--gray-500);
    font-weight: 300;
    transition: color 0.4s var(--ease-out);
}

/* ── About ──────────────────────────────────────── */
.about {
    padding: 120px 0;
    background: var(--white);
}

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

.about-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.about-text {
    font-size: 16px;
    line-height: 1.85;
    color: var(--gray-500);
    margin-bottom: 20px;
    font-weight: 300;
}

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 400;
}

.about-feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
    flex-shrink: 0;
}

/* ── Location ───────────────────────────────────── */
.location {
    padding: 120px 0;
    background: var(--off-white);
}

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

.location-details {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-top: 8px;
}

.location-item {
    display: flex;
    gap: 20px;
}

.location-item-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    flex-shrink: 0;
}

.location-item-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 6px;
}

.location-item-value {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
}

.location-item-value a {
    color: var(--plum);
    transition: color 0.3s;
}

.location-item-value a:hover {
    color: var(--amber-dark);
}

.location-map .map-link {
    display: block;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(91, 44, 111, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.map-link:hover .map-overlay {
    opacity: 1;
}

.map-link:hover img {
    transform: scale(1.05);
}

/* ── Contact ────────────────────────────────────── */
.contact {
    padding: 120px 0;
    background: var(--plum);
    color: var(--white);
}

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

.contact .section-eyebrow {
    color: var(--amber-light);
}

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

.contact .section-divider {
    background: var(--amber);
}

.contact-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    font-weight: 300;
}

.phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--amber-light);
    transition: color 0.3s;
    letter-spacing: -0.01em;
}

.phone-cta:hover {
    color: var(--amber);
}

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

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

.form-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.form-input {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 14px 16px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.02em;
    transition: all 0.3s var(--ease-out);
    outline: none;
    width: 100%;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input:focus {
    border-color: var(--amber);
    background: rgba(255, 255, 255, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background: var(--plum-dark);
    color: var(--white);
}

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

.btn--amber {
    background: var(--amber);
    color: var(--gray-800);
    border-color: var(--amber);
}

.btn--amber:hover {
    background: var(--amber-dark);
    border-color: var(--amber-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.form-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    margin-top: 4px;
}

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

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

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
}

.form-success p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ── Footer ─────────────────────────────────────── */
.footer {
    background: var(--gray-800);
    color: var(--white);
    padding: 64px 0 40px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
}

.footer-logo-icon {
    color: var(--amber);
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 10px;
    font-weight: 300;
}

.footer-contact {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.footer-contact a {
    color: var(--amber-light);
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    gap: 20px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

/* ── Mobile Responsive ──────────────────────────── */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

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

    .about-layout,
    .location-layout,
    .contact-inner {
        gap: 48px;
    }
}

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

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        border-bottom: 1px solid var(--gray-100);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.4s var(--ease-out);
        pointer-events: none;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link--cta {
        display: inline-block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding: 40px 24px 60px;
        gap: 48px;
    }

    .hero-right {
        order: -1;
    }

    .hero-image-wrapper {
        max-height: 400px;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .services {
        padding: 80px 0;
    }

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

    .service-card {
        padding: 36px 28px;
    }

    .about,
    .location {
        padding: 80px 0;
    }

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

    .about-image-col {
        max-height: 360px;
    }

    .about-image-col img,
    .location-map img {
        height: 300px;
    }

    .contact {
        padding: 80px 0;
    }

    .phone-cta {
        font-size: 22px;
    }

    .footer-top {
        flex-direction: column;
        gap: 32px;
    }

    .footer-contact {
        text-align: left;
    }

    .footer-contact p {
        justify-content: flex-start;
    }

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

@media (max-width: 480px) {
    .hero-headline {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn {
        padding: 12px 22px;
        font-size: 12px;
    }
}

/* ── Animations ─────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
    .fade-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    }

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-up:nth-child(2) { transition-delay: 0.1s; }
    .fade-up:nth-child(3) { transition-delay: 0.2s; }
    .fade-up:nth-child(4) { transition-delay: 0.3s; }
    .fade-up:nth-child(5) { transition-delay: 0.4s; }
    .fade-up:nth-child(6) { transition-delay: 0.5s; }
}
