:root {
  --ink: #10252d;
  --ink-2: #173943;
  --paper: #f5f3ed;
  --white: #ffffff;
  --mist: #e7ecea;
  --line: #ccd6d3;
  --accent: #b84d26;
  --accent-dark: #9f3f1d;
  --gold: #d4a956;
  --text: #24383e;
  --muted: #607379;
  --shadow: 0 22px 60px rgba(16, 37, 45, .14);
  --radius: 1.25rem;
  --shell: min(1180px, calc(100% - 2rem));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--paper); font-family: Aptos, "Segoe UI", Arial, sans-serif; font-size: 1rem; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.skip-link { position: fixed; z-index: 1000; left: 1rem; top: -5rem; padding: .75rem 1rem; color: var(--white); background: var(--ink); border-radius: .5rem; }
.skip-link:focus { top: 1rem; }
.shell { width: var(--shell); margin-inline: auto; }
.topbar { color: #dce6e3; background: var(--ink); font-size: .83rem; letter-spacing: .035em; }
.topbar-inner { min-height: 2.45rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.topbar ul { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; margin: 0; padding: 0; list-style: none; }
.topbar a { text-decoration: none; color: var(--white); }
.site-header { position: sticky; z-index: 50; top: 0; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(16,37,45,.12); backdrop-filter: blur(16px); }
.header-row { min-height: 6.15rem; display: grid; grid-template-columns: 320px 1fr auto; align-items: center; gap: 2rem; }
.brand { display: inline-flex; align-items: center; width: fit-content; }
.brand img { display: block; width: 310px; height: auto; }
.desktop-nav { display: flex; justify-content: center; align-items: center; gap: clamp(.8rem, 2vw, 1.8rem); }
.desktop-nav a { color: var(--ink); font-size: .93rem; font-weight: 700; text-decoration: none; }
.desktop-nav a[aria-current="page"], .desktop-nav a:hover { color: var(--accent); }
.header-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 2.9rem; padding: 0 1rem; color: var(--white); background: var(--accent); border-radius: 999px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { cursor: pointer; font-weight: 800; list-style: none; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu nav { position: absolute; right: 0; top: 2.4rem; width: min(21rem, calc(100vw - 2rem)); padding: .8rem; background: var(--white); border: 1px solid var(--line); border-radius: 1rem; box-shadow: var(--shadow); }
.mobile-menu nav a { display: block; padding: .75rem .8rem; border-radius: .6rem; font-weight: 700; text-decoration: none; }
.mobile-menu nav a:hover { background: var(--mist); }
.eyebrow { margin: 0 0 .8rem; color: var(--accent); font-size: .79rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.hero .eyebrow, .page-hero .eyebrow, .section-dark .eyebrow, .contact-panel .eyebrow { color: var(--gold); }
.hero { overflow: hidden; color: var(--white); background: var(--ink); }
.hero-grid { min-height: 680px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; }
.hero-copy { padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 6vw, 6rem) clamp(4rem, 7vw, 6rem) max(1rem, calc((100vw - 1180px)/2)); display: flex; flex-direction: column; justify-content: center; }
.hero h1 { max-width: 780px; margin: 0; font-size: clamp(2.8rem, 6.2vw, 5.9rem); line-height: .97; letter-spacing: -.055em; }
.hero .lede { max-width: 670px; margin: 1.6rem 0 0; color: #d7e1df; font-size: clamp(1.08rem, 1.6vw, 1.3rem); }
.hero-media { position: relative; min-height: 520px; overflow: hidden; background: #0b2028; }
.hero-media::after { content: ""; position: absolute; z-index: 1; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(16,37,45,.38), transparent 35%), linear-gradient(0deg, rgba(16,37,45,.38), transparent 38%); }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.025); transition: opacity .9s ease, transform 6s ease; }
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button { min-height: 3.2rem; display: inline-flex; align-items: center; justify-content: center; padding: .78rem 1.25rem; border: 2px solid transparent; border-radius: 999px; font-weight: 850; text-decoration: none; cursor: pointer; }
.button-accent { color: var(--white); background: var(--accent); }
.button-accent:hover { background: var(--accent-dark); }
.button-outline { color: var(--white); border-color: rgba(255,255,255,.6); }
.button-outline:hover { color: var(--ink); background: var(--white); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:disabled { cursor: not-allowed; opacity: .48; }
.trust-strip { position: relative; z-index: 3; margin-top: -2.2rem; }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.trust-grid div { min-height: 7rem; padding: 1.25rem 1.4rem; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.trust-grid div:last-child { border: 0; }
.trust-grid strong { color: var(--ink); font-size: 1.02rem; }
.trust-grid span { color: var(--muted); font-size: .88rem; }
.section { padding: clamp(2.5rem, 3.2vw, 3.25rem) 0; }
.section-white { background: var(--white); }
.section-dark { color: var(--white); background: var(--ink); }
.section-heading { max-width: 760px; margin-bottom: 2.1rem; }
h2 { margin: 0; color: var(--ink); font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1.06; letter-spacing: -.04em; }
.section-dark h2 { color: var(--white); }
.section-heading p:last-child { color: var(--muted); font-size: 1.08rem; }
.service-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 1rem; }
.service-card { grid-column: span 2; min-height: 24rem; position: relative; overflow: hidden; display: flex; align-items: flex-end; border-radius: var(--radius); color: var(--white); text-decoration: none; box-shadow: 0 12px 30px rgba(16,37,45,.1); }
.service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 2; min-height: 24rem; }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,22,29,.94), rgba(5,22,29,.05) 72%); }
.service-card div { position: relative; z-index: 2; padding: 1.6rem; }
.service-card h3 { margin: 0 0 .45rem; font-size: 1.55rem; line-height: 1.1; }
.service-card p { margin: 0; color: #dce6e3; }
.service-card:hover img { transform: scale(1.035); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.split-media { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.split-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.check-list { margin: 1.5rem 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: .65rem 0 .65rem 1.8rem; border-bottom: 1px solid var(--line); }
.check-list li::before { content: ""; position: absolute; left: 0; top: 1.13rem; width: .65rem; height: .65rem; background: var(--accent); border-radius: 50%; }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.process-card { padding: 1.7rem; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.055); }
.process-card span { color: var(--gold); font-size: .78rem; font-weight: 900; letter-spacing: .16em; }
.process-card h3 { margin: .7rem 0 .5rem; font-size: 1.3rem; }
.process-card p { margin: 0; color: #cbd8d5; }
.quote-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.quote { margin: 0; padding: 1.7rem; background: var(--white); border-radius: var(--radius); border-top: 4px solid var(--accent); }
.quote p { margin: 0 0 1.2rem; font-size: 1.03rem; }
.quote cite { color: var(--muted); font-style: normal; font-weight: 800; }
.cta-band { padding: 3.2rem 0; color: var(--white); background: var(--accent); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band h2 { max-width: 780px; color: var(--white); font-size: clamp(2rem,4vw,3.2rem); }
.cta-band .button { color: var(--ink); background: var(--white); flex: 0 0 auto; }
.page-hero { color: var(--white); background: var(--ink); }
.page-hero-grid { min-height: 530px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem,6vw,5rem); padding-block: 4rem; }
.page-hero h1 { margin: 0; font-size: clamp(2.7rem,5vw,5rem); line-height: 1; letter-spacing: -.05em; }
.page-hero .lede { color: #d4dfdc; font-size: 1.15rem; }
.page-hero figure { margin: 0; overflow: hidden; border-radius: var(--radius); }
.page-hero figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; color: #bdccc8; font-size: .85rem; }
.breadcrumb a { color: var(--white); }
.article-layout { display: grid; grid-template-columns: 255px minmax(0,760px); justify-content: space-between; gap: 4rem; }
.article-nav { position: sticky; top: 7.5rem; align-self: start; padding: 1.2rem; background: var(--white); border-radius: 1rem; }
.article-nav strong { display: block; color: var(--ink); margin-bottom: .6rem; }
.article-nav a { display: block; padding: .45rem 0; color: var(--muted); text-decoration: none; }
.article-nav a:hover { color: var(--accent); }
.article section + section { margin-top: 3.8rem; padding-top: 3.8rem; border-top: 1px solid var(--line); }
.article h2 { font-size: clamp(1.8rem,3.3vw,2.7rem); }
.article h3 { color: var(--ink); font-size: 1.28rem; }
.article p, .article li { font-size: 1.06rem; }
.article .section-index { color: var(--accent); font-weight: 900; letter-spacing: .16em; }
.faq-list { max-width: 820px; }
.faq-list details { border-bottom: 1px solid rgba(255,255,255,.2); }
.faq-list summary { cursor: pointer; padding: 1.25rem 0; display: flex; justify-content: space-between; gap: 1rem; color: var(--white); font-weight: 800; font-size: 1.07rem; }
.faq-list summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; line-height: 1; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 0 0 1.4rem; color: #cfdbd8; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2rem,6vw,5rem); align-items: start; }
.contact-panel { padding: 2rem; color: var(--white); background: var(--ink); border-radius: var(--radius); }
.contact-panel h2 { color: var(--white); font-size: 2.2rem; }
.contact-links { margin-top: 2rem; display: grid; gap: .75rem; }
.contact-links a { padding: 1rem; background: rgba(255,255,255,.08); border-radius: .75rem; text-decoration: none; font-weight: 800; }
.contact-form { padding: clamp(1.4rem,4vw,2.5rem); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { display: block; margin-bottom: 1rem; color: var(--ink); font-weight: 750; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: .4rem; padding: .8rem .9rem; color: var(--text); background: #fbfcfb; border: 1px solid #9fb0ad; border-radius: .65rem; }
.contact-form textarea { min-height: 10rem; resize: vertical; }
.honeypot { position: absolute!important; left: -10000px!important; width: 1px!important; height: 1px!important; overflow: hidden!important; }
.turnstile-slot { min-height: 72px; margin: .5rem 0 1rem; }
.turnstile-placeholder { display: flex; width: min(100%, 19rem); min-height: 68px; padding: .7rem .85rem; align-items: center; gap: .8rem; color: var(--ink); background: #f7f7f5; border: 1px solid #c9d0d2; border-radius: .45rem; }
.turnstile-placeholder > span { display: grid; width: 2rem; height: 2rem; flex: 0 0 auto; place-items: center; color: var(--white); background: var(--ink); border-radius: 50%; font-weight: 900; }
.turnstile-placeholder p { display: grid; gap: .1rem; margin: 0; line-height: 1.25; }
.turnstile-placeholder strong { font-size: .92rem; }
.turnstile-placeholder small { color: var(--muted); font-size: .78rem; }
.turnstile-slot.is-ready .turnstile-placeholder { display: none; }
.form-note { min-height: 1.8rem; margin: .8rem 0 0; color: var(--muted); }
.form-note[data-state="success"] { color: #187445; font-weight: 800; }
.form-note[data-state="error"] { color: #a1281d; font-weight: 800; }
.site-footer { padding: 4.5rem 0 1.5rem; color: #cbd8d5; background: #091b22; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer-brand-section { align-self: start; padding: 1.65rem 1.7rem 1.75rem; color: var(--ink); background: var(--white); border-radius: .8rem; }
.footer-brand-section p { margin: 1.2rem 0 0; color: var(--ink); }
.footer-logo { display: block; width: 285px; height: auto; padding: 0; background: transparent; border-radius: 0; }
.site-footer h2 { color: var(--white); font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer ul { margin: .8rem 0 0; padding: 0; list-style: none; }
.site-footer li { margin: .45rem 0; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom { margin-top: 3rem; padding-top: 1.25rem; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,.15); font-size: .85rem; }
.not-found { min-height: 62vh; display: grid; place-items: center; text-align: center; }
.not-found h1 { color: var(--white); }

.nav-dropdown { position: relative; }
.nav-dropdown summary { color: var(--ink); font-size: .93rem; font-weight: 700; cursor: pointer; list-style: none; }
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after { content: " +"; color: var(--accent); }
.nav-dropdown[open] summary::after { content: " −"; }
.nav-dropdown-menu { position: absolute; z-index: 80; top: calc(100% + 1rem); left: 50%; width: 18rem; padding: .65rem; transform: translateX(-50%); background: var(--white); border: 1px solid var(--line); border-radius: .8rem; box-shadow: var(--shadow); }
.nav-dropdown-menu a { display: block; padding: .7rem .8rem; border-radius: .5rem; }
.nav-dropdown-menu a:hover { color: var(--white); background: var(--ink); }
.mobile-menu nav strong { display: block; padding: .7rem .8rem .3rem; color: var(--muted); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem,6vw,5rem); align-items: start; }
.project-gallery { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: 2.5rem; }
.project-gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--line); }
.project-gallery img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.video-section { background: var(--paper); }
.video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.video-card { overflow: hidden; background: var(--white); border-radius: var(--radius); box-shadow: 0 12px 30px rgba(16,37,45,.1); }
.video-card h3 { margin: 0; padding: 1.1rem 1.2rem 1.3rem; color: var(--ink); font-size: 1.08rem; }
.video-poster { position: relative; display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--ink); }
.video-poster img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.video-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,27,34,.42), transparent 60%); }
.video-poster span { position: absolute; z-index: 1; left: 50%; top: 50%; display: grid; width: 4rem; height: 4rem; place-items: center; transform: translate(-50%,-50%); color: var(--white); background: var(--accent); border: 3px solid var(--white); border-radius: 50%; font-size: 1.35rem; box-shadow: 0 8px 24px rgba(0,0,0,.28); }
.video-poster:hover img { transform: scale(1.035); }
.video-poster:focus-visible { outline: 4px solid var(--accent); outline-offset: 4px; }
.video-card h3 a { color: var(--ink); text-decoration: none; }
.video-card h3 a:hover { color: var(--accent); text-decoration: underline; }
.channel-link { margin: 1.5rem 0 0; font-weight: 800; }
.channel-link a { color: var(--accent); }
.article section + section { margin-top: 2.75rem; padding-top: 2.75rem; }

@media (max-width: 1180px) {
  .header-row { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu { display: block; }
}
@media (max-width: 980px) {
  .header-row { grid-template-columns: 1fr auto auto; }
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-inline: max(1rem, calc((100vw - 720px)/2)); }
  .hero-media { min-height: 420px; }
  .trust-grid { grid-template-columns: repeat(3,1fr); }
  .service-card { grid-column: span 3; }

  .article-layout { grid-template-columns: 1fr; gap: 2rem; }
  .article-nav { position: static; }
  .contact-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  :root { --shell: min(100% - 1.1rem, 1180px); }
  .topbar-inner { min-height: 2.8rem; }
  .topbar ul li:nth-child(n+2) { display: none; }
  .header-row { min-height: 4.7rem; grid-template-columns: 1fr auto; gap: .7rem; }
  .brand img { width: 220px; }
  .header-cta { display: none; }
  .hero-grid { min-height: auto; }
  .hero-copy { padding: 4rem .55rem; }
  .hero h1 { font-size: clamp(2.7rem,15vw,4.5rem); }
  .hero-media { min-height: 330px; }
  .trust-strip { margin-top: 0; }
  .trust-grid { grid-template-columns: 1fr; border-radius: 0 0 1rem 1rem; }
  .trust-grid div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid div { min-height: 5.7rem; padding: 1rem; }
  .service-grid, .process-grid, .quote-grid, .split, .contact-grid, .footer-grid, .form-row, .video-grid, .project-gallery { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: auto; min-height: 20rem; }
  .page-hero-grid { min-height: auto; padding-block: 3rem; }
  .page-hero h1 { font-size: clamp(2.5rem,13vw,4rem); }
  .cta-inner, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .cta-band .button { width: 100%; }
  .section { padding: 2.75rem 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms!important; animation-duration: .01ms!important; animation-iteration-count: 1!important; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; transform: none; }
}

.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.area-card { display: flex; min-height: 12.5rem; padding: 1.5rem; flex-direction: column; color: var(--ink); text-decoration: none; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 28px rgba(16,37,45,.07); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.area-card h3 { margin: 0 0 .65rem; font-size: 1.35rem; }
.area-card p { margin: 0 0 1rem; color: var(--muted); }
.area-card span { margin-top: auto; color: var(--accent); font-weight: 800; }
.area-card:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: 0 16px 34px rgba(16,37,45,.12); }
.area-card:focus-visible { outline: 4px solid var(--accent); outline-offset: 3px; }
.area-more { margin: 1.35rem 0 0; font-weight: 800; }
.area-more a { color: var(--accent); }
.text-link-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .7rem; }
.text-link-grid a { display: block; padding: .85rem 1rem; color: var(--ink); font-weight: 750; text-decoration: none; background: var(--paper); border: 1px solid var(--line); border-radius: .65rem; }
.text-link-grid a:hover { color: var(--accent); border-color: var(--accent); }
@media (max-width: 980px) { .area-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 680px) { .area-grid, .text-link-grid { grid-template-columns: 1fr; } .area-card { min-height: 10rem; } }