:root {
  --forest-950: #06170f;
  --forest-900: #0c2a1c;
  --forest-800: #123d28;
  --forest-700: #1a5236;
  --cream: #f7f4ec;
  --cream-dim: #ece7d8;
  --gold: #c9a24b;
  --gold-soft: #e8d6a8;
  --clay: #b57b52;
  --text-dark: #16241c;
  --text-muted: #4d5b52;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow-soft: 0 20px 60px rgba(6, 23, 15, 0.12);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--cream);
  color: var(--text-dark);
  font-family: "Nunito", sans-serif;
  width: 100%;
  overflow-x: hidden;
  line-height: 1.5;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--forest-900);
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
}

.section {
  padding: 70px 6vw;
  position: relative;
  scroll-margin-top: 120px;
}

/* ---------- Reveal animations ---------- */
[data-reveal] {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
[data-reveal="fade-up"] {
  transform: translateY(36px);
}
[data-reveal="fade-down"] {
  transform: translateY(-24px);
}
[data-reveal="fade-left"] {
  transform: translateX(-40px);
}
[data-reveal="fade-right"] {
  transform: translateX(40px);
}
[data-reveal="zoom-in"] {
  transform: scale(0.94);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* ---------- Header ---------- */
.header {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 20px;
  left: 40px;
  right: 40px;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 4px 24px rgba(6, 23, 15, 0.08);
  padding-inline: 32px;
  border-radius: 50px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.logo {
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest-900);
  white-space: nowrap;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-dark);
  position: relative;
  transition: color 0.3s ease;
}

.nav-desktop a::after {
  content: "";
  display: block;
  height: 1px;
  width: 0;
  background-color: var(--forest-900);
  transition: width 0.3s var(--ease);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.get-started-btn {
  background: var(--forest-900);
  color: var(--cream) !important;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 999px;
  transition:
    transform 0.3s var(--ease),
    background 0.3s ease;
  white-space: nowrap;
}

.get-started-btn:hover {
  transform: translateY(-2px);
  background: var(--forest-800);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--forest-900);
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 108px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 20px;
  gap: 6px;
  z-index: 998;
  box-shadow: var(--shadow-soft);
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s var(--ease);
}

.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile a {
  padding: 12px 10px;
  text-decoration: none;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 10px;
}

.nav-mobile a:hover {
  background: var(--cream-dim);
}

.nav-mobile .get-started-btn {
  text-align: center;
  margin-top: 8px;
}

/* ---------- Hero ---------- */
.hero-section {
  min-height: 100dvh;
  background:
    linear-gradient(160deg, var(--forest-800), var(--forest-950)),
    url("images/hero.webp");
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 100px;
}

.hero-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 23, 15, 0.15),
    rgba(6, 23, 15, 0.55)
  );
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 560px;
  width: 100%;
  background: rgba(6, 30, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--cream);
  padding: 52px 44px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 22px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.hero-content h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  color: var(--cream);
  font-style: italic;
  font-weight: 500;
}

.hero-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(247, 244, 236, 0.8);
  max-width: 42ch;
}

.hero-button-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
}

.hero-button-wrapper a {
  text-decoration: none;
  text-align: center;
  min-width: 170px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    background 0.3s ease;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-inline: 22px;
}

.explore-products-btn {
  background: var(--cream);
  color: var(--forest-900);
}

.explore-products-btn:hover {
  transform: translateY(-3px);
}

.our-mission-btn {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.our-mission-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

/* ---------- Feature cards ---------- */
.features-section {
  margin-top: 160px;
  padding-bottom: 70px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -140px;
  position: relative;
  z-index: 3;
}

.feature-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(6, 23, 15, 0.16);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream-dim);
  color: var(--clay);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-style: italic;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---------- Products ---------- */
.products-section {
  padding-top: 40px;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.products-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-style: italic;
  margin-top: 6px;
}

.view-collection {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.products-intro {
  max-width: 46ch;
  color: var(--text-muted);
  margin-top: 18px;
  margin-bottom: 48px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: transparent;
}

.product-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  margin-bottom: 18px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(247, 244, 236, 0.92);
  color: var(--forest-900);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border-radius: 999px;
}

.product-card h3 {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 6px;
}

.product-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  color: var(--clay);
  font-weight: 600;
}

.add-to-order-btn {
  background: var(--forest-900);
  color: var(--cream);
  border: none;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    background 0.3s ease;
}

