/* ===== Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ===== Variables ===== */
:root {
    --bg: #fbfaf7;
    --bg-alt: #f4f2ec;
    --text: #1c1c1a;
    --text-soft: #55534d;
    --text-faint: #8a867c;
    --accent: #3a5a78;
    --accent-dark: #2c4860;
    --line: #e4e0d6;
    --maxw: 1080px;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--bg);
    line-height: 1.75;
    font-weight: 300;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 250, 247, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
}
.logo {
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text);
}
.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; gap: 34px; list-style: none; }
.nav-link {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-soft);
    transition: color 0.25s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 2px;
    font-family: var(--sans);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    border: 1px solid var(--accent);
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-outline { background: transparent; color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }

/* ===== Hero ===== */
.hero {
    padding: 130px 0 100px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}
.hero-sm { padding: 90px 0 60px; border-bottom: 1px solid var(--line); }
.hero-inner { max-width: 720px; }
.eyebrow {
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
}
.hero-title {
    font-family: var(--serif);
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.05;
    margin-bottom: 26px;
}
.hero-subtitle {
    font-size: clamp(17px, 2.2vw, 20px);
    color: var(--text-soft);
    max-width: 600px;
    font-weight: 300;
}
.hero-ctas { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }

/* ===== Sections ===== */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-title {
    font-family: var(--serif);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 18px;
    color: var(--text-soft);
    margin-bottom: 52px;
    max-width: 620px;
    font-weight: 300;
}

/* ===== Features ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
}
.feature-card {
    padding: 44px 36px;
    border-right: 1px solid var(--line);
}
.feature-card:last-child { border-right: none; }
.feature-icon {
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}
.feature-title {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 12px;
}
.feature-text { color: var(--text-soft); font-size: 15.5px; }

/* ===== About teaser ===== */
.about-teaser .about-text { max-width: 760px; }
.about-teaser p { color: var(--text-soft); margin-top: 18px; font-size: 18px; }

/* ===== Services ===== */
.services-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.service-card {
    padding: 48px 0;
    border-bottom: 1px solid var(--line);
}
.service-number {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 10px;
}
.service-title { font-family: var(--serif); font-size: 30px; font-weight: 500; margin-bottom: 18px; }
.service-bullets { margin: 16px 0; padding-left: 20px; color: var(--text-soft); }
.service-bullets li { margin-bottom: 8px; }

.services-pricing { margin-top: 64px; }
.pricing-title { font-family: var(--serif); font-size: 32px; font-weight: 500; margin-bottom: 28px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.pricing-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 36px 28px;
    border-right: 1px solid var(--line);
}
.pricing-item:last-child { border-right: none; }
.pricing-name { font-size: 15px; color: var(--text-soft); }
.pricing-amount { font-family: var(--serif); font-size: 38px; font-weight: 500; color: var(--text); }
.pricing-note { margin-top: 18px; color: var(--text-faint); font-size: 14px; }
.section-cta { margin-top: 52px; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 56px; }
.contact-title { font-family: var(--serif); font-size: 30px; font-weight: 500; margin-bottom: 28px; }
.contact-channels { display: grid; gap: 0; border-top: 1px solid var(--line); }
.contact-channel {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}
.channel-icon { font-size: 20px; }
.channel-details h3 { font-size: 15px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-soft); }
.channel-details p { font-size: 15.5px; color: var(--text); margin-top: 4px; }
.channel-link { font-size: 14px; color: var(--accent); letter-spacing: 0.04em; }

.form-title { font-family: var(--serif); font-size: 32px; font-weight: 500; margin-bottom: 10px; }
.form-intro { color: var(--text-soft); margin-bottom: 30px; }
.contact-form { display: grid; gap: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }
.form-group input, .form-group select, .form-group textarea {
    padding: 13px 0;
    border: none;
    border-bottom: 1px solid var(--line);
    font-family: inherit; font-size: 16px;
    background: transparent; color: var(--text);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-bottom-color: var(--accent);
}

