:root {
    color-scheme: light dark;
    --page: #f8f7f2;
    --ink: #243c33;
    --muted: #59665f;
    --line: #d8dfd7;
    --surface: #efefe7;
    --accent: #315d49;
    --panel: #254b3e;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 2rem; }
body { margin: 0; background: var(--page); color: var(--ink); font-family: Arial, Helvetica, sans-serif; font-size: 16px; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 3px solid var(--accent); outline-offset: 6px; }
.container { max-width: 1160px; padding-inline: 28px; }
.site-header { padding-block: 27px; border-bottom: 1px solid var(--line); }
.brand { display: flex; gap: 12px; align-items: center; font-family: Georgia, 'Times New Roman', serif; font-size: 25px; line-height: 1.1; }
.brand small { display: block; font-family: Arial, sans-serif; font-size: 10px; letter-spacing: 2px; margin-top: 8px; }
.brand-logo { display: block; width: 58px; height: 58px; flex-shrink: 0; object-fit: contain; padding: 5px; background: #fff; border-radius: 6px; }
.nav-contact { font-size: 14px; border-bottom: 1px solid var(--ink); padding-block: 8px; white-space: nowrap; }
.nav-contact span { margin-left: 20px; }
.hero { padding-block: 78px 86px; }
.eyebrow { font-size: 12px; letter-spacing: 2px; font-weight: 600; margin-bottom: 24px; }
.status-dot { display: inline-block; width: 7px; height: 7px; background: var(--accent); border-radius: 50%; margin-right: 10px; vertical-align: 1px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; letter-spacing: -2.7px; }
h1 { font-size: clamp(49px, 5.6vw, 76px); line-height: 1.06; margin-bottom: 28px; }
h1 em, h2 em { color: var(--accent); font-weight: 400; }
.hero-copy { color: var(--muted); max-width: 430px; line-height: 1.85; font-size: 18px; margin-bottom: 32px; }
.btn-contact { display: inline-flex; align-items: center; justify-content: center; gap: 13px; background: var(--ink); color: var(--page); border: 1px solid var(--ink); border-radius: 4px; font-size: 15px; padding: 17px 23px; transition: background .2s, transform .2s; }
.btn-contact:hover, .btn-contact:focus-visible { background: var(--accent); color: var(--page); border-color: var(--accent); transform: translateY(-2px); }
.hero-note { font-size: 13px; color: var(--muted); margin: 16px 0 0; }
.editorial-panel { background: var(--panel); color: #f3f0dc; padding: 30px; border-radius: 160px 160px 5px 5px; position: relative; overflow: hidden; min-height: 465px; display: flex; flex-direction: column; justify-content: space-between; }
.panel-top { display: flex; justify-content: center; align-items: center; gap: 12px; font-size: 10px; letter-spacing: 2px; padding-top: 36px; }
.panel-top > span:last-child { font-size: 23px; }
.arch-art { height: 240px; position: relative; width: 240px; align-self: center; margin-top: 12px; }
.arch { position: absolute; bottom: 8px; border: 1px solid #9bad8c; border-bottom: 0; border-radius: 120px 120px 0 0; }
.arch-one { width: 205px; height: 215px; left: 17px; }
.arch-two { width: 155px; height: 185px; left: 42px; }
.arch-three { width: 105px; height: 155px; left: 67px; background: linear-gradient(180deg, #b3bd9433, #b3bd9400); }
.sun { position: absolute; top: 20px; right: 5px; width: 55px; height: 55px; border-radius: 50%; background: #c8c69c; }
.art-line { position: absolute; bottom: 8px; left: -15px; right: -15px; height: 1px; background: #9bad8c; }
.panel-bottom { display: flex; justify-content: space-between; align-items: end; margin-top: 19px; }
.panel-bottom p { font: 29px/1.2 Georgia, serif; margin: 0; }
.panel-bottom > span { font-size: 36px; font-weight: 300; }
.approach { background: var(--surface); border-block: 1px solid var(--line); padding-block: 48px; }
.approach .eyebrow { margin-bottom: 17px; }
.approach h2 { font-size: 29px; line-height: 1.2; letter-spacing: -.7px; margin: 0; }
.approach-item { padding-left: 32px; }
.item-number { color: var(--accent); display: block; font-size: 13px; margin-bottom: 18px; }
.approach h3 { font-size: 17px; font-weight: 500; margin-bottom: 12px; }
.approach p:not(.eyebrow) { color: var(--muted); font-size: 15px; line-height: 1.8; max-width: 285px; margin: 0; }
.contact-section { padding-block: 75px; }
.contact-section h2 { font-size: clamp(37px, 4vw, 49px); line-height: 1.13; letter-spacing: -1.7px; margin-bottom: 20px; }
.contact-copy { color: var(--muted); max-width: 340px; line-height: 1.8; margin-bottom: 0; }
.contact-row { display: flex; justify-content: space-between; align-items: center; padding: 25px 0; border-bottom: 1px solid var(--line); gap: 20px; }
.contact-row:first-child { border-top: 1px solid var(--line); }
.detail-label, .detail-value, .detail-city { display: block; }
.detail-label { color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: 1.6px; margin-bottom: 9px; }
.detail-value { font-size: 24px; }
.detail-city { color: var(--muted); font-size: 15px; margin-top: 5px; }
.contact-arrow { font-size: 26px; transition: transform .2s; }
.contact-row:hover .contact-arrow { transform: translate(3px, -3px); }
.site-footer { border-top: 1px solid var(--line); padding-block: 24px; color: var(--muted); font-size: 13px; }
.site-footer > span:first-child { font-family: Georgia, serif; font-size: 18px; color: var(--ink); }
.skip-link { position: absolute; top: -100px; left: 16px; z-index: 10; background: var(--ink); color: var(--page); padding: 12px 20px; }
.skip-link:focus { top: 16px; }
@media (prefers-color-scheme: dark) {
    :root { --page: #17221d; --ink: #e8ecdf; --muted: #b5c1b7; --line: #3a4a3f; --surface: #1e2d24; --accent: #b1c8a0; --panel: #234437; }
}
[data-bs-theme="dark"] { --page: #17221d; --ink: #e8ecdf; --muted: #b5c1b7; --line: #3a4a3f; --surface: #1e2d24; --accent: #b1c8a0; --panel: #234437; }
[data-bs-theme="light"] { --page: #f8f7f2; --ink: #243c33; --muted: #59665f; --line: #d8dfd7; --surface: #efefe7; --accent: #315d49; --panel: #254b3e; }
@media (max-width: 991px) {
    .hero { padding-block: 48px; }
    .editorial-panel { max-width: 440px; margin-inline: auto; }
    .approach-item { padding-left: 12px; }
    .contact-section { padding-block: 50px; }
}
@media (max-width: 575px) {
    .container { padding-inline: 22px; }
    .site-header { padding-block: 20px; }
    .brand { font-size: 20px; gap: 9px; }
    .brand small { font-size: 8px; letter-spacing: 1.4px; }
    .brand-logo { width: 46px; height: 46px; padding: 4px; }
    .nav-contact span { margin-left: 6px; }
    .hero-copy { font-size: 17px; }
    h1 { font-size: clamp(42px, 10.8vw, 60px); letter-spacing: -2px; }
    .btn-contact { width: 100%; padding-inline: 15px; }
    .editorial-panel { min-height: 420px; padding: 25px; }
    .approach { padding-block: 35px; }
    .approach-item { padding-inline: 12px; }
    .approach p:not(.eyebrow) { max-width: none; }
    .detail-value { font-size: 22px; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; }
}
