:root {
  --teal-950: #082f32;
  --teal-900: #0b3f43;
  --teal-800: #12565b;
  --gold: #c6a34b;
  --gold-light: #e1c97f;
  --paper: #f5f7f6;
  --white: #ffffff;
  --ink: #132526;
  --muted: #617172;
  --line: #dbe3e1;
  --shadow: 0 22px 60px rgba(8, 47, 50, .15);
}

* { 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: 16px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.skip-link { position: absolute; left: -9999px; top: 1rem; z-index: 999; }
.skip-link:focus { left: 1rem; background: white; padding: .75rem 1rem; border-radius: .5rem; }
.container { width: min(1160px, calc(100% - 2rem)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(8,47,50,.96); color: white; border-bottom: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(14px); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; font-weight: 850; letter-spacing: -.02em; }
.brand-logo-mark { width: 58px; height: 50px; object-fit: contain; padding: 3px; background: white; border: 1px solid rgba(198,163,75,.75); border-radius: .4rem; }
.brand small { display: block; color: #b9ccca; font-weight: 600; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 1.2rem; }
.nav-links a { color: #eaf1f0; text-decoration: none; font-size: .94rem; font-weight: 700; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold-light); }
.menu-button { display: none; border: 1px solid rgba(255,255,255,.35); color: white; background: transparent; border-radius: .6rem; padding: .55rem .72rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 48px; padding: .72rem 1.05rem; border-radius: .55rem; border: 1px solid transparent; text-decoration: none; font-weight: 800; cursor: pointer; }
.button-primary { background: var(--gold); color: #172c2e; box-shadow: 0 10px 28px rgba(198,163,75,.24); }
.button-primary:hover { background: var(--gold-light); }
.button-outline { border-color: currentColor; color: var(--teal-900); background: transparent; }
.button-ghost { color: white; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.04); }
.button[aria-disabled="true"] { opacity: .66; cursor: not-allowed; }
.eyebrow { display: inline-flex; align-items: center; gap: .55rem; margin: 0 0 1rem; color: var(--gold-light); font-size: .82rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 32px; height: 2px; background: currentColor; }
.hero-credentials { display: flex; flex-wrap: wrap; gap: .55rem; margin: 0 0 1rem; }
.hero-credentials span { padding: .35rem .62rem; color: white; background: rgba(11,63,67,.72); border: 1px solid rgba(225,201,127,.7); border-radius: 999px; font-size: .78rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.hero { position: relative; min-height: 680px; display: grid; align-items: center; overflow: hidden; color: white; background: var(--teal-950); }
.hero-slides, .hero-shade { 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 .8s ease, transform 6s ease; }
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-shade { z-index: 1; background: linear-gradient(90deg, rgba(5,32,34,.98) 0%, rgba(5,32,34,.9) 42%, rgba(5,32,34,.42) 72%, rgba(5,32,34,.28) 100%); }
.hero-copy { position: relative; z-index: 2; max-width: 690px; padding: 5rem 0 7.5rem; }
.hero-logo { width: clamp(160px, 18vw, 220px); margin: 0 0 1.5rem; background: white; border: 2px solid var(--gold); border-radius: .6rem; box-shadow: 0 18px 45px rgba(0,0,0,.24); }
.hero h1, .page-hero h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.75rem, 6.8vw, 5.8rem); line-height: .98; letter-spacing: -.045em; font-weight: 700; }
.hero h1 span, .page-hero h1 span { color: var(--gold-light); }
.hero .lead { max-width: 600px; color: #dce8e6; font-size: clamp(1.08rem, 2vw, 1.3rem); margin: 1.5rem 0 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-carousel-ui { position: absolute; z-index: 3; right: max(1rem, calc((100vw - 1160px) / 2)); bottom: 1.25rem; width: min(390px, calc(100% - 2rem)); padding: 1rem 1.1rem .85rem; background: rgba(6,31,33,.9); border: 1px solid rgba(255,255,255,.2); border-left: 4px solid var(--gold); backdrop-filter: blur(10px); }
.hero-service-label { margin: 0; line-height: 1.25; }
.hero-service-label span { display: block; color: var(--gold-light); font-size: .74rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.hero-service-label strong { display: block; margin-top: .25rem; color: white; font-size: 1.08rem; }
.hero-carousel-controls { display: flex; align-items: center; gap: .65rem; margin-top: .8rem; }
.hero-carousel-controls > button { width: 38px; height: 38px; padding: 0; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; background: transparent; color: white; font-size: 1.55rem; line-height: 1; cursor: pointer; }
.hero-carousel-controls > button:hover, .hero-carousel-controls > button:focus-visible { border-color: var(--gold-light); color: var(--gold-light); }
.hero-carousel-controls > .hero-carousel-toggle { width: auto; padding: 0 .7rem; border-radius: 1rem; font-size: .8rem; font-weight: 800; }
.hero-dots { display: flex; align-items: center; gap: .45rem; }
.hero-dots button { width: 11px; height: 11px; padding: 0; border: 1px solid white; border-radius: 50%; background: transparent; cursor: pointer; }
.hero-dots button.is-active { background: var(--gold-light); border-color: var(--gold-light); }
.hero-example-note { margin: .7rem 0 0; color: #c6d5d3; font-size: .78rem; }
.trust-strip { background: white; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 1.4rem 1.2rem; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--teal-900); font-size: 1rem; }
.trust-item span { color: var(--muted); font-size: .88rem; }
.section { padding: 5.5rem 0; }
.section-dark { background: var(--teal-950); color: white; }
.section-kicker { color: var(--teal-800); font-size: .8rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.section h2 { max-width: 760px; margin: .35rem 0 1rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4.2vw, 3.7rem); line-height: 1.08; letter-spacing: -.035em; }
.section-intro { max-width: 720px; color: var(--muted); font-size: 1.08rem; }
.section-dark .section-intro { color: #bdd0ce; }
.cards { margin-top: 2.3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card { background: white; border: 1px solid var(--line); padding: 1.6rem; box-shadow: 0 8px 28px rgba(8,47,50,.06); }
.card-number { color: var(--gold); font-family: Georgia, serif; font-size: 2.1rem; }
.card h3 { margin: .7rem 0 .45rem; color: var(--teal-900); font-size: 1.25rem; }
.card p { color: var(--muted); margin: 0; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.statement { padding: 2rem; border-left: 4px solid var(--gold); background: white; box-shadow: var(--shadow); }
.statement strong { display: block; color: var(--teal-900); font-family: Georgia, serif; font-size: 1.5rem; }
.check-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .75rem; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; }
.check-list li::before { content: "✓"; flex: 0 0 1.45rem; height: 1.45rem; border-radius: 50%; display: grid; place-items: center; background: var(--teal-900); color: var(--gold-light); font-size: .8rem; font-weight: 900; }
.cta-band { padding: 3.5rem 0; background: var(--gold); color: #122c2e; }
.cta-row { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.cta-row h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: 1.05; }
.cta-row p { margin: .5rem 0 0; }
.cta-band .button { background: var(--teal-950); color: white; white-space: nowrap; }
.page-hero { padding: 6.5rem 0 4rem; background: radial-gradient(circle at 85% 20%, rgba(198,163,75,.17), transparent 28%), var(--teal-950); color: white; }
.page-hero p { max-width: 700px; color: #c5d5d3; font-size: 1.15rem; }
.service-list { margin-top: 2.5rem; display: grid; gap: 1rem; }
.service-row { display: grid; grid-template-columns: 90px 1fr auto; gap: 1.5rem; align-items: center; padding: 1.5rem; background: white; border: 1px solid var(--line); }
.service-row .index { color: var(--gold); font-family: Georgia, serif; font-size: 2rem; }
.service-row h2 { margin: 0 0 .25rem; font-family: inherit; font-size: 1.35rem; letter-spacing: -.015em; }
.service-row p { margin: 0; color: var(--muted); }
.project-gallery { display: grid; gap: 1.5rem; }
.project-story { display: grid; grid-template-columns: minmax(240px,.7fr) minmax(0,1.3fr); gap: 1.5rem; align-items: center; padding: 1.5rem; background: white; border: 1px solid var(--line); box-shadow: 0 8px 28px rgba(8,47,50,.06); }
.project-story-featured { border-top: 5px solid var(--gold); }
.project-story-copy h2 { margin: .35rem 0 .7rem; color: var(--teal-900); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.65rem, 3vw, 2.55rem); line-height: 1.08; }
.project-story-copy p { color: var(--muted); }
.project-story-copy .project-status { color: var(--teal-800); font-weight: 750; }
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.photo-grid-three, .photo-grid-four { grid-template-columns: repeat(auto-fit, minmax(145px, 1fr)); }
.before-after figure { position: relative; margin: 0; min-width: 0; overflow: hidden; background: var(--teal-950); }
.before-after img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.project-story-featured .before-after img { aspect-ratio: 1 / 1; }
.before-after figcaption { position: absolute; left: .65rem; bottom: .65rem; padding: .35rem .55rem; color: white; background: rgba(6,31,33,.9); border-left: 3px solid var(--gold); font-size: .78rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.bio-card { padding: 2rem; background: white; border-top: 5px solid var(--gold); box-shadow: var(--shadow); }
.bio-card h2 { margin-top: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: grid; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
label { color: var(--teal-950); font-weight: 800; }
input, textarea, select { width: 100%; border: 1px solid #b8c7c5; border-radius: .45rem; background: white; color: var(--ink); padding: .78rem .85rem; min-height: 48px; }
textarea { min-height: 145px; resize: vertical; }
input:focus, textarea:focus, select:focus { outline: 3px solid rgba(198,163,75,.35); border-color: var(--teal-800); }
.form-note { color: var(--muted); font-size: .9rem; }
.notice { display: none; margin-top: 1rem; padding: 1rem; border: 1px solid var(--gold); background: #fff9e8; color: #493b17; }
.notice.is-visible { display: block; }
.portal-panel { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; padding: 2rem; background: var(--teal-900); color: white; border-left: 5px solid var(--gold); }
.portal-panel p { color: #c9d8d6; margin-bottom: 0; }
.access-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.5rem; align-items: start; }
.access-card { padding: 2rem; background: white; border-top: 5px solid var(--gold); box-shadow: var(--shadow); }
.access-card h2 { margin: 0 0 .8rem; color: var(--teal-900); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.65rem, 3vw, 2.4rem); line-height: 1.08; }
.access-card p { color: var(--muted); }
.access-steps { margin: 1.5rem 0 0; padding: 0; list-style: none; counter-reset: portal-step; display: grid; gap: 1rem; }
.access-steps li { counter-increment: portal-step; display: grid; grid-template-columns: 2.25rem 1fr; gap: .85rem; align-items: start; }
.access-steps li::before { content: counter(portal-step); width: 2.25rem; height: 2.25rem; display: grid; place-items: center; border-radius: 50%; background: var(--teal-900); color: var(--gold-light); font-weight: 900; }
.access-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.security-note { margin-top: 1.5rem; padding: 1rem; border-left: 4px solid var(--gold); background: #fff9e8; color: #493b17; }
.site-footer { background: #061f21; color: #dbe7e5; padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .65fr .85fr .95fr; gap: 2rem; }
.site-footer h2, .site-footer h3 { color: white; }
.site-footer a { color: #c8d7d5; text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); }
.footer-links { display: grid; gap: .45rem; }
.contact-links { display: grid; gap: .45rem; }
.contact-links a { font-weight: 750; }
.legal { margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.12); color: #91aaa7; font-size: .85rem; }

@media (max-width: 850px) {
  .menu-button { display: inline-flex; }
  .nav-links { display: none; position: absolute; inset: 78px 0 auto; padding: 1rem; background: var(--teal-950); flex-direction: column; align-items: stretch; box-shadow: var(--shadow); }
  .nav-links.is-open { display: flex; }
  .nav-links .button { width: 100%; }
  .hero { min-height: 620px; background-position: 60% center; }
  .hero-copy { padding-bottom: 11rem; }
  .hero h1, .page-hero h1 { font-size: clamp(2.65rem, 12vw, 4.6rem); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cards, .split, .project-story, .footer-grid, .access-layout { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 54px 1fr; }
  .service-row .button { grid-column: 2; justify-self: start; }
  .cta-row, .portal-panel { align-items: flex-start; flex-direction: column; display: flex; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 1.25rem, 1160px); }
  .brand span:last-child { font-size: .9rem; }
  .brand-logo-mark { width: 50px; height: 44px; }
  .hero { min-height: 660px; background-position: 67% center; }
  .hero-copy { padding: 3.5rem 0 12rem; }
  .hero-logo { width: 145px; margin-bottom: 1rem; }
  .hero-carousel-ui { left: .625rem; right: .625rem; bottom: .625rem; width: auto; }
  .section { padding: 4rem 0; }
  .cards, .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .trust-item { padding: 1rem .8rem; }
  .service-row { grid-template-columns: 1fr; }
  .service-row .button { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide { transition: none; transform: none; }
}
