:root {
  --ink: #25211f;
  --muted: #6d625d;
  --paper: #fffaf6;
  --soft: #f6e8e5;
  --blush: #e95f7d;
  --coral: #f06f45;
  --sage: #7d9b84;
  --line: rgba(37, 33, 31, 0.14);
  --shadow: 0 18px 50px rgba(78, 46, 34, 0.13);
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 246, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: block;
  width: clamp(210px, 32vw, 390px);
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: var(--soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(37, 33, 31, 0.16);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(255, 250, 246, 0.96) 0%, rgba(255, 250, 246, 0.82) 42%, rgba(255, 250, 246, 0.12) 75%),
    url("../images/pouches_1920.jpg") center / cover no-repeat;
}

.hero-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0 78px;
}

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

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

h1 {
  max-width: 690px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.96;
  font-weight: 500;
}

.lead {
  max-width: 600px;
  color: #4f4541;
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

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

.section {
  padding: 86px 0;
}

.section.alt {
  background: #fff;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1;
  font-weight: 500;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.06rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.feature p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.portrait {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
}

.store-panel {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, #fff7f3 100%);
}

.store-panel .status {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(125, 155, 132, 0.16);
  color: #47684f;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-hero {
  padding: 78px 0 46px;
  background: #fff;
}

.gallery-hero h1,
.store-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--soft);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-card:hover img {
  transform: scale(1.035);
}

.crop-left img {
  object-position: 18% 54%;
}

.crop-top img {
  object-position: 66% 22%;
}

.crop-bottom img {
  object-position: 60% 78%;
}

.crop-center img {
  object-position: 45% 48%;
}

.crop-coral img {
  object-position: 72% 20%;
}

.crop-pink img {
  object-position: 70% 74%;
}

.product-info {
  padding: 18px;
}

.product-info h2 {
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.product-info p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.store-hero {
  display: grid;
  align-items: center;
  min-height: calc(100svh - 76px);
  padding: 70px 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 246, 0.98), rgba(255, 250, 246, 0.78)),
    url("../images/pouches_1920.jpg") center / cover no-repeat;
}

.store-card {
  max-width: 720px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.9);
  box-shadow: var(--shadow);
}

.store-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.store-list li {
  padding-left: 18px;
  border-left: 3px solid var(--blush);
  color: var(--muted);
}

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 40px));
  min-height: 84px;
  margin: 0 auto;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-inner img {
  width: 210px;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
    gap: 8px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .store-hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 70px 0;
  }

  .split,
  .feature-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 0;
  }
}

@media (max-width: 520px) {
  .nav,
  .wrap,
  .hero-inner,
  .footer-inner {
    width: min(100% - 28px, 1120px);
  }

  .brand {
    width: min(100%, 300px);
  }

  .nav-links a {
    padding: 9px 10px;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
