:root {
  --bg: #f6f7f4;
  --paper: #ffffff;
  --ink: #131615;
  --muted: #59605b;
  --soft: #dfe3df;
  --accent: #f62750;
  --night: #090b0a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.global-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 247, 244, 0.9);
  border-bottom: 1px solid rgba(19, 22, 21, 0.1);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}

.global-nav nav {
  width: min(1180px, calc(100% - 44px));
  height: 52px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 700;
}

.brand-logo {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: #3f4541;
  font-size: 12px;
}

.hero {
  position: relative;
  height: clamp(500px, calc((58vw - 12px) * 0.7215), 680px);
  overflow: hidden;
  background: #a98a64;
}

.hero-gallery {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 auto;
  width: min(58%, 940px);
  height: 100%;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 6px;
}

.hero-gallery img {
  width: 100%;
  height: auto;
}

.hero-shade {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 50%;
  background: rgba(9, 11, 10, 0.68);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 44px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #ffffff;
}

.kicker {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .kicker {
  color: #ffffff;
}

h1 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: clamp(56px, 7vw, 92px);
  line-height: 0.96;
  font-weight: 760;
}

.headline {
  max-width: 520px;
  margin-bottom: 36px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.16;
  font-weight: 600;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 15px;
  font-weight: 650;
}

.statement {
  padding: 124px max(24px, calc((100% - 980px) / 2));
  background: var(--paper);
  text-align: center;
}

.statement h2 {
  margin-bottom: 28px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
  font-weight: 720;
}

.statement > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
}

.feature-band {
  border-top: 1px solid rgba(19, 22, 21, 0.1);
}

.feature-light {
  background: #ffffff;
}

.feature-neutral {
  background: #edf0ed;
}

.feature-clean {
  background: #dce9f0;
}

.feature-dark {
  background: var(--night);
  color: #ffffff;
}

.feature-inner {
  width: min(1120px, calc(100% - 48px));
  min-height: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(56px, 9vw, 130px);
  align-items: center;
}

.feature-inner.media-first {
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
}

.feature-copy h2 {
  max-width: 600px;
  margin-bottom: 24px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  font-weight: 720;
}

.feature-copy > p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.feature-dark .feature-copy > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.feature-media {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.support {
  padding: 112px max(24px, calc((100% - 1120px) / 2));
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
  background: #ffffff;
  border-top: 1px solid rgba(19, 22, 21, 0.1);
}

.support-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.04;
}

.support-copy > p:last-child {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.support-form {
  padding: 32px;
  display: grid;
  gap: 12px;
  border: 1px solid var(--soft);
  border-radius: 8px;
  background: var(--bg);
}

.support-form label {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
}

.support-form input,
.support-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #cbd0cc;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  line-height: 1.4;
  letter-spacing: 0;
}

.support-form textarea {
  min-height: 150px;
  resize: vertical;
}

.support-form input:focus,
.support-form textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(246, 39, 80, 0.14);
}

.support-form button {
  min-height: 50px;
  margin-top: 12px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.support-form button:hover {
  background: #d91f45;
}

.support-status {
  min-height: 24px;
  margin: 2px 0 0;
  color: #17633f;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 650;
}

.privacy {
  padding: 112px max(24px, calc((100% - 1120px) / 2));
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: end;
  background: var(--paper);
}

.privacy h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.04;
}

.privacy-copy > p:not(.kicker) {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.dark-link {
  color: var(--ink);
}

.privacy-points p {
  margin: 0;
  padding: 20px 0 20px 22px;
  border-top: 1px solid var(--soft);
  border-left: 3px solid var(--accent);
  font-size: 16px;
  font-weight: 650;
}

.privacy-points p:last-child {
  border-bottom: 1px solid var(--soft);
}

.brand-finale {
  min-height: 680px;
  padding: 80px max(24px, calc((100% - 1000px) / 2));
  display: grid;
  grid-template-columns: minmax(280px, 390px) 1fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  background: #202522;
  color: #ffffff;
}

.brand-finale img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-finale h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
}

footer {
  width: min(1180px, calc(100% - 44px));
  min-height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

footer > span {
  font-weight: 700;
}

footer div {
  display: flex;
  gap: 24px;
  color: var(--muted);
}

.legal-page {
  width: min(900px, calc(100% - 44px));
  margin: 0 auto;
  padding: 80px 0 110px;
}

.legal-hero {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--soft);
}

.legal-hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 66px);
  line-height: 1.04;
}

.legal-hero > p:last-child,
.legal-section p {
  color: var(--muted);
}

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

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

.legal-section h2 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.25;
}

.legal-section p {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.65;
}

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

.legal-section a {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }

  .hero {
    height: clamp(560px, calc(100svh - 96px), 660px);
    min-height: 560px;
  }

  .hero-gallery {
    inset: auto 0 0;
    width: 100%;
    height: 42%;
    padding: 8px 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3px;
    align-items: flex-end;
  }

  .hero-gallery img {
    width: 100%;
    height: auto;
  }

  .hero-shade {
    width: 100%;
    height: 56%;
    background: rgba(9, 11, 10, 0.76);
  }

  .hero-copy {
    justify-content: flex-start;
    padding-top: 64px;
  }

  .feature-inner,
  .feature-inner.media-first,
  .support,
  .privacy,
  .brand-finale {
    grid-template-columns: 1fr;
  }

  .feature-inner {
    min-height: auto;
    padding: 80px 0;
    gap: 48px;
  }

  .feature-inner.media-first .feature-media {
    order: 2;
  }

  .feature-media {
    width: min(100%, 420px);
    margin: 0 auto;
  }

  .privacy {
    gap: 48px;
  }

  .support {
    gap: 48px;
  }

  .brand-finale img {
    width: min(100%, 390px);
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .global-nav nav,
  .hero-copy,
  footer {
    width: calc(100% - 30px);
  }

  h1 {
    font-size: 54px;
  }

  .headline {
    font-size: 23px;
  }

  .statement {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .statement h2,
  .feature-copy h2,
  .privacy h2,
  .brand-finale h2 {
    font-size: 39px;
  }

  .statement > p:last-child,
  .feature-copy > p:last-child,
  .privacy-copy > p:not(.kicker) {
    font-size: 17px;
  }

  .feature-inner {
    width: calc(100% - 32px);
    padding: 64px 0;
  }

  .privacy,
  .support,
  .brand-finale {
    padding: 76px 20px;
  }

  .support-form {
    padding: 22px;
  }

  .brand-finale {
    min-height: auto;
  }

  footer {
    padding: 24px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .legal-page {
    width: calc(100% - 32px);
    padding: 58px 0 80px;
  }

  .legal-hero h1 {
    font-size: 38px;
  }

  .legal-section h2 {
    font-size: 21px;
  }
}
