:root {
  --bg: #f4efe5;
  --bg-deep: #e4d4bb;
  --ink: #1e1d19;
  --muted: #5c5a50;
  --line: rgba(30, 29, 25, 0.12);
  --panel: rgba(255, 250, 242, 0.72);
  --panel-strong: rgba(255, 249, 238, 0.92);
  --teal: #6ea8a3;
  --teal-deep: #2e6664;
  --gold: #d9b96b;
  --shadow: 0 22px 50px rgba(39, 30, 12, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(217, 185, 107, 0.24), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(110, 168, 163, 0.22), transparent 24%),
    linear-gradient(180deg, #f7f2ea 0%, var(--bg) 52%, #efe6d8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 82%);
  opacity: 0.35;
}

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.2rem 0 3.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0 1.5rem;
  backdrop-filter: blur(14px);
}

.wordmark,
.header-link,
.button,
.shop-card {
  text-decoration: none;
}

.wordmark {
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.2vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.header-link {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  padding: 1.2rem 0 3rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-label,
.shop-tag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 800;
}

.eyebrow,
.section-label {
  color: var(--teal-deep);
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

h1 {
  margin-top: 0.55rem;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  max-width: 10ch;
}

h1 span {
  color: var(--teal-deep);
}

h2 {
  margin-top: 0.45rem;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.lede,
.story-card p,
.shop-copy p,
.closing-note p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.03rem;
}

.lede {
  max-width: 57ch;
  margin: 1.3rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.shop-card:hover,
.header-link:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #f8f7f3;
  background: linear-gradient(135deg, #254948 0%, #427a78 100%);
  box-shadow: 0 16px 30px rgba(46, 102, 100, 0.25);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(30, 29, 25, 0.08);
}

.impact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.7rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 248, 235, 0.95);
  border: 1px solid rgba(30, 29, 25, 0.08);
  box-shadow: 0 10px 24px rgba(50, 38, 13, 0.08);
}

.impact-pill strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  min-height: 3rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  color: #f8f7f3;
  background: linear-gradient(135deg, #bf9750, #dabf7b);
  font-size: 1rem;
}

.hero-art {
  position: relative;
}

.art-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2vw, 1.8rem);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.82), rgba(243, 232, 214, 0.92)),
    rgba(255, 252, 246, 0.65);
  box-shadow: var(--shadow);
}

.art-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.8), transparent 24%),
    linear-gradient(135deg, rgba(110, 168, 163, 0.08), rgba(217, 185, 107, 0.08));
}

.art-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 26px rgba(17, 16, 12, 0.16));
}

.story-grid,
.shop-section {
  margin-top: 2rem;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.story-card,
.shop-section {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.story-card {
  padding: 1.7rem;
}

.story-card::after,
.shop-section::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 8rem;
  height: 8rem;
  background: radial-gradient(circle, rgba(110, 168, 163, 0.18), transparent 70%);
  transform: translate(-25%, 25%);
}

.fine-print {
  font-size: 0.92rem;
}

.shop-section {
  padding: 1.7rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.shop-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
  padding: 1.35rem;
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--panel-strong);
  border: 1px solid rgba(30, 29, 25, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.shop-card strong {
  font-size: 1.25rem;
}

.shop-card span:last-child {
  color: var(--muted);
  line-height: 1.6;
}

.shop-card:hover {
  box-shadow: 0 20px 34px rgba(39, 30, 12, 0.12);
  border-color: rgba(46, 102, 100, 0.22);
}

.closing-note {
  padding: 2.7rem 0 1rem;
  text-align: center;
}

.closing-note p {
  margin: 0 auto;
  max-width: 36ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  color: #2d2a1f;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .hero-copy {
    max-width: 42rem;
  }

  .hero-art {
    max-width: 52rem;
    width: 100%;
  }

  .art-frame {
    padding: 1.1rem;
  }
}

@media (max-width: 900px) {
  .story-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .page-shell {
    width: min(100% - 1.5rem, 1180px);
    padding-top: 0.8rem;
  }

  .site-header {
    padding: 0.8rem 0 1.1rem;
  }

  .hero {
    gap: 1.25rem;
    padding: 0.35rem 0 2.4rem;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 11vw, 5.2rem);
  }

  .lede,
  .story-card p,
  .shop-copy p {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 1rem, 1180px);
    padding-bottom: 2.5rem;
  }

  .site-header {
    align-items: stretch;
    gap: 0.75rem;
    padding-bottom: 0.9rem;
  }

  .wordmark {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .header-link {
    display: inline-flex;
    width: fit-content;
    border-bottom: 0;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 250, 242, 0.82);
    border: 1px solid rgba(30, 29, 25, 0.08);
  }

  .hero {
    gap: 1rem;
    padding: 0.1rem 0 2rem;
  }

  .eyebrow,
  .section-label,
  .shop-tag {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  h1 {
    margin-top: 0.45rem;
    max-width: none;
    font-size: clamp(2.8rem, 13vw, 4.2rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 0.98;
  }

  .lede {
    margin-top: 1rem;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 0.7rem;
    margin-top: 1.2rem;
  }

  .button {
    width: 100%;
    min-height: 3.1rem;
  }

  .impact-pill {
    width: 100%;
    margin-top: 1.15rem;
    padding: 0.9rem;
    border-radius: 24px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .impact-pill strong {
    min-width: 2.8rem;
    min-height: 2.8rem;
  }

  .art-frame {
    border-radius: 26px;
    padding: 0.8rem;
  }

  .story-grid,
  .shop-section {
    margin-top: 1.4rem;
  }

  .story-card,
  .shop-section {
    border-radius: 24px;
  }

  .story-card,
  .shop-section,
  .shop-card {
    padding: 1.15rem;
  }

  .shop-grid {
    gap: 0.8rem;
    margin-top: 1.1rem;
  }

  .shop-card strong {
    font-size: 1.1rem;
  }

  .closing-note {
    padding: 2rem 0 0.5rem;
  }

  .closing-note p {
    max-width: 16ch;
    font-size: clamp(1.8rem, 10vw, 2.4rem);
  }
}

@media (max-width: 420px) {
  .page-shell {
    width: min(100% - 0.75rem, 1180px);
  }

  .site-header {
    padding-top: 0.55rem;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.3rem);
  }

  .impact-pill {
    gap: 0.6rem;
    font-size: 0.94rem;
  }

  .story-card,
  .shop-section,
  .shop-card {
    padding: 1rem;
  }
}
