:root {
  --ink: #163040;
  --muted: #5f6f73;
  --paper: #fffaf0;
  --cream: #f7ecd7;
  --teal: #1f7872;
  --teal-deep: #155c58;
  --coral: #e36a55;
  --gold: #f2b438;
  --blue: #4da8bd;
  --line: rgba(22, 48, 64, 0.16);
  --shadow: 0 18px 50px rgba(22, 48, 64, 0.14);
}

* {
  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.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}

.brand span {
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--teal-deep);
}

.hero {
  position: relative;
  min-height: 70svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #efe2c8;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 250, 240, 0.96) 0%, rgba(255, 250, 240, 0.82) 44%, rgba(255, 250, 240, 0.2) 72%),
    url("assets/brand-banner.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 86px);
  padding: clamp(28px, 5vw, 58px) 0;
}

.hero-logo {
  width: clamp(76px, 10vw, 108px);
  height: auto;
  margin-bottom: 14px;
}

.eyebrow,
.section-label,
.product-type {
  margin: 0 0 10px;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(2.85rem, 6vw, 5.4rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.4vw, 4.2rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 610px;
  color: #30454d;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
}

.button-primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 10px 24px rgba(31, 120, 114, 0.24);
}

.button-primary:hover {
  background: var(--teal-deep);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(22, 48, 64, 0.22);
  background: #fff;
}

.button-secondary:hover {
  border-color: var(--coral);
}

.button-highlight {
  color: var(--ink);
  background: var(--gold);
  border-color: rgba(22, 48, 64, 0.18);
  box-shadow: 0 10px 24px rgba(22, 48, 64, 0.18);
}

.button-highlight:hover {
  background: #ffd26a;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-strip span {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 14px;
  background: #fff8e9;
  color: #30454d;
  text-align: center;
  font-weight: 900;
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.copy-block {
  color: #334b51;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.copy-block p:last-child {
  margin-bottom: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 800px);
  margin-bottom: 34px;
}

.resources-section {
  background: #f2fbfa;
}

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

.product-card,
.mini-preview,
.policy-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(22, 48, 64, 0.08);
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-card div {
  padding: 22px;
}

.product-card p {
  color: var(--muted);
}

.product-card p:last-child,
.policy-grid p:last-child {
  margin-bottom: 0;
}

.mini-preview {
  position: relative;
  min-height: 330px;
}

.mini-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-preview span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  font-weight: 900;
  text-align: center;
}

.support-band {
  padding: clamp(62px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(21, 92, 88, 0.94), rgba(77, 168, 189, 0.88)),
    url("assets/brand-banner.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.support-content {
  max-width: 780px;
}

.support-content .section-label {
  color: #ffe4a5;
}

.support-content p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
}

.support-content .button-secondary {
  color: var(--ink);
}

.support-note {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

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

.policy-grid article {
  padding: 22px;
  box-shadow: none;
}

.policy-grid p {
  color: var(--muted);
}

.policy-grid a {
  color: var(--teal-deep);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fff8e9;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-footer a {
  color: var(--teal-deep);
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.legal-page {
  background: #fffaf0;
}

.legal-hero {
  padding: clamp(36px, 5vw, 64px) clamp(18px, 5vw, 72px) 18px;
}

.legal-hero h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.legal-content {
  display: grid;
  gap: 14px;
  max-width: 820px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(52px, 7vw, 82px);
}

.legal-content article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.legal-content h2 {
  margin-bottom: 8px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.legal-content ul {
  margin: 0;
  padding-left: 1.2rem;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 68svh;
  }

  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(255, 250, 240, 0.96) 0%, rgba(255, 250, 240, 0.88) 58%, rgba(255, 250, 240, 0.3) 100%),
      url("assets/brand-banner.jpg");
    background-position: center bottom;
  }

  .hero-content {
    margin-inline: 18px;
    width: auto;
  }

  .trust-strip,
  .two-column,
  .product-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    gap: 0;
  }

  .mini-preview {
    min-height: 460px;
  }
}

@media (max-width: 520px) {
  .brand span {
    font-size: 0.96rem;
  }

  nav {
    gap: 14px;
    font-size: 0.88rem;
  }

  h1 {
    font-size: clamp(2.65rem, 17vw, 4.2rem);
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .support-actions,
  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

  .mini-preview {
    min-height: 390px;
  }
}
