/* ---------- Design tokens ---------- */
:root {
    --bg: #ffffff;
    --panel: #f6f6f7;
    --panel-2: #ececee;
    --line: #e3e3e6;
    --line-strong: #cfcfd4;
    --ink: #111214;
    --ink-soft: #35363a;
    --muted: #6b6d75;
    --muted-soft: #9a9ca4;
    --accent: #ff6a1a;
    --accent-dark: #e05500;
    --accent-soft: #fff1e8;
    --shadow-sm: 0 1px 2px rgba(17, 18, 20, 0.04), 0 1px 1px rgba(17, 18, 20, 0.03);
    --shadow-md: 0 10px 30px rgba(17, 18, 20, 0.08);
    --shadow-lg: 0 25px 60px rgba(17, 18, 20, 0.16);
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 10px;

    --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    --header-h: 76px;
    --drawer-w: 380px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.drawer-open { overflow: hidden; }

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

a { color: var(--ink); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--accent); }

/* ---------- Skip link ---------- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    padding: 12px 20px;
    background: var(--ink);
    color: #fff;
    font-weight: 600;
    z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--line);
}

.site-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 32px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
    min-height: var(--header-h);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--ink);
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: #fff;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-serif); font-weight: 600; font-size: 21px; letter-spacing: 0.5px; }
.brand-sub { font-size: 11px; text-transform: uppercase; letter-spacing: 1.6px; color: var(--muted); }

/* ---------- Primary navigation ---------- */
.primary-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    border-radius: var(--radius-sm);
    position: relative;
    letter-spacing: 0.1px;
    white-space: nowrap;
}

.nav-link:hover { color: var(--ink); background: var(--panel); }
.nav-link.is-active { color: var(--ink); }
.nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.nav-chevron {
    transition: transform 0.18s ease;
    opacity: 0.7;
}

.nav-item.has-submenu { position: relative; }

.nav-item.has-submenu:hover > .nav-link .nav-chevron,
.nav-item.has-submenu:focus-within > .nav-link .nav-chevron {
    transform: rotate(180deg);
}

/* ---------- Submenu (desktop dropdown) ---------- */
.submenu {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    min-width: 560px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
    z-index: 120;
}

.nav-item.has-submenu:hover .submenu,
.nav-item.has-submenu:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.submenu-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
}

.submenu-group { display: flex; flex-direction: column; gap: 2px; }

.submenu-heading {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
}

.submenu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 500;
}

.submenu-link:hover {
    background: var(--panel);
    color: var(--ink);
}

.submenu-link.is-active {
    background: var(--accent-soft);
    color: var(--accent-dark);
}

.submenu-thumb {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.submenu-title { line-height: 1.25; }

/* ---------- Header tools ---------- */
.header-tools {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 4px;
    background: var(--panel);
    border-radius: 999px;
}

.lang-link {
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--muted);
    border-radius: 999px;
    text-transform: uppercase;
}
.lang-link:hover { color: var(--ink); }
.lang-link.is-active { background: var(--ink); color: #fff; }
.lang-link.is-active:hover { color: #fff; }

/* ---------- Hamburger ---------- */
.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--line-strong);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    width: 44px;
    height: 44px;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.menu-toggle:hover {
    background: var(--panel);
    border-color: var(--ink);
}

.menu-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

body.drawer-open .menu-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.drawer-open .menu-toggle-bar:nth-child(2) { opacity: 0; }
body.drawer-open .menu-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Drawer ---------- */
.drawer-scrim {
    position: fixed;
    inset: 0;
    background: rgba(17, 18, 20, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 200;
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: var(--drawer-w);
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    z-index: 210;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

body.drawer-open .drawer-scrim { opacity: 1; pointer-events: auto; }
body.drawer-open .drawer { transform: translateX(0); }

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    border-bottom: 1px solid var(--line);
}

.drawer-brand {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
    letter-spacing: 0.3px;
}

.drawer-close {
    background: transparent;
    border: none;
    color: var(--ink);
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
}
.drawer-close:hover { background: var(--panel); }

.drawer-nav {
    padding: 20px 16px;
    flex: 1 1 auto;
}

.drawer-link {
    display: block;
    padding: 12px 14px;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    border-radius: var(--radius-sm);
    letter-spacing: 0.2px;
}

.drawer-link:hover { background: var(--panel); }

.drawer-link.is-active {
    color: var(--accent-dark);
    background: var(--accent-soft);
}

.drawer-sub {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 4px 0 12px 14px;
    padding-left: 14px;
    border-left: 2px solid var(--line);
}

.drawer-sub-link {
    padding: 8px 14px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink-soft);
    border-radius: var(--radius-sm);
}

.drawer-sub-link:hover { background: var(--panel); color: var(--ink); }

.drawer-sub-link.is-active {
    color: var(--accent-dark);
    background: var(--accent-soft);
}

.drawer-contact {
    padding: 20px 26px 32px;
    border-top: 1px solid var(--line);
    background: var(--panel);
}

.drawer-h {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 12px;
}

.drawer-contact p:not(.drawer-h) {
    margin: 0 0 6px;
    font-size: 15px;
}

.drawer-contact a { color: var(--ink); border-bottom: 1px solid var(--accent); }
.drawer-contact a:hover { color: var(--accent); }

.drawer-cta {
    display: flex;
    margin-top: 20px;
    justify-content: center;
    width: 100%;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
}

.btn-sm { padding: 9px 18px; font-size: 12px; letter-spacing: 0.6px; }

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 6px 18px rgba(255, 106, 26, 0.28);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; transform: translateY(-1px); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { color: var(--ink); background: var(--panel); border-color: var(--ink); }

/* ---------- Page shell ---------- */
.page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px 80px;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    margin: 32px 0 64px;
    min-height: 460px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    box-shadow: var(--shadow-md);
}

