:root {
  --bg: #fffaf4;
  --bg-soft: #f2f8f5;
  --ink: #17252b;
  --muted: #607179;
  --panel: #ffffff;
  --line: #dce8e2;
  --teal: #138f86;
  --coral: #e9634f;
  --gold: #d99521;
  --mint: #dff6ec;
  --shadow: 0 18px 42px rgba(23, 37, 43, 0.09);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffaf4 0%, #f7fbf8 42%, #fffaf4 100%);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

p,
li,
dd {
  color: var(--muted);
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

ul {
  margin: 0;
  padding-left: 1.15rem;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 250, 244, 0.9);
  border-bottom: 1px solid rgba(220, 232, 226, 0.9);
  backdrop-filter: blur(16px);
}

.header-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 68% 30%, #ffd37a 0 13%, transparent 14%),
    radial-gradient(circle at 36% 62%, #42d6c6 0 18%, transparent 19%),
    conic-gradient(from 160deg, var(--teal), var(--gold), var(--coral), var(--teal));
  box-shadow: 0 12px 28px rgba(19, 143, 134, 0.2);
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0;
}

.brand-copy span:last-child {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
}

.site-nav .nav-link-accent {
  padding: 0.68rem 0.95rem;
  border: 1px solid rgba(19, 143, 134, 0.28);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(223, 246, 236, 0.9);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
}

.hero-section,
.page-hero {
  padding: 4.6rem 0 3.6rem;
}

.hero-grid,
.compact-hero-grid,
.two-column,
.contact-layout,
.contact-card,
.footer-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
}

.compact-hero-grid,
.two-column,
.contact-layout,
.contact-card {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.eyebrow,
.footer-heading {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
strong {
  color: var(--ink);
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 5vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 1.03;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-text,
.page-hero p,
.section-head p {
  max-width: 62ch;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    background 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--ink);
  color: #ffffff;
}

.button-secondary {
  background: #ffffff;
  border-color: var(--line);
  color: var(--ink);
}

.url-list {
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0 0;
}

.url-list div {
  display: grid;
  gap: 0.15rem;
}

.url-list dt {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.url-list dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.url-list a,
.text-link,
.legal-copy a,
.panel a,
.contact-lines a {
  color: var(--teal);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(19, 143, 134, 0.32);
  text-underline-offset: 0.18em;
}

.hero-visual {
  overflow: hidden;
  border: 1px solid rgba(19, 143, 134, 0.16);
  border-radius: 8px;
  background: #0f2229;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.section-band {
  padding: 2.4rem 0 4.2rem;
}

.split-band {
  background: linear-gradient(90deg, rgba(223, 246, 236, 0.88), rgba(255, 244, 227, 0.78));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: 1.4rem;
}

.section-head h2 {
  max-width: 13ch;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.panel,
.hero-badge-card,
.contact-card,
.legal-copy {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel,
.hero-badge-card {
  padding: 1.35rem;
}

.mini-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 10px;
  background: var(--mint);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.text-stack {
  display: grid;
  gap: 0.9rem;
}

.text-stack p {
  margin: 0;
}

.contact-band {
  padding-bottom: 3rem;
}

.contact-card {
  align-items: center;
  padding: 1.6rem;
}

.contact-lines {
  display: grid;
  gap: 0.75rem;
  justify-items: start;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
}

.hero-badge-card {
  display: grid;
  gap: 0.5rem;
}

.hero-badge-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-badge-card strong {
  overflow-wrap: anywhere;
}

.legal-title {
  max-width: 760px;
}

.legal-layout {
  padding-top: 0.2rem;
}

.legal-copy {
  max-width: 960px;
  padding: 1.65rem;
}

.legal-copy section + section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.legal-copy h2 {
  font-size: 1.55rem;
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #ffffff;
}

th,
td {
  padding: 0.85rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--ink);
  background: var(--bg-soft);
  font-size: 0.86rem;
}

td {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-grid {
  grid-template-columns: 1.4fr 0.75fr 1fr;
  padding: 2rem 0;
}

.footer-grid div {
  display: grid;
  gap: 0.42rem;
  align-content: start;
}

.footer-grid p {
  margin-bottom: 0;
}

.footer-grid a {
  color: var(--muted);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--ink);
}

.footer-heading {
  color: var(--gold);
}

.footer-bottom {
  padding: 1rem 0 1.6rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .compact-hero-grid,
  .two-column,
  .contact-layout,
  .contact-card,
  .info-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 2.2rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    width: min(300px, calc(100vw - 2rem));
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .header-row {
    min-height: 72px;
  }

  .brand-copy span:last-child {
    display: none;
  }

  .hero-section,
  .page-hero {
    padding: 3.2rem 0 2.6rem;
  }

  h1,
  .page-hero h1 {
    max-width: none;
    font-size: clamp(2.15rem, 10vw, 3.3rem);
  }

  h2 {
    font-size: clamp(1.75rem, 7vw, 2.45rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .panel,
  .hero-badge-card,
  .contact-card,
  .legal-copy {
    padding: 1.15rem;
  }

  .footer-bottom {
    padding-bottom: 1.3rem;
  }
}