.faq-section { margin-top: 52px; }
.faq-title { font-family: var(--serif); font-size: 24px; font-weight: 500; margin-bottom: 20px; }
.faq-item { padding: 18px 0; border-top: 1px solid var(--line); }
.faq-item h4 { font-size: 16px; font-weight: 500; margin-bottom: 6px; }
.faq-item p { color: var(--text-soft); font-size: 15px; }

/* ===== Blog ===== */
.blog-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.blog-post-preview { padding: 38px 0; border-bottom: 1px solid var(--line); }
.post-meta { display: flex; gap: 14px; font-size: 13px; color: var(--text-faint); margin-bottom: 12px; letter-spacing: 0.05em; }
.post-category { color: var(--accent); }
.post-title { font-family: var(--serif); font-size: 30px; font-weight: 500; margin-bottom: 12px; }
.post-title a:hover { color: var(--accent); }
.post-excerpt { color: var(--text-soft); margin-bottom: 14px; max-width: 720px; }
.post-readmore { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }

.newsletter {
    margin-top: 72px;
    border: 1px solid var(--line);
    padding: 56px;
    text-align: center;
    background: var(--bg-alt);
}
.newsletter-title { font-family: var(--serif); font-size: 30px; font-weight: 500; margin-bottom: 10px; }
.newsletter-text { color: var(--text-soft); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.newsletter-form input {
    padding: 13px 18px; border: 1px solid var(--line); border-radius: 2px;
    min-width: 280px; font-family: inherit; font-size: 15px; background: var(--bg);
}

/* ===== Privacy ===== */
.privacy-content { max-width: 800px; }
.privacy-content h2 { font-family: var(--serif); font-size: 28px; font-weight: 500; margin: 40px 0 14px; }
.privacy-content p { color: var(--text-soft); margin-bottom: 14px; }
.privacy-content ul { margin: 0 0 14px 22px; color: var(--text-soft); }
.privacy-content li { margin-bottom: 7px; }
.privacy-content a { color: var(--accent); }

/* ===== Footer ===== */
.site-footer { background: #1c1c1a; color: #b8b4aa; padding: 72px 0 44px; margin-top: 40px; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; }
.footer-logo { font-family: var(--serif); font-weight: 600; color: #fff; font-size: 19px; letter-spacing: 0.02em; }
.footer-copy { font-size: 13px; color: #75726a; margin-top: 16px; }
.footer-heading { font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.footer-nav { list-style: none; display: grid; gap: 12px; }
.footer-nav a { font-size: 14px; color: #b8b4aa; transition: color 0.2s; }
.footer-nav a:hover { color: #fff; }
.footer-col p { font-size: 14px; margin-bottom: 10px; }
.footer-col a { color: #9db4d4; }

/* ===== Pictorial (minimal line-art) ===== */
.pictorial {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: var(--bg-alt);
    overflow: hidden;
}
.pictorial svg { width: 100%; height: 100%; display: block; }
.pictorial line, .pictorial path, .pictorial circle, .pictorial polyline {
    stroke: var(--accent);
    fill: none;
    stroke-width: 1;
    opacity: 0.55;
    vector-effect: non-scaling-stroke;
}
.hero-pictorial { margin-top: 56px; aspect-ratio: 16 / 7; }
.about-pictorial { margin-top: 36px; aspect-ratio: 3 / 2; max-width: 520px; }
.section-pictorial { margin: 0 0 8px; aspect-ratio: 4 / 3; }
.contact-pictorial { margin-top: 36px; aspect-ratio: 1 / 1; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
    .nav-list {
        position: absolute; top: 78px; left: 0; right: 0;
        flex-direction: column; gap: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--line);
        max-height: 0; overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .nav-list.open { max-height: 340px; }
    .nav-list li { padding: 0 28px; }
    .nav-link { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); }
    .nav-link::after { display: none; }
    .nav-toggle { display: flex; }

    .features-grid, .pricing-grid, .contact-grid, .form-grid, .footer-inner {
        grid-template-columns: 1fr;
    }
    .feature-card, .pricing-item { border-right: none; border-bottom: 1px solid var(--line); }
    .hero { padding: 90px 0 64px; }
    .section { padding: 64px 0; }
}
