:root {
  color-scheme: light;
  --ink: #231b18;
  --muted: #6d625c;
  --paper: #fff9f1;
  --paper-strong: #f7eee1;
  --line: rgba(35, 27, 24, 0.12);
  --clay: #bf6040;
  --clay-dark: #8e3f28;
  --sage: #637c65;
  --smoke: #ece6dc;
  --gold: #d9a441;
  --shadow: 0 24px 60px rgba(72, 45, 29, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(255, 249, 241, 0.94);
  box-shadow: 0 10px 34px rgba(35, 27, 24, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--clay-dark);
}

.site-header.is-scrolled .brand-mark,
.site-header.menu-active .brand-mark {
  background: var(--ink);
  color: #fff;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 0.95rem;
  font-weight: 600;
}

.header-action,
.secondary-link,
.text-link {
  font-weight: 700;
}

.header-action {
  padding: 10px 15px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 110px clamp(20px, 6vw, 76px) 76px;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 17, 15, 0.9) 0%, rgba(20, 17, 15, 0.62) 43%, rgba(20, 17, 15, 0.12) 100%),
    linear-gradient(0deg, rgba(35, 27, 24, 0.28), rgba(35, 27, 24, 0.02));
}

.hero-content {
  position: relative;
  width: min(640px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.5rem, 12vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-text {
  max-width: 600px;
  margin-bottom: 28px;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.hero-actions,
.support-layout {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.primary-link,
.secondary-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
}

.primary-link {
  padding: 13px 20px;
  background: var(--clay);
  color: #fff;
  border: 1px solid var(--clay);
  box-shadow: 0 14px 30px rgba(98, 48, 28, 0.22);
  font-weight: 800;
}

.secondary-link {
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band div {
  padding: 24px clamp(18px, 4vw, 56px);
  background: var(--paper);
}

.trust-band strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.45rem;
}

.trust-band span {
  color: var(--muted);
}

.section {
  padding: 82px clamp(20px, 6vw, 76px);
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section-heading h2,
.story-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p,
.story-copy p,
.product-copy p,
.principles p,
.support-card p {
  color: var(--muted);
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.product-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: var(--shadow);
}

.product-card-featured {
  grid-template-columns: minmax(220px, 0.85fr) 1fr;
  gap: 24px;
}

.product-visual {
  position: relative;
  min-height: 320px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(247, 238, 225, 0.84)),
    var(--smoke);
}

.product-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

.lamp-visual .product-image {
  object-position: center bottom;
  padding: 18px 12px 0;
}

.mug-visual .product-image {
  padding: 22px;
}

.product-kicker {
  margin-bottom: 10px;
  color: var(--clay-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-copy h3,
.support-card h3,
.principles h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.product-copy ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 18px 0 24px;
  color: var(--ink);
  line-height: 1.55;
}

.text-link {
  width: fit-content;
  min-height: 42px;
  padding: 10px 16px;
  color: var(--clay-dark);
  background: rgba(191, 96, 64, 0.1);
}

.story-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  background: var(--paper-strong);
}

.principles {
  display: grid;
  gap: 14px;
}

.principles div {
  padding: 24px;
  border-left: 4px solid var(--sage);
  background: rgba(255, 255, 255, 0.54);
}

.principles span {
  display: block;
  margin-bottom: 12px;
  color: var(--sage);
  font-weight: 800;
}

.support-section {
  background: #fffdf9;
}

.support-layout {
  align-items: stretch;
}

.support-card,
.support-form {
  flex: 1 1 360px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.support-form {
  display: grid;
  gap: 16px;
}

.support-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fffdf9;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(191, 96, 64, 0.16);
  border-color: rgba(191, 96, 64, 0.58);
}

.button-reset {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 6vw, 76px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links,
  .header-action {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.menu-active .nav-links,
  .site-header.menu-active .header-action {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.menu-active .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 10px;
  }

  .site-header.menu-active .header-action {
    width: fit-content;
  }

  .hero {
    min-height: 86vh;
  }

  .trust-band,
  .product-grid,
  .product-card-featured,
  .story-section {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 280px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .hero {
    padding: 96px 18px 54px;
  }

  h1 {
    font-size: clamp(4rem, 22vw, 6rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-link,
  .secondary-link {
    width: 100%;
  }

  .trust-band div,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .product-card,
  .support-card,
  .support-form {
    padding: 20px;
  }

  .site-footer {
    flex-direction: column;
  }
}
