
:root {
  --white: #ffffff;
  --sage: #8faa8a;
  --sage-dark: #6d8968;
  --sage-light: #b8ccb4;
  --grey-light: #d6d2cc;
  --grey-mid: #b0aba3;
  --charcoal: #2d2d2d;
  --charcoal-soft: #4a4a4a;
  --blush: #e8c9b8;
  --blush-dark: #d4a98a;
  --cream: #faf8f5;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Karla', system-ui, sans-serif;

  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1.25rem);
  --space-md: clamp(1.25rem, 3vw, 2rem);
  --space-lg: clamp(2rem, 5vw, 3.5rem);
  --space-xl: clamp(3rem, 7vw, 5.5rem);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-soft: 0 4px 20px rgba(45,45,45,0.08);
  --shadow-card: 0 2px 12px rgba(45,45,45,0.10);

  --max-width: 1200px;
  --header-h: 72px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }


.container {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.section-sub {
  max-width: 560px;
  margin-inline: auto;
  color: var(--charcoal-soft);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.75rem;
  border-radius: 40px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--sage);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(143,170,138,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.65);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--grey-light);
}
.btn--ghost-dark:hover {
  border-color: var(--charcoal);
}

.btn--sage {
  background: var(--sage);
  color: var(--white);
  font-size: 0.95rem;
}
.btn--sage:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn--outline:hover {
  background: var(--charcoal);
  color: var(--white);
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,245,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--grey-light);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  max-width: calc(var(--max-width) + 6rem);
  margin-inline: auto;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--charcoal);
  border-bottom-color: var(--sage);
}

.nav-cta {
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: 40px;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
}

.nav-cta:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 3px;
}

.nav-cta--mobile { display: none; }

@media (max-width: 680px) {
  .main-nav { display: none; }
  .nav-cta--mobile { display: inline-flex; }
}


.hero {
  position: relative;
  overflow: hidden;
}

.hero-slides {
  position: relative;
}

input[name="hero-slide"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

#s1:checked ~ .slide-1,
#s2:checked ~ .slide-2,
#s3:checked ~ .slide-3 {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: clamp(480px, 80vh, 760px);
  object-fit: cover;
  display: block;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(45,45,45,0.62) 0%,
    rgba(45,45,45,0.38) 55%,
    rgba(45,45,45,0.15) 100%
  );
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: clamp(1.5rem, 8vw, 7rem);
  padding-block: 2rem;
  max-width: 780px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 0.75rem;
}

.slide-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1rem;
}

.slide-content h1 em {
  font-style: italic;
  color: var(--blush);
}

.hero-body {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.88);
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-controls {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  display: block;
}

#s1:checked ~ .hero-controls label:nth-child(1),
#s2:checked ~ .hero-controls label:nth-child(2),
#s3:checked ~ .hero-controls label:nth-child(3) {
  background: var(--white);
  transform: scale(1.2);
}

.dot:hover { background: rgba(255,255,255,0.75); }


.samples-bar {
  background: var(--blush);
  padding-block: var(--space-md);
}

.samples-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.samples-bar__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}

.samples-bar__text p {
  font-size: 0.95rem;
  color: var(--charcoal-soft);
}


.values {
  padding-block: var(--space-xl);
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.value-card {
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  border-radius: var(--radius-md);
  transition: background 0.2s;
}

.value-card:hover {
  background: var(--cream);
}

.value-icon {
  width: 52px;
  height: 52px;
  margin-inline: auto;
  margin-bottom: 1rem;
  color: var(--sage);
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--charcoal-soft);
  line-height: 1.65;
}


.products {
  padding-block: var(--space-xl);
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
  margin-bottom: var(--space-lg);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(45,45,45,0.14);
}

.product-img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-img-wrap img {
  transition: transform 0.45s ease;
}

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

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--sage);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
}

.product-info {
  padding: 1.25rem 1.4rem 1.5rem;
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.product-info p {
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.product-price {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.85rem;
}

.product-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  border-bottom: 1.5px solid var(--charcoal);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.product-link:hover {
  color: var(--sage-dark);
  border-color: var(--sage-dark);
}

.products-cta {
  text-align: center;
}


.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.story-img {
  position: relative;
  overflow: hidden;
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.story-split:hover .story-img img {
  transform: scale(1.03);
}

.story-text {
  background: var(--grey-light);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.75rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.story-text p {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--charcoal-soft);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

@media (max-width: 760px) {
  .story-split {
    grid-template-columns: 1fr;
  }

  .story-img {
    aspect-ratio: 16 / 9;
  }

  .story-img img {
    height: 100%;
  }
}


.categories {
  padding-block: var(--space-xl);
  background: var(--white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.cat-card {
  display: block;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-card);
}

.cat-img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,45,45,0.65) 0%, rgba(45,45,45,0.10) 55%);
  transition: opacity 0.3s;
}

.cat-card:hover::after {
  opacity: 0.85;
}

.cat-card img {
  transition: transform 0.45s ease;
}

.cat-card:hover img {
  transform: scale(1.06);
}

.cat-label {
  position: absolute;
  bottom: 1.1rem;
  left: 1rem;
  right: 1rem;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  text-align: center;
}

.cat-card:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 3px;
}


.contact-band {
  background: var(--charcoal);
  padding-block: var(--space-lg);
}

.contact-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.contact-band__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.contact-band__text p {
  font-size: 0.95rem;
  color: var(--grey-light);
}

.contact-band__links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-shrink: 0;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--grey-light);
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--blush);
}

.contact-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--sage-light);
}


.site-footer {
  background: #1e1e1e;
  padding-top: var(--space-lg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: var(--space-lg);
}

@media (max-width: 800px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  display: inline-block;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}

.footer-logo:hover {
  color: var(--blush);
}

.footer-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 0.5rem;
}

