:root {
  color-scheme: light;
  --ink: #191713;
  --soft-ink: #3e3a32;
  --muted: #686156;
  --paper: #f3eee4;
  --panel: #fffaf1;
  --line: #d7cdbc;
  --steel: #59646b;
  --sprue: #2f6f63;
  --brass: #c6782d;
  --focus: #a55215;
  --shadow: rgba(25, 23, 19, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.86), rgba(243, 238, 228, 0.96)),
    repeating-linear-gradient(90deg, rgba(25, 23, 19, 0.045) 0 1px, transparent 1px 48px);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--panel);
  padding: 10px 14px;
}

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

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(243, 238, 228, 0.96);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-footer {
  border-top: 1px solid var(--line);
}

.brand-link img,
.site-footer img {
  display: block;
  height: auto;
}

.site-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.site-nav a,
.site-footer a {
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.hero {
  display: grid;
  min-height: min(760px, 86vh);
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: clamp(56px, 8vw, 112px) clamp(20px, 5vw, 72px) clamp(44px, 7vw, 84px);
}

.hero-copy {
  max-width: 840px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sprue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 8vw, 96px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: 0;
}

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

p {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  max-width: 680px;
  font-size: 18px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: var(--panel);
  padding: 11px 18px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.hero-visual {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.78);
  padding: 18px;
  box-shadow: 0 22px 70px var(--shadow);
}

.bench-panel {
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(47, 111, 99, 0.12), transparent 44%),
    linear-gradient(180deg, #fffaf1, #e8ded0);
}

.panel-large {
  grid-row: span 2;
  min-height: 276px;
  padding: 20px;
}

.bench-panel.accent {
  background:
    linear-gradient(145deg, rgba(198, 120, 45, 0.22), transparent 48%),
    linear-gradient(180deg, #fffaf1, #e8ded0);
}

.measure-line {
  display: block;
  width: 80%;
  height: 2px;
  margin: 34px 0;
  background: var(--steel);
}

.measure-line.short {
  width: 48%;
  background: var(--brass);
}

.hero-visual p {
  grid-column: 1 / -1;
  margin-bottom: 0;
  font-size: 14px;
}

.section {
  padding: clamp(46px, 7vw, 90px) clamp(20px, 5vw, 72px);
}

.section-head {
  max-width: 780px;
}

.feature-grid,
.category-grid,
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
}

.feature-grid article,
.category-grid article,
.brand-grid li {
  min-height: 154px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.82);
  padding: 20px;
  list-style: none;
}

.category-grid span {
  display: block;
  margin-bottom: 20px;
  color: var(--brass);
  font-weight: 800;
}

.brand-section {
  background: rgba(25, 23, 19, 0.035);
}

.brand-grid {
  grid-template-columns: repeat(6, minmax(132px, 1fr));
}

.brand-grid li {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand-grid span {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.08;
}

.brand-grid small {
  color: var(--muted);
  line-height: 1.4;
}

.instagram-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1.1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
}

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

.instagram-preview span {
  display: grid;
  min-height: 180px;
  place-items: end start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(150deg, transparent 0 46%, rgba(47, 111, 99, 0.16) 46% 48%, transparent 48%),
    linear-gradient(180deg, #fffaf1, #e8ded0);
  padding: 16px;
  color: var(--soft-ink);
  font-weight: 800;
}

.signup-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.signup-form {
  max-width: 780px;
  margin-top: 26px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--soft-ink);
  font-weight: 800;
}

.signup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
  font: inherit;
}

.consent,
.form-status {
  max-width: 700px;
  font-size: 14px;
}

.form-status {
  min-height: 24px;
  margin-top: 12px;
  color: var(--sprue);
  font-weight: 800;
}

.form-status.error {
  color: #9b3212;
}

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

.access-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.access-panel {
  width: min(100%, 520px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 28px;
  box-shadow: 0 22px 70px var(--shadow);
}

.access-panel img {
  display: block;
  height: auto;
  margin-bottom: 24px;
}

.site-footer p {
  max-width: 420px;
  margin: 14px 0 0;
  font-size: 14px;
}

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

@media (max-width: 980px) {
  .hero,
  .instagram-section,
  .legal-section {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .feature-grid,
  .category-grid,
  .brand-grid,
  .instagram-preview,
  .signup-row {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(40px, 15vw, 62px);
  }
}
