
:root {
    --brand-red: #931c1c;
    --brand-red-dark: #721616;
    --brand-grey: #6c808d;
    --text-dark: #1f2933;
    --muted-grey: #7e8f9a;
    --line: #eadada;
    --soft-line: #edf0f2;
    --panel-bg: #ffffff;
    --shadow: 0 16px 36px rgba(108, 128, 141, 0.09);
    --shadow-soft: 0 10px 24px rgba(108, 128, 141, 0.06);
}

* { box-sizing: border-box; }
html { background: #ffffff; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--brand-grey);
    background: #ffffff;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brand-red);
    z-index: 3000;
}

main { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

a { color: var(--brand-red); }
p { line-height: 1.72; }

/* Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 2000;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--soft-line);
    box-shadow: 0 8px 24px rgba(108, 128, 141, 0.08);
}
.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 36px;
}
.nav-brand { display: inline-flex; align-items: center; text-decoration: none; }
.nav-brand img { display: block; width: 205px; max-width: 38vw; height: auto; }
.nav-menu { display: flex; align-items: center; justify-content: flex-end; gap: 24px; flex-wrap: wrap; }
.nav-menu a, .nav-dropbtn {
    color: #46545c;
    text-decoration: none;
    background: none;
    border: 0;
    padding: 10px 0;
    font: 700 12px/1.2 "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .2s ease;
}
.nav-menu a:hover, .nav-dropbtn:hover, .nav-dropdown:focus-within .nav-dropbtn { color: var(--brand-red); }
.nav-contact {
    background: var(--brand-red) !important;
    color: #ffffff !important;
    padding: 11px 20px !important;
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(147,28,28,.16);
}
.nav-contact:hover { background: var(--brand-red-dark) !important; }
.nav-dropdown { position: relative; z-index: 10; }
.nav-dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 286px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 4px solid var(--brand-red);
    border-radius: 14px;
    box-shadow: var(--shadow);
    text-align: left;
    z-index: 2500;
}
.nav-dropdown-content::before { content: ""; position: absolute; top: -12px; left: 0; width: 100%; height: 12px; }
.nav-dropdown:hover .nav-dropdown-content, .nav-dropdown:focus-within .nav-dropdown-content { display: block; }
.nav-dropdown-content a {
    display: block;
    padding: 12px 14px;
    border-radius: 9px;
    color: var(--brand-grey);
    letter-spacing: 0.03em;
    text-transform: none;
    font-size: 14px;
    line-height: 1.35;
}
.nav-dropdown-content a:hover, .nav-dropdown-content a.active { background: #fff6f6; color: var(--brand-red); text-decoration: none; }
.nav-page.active, .nav-contact.active { color: var(--brand-red); }
.nav-contact.active { color: #fff !important; }

/* Typography */
h1 {
    color: var(--brand-red);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin: 0;
    font-size: clamp(42px, 5.2vw, 70px);
}
h2 {
    color: var(--brand-red);
    font-size: clamp(25px, 2.6vw, 34px);
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin: 0 0 22px 0;
}
h3 {
    margin: 0 0 14px 0;
    color: var(--text-dark);
    font-size: 17px;
    line-height: 1.3;
}
.eyebrow {
    color: var(--brand-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* Hero */
.home-hero {
    min-height: 620px;
    padding: 90px 0 62px 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 76px;
    align-items: center;
    border-bottom: 1px solid var(--soft-line);
}
.home-hero-copy { text-align: left; }
.hero-subline { margin: 24px 0 22px 0; color: var(--brand-grey); font-size: 16px; }
.hero-lede { max-width: 620px; color: var(--text-dark); font-size: 18px; line-height: 1.75; margin: 0 0 30px 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.primary-cta, .secondary-cta, .service-button, .secondary-button, .contact-form button {
    display: inline-block;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease, border .2s ease, color .2s ease;
}
.primary-cta, .service-button, .contact-form button {
    background: var(--brand-red);
    color: #fff !important;
    box-shadow: 0 12px 22px rgba(147,28,28,.15);
}
.primary-cta { padding: 14px 24px; }
.secondary-cta { padding: 13px 24px; border: 1px solid var(--line); color: var(--brand-red); }
.primary-cta:hover, .service-button:hover, .contact-form button:hover { transform: translateY(-1px); background: var(--brand-red-dark); }
.secondary-cta:hover { border-color: var(--brand-red); transform: translateY(-1px); }
.home-hero-brand { display: flex; flex-direction: column; align-items: center; gap: 76px; }
.logo-top { display: block; max-width: 430px; width: 100%; height: auto; }
.decision-summary {
    max-width: 430px;
    padding: 25px 32px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    text-align: center;
}
.decision-summary strong { display: block; color: var(--brand-red); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 12px; }
.decision-summary p { margin: 0; color: var(--text-dark); line-height: 1.55; }

/* Page hero */
.page-hero {
    padding: 72px 0 48px 0;
    border-bottom: 1px solid var(--soft-line);
    text-align: left;
}
.page-hero h1 { max-width: 850px; font-size: clamp(40px, 4.8vw, 64px); }
.page-hero-copy { max-width: 880px; margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.page-hero-copy p { margin: 0; color: var(--text-dark); font-size: 17px; line-height: 1.72; }

/* Sections */
.section-heading { max-width: 760px; margin: 0 auto 36px auto; text-align: center; }
.section-heading p { color: var(--brand-grey); font-size: 17px; }
.services-section { padding: 72px 0 52px 0; }
.services { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.service {
    min-height: 300px;
    padding: 32px 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel-bg);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.service p { margin: 0 0 24px 0; color: var(--brand-grey); }
.service-button { padding: 11px 21px; margin-top: auto; }
.text-link { display: inline-block; margin-top: 15px; color: var(--brand-red); font-size: 14px; font-weight: 700; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.narrative-section, .related-services { padding: 58px 0; border-bottom: 1px solid var(--soft-line); text-align: left; }
.narrative-copy { max-width: 780px; }
.narrative-copy p { color: var(--text-dark); font-size: 17px; line-height: 1.78; margin: 0 0 18px 0; }
.narrative-copy p:last-child { margin-bottom: 0; }

.editorial-pair {
    padding: 62px 0;
    border-bottom: 1px solid var(--soft-line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    text-align: left;
}
.editorial-column { min-width: 0; }
.editorial-column + .editorial-column { border-left: 1px solid var(--soft-line); padding-left: 64px; }
.category-list { display: grid; gap: 26px; }
.category-group h3 {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 10px 0;
}
.category-group span {
    display: block;
    color: var(--brand-grey);
    font-size: 16px;
    line-height: 1.55;
    padding: 3px 0;
}

.related-services p { font-size: 17px; line-height: 1.9; color: var(--brand-grey); }
.related-services a { color: var(--brand-red); text-decoration: none; font-weight: 700; }
.related-services a:hover { text-decoration: underline; }

.about-narrative { padding-top: 28px; }
.about-block { padding: 50px 0; border-bottom: 1px solid var(--soft-line); text-align: left; }
.about-block p { max-width: 850px; color: var(--text-dark); font-size: 17px; line-height: 1.78; }
.notice-box {
    margin: 52px 0;
    padding: 34px 38px;
    border-left: 4px solid var(--brand-red);
    background: #fff;
    box-shadow: var(--shadow-soft);
    border-radius: 0 14px 14px 0;
}
.privacy-content { max-width: 900px; padding-top: 70px; }

/* Contact */
.contact-form {
    max-width: 620px;
    margin: 74px auto 44px auto;
    padding: 38px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    text-align: center;
}
.contact-form h2 { text-align: center; }
.contact-form p { color: var(--brand-grey); }
.contact-form form { display: flex; flex-direction: column; gap: 13px; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 14px 16px; border: 1px solid #d0d6da; border-radius: 8px;
    font: 400 14px/1.4 "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: var(--brand-grey); background: #fff;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--brand-red); box-shadow: 0 0 0 3px rgba(147,28,28,.10); }
.contact-form textarea { min-height: 118px; resize: vertical; }
.contact-form button { align-self: center; margin-top: 10px; padding: 12px 30px; border: 2px solid var(--brand-red); cursor: pointer; font-size: 14px; }
.email-section { margin-top: 28px; text-align: center; color: var(--brand-grey); }
.email-section strong { font-size: 18px; color: var(--brand-red); }
.credibility { max-width: 760px; margin: 34px auto 0 auto; text-align: center; font-size: 14px; line-height: 1.65; color: var(--muted-grey); }

.logo-bottom { display: block; max-width: 100px; width: 100%; height: auto; margin: 54px auto 0 auto; }
.footer {
    max-width: 1180px;
    margin: 48px auto 0 auto;
    padding: 34px 28px 22px 28px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--brand-grey);
    line-height: 1.7;
    text-align: left;
}
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr; gap: 28px; max-width: 1040px; margin: 0 auto; }
.footer strong { display: block; color: var(--brand-red); margin-bottom: 8px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.footer p { margin: 0; }
.footer a { color: var(--brand-grey); text-decoration: none; }
.footer a:hover { color: var(--brand-red); text-decoration: underline; }
.footer-bottom { max-width: 1040px; margin: 26px auto 0 auto !important; padding-top: 18px; border-top: 1px solid var(--soft-line); color: #9a9a9a; text-align: center; font-size: 12px; }

@media screen and (max-width: 960px) {
    .nav-inner { flex-direction: column; gap: 16px; }
    .nav-menu { justify-content: center; gap: 12px 18px; }
    .home-hero, .page-hero-copy, .editorial-pair, .services { grid-template-columns: 1fr; }
    .home-hero { gap: 44px; min-height: auto; padding-top: 62px; }
    .home-hero-brand { gap: 38px; }
    .editorial-column + .editorial-column { border-left: 0; padding-left: 0; padding-top: 46px; border-top: 1px solid var(--soft-line); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media screen and (max-width: 650px) {
    main { padding: 0 20px; }
    .nav-brand img { width: 190px; max-width: 80vw; }
    .nav-menu a, .nav-dropbtn { font-size: 11px; letter-spacing: .12em; }
    .nav-contact { padding: 9px 14px !important; }
    .nav-dropdown-content { left: 50%; transform: translateX(-50%); min-width: 240px; }
    .home-hero { padding: 46px 0 46px 0; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .logo-top { max-width: 330px; }
    .decision-summary { padding: 22px; }
    .page-hero { padding: 48px 0 36px 0; }
    .editorial-pair, .narrative-section, .related-services { padding: 42px 0; }
    .contact-form { padding: 28px 20px; }
    .footer { text-align: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 22px; }
}