.hero-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(17, 18, 20, 0.15) 0%, rgba(17, 18, 20, 0.55) 60%, rgba(17, 18, 20, 0.82) 100%),
        linear-gradient(90deg, rgba(17, 18, 20, 0.35) 0%, rgba(17, 18, 20, 0) 60%);
}

.hero-inner {
    position: relative;
    padding: 60px 60px 56px;
    color: #fff;
    max-width: 780px;
    z-index: 1;
}

.eyebrow {
    display: inline-block;
    margin: 0 0 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    padding-bottom: 4px;
    border-bottom: 2px solid var(--accent);
}

.hero h1 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(38px, 5.4vw, 68px);
    line-height: 1.05;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
}

.hero-lead {
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 32px;
    max-width: 640px;
    font-weight: 400;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-actions .btn-ghost { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.hero-actions .btn-ghost:hover { background: #fff; border-color: #fff; color: var(--ink); }

/* ---------- Content ---------- */
.content {
    max-width: 780px;
    margin: 0 auto;
    font-size: 17px;
    color: var(--ink-soft);
}

.content > p,
.content > ul,
.content > ol,
.content > h3 { margin: 0 0 22px; }

.content h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 28px;
    line-height: 1.25;
    color: var(--ink);
    margin-top: 44px;
    margin-bottom: 16px;
    letter-spacing: -0.2px;
}

.content h3::before {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin-bottom: 14px;
}

.content p { line-height: 1.75; }

.content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: grid;
    gap: 10px;
}

.content ul li {
    position: relative;
    padding: 12px 16px 12px 42px;
    background: var(--panel);
    border-radius: var(--radius-sm);
    line-height: 1.55;
    color: var(--ink-soft);
    font-size: 16px;
    transition: background 0.15s ease, transform 0.15s ease;
}

.content ul li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 22px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.content ul li strong { color: var(--ink); font-weight: 600; }

/* Linked list items on /insurances */
.content ul li:has(.area-inline-link):hover {
    background: var(--accent-soft);
    transform: translateX(2px);
}

.area-inline-link {
    color: var(--ink);
    border-bottom: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.area-inline-link::after {
    content: "→";
    font-family: var(--font-sans);
    color: var(--accent);
    font-weight: 700;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.content ul li:has(.area-inline-link):hover .area-inline-link::after {
    opacity: 1;
    transform: translateX(0);
}

.area-inline-link strong {
    border-bottom: 1px solid var(--line-strong);
    padding-bottom: 1px;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.area-inline-link:hover strong {
    border-color: var(--accent);
    color: var(--accent-dark);
}

.content > p a,
.content > ul li a:not(.area-inline-link) {
    color: var(--ink);
    border-bottom: 1px solid var(--line-strong);
}
.content > p a:hover,
.content > ul li a:not(.area-inline-link):hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ---------- CTA card inside content ---------- */
.content-cta {
    margin: 56px 0 0;
    padding: 36px 40px;
    background: var(--panel);
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    text-align: left;
}

.content-cta h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 26px;
    margin: 0 0 12px;
    color: var(--ink);
    letter-spacing: -0.2px;
}

.content-cta h3::before { display: none; }
.content-cta p { margin: 0 0 14px; color: var(--ink-soft); line-height: 1.65; }

.content-cta-lines {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
    font-size: 15px;
}

.content-cta-lines span { color: var(--muted); }
.content-cta-lines a { color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--accent); }

/* ---------- Two-column split (insurance sub-pages) ---------- */
.layout-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 56px;
    align-items: start;
}

.layout-split .content { margin: 0; max-width: none; }

.page-aside {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aside-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px 22px;
}

.aside-h {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 16px;
}

.aside-facts { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 14px; }

.aside-facts li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-soft);
}

.aside-facts li a { color: var(--ink); font-weight: 500; }
.aside-facts li a:hover { color: var(--accent); }

.aside-ico {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--accent);
    margin-top: 1px;
}
.aside-ico svg { width: 20px; height: 20px; display: block; }

