:root {
  --bg: #f5efe7;
  --surface: #ffffff;
  --surface-2: #f1e6d8;
  --text: #14213d;
  --muted: #64748b;
  --accent: #b77b3f;
  --accent-2: #e3b07a;
  --border: rgba(20, 33, 61, 0.08);
  --shadow: 0 18px 44px rgba(15, 23, 42, 0.06);

  /* spacing */
  --space-xs: 0.4rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;

  /* geometry */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --card-bg: #ffffff;
  --card-border: rgba(20,33,61,0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #fbf7f2 0%, #f4ece2 100%);
  line-height: 1.6;

}

.image-card-caption {
  padding: 1.2rem 1.25rem;
  background: linear-gradient(180deg, rgba(251,247,242,0.96), rgba(241,230,213,0.96));
  color: rgba(20,33,61,0.95);
  border-top: 1px solid rgba(20,33,61,0.06);
}

.image-card-caption span {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(139,94,60,0.95);
}


.image-card-caption strong {
  display: block;
  font-size: 1rem;
  color: rgba(20,33,61,0.95);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

/* Links: modern, clear and accessible */
a {
  color: var(--accent);
  text-decoration: none;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

 a:hover {
  color: var(--accent-2);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

 a:focus-visible {
  outline: 3px solid rgba(183,123,63,0.16);
  outline-offset: 3px;
  border-radius: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(183,123,63,0.98), rgba(227,176,122,0.96));
  color: #fff8ef;
}

.brand-text {
  color: var(--text);
  font-weight: 700;
}

.site-nav {
  display: flex;
  gap: 1.3rem;
  color: var(--muted);
}

.site-nav a {
  color: var(--muted);
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(20,33,61,0.04);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  transition: 0.3s ease;
}

.hero {
  position: relative;
  padding: 5rem 0 3rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* warm, modern overlay for teak wood photo */
  background: linear-gradient(95deg, rgba(16,12,8,0.78) 0%, rgba(35,24,16,0.48) 45%, rgba(255,245,232,0.04) 100%), url('https://images.unsplash.com/photo-1503602642458-232111445657?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 123, 63, 0.28), rgba(183, 123, 63, 0) 70%);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

/* hero copy: ensure high-contrast, warm and modern */
.hero-copy h1 {
  color: #ffffff;
  font-weight: 800;
}

.hero-copy .hero-text {
  color: rgba(255,245,235,0.92);
  font-size: 1.05rem;
}

.eyebrow {
  color: var(--accent);
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent-2);
  margin-bottom: 0.9rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.hero-text,
.section-heading p,
.about-grid p,
.step-card p,
.testimonial-card p,
.cta-box p,
.product-card p {
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 3px solid rgba(183,123,63,0.14);
  outline-offset: 3px;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(183,123,63,0.14);
  border-color: transparent;
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(183,123,63,0.18);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--card-border);
}

.btn-secondary:hover {
  background: rgba(20,33,61,0.04);
}



.benefits-strip {
  background: linear-gradient(180deg, rgba(255,245,235,0.16), rgba(255,255,255,0.08));
  padding: 4rem 0 3.5rem;
}

.benefits-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.25rem;
}

.benefits-header .eyebrow {
  color: var(--accent);
  letter-spacing: 0.22em;
  margin-bottom: 0.85rem;
}

.benefits-header h2 {
  margin-bottom: 0.85rem;
}

.benefits-header p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.benefit-card {
  display: grid;
  gap: 1rem;
  padding: 1.85rem 1.5rem;
  border-radius: 26px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(20,33,61,0.08);
  box-shadow: 0 20px 50px rgba(15,23,42,0.06);
}

.benefit-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 220px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.benefit-card h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--text);
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.hero-media .image-card-caption {
  padding: 1.6rem 1.35rem;
  background: rgba(8, 12, 20, 0.95);
  border-top: 1px solid rgba(255,255,255,0.16);
}

.image-card-caption span {
  color: #f5d5a4;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
}

.image-card-caption strong {
  color: #ffffff;
  font-size: 1.15rem;
  line-height: 1.5;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.image-card {
  width: min(100%, 440px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.image-card-caption {
  background: rgba(8, 12, 20, 0.95);
  border-top: 1px solid rgba(255,255,255,0.16);
}

.image-card-caption span {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f5d5a4;
}

.image-card-caption strong {
  display: block;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.45;
}



.section {
  padding: 4.5rem 0;
}

.alt-section {
  background: rgba(255,255,255,0.03);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-surface {
  background: rgba(255,255,255,0.55);
}

.cards-grid,
.steps-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product-card,
.step-card,
.testimonial-card {
  padding: 1.4rem;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.step-image {
  width: 100%;
  min-height: 180px;
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 1rem;
  background: var(--surface);
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card-illustration {
  height: 160px;
  border-radius: 18px;
  margin-bottom: 1rem;
  background-size: cover;
  background-position: center;
}

.card-illustration.packaging {
  background: linear-gradient(135deg, rgba(255,127,42,0.35), rgba(255,255,255,0.08)), url('https://images.unsplash.com/photo-1512436991641-6745cdb1723f?auto=format&fit=crop&w=900&q=80');
}

.card-illustration.kits {
  background: linear-gradient(135deg, rgba(255,127,42,0.35), rgba(255,255,255,0.08)), url('https://images.unsplash.com/photo-1517705008128-361805f42e86?auto=format&fit=crop&w=900&q=80');
}

.card-illustration.gift {
  background: linear-gradient(135deg, rgba(255,127,42,0.35), rgba(255,255,255,0.08)), url('https://images.unsplash.com/photo-1519345182560-3f2917c472ef?auto=format&fit=crop&w=900&q=80');
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.about-media img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.feature-list > div {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
}

.feature-list strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--accent-2);
}

.feature-list span {
  color: var(--muted);
}

.collection-section {
  padding-top: 3rem;
}

.carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.carousel-stage {
  position: relative;
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.carousel-stage > .carousel-slide {
  display: none;
}

.carousel-stage > .carousel-slide.active {
  display: block;
}

.carousel-track {
  display: flex;
  transition: transform 450ms ease;
}

.carousel-track .carousel-slide {
  min-width: 100%;
  flex: 0 0 100%;
  position: relative;
  display: block;
}

.testimonial-carousel .carousel-stage {
  min-height: auto;
  border: none;
  background: transparent;
}

.testimonial-carousel .carousel-track {
  padding: 1rem 0;
}

.testimonial-carousel .carousel-slide {
  display: block;
}

.testimonial-carousel .testimonial-card {
  max-width: 770px;
  margin: 0 auto;
}

.testimonial-carousel .carousel-btn {
  background: rgba(255,255,255,0.94);
  color: var(--text);
}

.testimonial-carousel .carousel-dots {
  justify-content: center;
  margin-top: 1.5rem;
}

@media (max-width: 700px) {
  .testimonial-carousel .carousel-dots {
    display: none;
  }
}

.carousel-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.carousel-slide .slide-content {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.18));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}

.slide-content {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.18));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}

.slide-content h3 {
  margin-bottom: 0.3rem;
  color: #fff;
}

.slide-content p {
  margin: 0;
  color: rgba(255,255,255,0.86);
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  cursor: pointer;
  font-size: 1.1rem;
  display: inline-grid;
  place-items: center;
  transition: transform 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--accent-2);
}

.carousel-btn:hover { transform: translateY(-3px); background: rgba(255,255,255,0.12); }
.carousel-btn:focus-visible { outline: 3px solid rgba(183,123,63,0.12); outline-offset: 3px; }

.carousel-dot { transition: transform 160ms ease, background 160ms ease; }
.carousel-dot.active { transform: scale(1.12); }

.testimonial-section {
  background: linear-gradient(135deg, rgba(200, 139, 74, 0.18), rgba(255,255,255,0.02));
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(139, 94, 60, 0.28), rgba(255,255,255,0.06));
  border: 1px solid var(--border);
}

.site-footer {
  padding: 1.2rem 0 2rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 40;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 30px rgba(76, 124, 125, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 36px rgba(76, 124, 125, 0.28);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.mobile-bottom-cta {
  display: none;
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .cards-grid,
  .steps-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .about-grid {
    gap: 1.5rem;
  }

  .benefits-grid {
    gap: 1.25rem;
  }

  .carousel {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }

  .carousel-stage {
    min-height: 360px;
  }

  .carousel-slide img {
    height: 360px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(7, 17, 31, 0.95);
    border: 1px solid var(--border);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a { color: #fff; }
  .site-nav a:hover, .site-nav a:focus-visible { background: rgba(255,255,255,0.04); color: #fff; }

  .hero {
    padding-top: 3rem;
  }

  .hero-actions,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .hero-copy .hero-text {
    font-size: 1rem;
  }

  .benefits-strip {
    padding: 3rem 0 2.5rem;
  }

  .benefits-header {
    margin-bottom: 1.75rem;
  }

  .benefit-card {
    padding: 1.4rem 1.2rem;
  }

  .benefit-image {
    min-height: 160px;
    aspect-ratio: 4 / 3;
  }

  .benefit-card h3 {
    font-size: 1.12rem;
  }

  .benefit-card p {
    font-size: 0.96rem;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 54px;
    height: 54px;
  }

  .mobile-bottom-cta {
    display: inline-flex;
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 45;
    justify-content: center;
    padding: 1rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 18px 40px rgba(76, 124, 125, 0.2);
    transition: transform 160ms ease, box-shadow 160ms ease;
  }

  .mobile-bottom-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(76, 124, 125, 0.24);
  }

  .whatsapp-float {
    display: none;
  }

  body {
    padding-bottom: 6rem;
  }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms cubic-bezier(.2,.9,.3,1), transform 650ms cubic-bezier(.2,.9,.3,1);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Slight stagger helpers */
.reveal.delay-1 { transition-delay: 120ms; }
.reveal.delay-2 { transition-delay: 240ms; }
.reveal.delay-3 { transition-delay: 360ms; }

/* Specific entrance directions */
.reveal.from-left { transform: translateX(-18px); }
.reveal.from-right { transform: translateX(18px); }


/* Mobile refinements: typography, spacing, buttons */
@media (max-width: 480px) {
  .hero {
    padding: 3.2rem 0 2rem;
    min-height: 58vh;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .hero-copy h1 {
    font-size: 1.6rem;
    line-height: 1.15;
  }

  .hero-copy .hero-text {
    font-size: 0.97rem;
    margin-top: 0.6rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .btn {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 12px;
    font-size: 1rem;
  }

  .image-card {
    display: none;
  }

  .benefits-strip {
    padding: 2.5rem 0 2rem;
  }

  .benefits-grid {
    gap: 1rem;
  }

  .benefit-card {
    padding: 1.2rem 1rem;
  }

  .benefit-image {
    min-height: 140px;
  }

  .benefit-card h3 {
    font-size: 1.08rem;
  }

  .benefit-card p {
    font-size: 0.95rem;
  }

  .carousel-stage {
    min-height: 300px;
  }

  .carousel-slide img {
    height: 300px;
  }

  .carousel-dots {
    gap: 0.5rem;
  }

  .carousel-dot {
    width: 12px;
    height: 12px;
  }

  .footer-wrap {
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .whatsapp-float {
    right: 0.8rem;
    bottom: 0.9rem;
    width: 50px;
    height: 50px;
  }
}
