:root {
  color-scheme: light;
  --brand: #0f766e;
  --brand-strong: #115e59;
  --brand-soft: #e5f5f2;
  --accent: #b7791f;
  --ink: #17201d;
  --text: rgba(23, 32, 29, 0.87);
  --muted: rgba(23, 32, 29, 0.66);
  --line: rgba(15, 118, 110, 0.16);
  --surface: #ffffff;
  --surface-soft: #f6faf8;
  --page: #f3f7f5;
  --danger: #b42318;
  --success: #18794e;
  --shadow: 0 8px 32px rgba(22, 42, 38, 0.08);
  --shadow-hover: 0 14px 40px rgba(22, 42, 38, 0.12);
  --radius: 16px;
  --header: 72px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.theme-family {
  --brand: #256f4d;
  --brand-strong: #1f5d41;
  --brand-soft: #edf8f1;
  --accent: #9a5f24;
  --line: rgba(37, 111, 77, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  text-decoration: none;
  transition: transform 200ms ease-out;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.24);
}

.brand-text {
  display: grid;
  gap: 0;
  min-width: 0;
}

.brand-name {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 420px;
}

.brand-meta {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 150ms ease-in-out, color 150ms ease-in-out;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--brand-soft);
  color: var(--brand-strong);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 200ms ease-out, opacity 200ms ease-out;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

body.menu-open .menu-toggle span {
  background: transparent;
}

body.menu-open .menu-toggle span::before {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: clamp(540px, 68vh, 720px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #10231f;
}

.hero.compact {
  min-height: 420px;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 28, 25, 0.84) 0%, rgba(11, 28, 25, 0.68) 44%, rgba(11, 28, 25, 0.18) 100%),
    linear-gradient(0deg, rgba(11, 28, 25, 0.56) 0%, rgba(11, 28, 25, 0.06) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  padding: 96px 0 88px;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 32px;
  color: inherit;
  font-size: clamp(32px, 7vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.6vw, 22px);
  line-height: 1.58;
}

.page-lead {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  padding: 14px 28px;
  text-decoration: none;
  transition: transform 150ms ease-in-out, box-shadow 150ms ease-in-out, background 150ms ease-in-out;
}

.button:hover {
  transform: translateY(-1px) scale(1.01);
  background: var(--brand-strong);
  box-shadow: 0 8px 22px rgba(15, 118, 110, 0.22);
}

.button:active {
  transform: translateY(0) scale(0.99);
  box-shadow: none;
}

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

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.button.light {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--brand-strong);
}

.button.light:hover {
  background: var(--brand-soft);
}

.main {
  padding: 72px 0;
}

.section {
  margin-top: 72px;
}

.section:first-child {
  margin-top: 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.5fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 32px;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--brand-strong);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-copy {
  color: var(--muted);
  font-size: 17px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: -44px;
  position: relative;
  z-index: 4;
}

.trust-item,
.card,
.policy-block,
.contact-panel,
.legal-card {
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.trust-item {
  min-height: 116px;
  padding: 24px;
}

.trust-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.trust-value {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-soft), transparent 58%);
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--shadow-hover);
}

.card:hover::before {
  opacity: 1;
}

.card > * {
  position: relative;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-weight: 900;
}

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

.policy-block {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.44fr);
  gap: 32px;
  align-items: start;
  padding: 32px;
  background:
    radial-gradient(circle at top right, rgba(183, 121, 31, 0.16), transparent 36%),
    var(--surface);
}

.check-list,
.legal-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.legal-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
}

.check-list li::before,
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 5px var(--brand-soft);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.info-table th,
.info-table td {
  border-bottom: 1px solid rgba(15, 118, 110, 0.1);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

.info-table th {
  width: 32%;
  color: var(--ink);
  font-weight: 800;
}

.info-table tr:nth-child(even) {
  background: var(--surface-soft);
}

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 4px 18px rgba(22, 42, 38, 0.05);
  padding: 0;
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
  padding: 20px 22px;
}

.faq details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.42fr);
  gap: 24px;
}

