:root {
  --color-bg: #fbf6ed;
  --color-surface: #fffaf2;
  --color-surface-strong: #ffffff;
  --color-text: #13243d;
  --color-muted: #536174;
  --color-accent: #c46a2a;
  --color-accent-dark: #994c1d;
  --color-border: #eadfce;
  --shadow-soft: 0 22px 55px rgba(19, 36, 61, 0.1);
  --radius-large: 8px;
  --radius-medium: 8px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(196, 106, 42, 0.12), transparent 34rem),
    var(--color-bg);
  color: var(--color-text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--color-text);
  color: var(--color-surface-strong);
  padding: 0.7rem 1rem;
  font-weight: 700;
  text-decoration: none;
}

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

.site-header {
  padding: 0.55rem clamp(1rem, 4vw, 3rem) 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--color-text);
  flex-shrink: 0;
  font-weight: 800;
  text-decoration: none;
}

.brand__logo {
  width: 230px;
  height: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(0.45rem, 2vw, 1rem);
}

.nav__links a {
  border-radius: 999px;
  color: var(--color-text);
  font-weight: 700;
  padding: 0.65rem 0.9rem;
  text-decoration: none;
}

.nav__links a:hover {
  background: rgba(196, 106, 42, 0.12);
}

main {
  overflow: hidden;
}

.hero,
.section,
.support {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.hero {
  display: grid;
  align-items: center;
  min-height: 58vh;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5rem);
}

.hero__content {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--color-accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--color-text);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 6vw, 5.85rem);
}

h2 {
  font-size: clamp(2rem, 3.7vw, 3.4rem);
}

.hero__copy {
  max-width: 690px;
  margin: 1.35rem 0 0;
  color: var(--color-muted);
  font-size: clamp(1.08rem, 1rem + 0.45vw, 1.35rem);
}

.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.section__header {
  max-width: 680px;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: 1.25rem;
}

.product-card {
  min-height: 100%;
}

.product-card__link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 3vw, 1.5rem);
  height: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-surface-strong);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.2rem, 4vw, 2rem);
  text-decoration: none;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.product-card__link:hover {
  border-color: rgba(196, 106, 42, 0.45);
  box-shadow: 0 28px 70px rgba(19, 36, 61, 0.14);
  transform: translateY(-2px);
}

.product-card__icon {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--radius-medium);
  background: #f7e4d0;
  color: var(--color-accent-dark);
}

.product-card__icon svg {
  width: 2.65rem;
  height: 2.65rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.35;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.product-card__eyebrow {
  margin-bottom: 0.35rem;
  color: var(--color-accent-dark);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-card__title {
  color: var(--color-text);
  font-size: clamp(1.45rem, 1.15rem + 1vw, 2rem);
  font-weight: 850;
  line-height: 1.2;
}

.product-card__description {
  max-width: 48rem;
  margin: 0.7rem 0 1.35rem;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #ffffff;
  font-weight: 800;
  line-height: 1.2;
  padding: 0.8rem 1.15rem;
  text-align: center;
}

.support {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.support__content {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-surface);
  padding: clamp(1.5rem, 5vw, 3rem);
}

.support__content p:not(.eyebrow) {
  max-width: 660px;
  margin: 1rem 0 1.2rem;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.support__email {
  display: inline-flex;
  border-radius: 999px;
  color: var(--color-accent-dark);
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  padding: 1.5rem 0 2rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  border-radius: 999px;
  color: var(--color-text);
  font-weight: 700;
  text-decoration-color: rgba(196, 106, 42, 0.65);
  text-underline-offset: 0.18em;
}

@media (max-width: 700px) {
  .site-header {
    padding-top: 0.55rem;
  }

  .nav {
    align-items: center;
    flex-direction: row;
  }

  .brand__logo {
    width: clamp(118px, 34vw, 140px);
  }

  .nav__links {
    justify-content: flex-end;
  }

  .nav__links a {
    padding: 0.55rem 0.65rem;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 4.15rem);
  }

  .product-card__link {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (min-width: 701px) and (max-width: 960px) {
  .brand__logo {
    width: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
