/* ─────────────────────────────────────────────────────────────────
   ELĀRA — Design System
   Palette: Cream #F5EFE4 | Sand #E8DCC8 | Dark #2A1F14 | Rust #B54B2A | Muted Green #5A6B4A
───────────────────────────────────────────────────────────────── */

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

:root {
  --cream: #F5EFE4;
  --sand: #EDE3D1;
  --dark: #2A1F14;
  --dark-2: #1C150D;
  --rust: #B54B2A;
  --rust-light: #C96040;
  --green: #5A6B4A;
  --beige: #D9C8B0;
  --text-body: #4A3B2C;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
}

/* ─── UTILITIES ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.divider {
  width: 48px;
  height: 2px;
  background: var(--rust);
  margin: 2rem 0;
}

.divider--rust {
  background: var(--rust-light);
}

.divider--beige {
  background: var(--beige);
}

.text-center .divider {
  margin: 2rem auto;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}

.btn:hover::after {
  transform: translateX(0);
}

.btn--dark {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}

.btn--dark:hover {
  background: var(--rust);
  border-color: var(--rust);
}

.btn--light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 239, 228, 0.7);
}

.btn--light:hover {
  background: var(--cream);
  color: var(--dark);
  border-color: var(--cream);
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s ease 0.2s, transform 0.9s ease 0.2s;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(42, 31, 20, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.6rem 2.5rem;
}

.nav__logo-link {
  display: flex;
  align-items: center;
}

.nav__logo {
  height: 120px;
  width: auto;
  opacity: 1;
  transition: var(--transition);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
}

.nav.scrolled .nav__logo {
  height: 90px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(245, 239, 228, 0.75);
  transition: color 0.3s;
}

.nav__links a:hover {
  color: var(--cream);
}

.nav__cta-btn {
  padding: 0.55rem 1.4rem !important;
  border: 1px solid rgba(245, 239, 228, 0.5) !important;
  color: var(--cream) !important;
  transition: var(--transition) !important;
}

.nav__cta-btn:hover {
  background: var(--cream) !important;
  color: var(--dark) !important;
  border-color: var(--cream) !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}

.nav__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav__mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-link {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-link:hover {
  color: var(--rust-light);
}

.mobile-link--cta {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--rust);
  color: var(--rust) !important;
  padding: 0.8rem 2rem;
  margin-top: 1rem;
}

.mobile-link--cta:hover {
  background: var(--rust);
  color: var(--cream) !important;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero__bg-img {
  transform: scale(1);
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
      rgba(26, 17, 8, 0.35) 0%,
      rgba(26, 17, 8, 0.55) 50%,
      rgba(26, 17, 8, 0.75) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.65);
}

.hero__logo {
  width: clamp(260px, 45vw, 500px);
  filter: drop-shadow(0 4px 32px rgba(0, 0, 0, 0.4));
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
}

.hero__sub {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 239, 228, 0.82);
  max-width: 560px;
  line-height: 1.6;
}

.hero__cta {
  margin-top: 0.5rem;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 60px;
  background: rgba(245, 239, 228, 0.4);
  animation: scrollLine 2s ease-in-out infinite;
}

.hero__scroll-hint p {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.5);
  writing-mode: horizontal-tb;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }

  100% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* ─── SECTIONS ─── */
.section {
  padding: clamp(80px, 10vw, 140px) 2rem;
}

.section--cream {
  background: var(--cream);
}

.section--sand {
  background: var(--sand);
}

.section--dark {
  background: var(--dark-2);
}

.section--rust {
  background: var(--rust);
}

.section__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.2rem;
}

.section__label--light {
  color: rgba(245, 239, 228, 0.45);
}

.section__label--beige {
  color: rgba(237, 227, 209, 0.6);
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--dark);
}

.section__title em {
  font-style: italic;
  color: var(--rust);
}

.section__title--light {
  color: var(--cream);
}

.section__title--light em {
  color: rgba(245, 239, 228, 0.7);
}

.section__title--beige {
  color: var(--beige);
}

.section__title--beige em {
  color: rgba(237, 227, 209, 0.65);
}

.section__body {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-body);
  margin-top: 1.4rem;
}

.section__body--large {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--dark);
}

.section__body--light {
  color: rgba(245, 239, 228, 0.72);
}

.section__body--beige {
  color: rgba(237, 227, 209, 0.82);
}

