@view-transition {
    navigation: auto;
}

:root {
    --ink: #15222a;
    --muted: #64727a;
    --teal: #006b82;
    --yellow: #f4c400;
    --paper: #ffffff;
    --soft: #f3f6f6;
    --line: #dce4e5;
    --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Montserrat, Arial, sans-serif; line-height: 1.7; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.container { width: min(100% - 48px, var(--max)); margin-inline: auto; }
.skip-link { position: absolute; left: 1rem; top: -4rem; background: var(--yellow); color: #111; padding: .6rem 1rem; z-index: 10; }
.skip-link:focus { top: 1rem; }
.site-header { position: sticky; top: 0; z-index: 5; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); }
.header-inner { min-height: 94px; display: flex; align-items: center; gap: 2rem; }
.brand img { width: 174px; }
.site-navigation { margin-left: auto; }
.site-navigation ul { display: flex; gap: 1.75rem; margin: 0; padding: 0; list-style: none; }
.site-navigation a { position: relative; text-decoration: none; font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.site-navigation a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -.55rem; height: 2px; background: var(--yellow); transition: right .2s ease; }
.site-navigation a:hover::after, .site-navigation a.is-active::after { right: 0; }
.header-phone { color: var(--teal); font-weight: 700; text-decoration: none; white-space: nowrap; }
.menu-toggle { display: none; }
.hero { min-height: 650px; display: grid; align-items: center; background: linear-gradient(90deg, rgba(0,0,0,.52), rgba(0,0,0,.08)), url('/media/video-cover.jpg') center/cover; color: white; }
.hero-content { max-width: 650px; padding-block: 6rem; }
.eyebrow { color: var(--yellow); font-size: .75rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 1rem; }
h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(3rem, 7vw, 5.8rem); font-weight: 500; }
h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 500; }
h3 { font-size: 1.1rem; letter-spacing: .04em; }
.hero p { max-width: 560px; font-size: 1.15rem; }
.button { display: inline-block; margin-top: 1.25rem; padding: .9rem 1.5rem; background: var(--yellow); color: #111; text-decoration: none; font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.section { padding: 6rem 0; }
.section-soft { background: var(--soft); }
.intro-grid, .contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 5rem; align-items: start; }
.lead { font-size: 1.15rem; color: var(--muted); }
.rule { width: 72px; height: 3px; margin: 1.5rem 0; background: var(--yellow); }
.feature-strip { display: grid; grid-template-columns: repeat(3, 1fr); }
.feature { padding: 2.5rem; min-height: 220px; background: var(--teal); color: white; }
.feature:nth-child(2) { background: var(--yellow); color: #111; }
.feature:nth-child(3) { background: var(--ink); }
.feature p { color: inherit; opacity: .82; }
.media-section { display: grid; grid-template-columns: 1.1fr .9fr; align-items: stretch; }
.media-section img { width: 100%; height: 100%; object-fit: cover; }
.media-copy { padding: 5rem clamp(2rem, 6vw, 6rem); background: var(--ink); color: white; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card { padding: 2rem; border: 1px solid var(--line); background: white; }
.card p { color: var(--muted); }
.quote { padding: 2rem; border-left: 4px solid var(--yellow); background: var(--soft); }
.quote p { font-family: 'Playfair Display', Georgia, serif; font-size: 1.35rem; }
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.service-item { padding: 1.7rem; border-top: 2px solid var(--yellow); background: var(--soft); }
.service-item p { color: var(--muted); }
.page-hero { padding: 5.5rem 0; background: var(--ink); color: white; }
.page-hero h1 { max-width: 800px; }
form { display: grid; gap: 1rem; }
label { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
input, textarea { width: 100%; border: 1px solid var(--line); padding: .9rem; font: inherit; background: white; }
textarea { min-height: 160px; resize: vertical; }
.site-footer { background: #101b21; color: white; padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 3rem; align-items: start; }
.footer-logo { width: 72px; margin-bottom: 1rem; }
.site-footer p, .site-footer address { color: #c1cccf; font-style: normal; }
.site-footer a { color: white; }
.footer-logos { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.footer-logos img { background: white; padding: .25rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.18); color: #aebabe; font-size: .8rem; }
@media (max-width: 800px) {
    .container { width: min(100% - 32px, var(--max)); }
    .header-inner { min-height: 76px; flex-wrap: wrap; gap: 1rem; }
    .menu-toggle { display: block; margin-left: auto; border: 1px solid var(--ink); background: white; padding: .55rem .75rem; font: inherit; }
    .site-navigation { display: none; order: 4; width: 100%; padding-bottom: 1rem; }
    .site-navigation.is-open { display: block; }
    .site-navigation ul { flex-direction: column; gap: .75rem; }
    .header-phone { display: none; }
    .hero { min-height: 560px; }
    .intro-grid, .contact-grid, .media-section { grid-template-columns: 1fr; gap: 2rem; }
    .feature-strip, .cards, .service-list, .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 4rem 0; }
    .media-copy { padding: 3rem 2rem; }
    .footer-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; } }
