:root {
  --ink: #102d38;
  --ink-2: #1d4856;
  --teal: #007f8d;
  --orange: #d5532a;
  --sand: #f5f6f4;
  --line: #dbe3e5;
  --muted: #55707a;
  --white: #fff;
  --shadow: 0 18px 46px rgba(12, 37, 48, .14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.6; }
a { color: var(--teal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--orange); }
img { max-width: 100%; height: auto; }
h1, h2, h3 { margin: 0 0 .65em; color: var(--ink); font-family: Georgia, "Times New Roman", serif; line-height: 1.12; }
h1 { max-width: 900px; font-size: clamp(2.55rem, 6vw, 5.3rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); letter-spacing: -.03em; }
h3 { font-size: 1.45rem; }
p { margin: 0 0 1.1rem; }
ul { padding-left: 1.25rem; }
.container { width: min(1180px, calc(100% - 2.5rem)); margin: 0 auto; }
.narrow { width: min(780px, 100%); }
.skip-link { position: absolute; left: -999px; top: 1rem; z-index: 10; padding: .8rem 1rem; color: var(--white); background: var(--ink); }
.skip-link:focus { left: 1rem; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(16,45,56,.12); backdrop-filter: blur(12px); }
.navigation { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; }
.brand { display: block; width: 146px; line-height: 0; }
.brand img { width: 146px; height: auto; }
.site-menu { display: flex; align-items: center; gap: 1.25rem; }
.site-menu > a, .nav-dropdown > button { color: var(--ink); font-weight: 700; font-size: .94rem; text-decoration: none; background: none; border: 0; padding: .6rem 0; cursor: pointer; }
.site-menu > a[aria-current="page"], .site-menu > a:hover, .nav-dropdown > button:hover { color: var(--orange); }
.nav-cta, .button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: .72rem 1.15rem; border: 1px solid transparent; border-radius: 3px; color: var(--white) !important; background: var(--orange); font-weight: 800; text-decoration: none; transition: background .2s ease, transform .2s ease; }
.nav-cta:hover, .button:hover { color: var(--white) !important; background: #b94220; transform: translateY(-1px); }
.button-primary { background: var(--orange); }
.button-light { color: var(--ink) !important; background: var(--white); }
.button-light:hover { color: var(--white) !important; background: var(--teal); }
.menu-toggle { display: none; padding: .6rem .8rem; border: 1px solid var(--line); background: var(--white); color: var(--ink); font-weight: 700; cursor: pointer; }
.nav-dropdown { position: relative; }
.nav-dropdown-panel { position: absolute; right: 0; top: calc(100% + .45rem); min-width: 220px; display: none; padding: .5rem; background: var(--white); border: 1px solid var(--line); border-radius: 4px; box-shadow: var(--shadow); }
.nav-dropdown.is-open .nav-dropdown-panel { display: grid; }
.nav-dropdown-panel a { padding: .65rem .75rem; color: var(--ink); text-decoration: none; font-weight: 650; }
.nav-dropdown-panel a:hover { color: var(--orange); background: var(--sand); }
.hero { position: relative; isolation: isolate; display: grid; align-items: center; min-height: min(710px, calc(100vh - 78px)); color: var(--white); overflow: hidden; background: var(--ink); }
.hero::before { content: ""; position: absolute; z-index: -2; inset: 0; background-image: var(--hero-image); background-size: cover; background-position: center; filter: saturate(.9); }
.hero::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(6,25,32,.91) 0%, rgba(6,25,32,.72) 44%, rgba(6,25,32,.16) 100%); }
.hero-content { padding: clamp(5rem, 11vw, 10rem) 0; }
.hero h1 { color: var(--white); }
.hero-copy { max-width: 720px; margin-bottom: 2rem; font-size: clamp(1.12rem, 2vw, 1.4rem); color: rgba(255,255,255,.93); }
.eyebrow { margin-bottom: .8rem; color: var(--orange); font-size: .75rem; font-weight: 850; letter-spacing: .12em; line-height: 1.25; text-transform: uppercase; }
.hero .eyebrow { color: #f3af7f; }
.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.section-muted { background: var(--sand); }
.section-heading { max-width: 720px; margin-bottom: 2.7rem; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.1rem; }
.two-column { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem, 6vw, 6rem); }
.intro { align-items: start; }
.card-grid { display: grid; gap: 1.4rem; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.solution-card { overflow: hidden; background: var(--white); box-shadow: 0 8px 25px rgba(16,45,56,.08); }
.solution-card img { width: 100%; height: 205px; object-fit: cover; }
.solution-card > div { padding: 1.4rem; }
.solution-card h3 { margin-bottom: .45rem; }
.solution-card a { display: inline-block; margin-top: .6rem; font-weight: 800; text-decoration: none; }
.feature-cards > article, .service-grid > article { padding: 1.7rem; background: var(--white); border-top: 3px solid var(--teal); box-shadow: 0 8px 25px rgba(16,45,56,.06); }
.feature-cards h3, .service-grid h3 { margin-bottom: .55rem; }
.content-image { width: 100%; min-height: 310px; object-fit: cover; box-shadow: var(--shadow); }
.inset-panel { padding: 2rem; background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.inset-panel h3 { color: var(--white); }
.inset-panel li { margin-bottom: .45rem; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem 2rem; }
.check-grid p { position: relative; padding-left: 1.8rem; margin: 0; }
.check-grid p::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--orange); font-weight: 900; }
.callout { color: var(--white); background: var(--teal); }
.callout h2 { color: var(--white); }
.callout-inner { display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; }
.callout-inner > div { max-width: 760px; }
.callout .eyebrow { color: #bdebf0; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(290px, .8fr); align-items: start; gap: clamp(2rem, 7vw, 7rem); }
.contact-form { display: grid; gap: 1rem; margin-top: 1.7rem; }
.contact-form label { display: grid; gap: .35rem; color: var(--ink); font-weight: 750; }
.contact-form input, .contact-form textarea { width: 100%; padding: .8rem; border: 1px solid #b7c9cf; border-radius: 3px; color: var(--ink); font: inherit; }
.contact-form input:focus, .contact-form textarea:focus { outline: 3px solid rgba(0,127,141,.2); border-color: var(--teal); }
.contact-form .button { justify-self: start; cursor: pointer; }
.contact-details { padding: 2rem; background: var(--sand); border-top: 4px solid var(--orange); }
.contact-details h2 { font-size: 2rem; }
.small { color: var(--muted); font-size: .86rem; }
.honeypot { position: absolute; left: -9999px; }
.form-message { margin: 1.25rem 0; padding: .85rem 1rem; border-left: 4px solid; }
.form-message-success { color: #124f32; background: #e6f5eb; border-color: #2a8050; }
.form-message-error { color: #75201b; background: #fceae8; border-color: #c9443d; }
.legal-copy p { font-size: 1.06rem; }
.site-footer { padding: 4rem 0 1.35rem; color: #d9e6e9; background: #0b222b; }
.site-footer h2 { color: var(--white); font-size: 1.1rem; font-family: inherit; letter-spacing: 0; }
.site-footer p { margin-bottom: .55rem; color: #bfd1d6; font-size: .93rem; }
.site-footer a { color: #f1f7f8; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 3rem; }
.footer-logo { width: 155px; margin-bottom: .9rem; filter: brightness(0) invert(1) grayscale(1); opacity: .92; }
.footer-legal { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.1rem; border-top: 1px solid rgba(255,255,255,.16); color: #a4bcc2; font-size: .84rem; }
.footer-legal a { margin-left: .9rem; }
@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .site-menu { position: absolute; top: 100%; left: 0; right: 0; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 1rem 1.25rem 1.4rem; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 10px 20px rgba(16,45,56,.08); }
  .site-menu.is-open { display: flex; }
  .site-menu > a, .nav-dropdown > button { width: 100%; padding: .75rem 0; text-align: left; }
  .nav-dropdown-panel { position: static; margin: 0; border: 0; border-left: 2px solid var(--line); box-shadow: none; }
  .nav-cta { justify-content: center !important; margin-top: .5rem; }
  .hero { min-height: 600px; }
  .hero::after { background: linear-gradient(90deg, rgba(6,25,32,.91), rgba(6,25,32,.55)); }
  .two-column, .contact-layout { grid-template-columns: 1fr; }
  .card-grid.three, .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .container { width: min(100% - 1.5rem, 1180px); }
  .brand { width: 124px; }
  .brand img { width: 124px; }
  .card-grid.three, .card-grid.four, .check-grid, .footer-grid { grid-template-columns: 1fr; }
  .callout-inner, .footer-legal { align-items: flex-start; flex-direction: column; }
  .footer-legal a { margin-left: 0; margin-right: .9rem; }
}
