:root {
  --ink: #26312f;
  --muted: #66736d;
  --paper: #fffdf9;
  --sea: #8ebeb5;
  --coral: #d98277;
  --sage: #8da174;
  --shell: #f4ece4;
  --line: rgba(38, 49, 47, 0.16);
  --shadow: 0 24px 70px rgba(38, 49, 47, 0.18);
}

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

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fffdf9;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  object-position: center;
  padding: 0;
  border-radius: 50%;
  background: #fff3f1;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  opacity: 0.92;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 118px clamp(20px, 7vw, 92px) 72px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(34, 45, 42, 0.78) 0%, rgba(34, 45, 42, 0.5) 44%, rgba(34, 45, 42, 0.12) 100%),
    linear-gradient(180deg, rgba(34, 45, 42, 0.18), rgba(34, 45, 42, 0.3));
}

.hero-content {
  max-width: 690px;
  color: #fffdf9;
}

.eyebrow {
  margin: 0 0 14px;
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 560px;
  margin: 26px 0 30px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.signup-form {
  display: flex;
  width: min(100%, 520px);
  min-height: 58px;
  padding: 6px;
  border: 1px solid rgba(255, 253, 249, 0.5);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.16);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.signup-form input,
.signup-form button {
  min-width: 0;
  border: 0;
  border-radius: 6px;
  font: inherit;
}

.signup-form input {
  flex: 1;
  padding: 0 16px;
  color: #fffdf9;
  background: transparent;
  outline: none;
}

.signup-form input::placeholder {
  color: rgba(255, 253, 249, 0.74);
}

.signup-form button {
  flex: 0 0 auto;
  padding: 0 18px;
  color: var(--ink);
  background: #fffdf9;
  font-weight: 800;
  cursor: pointer;
}

.form-note {
  min-height: 24px;
  margin: 13px 0 0;
  color: rgba(255, 253, 249, 0.78);
  font-size: 0.95rem;
}

.form-note a {
  color: #fffdf9;
  font-weight: 800;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.intro,
.story,
.join {
  padding: clamp(56px, 9vw, 118px) clamp(20px, 7vw, 92px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(36px, 6vw, 78px);
  background: var(--paper);
}

.intro .eyebrow,
.story .eyebrow,
.join .eyebrow {
  color: var(--coral);
}

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

.goods-card {
  color: inherit;
  text-decoration: none;
  min-height: 218px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.goods-card:hover {
  border-color: rgba(217, 130, 119, 0.55);
  box-shadow: 0 16px 38px rgba(38, 49, 47, 0.08);
  transform: translateY(-2px);
}

.goods-kicker {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--sea);
  font-weight: 900;
}

.goods-card p {
  margin: 0;
  color: var(--muted);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: end;
  background: var(--shell);
}

.story-copy p:last-child {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.detail-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.detail-list div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list dt {
  color: var(--muted);
}

.detail-list dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.join {
  color: #fffdf9;
  background: var(--ink);
}

.join h2 {
  max-width: 900px;
}

.contact-link {
  display: inline-block;
  margin-top: 30px;
  color: #fffdf9;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 7vw, 92px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.affiliate-note {
  flex-basis: 100%;
  font-size: 0.78rem;
  color: rgba(102, 115, 109, 0.78);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .site-header {
    color: var(--ink);
    background: rgba(255, 253, 249, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: 90vh;
    padding-top: 130px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(34, 45, 42, 0.7) 0%, rgba(34, 45, 42, 0.48) 52%, rgba(34, 45, 42, 0.32) 100%);
  }

  .intro,
  .story {
    grid-template-columns: 1fr;
  }

  .goods-grid {
    grid-template-columns: 1fr;
  }

  .goods-card {
    min-height: 170px;
  }
}

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

  .hero {
    min-height: 88vh;
    padding-inline: 18px;
  }

  .signup-form {
    flex-direction: column;
    gap: 6px;
    min-height: 112px;
  }

  .signup-form input,
  .signup-form button {
    min-height: 48px;
  }

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