:root {
  color-scheme: light;
  --ink: #102422;
  --muted: #536765;
  --paper: #f7f4ed;
  --paper-strong: #fffdf8;
  --forest: #123d37;
  --forest-deep: #092824;
  --jade: #2f7168;
  --gold: #bf955a;
  --gold-soft: #ead7b8;
  --line: rgba(16, 36, 34, 0.14);
  --shadow: 0 24px 70px rgba(9, 40, 36, 0.12);
  --radius: 24px;
  --max: 1160px;
}

* {
  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;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--paper-strong);
  color: var(--forest-deep);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--forest-deep);
  color: #fff;
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(234, 215, 184, 0.62);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  letter-spacing: -0.05em;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

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

.nav-links .nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(234, 215, 184, 0.5);
  border-radius: 999px;
  color: var(--gold-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 18%, rgba(191, 149, 90, 0.2), transparent 23rem),
    radial-gradient(circle at 12% 88%, rgba(47, 113, 104, 0.5), transparent 26rem),
    var(--forest-deep);
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 660px;
  padding: 94px 0 100px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: 74px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6.2vw, 84px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(17px, 2vw, 20px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.button-primary {
  background: var(--gold-soft);
  color: var(--forest-deep);
}

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

.hero-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 32px;
  width: 78px;
  height: 10px;
  border-radius: 99px;
  background: var(--gold);
}

.hero-card h2 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.flow-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.flow-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(234, 215, 184, 0.13);
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 98px;
  align-items: center;
}

.trust-item {
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.trust-item strong {
  display: block;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}

.trust-item small {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 104px 0;
}

.section-soft {
  background: var(--paper-strong);
}

.section-dark {
  background: var(--forest);
  color: #fff;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 52px;
}

.section-heading h2,
.split-copy h2 {
  margin: 0;
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.section-heading p,
.split-copy > p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  min-height: 248px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.card-number {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.card h3 {
  margin: 0 0 10px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 74px;
  align-items: start;
}

.data-panel {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--forest-deep);
  color: #fff;
  box-shadow: var(--shadow);
}

.data-panel h3 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-soft);
  font-weight: 800;
}

.data-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.data-links a {
  color: var(--gold-soft);
}

.identity {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 64px;
  align-items: center;
}

.monogram {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 36px;
  background:
    radial-gradient(circle at 65% 28%, rgba(191, 149, 90, 0.35), transparent 35%),
    var(--forest-deep);
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(68px, 10vw, 126px);
  letter-spacing: -0.08em;
  box-shadow: var(--shadow);
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
  font-size: 14px;
}

.contact-list a {
  color: var(--jade);
  font-weight: 700;
}

.site-footer {
  padding: 56px 0 34px;
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.66);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 48px;
  padding-bottom: 42px;
}

.footer-grid h2 {
  margin: 0 0 12px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  font-size: 13px;
}

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

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.legal-hero {
  padding: 76px 0 70px;
  background:
    radial-gradient(circle at 80% 20%, rgba(191, 149, 90, 0.2), transparent 24rem),
    var(--forest-deep);
  color: #fff;
}

.legal-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 6vw, 72px);
}

.legal-hero p {
  max-width: 730px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

.legal-wrap {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  justify-content: center;
  gap: 62px;
  padding: 76px 0 112px;
}

.legal-aside {
  position: sticky;
  top: 24px;
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper-strong);
  color: var(--muted);
  font-size: 12px;
}

.legal-aside strong {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 13px;
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  padding: 0 0 34px;
  margin: 0 0 34px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  margin: 0 0 15px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.legal-content h3 {
  margin: 24px 0 8px;
  color: var(--forest);
  font-size: 17px;
}

.legal-content p,
.legal-content li {
  color: #405451;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content a {
  color: #23675f;
  font-weight: 700;
}

.notice {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0;
  background: #f0e8da;
  color: #314b47;
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .identity,
  .legal-wrap {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 74px 0 84px;
  }

  .hero-card {
    max-width: 620px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 0;
  }

  .card-number {
    margin-bottom: 26px;
  }

  .legal-aside {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav {
    min-height: 72px;
  }

  .brand-copy small,
  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links .nav-cta {
    padding: 8px 11px;
    font-size: 11px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .hero-grid {
    gap: 48px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-card,
  .data-panel {
    padding: 26px;
    border-radius: 22px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  .trust-item,
  .trust-item:first-child {
    padding: 14px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .section {
    padding: 76px 0;
  }

  .split,
  .identity {
    gap: 42px;
  }

  .monogram {
    max-width: 430px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .legal-hero {
    padding: 58px 0;
  }

  .legal-wrap {
    gap: 34px;
    padding: 50px 0 80px;
  }

  .legal-content h2 {
    font-size: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
