:root {
  --ink: #0e1a22;
  --ink-soft: #24343e;
  --fog: #d7e0e4;
  --mist: #e8eef0;
  --paper: #f4f7f8;
  --sea: #1f6f78;
  --sea-deep: #15555c;
  --sand: #c4b49a;
  --line: rgba(14, 26, 34, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
::selection { background: color-mix(in srgb, var(--sea) 28%, white); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
address { font-style: normal; }

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(1000px 620px at 8% -8%, rgba(31, 111, 120, 0.14), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(196, 180, 154, 0.16), transparent 50%),
    linear-gradient(180deg, #f7fafb 0%, #eef3f5 48%, #e5ecee 100%);
}

.font-display { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.02em; }
.wrap { width: min(1120px, calc(100% - 2.5rem)); margin-inline: auto; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: .3s ease;
}
.site-header.is-scrolled,
.site-header.is-open {
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  border-bottom-color: var(--line);
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
}
.brand-mark {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
}
.brand-sub {
  display: block; margin-top: .2rem;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: color-mix(in srgb, var(--ink-soft) 75%, transparent);
}
.nav-desktop { display: none; align-items: center; gap: 1.75rem; }
.nav-desktop a { font-size: .88rem; color: var(--ink-soft); }
.nav-desktop a:hover,
.nav-desktop a.is-active { color: var(--sea-deep); }

.btn-solid, .btn-light, .btn-outline, .btn-ghost {
  display: inline-block; padding: .75rem 1.2rem; font-size: .88rem;
  border: 1px solid transparent; transition: .2s ease;
}
.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { background: var(--ink-soft); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: var(--mist); }
.btn-outline { border-color: rgba(14,26,34,.2); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-ghost { border-color: rgba(244,247,248,.4); color: var(--paper); }
.btn-ghost:hover { border-color: var(--paper); background: rgba(244,247,248,.1); }

.menu-toggle {
  width: 2.5rem; height: 2.5rem; border: 1px solid rgba(14,26,34,.15);
  background: transparent; display: inline-flex; align-items: center; justify-content: center;
}
.menu-toggle span { display: block; width: 1rem; height: 1px; background: var(--ink); margin: 3px 0; }
.nav-mobile { display: none; border-top: 1px solid var(--line); background: var(--paper); padding: 1rem 1.25rem; }
.nav-mobile a { display: block; padding: .7rem 0; color: var(--ink-soft); }
.site-header.is-open .nav-mobile { display: block; }

.hero {
  position: relative; min-height: 100svh; overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: drift 16s ease-in-out infinite;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,16,22,.78), rgba(8,16,22,.42), rgba(8,16,22,.18)),
    linear-gradient(180deg, rgba(8,16,22,.28), transparent 40%, rgba(8,16,22,.62));
}
.hero-content {
  position: relative; z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto; padding: 7rem 0 4rem; color: var(--paper);
}
.hero-brand {
  margin: 0; font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 5.6rem); line-height: .95; letter-spacing: .02em;
}
.hero-brand span {
  display: block; margin-top: .45rem; font-size: .42em;
  letter-spacing: .16em; text-transform: uppercase; color: var(--fog);
  font-family: var(--font-body); font-weight: 400;
}
.hero h1 {
  margin: 1.4rem 0 0; max-width: 34rem; font-weight: 400;
  font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.6;
  color: rgba(244,247,248,.92);
}
.hero-lead {
  margin: 1rem 0 0; max-width: 30rem; color: rgba(215,224,228,.9);
  font-size: .95rem; line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

.reveal { animation: rise .9s cubic-bezier(.22,1,.36,1) both; }
.reveal-delay-1 { animation-delay: .12s; }
.reveal-delay-2 { animation-delay: .24s; }
.reveal-delay-3 { animation-delay: .36s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px);} to { opacity: 1; transform: none; } }
@keyframes drift {
  0%,100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.03) translateY(-10px); }
}

.section { padding: 5rem 0; }
.section-tight { padding: 4rem 0; }
.eyebrow {
  margin: 0; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sea);
}
.section h2, .page-hero h1 {
  font-family: var(--font-display); font-weight: 500; letter-spacing: -.02em;
}
.section h2 { font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.1; margin: .75rem 0 0; }
.lead {
  margin: 1.2rem 0 0; max-width: 40rem; color: var(--ink-soft);
  font-size: 1.05rem; line-height: 1.7;
}
.grid-3 {
  display: grid; gap: 2rem; margin-top: 2.5rem; padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.grid-3 h3, .grid-2 h3 {
  font-family: var(--font-display); font-size: 1.45rem; margin: 0; font-weight: 500;
}
.grid-3 p, .grid-2 p, .copy p {
  margin: .75rem 0 0; color: var(--ink-soft); line-height: 1.7; font-size: .95rem;
}
.band {
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--mist) 70%, transparent);
}
.grid-2 { display: grid; gap: 2.5rem; }
.full-bleed { position: relative; height: 46vh; min-height: 260px; overflow: hidden; }
.full-bleed img { width: 100%; height: 100%; object-fit: cover; }
.full-bleed::after { content: ""; position: absolute; inset: 0; background: rgba(14,26,34,.28); }
.section-head { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

.cta-panel {
  background: var(--ink); color: var(--paper); padding: 3rem 1.5rem;
}
.cta-panel h2 {
  margin: 0; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.3rem); font-weight: 500;
}
.cta-panel p { margin: 1rem 0 0; max-width: 34rem; color: var(--fog); line-height: 1.65; }
.cta-panel .btn-light { margin-top: 2rem; }

