:root {
  color-scheme: light;
  --background: #fff9f1;
  --surface: #fffaf4;
  --surface-strong: #fff4e8;
  --ink: #2d3436;
  --muted: #788183;
  --accent: #e86b52;
  --accent-dark: #bd5b4a;
  --peach: #f4b28b;
  --gold: #efc85e;
  --line: #eadfd3;
  --shadow: 0 20px 60px rgba(89, 64, 43, 0.08);
  --radius-large: 40px;
  --radius-medium: 24px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 8%, rgba(244, 178, 139, 0.12), transparent 28rem),
    var(--background);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

.site-header,
.page-shell,
.site-footer {
  width: min(1160px, calc(100% - 56px));
  margin-inline: auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 760;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  box-shadow: 0 8px 18px rgba(86, 63, 42, 0.14);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--accent-dark);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.language-switch button {
  min-width: 42px;
  padding: 7px 10px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  color: var(--accent-dark);
  background: #fff;
  box-shadow: 0 3px 12px rgba(74, 55, 39, 0.08);
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(232, 107, 82, 0.34);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 32px;
  padding: 76px 88px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: rgba(255, 250, 244, 0.74);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.page-intro h1 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 5.35rem);
  font-weight: 420;
  letter-spacing: -0.065em;
  line-height: 0.99;
}

.hero-lede {
  max-width: 650px;
  margin: 34px 0 36px;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.55;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(232, 107, 82, 0.22);
  font-weight: 760;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(232, 107, 82, 0.28);
}

.hero-art {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 410px;
  place-items: center;
}

.hero-art::before,
.hero-art::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(189, 91, 74, 0.16);
  border-radius: 50%;
}

.hero-art::before {
  width: 430px;
  height: 430px;
}

.hero-art::after {
  width: 300px;
  height: 300px;
}

.hero-art img {
  position: relative;
  z-index: 1;
  width: min(230px, 68%);
  border-radius: 46px;
  box-shadow: 0 24px 54px rgba(75, 55, 44, 0.2);
}

.feature-section {
  padding: 86px 0 28px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  font-weight: 520;
  letter-spacing: -0.05em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

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

.feature-card,
.support-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: rgba(255, 250, 244, 0.72);
}

.feature-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--accent-dark);
  background: rgba(232, 107, 82, 0.1);
  font-size: 0.86rem;
  font-weight: 800;
}

.feature-card h3,
.support-card h2 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}

.feature-card p,
.support-card p,
.support-card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.page-intro {
  position: relative;
  overflow: hidden;
  padding: 74px 78px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 88% 28%, rgba(244, 178, 139, 0.2), transparent 21rem),
    rgba(255, 250, 244, 0.78);
}

.page-intro h1 {
  max-width: 820px;
  font-size: clamp(3rem, 6vw, 5rem);
}

.page-intro p:last-child {
  max-width: 690px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.65;
}

.content-section {
  padding: 68px 0 24px;
}

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

.support-card-wide {
  grid-column: 1 / -1;
}

.support-card ul {
  margin: 16px 0 0;
  padding-left: 1.2rem;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 18px;
  padding: 34px;
  border-radius: var(--radius-medium);
  color: #fff;
  background: var(--ink);
}

.contact-panel h2 {
  margin: 0 0 8px;
  font-size: 1.55rem;
}

.contact-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.contact-panel a {
  flex: 0 0 auto;
  padding: 13px 20px;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-weight: 760;
  text-decoration: none;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 58px;
  align-items: start;
}

.legal-content {
  max-width: 790px;
}

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

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

.legal-content h2 {
  margin: 0 0 14px;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.72;
}

.legal-content p {
  margin: 0 0 12px;
}

.legal-content ul {
  margin: 10px 0 0;
  padding-left: 1.25rem;
}

.legal-nav {
  position: sticky;
  top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 250, 244, 0.82);
}

.legal-nav strong {
  display: block;
  margin-bottom: 14px;
}

.legal-nav a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.93rem;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--accent-dark);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
  padding: 70px 0 44px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 760;
}

.footer-brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-dark);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 64px 54px 20px;
  }

  .hero-art {
    min-height: 330px;
  }

  .hero-art::before {
    width: 370px;
    height: 370px;
  }

  .hero-art::after {
    width: 250px;
    height: 250px;
  }

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

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    display: none;
  }
}

@media (max-width: 680px) {
  .site-header,
  .page-shell,
  .site-footer {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    min-height: auto;
    padding: 16px 0 14px;
    align-items: flex-start;
  }

  .brand {
    font-size: 1.28rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .header-actions {
    align-items: flex-end;
    flex-direction: column-reverse;
    gap: 12px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 0.84rem;
  }

  .language-switch button {
    min-width: 36px;
    padding: 6px 8px;
    font-size: 0.75rem;
  }

  .hero {
    min-height: 0;
    padding: 46px 26px 10px;
    border-radius: 28px;
  }

  .hero h1,
  .page-intro h1 {
    font-size: clamp(2.65rem, 14vw, 4.1rem);
    line-height: 1.02;
  }

  .hero-lede {
    margin: 26px 0 30px;
    font-size: 1.05rem;
  }

  .hero-art {
    min-height: 280px;
  }

  .hero-art::before {
    width: 290px;
    height: 290px;
  }

  .hero-art::after {
    width: 205px;
    height: 205px;
  }

  .hero-art img {
    width: 165px;
    border-radius: 34px;
  }

  .feature-section {
    padding-top: 62px;
  }

  .page-intro {
    padding: 48px 26px;
    border-radius: 28px;
  }

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

  .support-card-wide {
    grid-column: auto;
  }

  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 54px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

