:root {
  --navy: #13283d;
  --navy-deep: #0c1c2b;
  --ink: #1b2b38;
  --muted: #61717c;
  --paper: #fbfaf7;
  --warm: #f1ede5;
  --line: #d9dedf;
  --sea: #2f6772;
  --coral: #c8765e;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(19, 40, 61, .10);
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 1rem; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 3rem)); margin-inline: auto; }
.skip-link { position: absolute; top: -4rem; left: 1rem; z-index: 30; padding: .65rem 1rem; background: var(--coral); color: var(--white); text-decoration: none; }
.skip-link:focus { top: 1rem; }
.site-header { border-bottom: 1px solid rgba(19, 40, 61, .10); background: rgba(251, 250, 247, .94); position: relative; z-index: 10; }
.nav-wrap { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.wordmark { color: var(--navy); font-size: .9rem; font-weight: 800; letter-spacing: .19em; text-decoration: none; }
.main-nav { display: flex; align-items: center; gap: 2rem; font-size: .92rem; }
.main-nav a, .footer-nav a { text-decoration: none; }
.main-nav a:hover, .main-nav a:focus-visible, .footer-nav a:hover, .footer-nav a:focus-visible { color: var(--coral); }
.nav-toggle { display: none; border: 1px solid var(--line); background: transparent; color: var(--navy); padding: .45rem .7rem; font: inherit; }
.section-pad { padding: clamp(4.5rem, 8vw, 8rem) 0; }
.hero { background: var(--paper); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.eyebrow { margin: 0 0 1rem; color: var(--coral); font-size: .75rem; font-weight: 800; letter-spacing: .16em; line-height: 1.3; text-transform: uppercase; }
h1, h2, h3 { color: var(--navy); font-weight: 700; letter-spacing: -.03em; line-height: 1.1; }
h1 { max-width: 680px; margin: 0; font-size: clamp(2.7rem, 6vw, 5.6rem); }
h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { margin: .75rem 0 .7rem; font-size: 1.35rem; }
.hero-lead { max-width: 590px; margin: 1.8rem 0 0; color: var(--muted); font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 3rem; border: 1px solid transparent; border-radius: var(--radius); padding: .75rem 1.15rem; font: inherit; font-weight: 700; text-decoration: none; cursor: pointer; }
.button-primary { background: var(--navy); color: var(--white); }
.button-primary:hover, .button-primary:focus-visible { background: var(--sea); }
.button-small { min-height: 2.5rem; padding: .5rem 1rem; background: var(--coral); color: var(--white); }
.text-link { color: var(--navy); font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--coral); padding-bottom: .15rem; }
.text-link span { display: inline-block; margin-left: .3rem; transition: transform .2s ease; }
.text-link:hover span, .text-link:focus-visible span { transform: translateX(.2rem); }
.hero-visual { position: relative; margin: 0; }
.hero-visual img { width: 100%; box-shadow: var(--shadow); border-radius: var(--radius); }
.hero-visual figcaption { position: absolute; right: 1rem; bottom: -1rem; padding: .6rem .9rem; background: var(--white); color: var(--navy); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 8px 20px rgba(19, 40, 61, .1); }
.section-light { background: var(--warm); }
.section-heading { display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; align-items: end; margin-bottom: 3rem; }
.section-heading > p:last-child { max-width: 32rem; margin: 0; color: var(--muted); font-size: 1.05rem; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -1.5rem; }
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.service-card { grid-column: span 2; min-height: 250px; padding: 1.75rem; background: var(--paper); border: 1px solid rgba(19, 40, 61, .09); display: flex; flex-direction: column; }
.service-card-wide { grid-column: span 2; }
.service-card p { margin: 0; color: var(--muted); }
.card-number { color: var(--coral); font-size: .78rem; font-weight: 800; letter-spacing: .12em; }
.about-section { background: var(--navy); color: rgba(255, 255, 255, .82); }
.about-section h2, .about-section .eyebrow { color: var(--white); }
.about-section .eyebrow { color: #e29b86; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-copy { max-width: 600px; font-size: 1.08rem; }
.about-copy p { margin-top: 0; }
.about-copy p + p { color: rgba(255, 255, 255, .62); font-size: .95rem; }
.contact-section { background: #e3eeeb; }
.contact-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.contact-intro { max-width: 30rem; margin-bottom: 0; color: var(--muted); }
.address-card { display: flex; flex-direction: column; gap: .1rem; padding: 2rem; background: var(--white); border-left: 4px solid var(--coral); font-style: normal; box-shadow: 0 10px 30px rgba(19, 40, 61, .07); }
.address-card strong { color: var(--navy); margin: .5rem 0; }
.address-label { color: var(--coral); font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.site-footer { padding: 2.5rem 0; background: var(--navy-deep); color: rgba(255, 255, 255, .7); }
.footer-grid { display: flex; justify-content: space-between; gap: 2rem; align-items: center; }
.wordmark-footer { color: var(--white); }
.footer-note { margin: .6rem 0 0; font-size: .82rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: .85rem; }
.footer-nav a:hover, .footer-nav a:focus-visible { color: var(--white); }
.cookie-banner { position: fixed; z-index: 20; inset: auto 0 0; background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -10px 30px rgba(19, 40, 61, .08); }
.cookie-banner[hidden] { display: none !important; }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-top: .8rem; padding-bottom: .8rem; }
.cookie-inner p { margin: 0; color: var(--muted); font-size: .8rem; }
.legal-page .section-pad { min-height: calc(100vh - 210px); }
.legal-layout { max-width: 800px; }
.legal-layout h1 { font-size: clamp(2.6rem, 5vw, 4.6rem); }
.legal-layout .lead { margin: 1.5rem 0 3.5rem; color: var(--muted); font-size: 1.15rem; }
.legal-layout h2 { margin-top: 2.7rem; font-size: 1.5rem; }
.legal-layout p { max-width: 700px; color: var(--muted); }
.legal-back { margin-top: 3.5rem; }
.error-page { min-height: 100vh; display: flex; flex-direction: column; }
.error-main { flex: 1; display: grid; place-items: center; padding: 5rem 0; }
.error-inner { text-align: center; }
.error-inner h1 { margin-inline: auto; }
.error-inner p:not(.eyebrow) { color: var(--muted); margin: 1.25rem auto 2rem; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

@media (max-width: 760px) {
  .container { width: min(100% - 2rem, 600px); }
  .nav-wrap { min-height: 68px; }
  .nav-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; padding: 1rem; border-bottom: 1px solid var(--line); background: var(--paper); flex-direction: column; align-items: flex-start; gap: .8rem; }
  .main-nav.is-open { display: flex; }
  .hero-grid, .about-grid, .contact-panel { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding-top: 4rem; }
  .hero-visual { order: -1; }
  .hero-visual figcaption { font-size: .65rem; }
  .section-heading { display: block; }
  .section-heading .eyebrow { margin-bottom: 1rem; }
  .section-heading > p:last-child { margin-top: 1rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card-wide { grid-column: auto; min-height: auto; }
  .footer-grid, .cookie-inner { align-items: flex-start; flex-direction: column; }
  .cookie-inner { gap: .8rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