.faq-list { margin-top: 2rem; }
.faq-item { border-top: 1px solid var(--line); padding-top: 1.5rem; margin-top: 1.5rem; }
.faq-item h3 { margin: 0; font-size: 1.08rem; font-weight: 500; }
.faq-item p { margin: .5rem 0 0; color: var(--ink-soft); font-size: .95rem; line-height: 1.65; }

.page-hero { padding: 8rem 0 2.5rem; }
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.6rem); line-height: 1.08; margin: .75rem 0 0; max-width: 46rem;
}

.split-list { border-bottom: 1px solid var(--line); }
.split-list article {
  display: grid; gap: .75rem; padding: 2rem 0; border-top: 1px solid var(--line);
}
.split-list h2 {
  font-family: var(--font-display); font-size: clamp(1.45rem, 3vw, 1.85rem);
  margin: 0; font-weight: 500;
}

.article-card {
  display: grid; gap: 1.25rem; padding: 1.75rem 0; border-top: 1px solid var(--line);
}
.article-card:first-child { border-top: 0; }
.article-card-media { aspect-ratio: 16/10; overflow: hidden; background: var(--ink); }
.article-card-media img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease;
}
.article-card:hover .article-card-media img { transform: scale(1.03); }
.article-card-meta {
  margin: 0; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sea);
}
.article-card h3 {
  font-family: var(--font-display); font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.15; margin: .5rem 0 0; font-weight: 500;
}
.article-card:hover h3 { color: var(--sea-deep); }
.article-card p { margin: .75rem 0 0; color: var(--ink-soft); line-height: 1.65; font-size: .95rem; }
.article-card-side { font-size: .9rem; color: var(--ink-soft); }
.article-card-side .more { display: block; margin-top: .35rem; color: var(--sea); }

.article-banner {
  margin-top: 2.5rem; height: 16rem; overflow: hidden;
  border: 1px solid var(--line); background: var(--ink);
}
.article-banner img { width: 100%; height: 100%; object-fit: cover; }
.prose-article { max-width: 42rem; margin: 3rem auto 0; }
.prose-article h2 {
  font-family: var(--font-display); font-size: clamp(1.55rem, 2vw, 1.95rem);
  margin: 2.5rem 0 .9rem; font-weight: 500;
}
.prose-article p, .prose-article li { color: var(--ink-soft); line-height: 1.75; }
.prose-article p { margin: 0 0 1.15rem; }
.prose-article ul, .prose-article ol { margin: 0 0 1.25rem; padding-left: 1.2rem; }
.prose-article li { margin-bottom: .45rem; }
.prose-article strong { color: var(--ink); }
.note-box {
  max-width: 42rem; margin: 3.5rem auto 0; border: 1px solid var(--line);
  padding: 1.5rem; color: var(--ink-soft); font-size: .9rem; line-height: 1.6;
}

.form {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 80%, white);
  padding: 1.5rem;
}
.form label { display: block; margin-top: 1rem; font-size: .9rem; color: var(--ink-soft); }
.form input, .form select, .form textarea {
  width: 100%; margin-top: .35rem; border: 1px solid rgba(14,26,34,.15);
  background: transparent; padding: .65rem .75rem; color: var(--ink); font: inherit;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--sea);
}
.form button { margin-top: 1.25rem; }

.site-footer {
  margin-top: 6rem; border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--mist) 75%, white);
}
.footer-grid { display: grid; gap: 2.5rem; padding: 3.5rem 0; }
.footer-grid h2 {
  font-family: var(--font-display); font-size: 1.8rem; margin: 0; font-weight: 500; letter-spacing: .03em;
}
.footer-grid p, .footer-grid li, .footer-grid address {
  color: var(--ink-soft); font-size: .9rem; line-height: 1.65;
}
.footer-grid ul { list-style: none; padding: 0; margin: .75rem 0 0; }
.footer-grid li { margin: .4rem 0; }
.footer-label {
  margin: 0; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: color-mix(in srgb, var(--ink-soft) 70%, transparent);
}
.footer-bottom {
  border-top: 1px solid var(--line); padding: 1.25rem 0;
  display: flex; flex-direction: column; gap: .5rem;
  font-size: .75rem; color: color-mix(in srgb, var(--ink-soft) 70%, transparent);
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .article-card { grid-template-columns: 200px 1fr; align-items: center; gap: 2rem; }
  .article-card-body { display: flex; justify-content: space-between; gap: 1.5rem; align-items: flex-end; }
  .split-list article { grid-template-columns: .9fr 1.4fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .cta-panel { padding: 4rem 3rem; }
  .form { padding: 2rem; }
  .article-banner { height: 20rem; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
}
