:root {
  --bg: #f4efe6;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: #fffaf2;
  --text: #13110d;
  --muted: #463f35;
  --line: rgba(19, 17, 13, 0.12);
  --accent: #0b6f65;
  --accent-strong: #08564f;
  --accent-soft: rgba(11, 111, 101, 0.12);
  --hero: #171514;
  --hero-muted: #c7c0b6;
  --shadow: 0 24px 70px rgba(23, 21, 20, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
  --font-sans: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --font-serif: "Instrument Serif", "Georgia", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(13, 139, 125, 0.14), transparent 28rem),
    radial-gradient(circle at right 20%, rgba(179, 111, 43, 0.1), transparent 22rem),
    var(--bg);
  line-height: 1.55;
}

a {
  color: inherit;
}

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

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

.site-header {
  padding: 1.15rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(244, 239, 230, 0.72);
  border-bottom: 1px solid rgba(19, 17, 13, 0.05);
}

.header-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.brand-mark {
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), #53b4aa);
  color: white;
  box-shadow: 0 12px 30px rgba(13, 139, 125, 0.24);
}

.brand-mark span {
  font-size: 1rem;
  font-weight: 800;
}

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

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

.nav a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.95rem 1.25rem;
  text-decoration: none;
  font-weight: 700;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 36px rgba(13, 139, 125, 0.22);
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  padding: 3rem 0 1.5rem;
}

.hero-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 35%),
    linear-gradient(180deg, #1d1a18 0%, #13110f 100%);
  color: white;
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 4rem);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}

.hero-card::before {
  width: 18rem;
  height: 18rem;
  right: -5rem;
  top: -6rem;
  background: rgba(13, 139, 125, 0.2);
}

.hero-card::after {
  width: 13rem;
  height: 13rem;
  left: 50%;
  bottom: -6rem;
  background: rgba(201, 143, 90, 0.14);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--hero-muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.95fr);
  gap: 2rem;
  margin-top: 1.4rem;
}

.hero h1 {
  margin: 1.1rem 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.3rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.hero p {
  font-size: 1.1rem;
  color: var(--hero-muted);
  max-width: 42rem;
  margin: 0;
}

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

.hero-note {
  margin-top: 1.1rem;
  color: var(--hero-muted);
  font-size: 0.95rem;
}

.hero-operator {
  margin: 1rem 0 0;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 600;
}

.hero-operator span {
  color: var(--hero-muted);
  font-weight: 500;
}

.hero-panel {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 1.3rem;
  align-self: end;
}

.hero-panel h2,
.panel h2 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel ul,
.panel ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-panel li,
.panel li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel li:last-child,
.panel li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-panel strong,
.panel strong {
  display: block;
  font-size: 0.98rem;
}

.hero-panel span,
.panel span {
  display: block;
  margin-top: 0.2rem;
  color: var(--hero-muted);
  font-size: 0.92rem;
}

.section {
  padding: 1.3rem 0 3rem;
}

.section-title {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  max-width: 34rem;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.45rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(19, 17, 13, 0.05);
}

.card h3,
.panel h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
}

.card p,
.panel p {
  margin: 0;
  color: var(--muted);
}

.list {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.list li + li {
  margin-top: 0.5rem;
}

.band {
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 18px 40px rgba(19, 17, 13, 0.06);
}

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

.metric {
  padding: 1rem;
  border-radius: 22px;
  background: white;
  border: 1px solid rgba(19, 17, 13, 0.08);
}

.metric strong {
  display: block;
  font-size: 0.95rem;
}

.metric span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.cta {
  padding-bottom: 4rem;
}

.cta-card {
  background: linear-gradient(135deg, #0f413c 0%, #12100e 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 26px 65px rgba(18, 16, 14, 0.18);
}

.cta-card p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 40rem;
}

.site-footer {
  padding: 0 0 2.4rem;
}

.footer-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.legal-page {
  padding: 3rem 0 4rem;
}

.legal-shell {
  width: min(calc(100% - 2rem), 860px);
  margin: 0 auto;
}

.legal-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: 0 18px 42px rgba(19, 17, 13, 0.06);
}

.legal-card h1 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-card h2 {
  margin-top: 2rem;
  font-size: 1.2rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  padding-left: 1.1rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .band-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    display: block;
  }

  .section-title p {
    margin-top: 0.8rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .header-inner,
  .nav {
    flex-wrap: wrap;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }
}