.section__body--center {
  text-align: center;
  max-width: 600px;
  margin: 2rem auto 0;
}

.section__lead {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--green);
  margin-top: 2rem;
}

/* ─── ABOUT SECTION ─── */
#about {
  display: flex;
  align-items: center;
  gap: 5rem;
  flex-wrap: wrap;
}

#about .container--narrow {
  flex: 1;
  min-width: 280px;
}

.about__image-wrap {
  flex: 1;
  min-width: 280px;
  max-width: 520px;
}

.about__image {
  width: 100%;
  border-radius: 2px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.pill {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--rust);
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0;
}

/* ─── BENEFITS GRID ─── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5px;
  margin: 3.5rem 0 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.benefit-card {
  padding: 2.4rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  transition: background var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.benefit-card:hover {
  background: rgba(181, 75, 42, 0.18);
}

.benefit-card__icon {
  font-size: 1rem;
  color: var(--rust-light);
  margin-bottom: 1.2rem;
  display: block;
}

.benefit-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.7rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: rgba(245, 239, 228, 0.6);
  line-height: 1.7;
}

/* ─── PRODUCT SECTION ─── */
.product-layout {
  display: flex;
  align-items: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.product__info {
  flex: 1;
  min-width: 280px;
}

.product__tags {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 1.8rem 0 2.2rem;
}

.product__tags li {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-body);
  padding-left: 1rem;
  position: relative;
}

.product__tags li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--rust);
}

.product__sizes {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.size-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--beige);
  padding: 1.2rem 2rem;
  transition: var(--transition);
  cursor: default;
}

.size-box:hover {
  border-color: var(--rust);
}

.size-box__weight {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--dark);
}

.size-box__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-top: 0.2rem;
}

.product__image-wrap {
  flex: 1;
  min-width: 280px;
  position: relative;
  display: flex;
  justify-content: center;
}

.product__image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 75, 42, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.product__image {
  width: 100%;
  max-width: 440px;
  object-fit: cover;
  border-radius: 2px;
  aspect-ratio: 3/4;
  transition: transform 0.6s ease;
}

.product__image:hover {
  transform: scale(1.02);
}

/* ─── RITUAL ─── */
.ritual-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 3rem 0 3.5rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(42, 31, 20, 0.12);
}

.step:last-child {
  border-bottom: 1px solid rgba(42, 31, 20, 0.12);
}

.step-connector {
  display: none;
}

.step__number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(181, 75, 42, 0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 70px;
  transition: color 0.4s;
}

.step:hover .step__number {
  color: var(--rust);
}

.step__content h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.step__content p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
}

.section__quote {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--rust);
  text-align: center;
  border-top: 1px solid rgba(42, 31, 20, 0.1);
  padding-top: 2.5rem;
}

/* ─── OUR STORY ─── */
.story-layout {
  display: flex;
  align-items: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.story__content {
  flex: 1;
  min-width: 280px;
}

.story__image-wrap {
  flex: 1;
  min-width: 280px;
}

.story__image {
  width: 100%;
  border-radius: 2px;
  object-fit: cover;
  aspect-ratio: 3/4;
  filter: brightness(0.85) contrast(1.05);
}

.story__tags {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.story__tags span {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(245, 239, 228, 0.55);
}

/* ─── SUSTAINABILITY ─── */
.sustainability__mantra {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--beige);
  margin-top: 3rem;
  letter-spacing: 0.02em;
}

/* ─── NEWSLETTER ─── */
.newsletter-form {
  margin-top: 2.5rem;
}

.newsletter-form__field {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
  border: 1.5px solid var(--beige);
  transition: border-color 0.3s;
}

.newsletter-form__field:focus-within {
  border-color: var(--rust);
}

.newsletter-form__input {
  flex: 1;
  padding: 1rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background: transparent;
  border: none;
  outline: none;
  color: var(--dark);
}

.newsletter-form__input::placeholder {
  color: rgba(42, 31, 20, 0.35);
}

.newsletter-form__btn {
  border: none;
  border-left: 1.5px solid var(--beige);
  white-space: nowrap;
  cursor: pointer;
  font-size: 0.72rem;
  padding: 0.9rem 1.6rem;
}

.newsletter-form__note {
  font-size: 0.72rem;
  color: rgba(42, 31, 20, 0.4);
  letter-spacing: 0.1em;
  margin-top: 1rem;
}

.newsletter-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.newsletter-success.visible {
  display: flex;
}

.success-icon {
  font-size: 1.5rem;
  color: var(--rust);
}

.newsletter-success p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--dark);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--dark-2);
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer__logo {
  height: 200px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
}

