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

:root {
    --plum: #6B3A6E;
    --plum-deep: #4A2549;
    --plum-light: #8B5A8E;
    --amber: #D4920B;
    --amber-light: #E8A820;
    --amber-pale: #FDF3DC;
    --bg: #FAFAF8;
    --bg-white: #FFFFFF;
    --text: #1A1A1A;
    --text-muted: #6B6B6B;
    --text-light: #999999;
    --line: #E8E6E3;
    --line-light: #F0EFEC;
    --radius: 12px;
    --radius-sm: 8px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a { color: var(--plum); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber); }

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

.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: var(--plum); color: #fff; padding: 8px 16px;
    border-radius: var(--radius-sm); z-index: 1000; font-size: 0.875rem;
}
.skip-link:focus { top: 16px; }

/* ── Header ── */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.header.scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 1px 0 var(--line);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display);
    font-size: 1.25rem; font-weight: 500;
    color: var(--plum); letter-spacing: -0.01em;
}
.logo:hover { color: var(--plum); }
.logo-icon { flex-shrink: 0; }

.nav ul {
    display: flex; align-items: center; gap: 32px;
    list-style: none;
}
.nav a {
    font-size: 0.875rem; font-weight: 400;
    color: var(--text-muted); letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color var(--transition);
}
.nav a:hover { color: var(--plum); }

.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 28px; height: 20px; position: relative;
    flex-direction: column; justify-content: space-between;
}
.nav-toggle-line {
    display: block; width: 100%; height: 1.5px;
    background: var(--text); border-radius: 2px;
    transition: var(--transition); transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 12px 28px; border-radius: 100px;
    font-family: var(--font-body); font-size: 0.875rem; font-weight: 500;
    letter-spacing: 0.03em; text-transform: uppercase;
    transition: all var(--transition); cursor: pointer; border: none;
    text-decoration: none;
}
.btn-primary {
    background: var(--plum); color: #fff;
}
.btn-primary:hover {
    background: var(--plum-deep); color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(107, 58, 110, 0.25);
}
.btn-ghost {
    background: transparent; color: var(--plum);
    border: 1px solid var(--plum);
}
.btn-ghost:hover {
    background: var(--plum); color: #fff;
}
.btn-sm { padding: 8px 20px; font-size: 0.8125rem; }
.btn-lg { padding: 16px 36px; font-size: 0.9375rem; }
.btn-full { width: 100%; }

/* ── Hero ── */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: flex-end;
    padding-bottom: 80px; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.3) 0%,
        rgba(107, 58, 110, 0.55) 60%,
        rgba(74, 37, 73, 0.85) 100%
    );
}
.hero-content {
    position: relative; z-index: 1;
    max-width: 720px; padding-bottom: 8px;
}
.hero-eyebrow {
    font-size: 0.8125rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--amber-light); margin-bottom: 20px;
}
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 300; line-height: 1.15;
    color: #fff; margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-sub {
    font-size: 1.125rem; line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px; max-width: 560px;
    font-weight: 300;
}
.hero-actions {
    display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px;
}
.hero-actions .btn-ghost {
    color: #fff; border-color: rgba(255,255,255,0.5);
}
.hero-actions .btn-ghost:hover {
    background: #fff; color: var(--plum);
    border-color: #fff;
}
.hero-actions .btn-primary {
    background: var(--amber);
}
.hero-actions .btn-primary:hover {
    background: var(--amber-light);
    box-shadow: 0 8px 24px rgba(212, 146, 11, 0.35);
}
.hero-trust {
    display: flex; flex-wrap: wrap; gap: 0;
    align-items: center;
}
.hero-trust span {
    font-size: 0.8125rem; color: rgba(255,255,255,0.65);
    font-weight: 400;
}
.trust-dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: rgba(255,255,255,0.3);
    margin: 0 16px; flex-shrink: 0;
}

/* ── Section shared ── */
.section { padding: 120px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-eyebrow {
    font-size: 0.75rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--amber); margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 400; line-height: 1.2;
    color: var(--text); letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 1.0625rem; color: var(--text-muted);
    line-height: 1.7;
}

/* ── About ── */
.about { background: var(--bg-white); }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.about-image {
    border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 4/5;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-eyebrow { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 24px; text-align: left; }
.about-content p {
    color: var(--text-muted); margin-bottom: 16px;
    font-size: 1rem; line-height: 1.8;
}
.about-content em { color: var(--plum); font-style: italic; font-family: var(--font-display); font-size: 1.125rem; }
.about-stats {
    display: flex; gap: 40px; margin-top: 40px;
    padding-top: 40px; border-top: 1px solid var(--line);
}
.stat-number {
    display: block; font-family: var(--font-display);
    font-size: 2rem; font-weight: 500; color: var(--plum);
    line-height: 1; margin-bottom: 6px;
}
.stat-label {
    font-size: 0.8125rem; color: var(--text-light);
    text-transform: uppercase; letter-spacing: 0.08em;
}

/* ── Services ── */
.services { background: var(--bg); }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--bg-white);
    border: 1px solid var(--line-light);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: all var(--transition);
}
.service-card:hover {
    border-color: var(--plum-light);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(107, 58, 110, 0.08);
}
.service-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-sm);
    background: var(--amber-pale);
    display: flex; align-items: center; justify-content: center;
    color: var(--amber); margin-bottom: 24px;
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: var(--plum); color: #fff;
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.375rem; font-weight: 500;
    color: var(--text); margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.service-card p {
    font-size: 0.9375rem; color: var(--text-muted);
    line-height: 1.7;
}