.add-to-order-btn:hover {
  background: var(--forest-800);
  transform: translateY(-2px);
}

/* ---------- Mission ---------- */
.mission-section {
  background: var(--forest-900);
  border-radius: var(--radius-lg);
  margin-inline: 3vw;
  width: auto;
  color: var(--cream);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.mission-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.mission-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(6, 30, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 20px;
  max-width: 200px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.mission-content .eyebrow {
  color: var(--gold-soft);
}

.mission-content h2 {
  color: var(--cream);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 14px 0 20px;
}

.mission-content p {
  color: rgba(247, 244, 236, 0.75);
  margin-bottom: 24px;
  max-width: 50ch;
}

.mission-content blockquote {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-soft);
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 14px;
}

.quote-author {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 244, 236, 0.6);
}

/* ---------- Testimonials ---------- */
.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-header h2 {
  font-style: italic;
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-top: 8px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--cream);
  border: 1px solid rgba(6, 23, 15, 0.06);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: 0 12px 40px rgba(6, 23, 15, 0.05);
  transition: transform 0.4s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 22px;
  line-height: 1.6;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card strong {
  font-size: 0.9rem;
}

.testimonial-card span {
  font-size: 0.78rem;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ---------- Leadership ---------- */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.leadership-card {
  background: var(--cream);
  border: 1px solid rgba(6, 23, 15, 0.06);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(6, 23, 15, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.leadership-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.leadership-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--forest-900);
  color: var(--gold-soft);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.leadership-card h3 {
  font-size: 1.1rem;
  font-style: italic;
}

.leadership-role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 14px;
}

.leadership-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest-900);
  background: var(--cream-dim);
  padding: 10px 20px;
  border-radius: 999px;
  transition:
    background 0.3s ease,
    transform 0.3s var(--ease);
}

.leadership-phone svg {
  width: 15px;
  height: 15px;
  stroke: var(--clay);
}

.leadership-phone:hover {
  background: var(--forest-900);
  color: var(--cream);
  transform: translateY(-2px);
}

.leadership-phone:hover svg {
  stroke: var(--gold-soft);
}

@media (max-width: 900px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- CTA ---------- */
.cta-section {
  display: flex;
  justify-content: center;
}

.cta-card {
  width: 100%;
  max-width: 900px;
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 70px 40px;
  box-shadow: var(--shadow-soft);
}

.cta-card h2 {
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
}

.cta-card p {
  color: var(--text-muted);
  max-width: 46ch;
  margin: 0 auto 32px;
}

.order-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--forest-900);
  color: var(--cream);
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 0.3s var(--ease),
    background 0.3s ease;
}

.order-now-btn:hover {
  transform: translateY(-3px);
  background: var(--forest-800);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--forest-950);
  color: rgba(247, 244, 236, 0.75);
  padding: 80px 6vw 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(247, 244, 236, 0.1);
}

.footer-brand h3 {
  font-style: italic;
  color: var(--gold-soft);
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 32ch;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(247, 244, 236, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s ease,
    transform 0.3s var(--ease);
}

.footer-social a:hover {
  background: rgba(247, 244, 236, 0.1);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-family: "Nunito", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  font-size: 0.9rem;
  color: rgba(247, 244, 236, 0.7);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-newsletter p {
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  border: 1px solid rgba(247, 244, 236, 0.2);
  border-radius: 999px;
  overflow: hidden;
  padding: 4px;
}

.newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--cream);
  font-size: 0.85rem;
  padding: 10px 16px;
}

.newsletter-form input::placeholder {
  color: rgba(247, 244, 236, 0.4);
}

.newsletter-form button {
  background: var(--gold);
  color: var(--forest-950);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.3s var(--ease);
}

.newsletter-form button:hover {
  transform: scale(1.08);
}

.footer-bottom {
  padding-top: 28px;
  font-size: 0.8rem;
  text-align: center;
  color: rgba(247, 244, 236, 0.45);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -100px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .mission-image-wrapper {
    max-width: 420px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 70px 6vw;
  }

  .header {
    left: 16px;
    right: 16px;
    top: 14px;
    padding-inline: 20px;
  }

  .nav-desktop,
  .get-started-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-mobile.open {
    display: flex;
  }

  .hero-section {
    padding-top: 120px;
  }

  .hero-content {
    padding: 36px 26px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-swatches {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-button-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-button-wrapper a {
    width: 100%;
    min-width: 0;
  }

  .cta-card {
    padding: 48px 24px;
  }
}