.aside-cta { width: 100%; }

.aside-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 2px; }

.aside-links li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    margin: 0 -12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
}

.aside-links li a:hover { background: #fff; color: var(--ink); }
.aside-links li a span { color: var(--accent); transition: transform 0.15s ease; }
.aside-links li a:hover span { transform: translateX(3px); }

/* ---------- Map section (contact) ---------- */
.map-section { margin: 72px 0 0; }

.map-head { margin-bottom: 22px; }

.map-head h2 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(28px, 3vw, 40px);
    margin: 0;
    letter-spacing: -0.3px;
    color: var(--ink);
}

.map-head h2::after {
    content: "";
    display: block;
    width: 44px;
    height: 2px;
    background: var(--accent);
    margin: 14px 0 0;
}

.map-address { margin: 12px 0 0; color: var(--muted); font-size: 15px; }

.map-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------- Feature band ---------- */
.features { margin: 88px 0 0; }

.features-head { text-align: center; margin-bottom: 36px; }

.features-head h2 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(28px, 3.2vw, 42px);
    margin: 0;
    letter-spacing: -0.3px;
    color: var(--ink);
}

.features-head h2::after {
    content: "";
    display: block;
    width: 44px;
    height: 2px;
    background: var(--accent);
    margin: 16px auto 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--line-strong);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--accent-soft);
    color: var(--accent-dark);
    margin-bottom: 18px;
}
.feature-icon svg { width: 26px; height: 26px; }

.feature-card h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 23px;
    margin: 0 0 10px;
    color: var(--ink);
    letter-spacing: -0.2px;
}

.feature-card p { margin: 0; color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }

@media (max-width: 980px) {
    .layout-split { grid-template-columns: 1fr; gap: 40px; }
    .page-aside { position: static; }
    .features-grid { grid-template-columns: 1fr; }
    .map-frame { aspect-ratio: 4 / 3; }
}

/* ---------- Insurance area cards ---------- */
.areas { margin: 96px 0 0; }

.areas-head { text-align: center; margin-bottom: 40px; }

.areas-head h2 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(32px, 3.5vw, 46px);
    margin: 0;
    letter-spacing: -0.4px;
    color: var(--ink);
}

.areas-head h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    background: var(--accent);
    margin: 18px auto 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.area-card {
    display: block;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    color: var(--ink);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.area-card:hover {
    transform: translateY(-3px);
    color: var(--ink);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
}

.area-card-media {
    height: 180px;
    background-size: cover;
    background-position: center;
    transition: filter 0.25s ease;
}

.area-card:hover .area-card-media { filter: saturate(1.06) contrast(1.02); }

.area-card-body { padding: 22px 24px 26px; }

.area-card-body h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 22px;
    margin: 0 0 10px;
    color: var(--ink);
    letter-spacing: -0.2px;
}

.area-card-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--accent);
}

/* ---------- Footer ---------- */
.site-footer {
    margin-top: 100px;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.75);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 32px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.4fr 1fr;
    gap: 40px;
}

.footer-brand .footer-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px;
    letter-spacing: 0.3px;
}

.footer-brand .footer-legal {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 12px;
}

.footer-brand .footer-tag {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    max-width: 300px;
}

.footer-col p { margin: 0 0 6px; font-size: 14px; line-height: 1.55; color: rgba(255, 255, 255, 0.75); }

.footer-h {
    font-size: 11px !important;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5) !important;
    margin: 0 0 12px !important;
}

.footer-h-secondary { margin-top: 20px !important; }

.footer-col a { color: #fff; border-bottom: 1px solid rgba(255, 106, 26, 0.6); }
.footer-col a:hover { color: var(--accent); border-color: var(--accent); }

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 32px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p { margin: 0; }

.footer-credit { color: rgba(255, 255, 255, 0.5); }
.footer-credit a {
    color: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(255, 106, 26, 0.6);
}
.footer-credit a:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }

    .primary-nav,
    .header-cta,
    .lang-switch { display: none; }

    .menu-toggle { display: inline-flex; }

    .site-header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 16px;
        padding: 14px 24px;
    }
}

@media (max-width: 720px) {
    .site-header-inner { padding: 12px 20px; }

    .page { padding: 0 20px 60px; }

    .hero {
        min-height: 380px;
        margin: 20px 0 44px;
    }

    .hero-inner { padding: 36px 30px 34px; }
}

@media (max-width: 560px) {
    .brand-sub { display: none; }
    .brand-mark { width: 40px; height: 40px; font-size: 20px; }
    .brand-name { font-size: 19px; }

    .hero-inner { padding: 28px 22px 26px; }

    .content h3 { font-size: 24px; margin-top: 36px; }

    .content-cta { padding: 26px 24px; }

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

    .footer-inner { grid-template-columns: 1fr; padding: 40px 20px 24px; }
    .footer-bottom { padding: 16px 20px 24px; }
}