.footer__tagline {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.35);
}

.footer__links {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.footer__links a {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--rust-light);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 0.72rem;
  color: rgba(245, 239, 228, 0.25);
  letter-spacing: 0.08em;
}

.footer__made {
  font-style: italic;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  #about {
    flex-direction: column;
    gap: 3rem;
  }

  .about__image-wrap {
    max-width: 100%;
    order: -1;
  }

  .about__image {
    aspect-ratio: 3/2;
  }

  .product-layout {
    flex-direction: column;
    gap: 3rem;
  }

  .product__image-wrap {
    order: -1;
  }

  .story-layout {
    flex-direction: column-reverse;
    gap: 3rem;
  }

  .story__image {
    aspect-ratio: 16/9;
  }

  .newsletter-form__field {
    flex-direction: column;
  }

  .newsletter-form__btn {
    border-left: none;
    border-top: 1.5px solid var(--beige);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 0.9rem 1.2rem;
  }

  .hero__logo {
    width: 220px;
  }

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

  .product__sizes {
    gap: 0.6rem;
  }

  .size-box {
    padding: 0.9rem 1.4rem;
  }
}

/* ─── SCROLLER ─── */
.scroller-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

.scroller-nav {
  display: flex;
  gap: 0.5rem;
}

.scroller-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--beige);
  background: transparent;
  color: var(--rust);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.scroller-btn:hover {
  background: var(--rust);
  color: var(--cream);
  border-color: var(--rust);
}

.product-scroller {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 2rem 4rem;
  gap: 2rem;
}

.product-scroller::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid rgba(42, 31, 20, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(42, 31, 20, 0.08);
}

.product-card--dark {
  background: var(--dark-2);
  justify-content: center;
}

.product-card__img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.05);
}

.product-card__content {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__content--center {
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 100%;
}

.product-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.product-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-card__cta {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(42, 31, 20, 0.1);
  padding-top: 1.2rem;
  transition: color 0.3s;
}

.product-card:hover .product-card__cta {
  color: var(--rust-light);
}

.product-card--dark h3 {
  color: var(--cream);
}

.product-card--dark p {
  color: rgba(245, 239, 228, 0.7);
}

/* ─── PILLARS (Home) ─── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.pillar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.pillar__number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: rgba(181, 75, 42, 0.4);
  margin-bottom: 1rem;
}

.pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
}

.pillar p {
  font-size: 0.95rem;
  color: rgba(245, 239, 228, 0.7);
  line-height: 1.7;
}

/* ─── BREW GUIDES TILES ─── */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.guide-tile {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 2px;
}

.guide-tile__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: transform 0.6s ease;
}

.guide-tile:hover .guide-tile__bg {
  transform: scale(1.05);
  filter: brightness(0.4);
}

.guide-tile__overlay {
  position: absolute;
  inset: 0;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(28, 21, 13, 0.8) 0%, transparent 60%);
  pointer-events: none;
}

.guide-tile__overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.guide-tile__overlay p {
  font-size: 0.85rem;
  color: rgba(245, 239, 228, 0.8);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s ease;
}

.guide-tile:hover .guide-tile__overlay p {
  opacity: 1;
  transform: translateY(0);
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.contact-methods a {
  color: var(--rust);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-methods a:hover {
  color: var(--dark);
}

/* ─── TESTIMONIALS (Horizontal Slider) ─── */
.testimonials-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2rem 2rem 4rem;
  gap: 2rem;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 clamp(280px, 80vw, 400px);
  scroll-snap-align: start;
  background: var(--beige);
  padding: 3rem 2.5rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(42, 31, 20, 0.04);
}

.review-card__stars {
  color: var(--rust);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.review-card__text {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark-2);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 2rem;
}

.review-card__author {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--dark);
  font-weight: 500;
}

/* ─── FAQ SECTION ─── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(42, 31, 20, 0.1);
  padding: 2rem 0;
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 400;
}

.faq-answer {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ─── E-COMMERCE SOON ─── */
.ecommerce-icon-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.ecommerce-tag {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark);
  padding: 0.8rem 1.5rem;
  border: 1px solid rgba(42, 31, 20, 0.2);
  border-radius: 30px;
  background: transparent;
}