.footer-location {
  font-size: 0.88rem;
  color: var(--grey-mid);
}

.footer-nav-group h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 1rem;
}

.footer-nav-group ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav-group a {
  font-size: 0.88rem;
  color: var(--grey-light);
  transition: color 0.2s;
}

.footer-nav-group a:hover {
  color: var(--white);
}

.footer-base {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 1.25rem;
  text-align: center;
}

.footer-base p {
  font-size: 0.8rem;
  color: var(--grey-mid);
}



.about-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 55vh, 580px);
  display: flex;
  align-items: flex-end;
}

.about-hero__img {
  position: absolute;
  inset: 0;
}

.about-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(45,45,45,0.68) 0%,
    rgba(45,45,45,0.35) 60%,
    rgba(45,45,45,0.12) 100%
  );
}

.about-hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 7vw, 5rem) clamp(1.5rem, 8vw, 7rem);
  max-width: 720px;
}

.about-hero__content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1rem;
}

.about-hero__content h1 em {
  font-style: italic;
  color: var(--blush);
}

.about-hero__content .hero-body {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.88);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 0;
}

.about-intro {
  padding-block: var(--space-xl);
  background: var(--white);
}

.about-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-intro__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.about-intro__text p {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--charcoal-soft);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-intro__text p:last-child {
  margin-bottom: 0;
}

.about-intro__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}

.about-intro__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-intro__img:hover img {
  transform: scale(1.03);
}

@media (max-width: 760px) {
  .about-intro__inner {
    grid-template-columns: 1fr;
  }

  .about-intro__img {
    aspect-ratio: 16 / 9;
    order: -1;
  }
}

.about-offer {
  padding-block: var(--space-xl);
  background: var(--cream);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(45,45,45,0.13);
}

.offer-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.offer-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.offer-card:hover .offer-card__img img {
  transform: scale(1.04);
}

.offer-card__body {
  padding: 1.25rem 1.4rem 1.5rem;
}

.offer-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.offer-card__body p {
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.about-process {
  padding-block: var(--space-xl);
  background: var(--grey-light);
}

.process-steps {
  list-style: none;
  counter-reset: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin-inline: auto;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 clamp(1rem, 3vw, 2.5rem);
  padding-block: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(45,45,45,0.12);
  align-items: start;
}

.process-step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--sage-light);
  line-height: 1;
  padding-top: 0.1rem;
  flex-shrink: 0;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.step-body p {
  font-size: clamp(0.88rem, 1.3vw, 0.98rem);
  color: var(--charcoal-soft);
  line-height: 1.75;
}

@media (max-width: 480px) {
  .process-step {
    grid-template-columns: 56px 1fr;
  }
}

.about-values-strip {
  padding-block: var(--space-xl);
  background: var(--white);
}

.avstrip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.avstrip-item {
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  border-radius: var(--radius-md);
  transition: background 0.2s;
}

.avstrip-item:hover {
  background: var(--cream);
}

.avstrip-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.avstrip-item p {
  font-size: 0.92rem;
  color: var(--charcoal-soft);
  line-height: 1.65;
}

.avstrip-item .value-icon {
  margin-bottom: 1rem;
}



.shop-hero {
  position: relative;
  height: clamp(420px, 68vh, 680px);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.shop-hero__img {
  position: absolute;
  inset: 0;
}

.shop-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(45,45,45,0.66) 0%,
    rgba(45,45,45,0.38) 55%,
    rgba(45,45,45,0.12) 100%
  );
}

.shop-hero__content {
  position: relative;
  z-index: 1;
  padding-inline: clamp(1.5rem, 8vw, 7rem);
  padding-block: 2rem;
  max-width: 740px;
}

.shop-hero__content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1rem;
}

.shop-hero__content h1 em {
  font-style: italic;
  color: var(--blush);
}

.category-nav {
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  position: sticky;
  top: var(--header-h);
  z-index: 80;
}

.category-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding-block: 0.75rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-nav__list::-webkit-scrollbar {
  display: none;
}

.cat-pill {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal-soft);
  padding: 0.4rem 1rem;
  border-radius: 40px;
  border: 1.5px solid var(--grey-light);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.cat-pill:hover {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

.cat-pill:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 3px;
}

.shop-samples-bar {
  background: var(--blush);
  padding-block: 1rem;
}

.shop-samples-bar__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.samples-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--charcoal);
  opacity: 0.7;
}

.shop-samples-bar__inner p {
  flex: 1;
  font-size: 0.92rem;
  color: var(--charcoal-soft);
  min-width: 200px;
}

.shop-section {
  padding-block: var(--space-xl);
  background: var(--cream);
}

.shop-section--tinted {
  background: var(--white);
}

.products-grid--wide {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.product-img-wrap--tall {
  aspect-ratio: 3 / 4;
}

.custom-cta-section {
  background: var(--grey-light);
  overflow: hidden;
}

.custom-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  align-items: stretch;
  padding-inline: 0;
  max-width: 100%;
}

.custom-cta__img {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.custom-cta__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.custom-cta-section:hover .custom-cta__img img {
  transform: scale(1.03);
}

.custom-cta__text {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.75rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.custom-cta__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.custom-cta__text p {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--charcoal-soft);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

@media (max-width: 760px) {
  .custom-cta__inner {
    grid-template-columns: 1fr;
  }

  .custom-cta__img {
    aspect-ratio: 16 / 9;
    min-height: unset;
  }
}

@media (max-width: 540px) {
  .shop-samples-bar__inner {
    justify-content: center;
    text-align: center;
  }

  .samples-icon {
    display: none;
  }
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}