/* ── Approach ── */
.approach { background: var(--bg-white); }
.approach-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.approach-content .section-eyebrow { margin-bottom: 12px; }
.approach-content .section-title { margin-bottom: 40px; text-align: left; }
.step {
    display: flex; gap: 24px; margin-bottom: 36px;
}
.step:last-child { margin-bottom: 0; }
.step-number {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 400;
    color: var(--amber); line-height: 1;
    padding-top: 4px; flex-shrink: 0;
}
.step h3 {
    font-family: var(--font-display);
    font-size: 1.25rem; font-weight: 500;
    color: var(--text); margin-bottom: 6px;
}
.step p {
    font-size: 0.9375rem; color: var(--text-muted);
    line-height: 1.7;
}
.approach-image {
    border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 4/5;
}
.approach-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Testimonials ── */
.testimonials { background: var(--plum); }
.testimonials .section-eyebrow { color: var(--amber-light); }
.testimonials .section-title { color: #fff; }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius); padding: 40px 32px;
    position: relative;
    transition: all var(--transition);
}
.testimonial:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}
.testimonial-quote {
    position: absolute; top: 24px; right: 28px;
    opacity: 0.5;
}
.testimonial p {
    font-size: 1rem; line-height: 1.8;
    color: rgba(255,255,255,0.88);
    margin-bottom: 24px; font-style: italic;
    font-family: var(--font-display);
    font-size: 1.1875rem;
}
.testimonial footer {
    font-family: var(--font-body);
    font-size: 0.8125rem; font-style: normal;
    color: var(--amber-light);
    text-transform: uppercase; letter-spacing: 0.08em;
}

/* ── CTA ── */
.cta { background: var(--amber-pale); }
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 400; color: var(--text);
    margin-bottom: 20px; letter-spacing: -0.02em;
}
.cta-text {
    font-size: 1.0625rem; color: var(--text-muted);
    margin-bottom: 36px; line-height: 1.7;
}
.cta-actions {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
}

/* ── Contact ── */
.contact { background: var(--bg); }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px;
}
.contact-info .section-eyebrow { margin-bottom: 12px; }
.contact-info .section-title { margin-bottom: 32px; text-align: left; }
.contact-details {
    list-style: none; margin-bottom: 32px;
}
.contact-item {
    display: flex; gap: 16px; margin-bottom: 24px;
    align-items: flex-start;
}
.contact-icon {
    color: var(--plum); flex-shrink: 0;
    margin-top: 2px;
}
.contact-item strong {
    display: block; font-weight: 500;
    font-size: 0.8125rem; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--text);
    margin-bottom: 4px;
}
.contact-item span, .contact-item a {
    font-size: 0.9375rem; color: var(--text-muted);
    line-height: 1.6;
}
.contact-item a:hover { color: var(--amber); }
.contact-map { border-radius: var(--radius); overflow: hidden; }

/* ── Form ── */
.contact-form-wrap {
    background: var(--bg-white);
    border: 1px solid var(--line);
    border-radius: var(--radius); padding: 40px;
}
.contact-form-wrap h3 {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 500;
    color: var(--text); margin-bottom: 6px;
}
.form-note {
    font-size: 0.875rem; color: var(--text-light);
    margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 0.8125rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--text-muted); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: 0.9375rem;
    color: var(--text); background: var(--bg);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(107, 58, 110, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: flex; align-items: center; gap: 10px;
    margin-top: 16px; padding: 14px 18px;
    background: var(--amber-pale); border-radius: var(--radius-sm);
    font-size: 0.9375rem; color: var(--plum-deep);
}

/* ── Footer ── */
.footer {
    background: var(--text); color: rgba(255,255,255,0.6);
    padding: 64px 0 32px;
}
.footer-inner {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 48px;
}
.footer-brand .logo { color: #fff; margin-bottom: 12px; }
.footer-tagline {
    font-size: 0.9375rem; color: rgba(255,255,255,0.5);
    line-height: 1.6;
}
.footer-links {
    display: flex; flex-direction: column; gap: 12px;
}
.footer-links a {
    color: rgba(255,255,255,0.6); font-size: 0.9375rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--amber-light); }
.footer-contact {
    display: flex; flex-direction: column; gap: 8px;
    font-size: 0.9375rem;
}
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--amber-light); }
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8125rem; color: rgba(255,255,255,0.35);
}

/* ── Scroll animations ── */
.reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid .testimonial:last-child { grid-column: span 2; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .nav { 
        display: none; position: fixed;
        top: 72px; left: 0; right: 0; bottom: 0;
        background: rgba(250,250,248,0.98);
        backdrop-filter: blur(12px);
        padding: 40px 24px;
    }
    .nav.open { display: block; }
    .nav ul { flex-direction: column; gap: 24px; align-items: flex-start; }
    .nav a { font-size: 1.125rem; color: var(--text); }
    .nav-toggle { display: flex; }
    
    .hero { align-items: center; padding-bottom: 48px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-trust { flex-direction: column; align-items: flex-start; gap: 8px; }
    .trust-dot { display: none; }
    
    .about-grid,
    .approach-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image, .approach-image { aspect-ratio: 16/10; }
    
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-grid .testimonial:last-child { grid-column: span 1; }
    
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .about-stats { flex-direction: column; gap: 24px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .contact-form-wrap { padding: 24px; }
    .service-card { padding: 28px 24px; }
}