.contact-panel,
.legal-card {
  padding: 28px;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.contact-line {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid rgba(15, 118, 110, 0.1);
  padding-bottom: 16px;
}

.contact-line:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-line strong {
  color: var(--ink);
}

.contact-line span {
  color: var(--muted);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(280px, 0.34fr);
  gap: 24px;
  align-items: start;
}

.legal-content {
  display: grid;
  gap: 20px;
}

.legal-card h2 {
  font-size: clamp(24px, 3vw, 32px);
}

.legal-card h3 {
  font-size: 22px;
}

.side-nav {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
}

.side-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  padding: 10px 14px;
  background: var(--surface);
  color: var(--brand-strong);
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  margin-top: 24px;
  border-top: 1px solid rgba(15, 118, 110, 0.12);
  background: #12231f;
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) repeat(3, minmax(160px, 0.3fr));
  gap: 32px;
}

.footer-title {
  margin-bottom: 12px;
  color: #fff;
  font-weight: 850;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.fine-print {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --ink: #f1f5f9;
    --text: rgba(241, 245, 249, 0.88);
    --muted: rgba(203, 213, 225, 0.78);
    --line: rgba(148, 163, 184, 0.18);
    --surface: #1e293b;
    --surface-soft: #162231;
    --page: #0f172a;
    --brand-soft: rgba(45, 212, 191, 0.12);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
    --shadow-hover: 0 14px 44px rgba(0, 0, 0, 0.3);
  }

  .site-header {
    background: rgba(15, 23, 42, 0.86);
  }

  .nav-links {
    background: rgba(15, 23, 42, 0.98);
  }

  .trust-item,
  .card,
  .contact-panel,
  .legal-card,
  .faq details,
  .info-table,
  .side-nav a {
    border-color: rgba(148, 163, 184, 0.18);
    background: var(--surface);
  }

  .trust-value,
  .contact-line strong,
  .info-table th,
  .faq summary,
  .footer-title {
    color: var(--ink);
  }

  .card p,
  .policy-block p,
  .legal-card p,
  .contact-line span,
  .info-table td,
  .faq details p {
    color: var(--muted);
  }

  .brand-name,
  .brand-meta {
    color: var(--ink);
  }
}

@media (max-width: 1024px) {
  .brand-name {
    max-width: 300px;
  }

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

  .section-head,
  .policy-block,
  .contact-layout,
  .legal-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 32px, 620px);
  }

  .site-header {
    min-height: var(--header);
  }

  .brand-name {
    max-width: min(56vw, 260px);
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    inset: var(--header) 0 auto 0;
    min-height: calc(100vh - var(--header));
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: transform 200ms ease-out;
  }

  body.menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: transform 200ms ease-out;
  }

  .nav-links a {
    width: 100%;
    min-height: 52px;
    justify-content: flex-start;
    font-size: 18px;
  }

  .hero {
    min-height: 560px;
  }

  .hero.compact {
    min-height: 430px;
  }

  .hero-content {
    padding: 72px 0 72px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(11, 28, 25, 0.88) 0%, rgba(11, 28, 25, 0.7) 58%, rgba(11, 28, 25, 0.34) 100%),
      linear-gradient(0deg, rgba(11, 28, 25, 0.62) 0%, rgba(11, 28, 25, 0.1) 42%);
  }

  .main {
    padding: 56px 0;
  }

  .section {
    margin-top: 56px;
  }

  .section-head {
    gap: 12px;
    margin-bottom: 24px;
  }

  .trust-strip,
  .grid.four,
  .grid.three,
  .grid.two,
  .side-nav {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: -28px;
  }

  .card,
  .policy-block,
  .contact-panel,
  .legal-card,
  .trust-item {
    padding: 24px;
  }

  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table th {
    padding-bottom: 4px;
  }

  .info-table td {
    padding-top: 4px;
  }

  .footer-grid {
    gap: 24px;
  }
}

@media (max-width: 380px) {
  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    max-width: 48vw;
    font-size: 15px;
  }

  .brand-meta {
    font-size: 13px;
  }

  .button {
    width: 100%;
    padding-inline: 18px;
  }
}
