/* Sainina Hill - bronze / antique gold theme matched to logo */
:root {
  --accent: #b8923f;
  --accent-bright: #e8cfa0;
  --accent-mid: #c9a25e;
  --accent-deep: #171106;
  --green: var(--accent);
  --green-bright: var(--accent-bright);
  --teal: var(--accent-mid);
  --green-deep: var(--accent-deep);
  --ink: #0a0a0d;
  --ink-soft: #1b1710;
  --muted: #6b6358;
  --line: rgba(23, 17, 6, 0.12);
  --bg: #f7f4ee;
  --bg-elevated: #ffffff;
  --cream: #f0ebe2;
  --gold: #d9b571;
  --bronze: #a97f3d;
  --gold-soft: #eed9ab;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(23, 17, 6, 0.1);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --header-h: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

em {
  font-style: italic;
  color: var(--teal);
}

.container {
  width: min(1440px, calc(100% - 2.5rem));
  margin-inline: auto;
  padding: 0 1.25rem;
}

/* Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 1000;
  background: linear-gradient(90deg, var(--teal), var(--green), var(--gold));
  transition: width 0.05s linear;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  color: var(--ink);
  background: #f7f4ee;
  border-bottom: 1px solid rgba(169, 127, 61, 0.22);
  box-shadow: 0 8px 24px rgba(23, 17, 6, 0.06);
}

.site-header.is-scrolled {
  background: rgba(247, 244, 238, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(23, 17, 6, 0.1);
}

.site-header .site-nav > a:not(.btn) {
  color: var(--ink-soft);
}

.site-header .nav-toggle span {
  background: var(--ink);
}

.site-header .btn-ghost {
  background: rgba(184, 146, 63, 0.12);
  color: var(--green-deep);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: auto;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(169, 127, 61, 0.35));
}

.brand-name {
  font-size: 1.05rem;
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1rem;
}

.site-nav > a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.35rem 0.2rem;
  position: relative;
}

.site-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.site-nav > a:not(.btn):hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--ink);
  margin-inline: auto;
  transition: 0.3s var(--ease);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(184, 146, 63, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 14px 34px rgba(201, 162, 94, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: rgba(23, 17, 6, 0.22);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green-deep);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-ghost {
  background: rgba(184, 146, 63, 0.1);
  color: var(--green-deep);
}

.btn-lg {
  padding: 0.9rem 1.55rem;
  font-size: 0.98rem;
}

.btn-block {
  width: 100%;
}

/* Hero — full-bleed hills background */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 4.5rem 0;
  overflow: hidden;
  color: #f7f2e8;
  background: #171106;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 8s ease;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(23, 17, 6, 0.55) 0%, rgba(23, 17, 6, 0.35) 40%, rgba(23, 17, 6, 0.82) 100%),
    linear-gradient(90deg, rgba(23, 17, 6, 0.72) 0%, rgba(23, 17, 6, 0.25) 55%, rgba(23, 17, 6, 0.45) 100%),
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(184, 146, 63, 0.18), transparent 65%);
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
  animation: orb-drift 12s ease-in-out infinite;
}

.hero-orb--a {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  top: -8%;
  right: 8%;
  background: radial-gradient(circle, rgba(232, 207, 160, 0.45), transparent 70%);
}

.hero-orb--b {
  width: min(40vw, 360px);
  height: min(40vw, 360px);
  bottom: 5%;
  left: -5%;
  background: radial-gradient(circle, rgba(201, 162, 94, 0.3), transparent 70%);
  animation-delay: -4s;
  animation-duration: 15s;
}

.hero-sweep {
  position: absolute;
  inset: -20%;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.05) 48%,
    transparent 62%
  );
  animation: sweep-light 7s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 3;
  padding-inline: clamp(3.75rem, 7vw, 6rem);
}

.hero-copy-stack {
  position: relative;
  min-height: clamp(240px, 34vh, 340px);
}

.hero-copy {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 34rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), visibility 0.8s;
  pointer-events: none;
}

.hero-copy.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-brand {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.92;
  display: flex;
  flex-direction: column;
}

.hero-brand-line {
  color: #fff;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero-brand-line--accent {
  background: linear-gradient(90deg, var(--green-bright) 0%, #fff 40%, var(--gold-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-tagline {
  margin: 0 0 1.75rem;
  max-width: 28rem;
  font-size: clamp(1.05rem, 2.1vw, 1.2rem);
  color: rgba(244, 239, 228, 0.78);
  font-weight: 500;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(232, 207, 160, 0.4);
  border-radius: 50%;
  background: rgba(23, 17, 6, 0.45);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease);
}

.hero-arrow:hover {
  background: rgba(169, 127, 61, 0.75);
  border-color: var(--gold-soft);
  transform: translateY(-50%) scale(1.06);
}

.hero-arrow--prev {
  left: clamp(0.75rem, 2.5vw, 1.75rem);
}

.hero-arrow--next {
  right: clamp(0.75rem, 2.5vw, 1.75rem);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  z-index: 3;
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  transform: translateX(-50%);
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.hero-scroll span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-bright);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes copy-up {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orb-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(18px, -22px) scale(1.08);
  }
}

@keyframes sweep-light {
  0%,
  100% {
    transform: translateX(-12%) rotate(0deg);
    opacity: 0.35;
  }
  50% {
    transform: translateX(10%) rotate(2deg);
    opacity: 0.7;
  }
}

@keyframes scroll-dot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  70% {
    transform: translateY(14px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

/* Marquee */
.marquee-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(184, 146, 63, 0.08), rgba(201, 162, 94, 0.06));
  padding: 0.85rem 0;
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  animation: marquee 28s linear infinite;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.section-head h2,
.mission-card h2 {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* About */
.about {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(201, 162, 94, 0.18), transparent 60%),
    linear-gradient(180deg, #f7f4ee 0%, #efe8da 100%);
}

.about-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 146, 63, 0.2), transparent 70%);
  top: 10%;
  left: -8%;
  pointer-events: none;
  filter: blur(10px);
}

.about-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.about-visual {
  margin: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 1rem -0.75rem -0.75rem 1rem;
  border: 1px solid rgba(169, 127, 61, 0.45);
  z-index: -1;
  pointer-events: none;
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease);
}

.about-visual:hover img {
  transform: scale(1.05);
}

.about-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  display: grid;
  gap: 0.2rem;
  padding: 1.1rem 1.35rem;
  background: linear-gradient(90deg, rgba(23, 17, 6, 0.88), rgba(23, 17, 6, 0.55));
  color: #f4efe4;
  max-width: 85%;
}

.about-caption span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.about-caption strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.about-content h2 {
  margin: 0.35rem 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.about-lead {
  margin: 0 0 1.35rem;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.55;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(169, 127, 61, 0.28);
}

.about-story {
  margin-bottom: 1.5rem;
}

.about-story p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.about-story p:last-child {
  margin-bottom: 0;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(169, 127, 61, 0.28);
}

.pillar {
  padding: 1.75rem 1.5rem 0.25rem 0;
  border-right: 1px solid rgba(169, 127, 61, 0.22);
  background: transparent;
}

.pillar:last-child {
  border-right: 0;
  padding-right: 0;
}

.pillar:not(:first-child) {
  padding-left: 1.5rem;
}

.pillar-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--bronze), var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pillar h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Mission */
.mission {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(232, 207, 160, 0.2), transparent 50%),
    linear-gradient(180deg, #f0ebe2, #f7f4ee);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.mission-card {
  padding: 2rem 2.1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mission-card.vision {
  background: linear-gradient(145deg, var(--green-deep), #2a1e0c 60%, #3a2a14);
  color: #f4efe4;
  border-color: transparent;
}

.mission-card.vision .eyebrow {
  color: var(--green-bright);
}

.mission-card.vision em,
.mission-card.vision h2 {
  color: #fff;
}

.mission-card.vision p {
  color: rgba(244, 239, 228, 0.82);
}

.mission-card p {
  margin: 0;
  color: var(--muted);
}

/* Products — cards OK (interactive commerce) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(23, 17, 6, 0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(23, 17, 6, 0.12);
}

.product-visual {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: #efe8da;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.product:hover .product-visual img {
  transform: scale(1.08);
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
  pointer-events: none;
}

.product:hover .product-visual::after {
  transform: translateX(120%);
}

.product-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.product-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.35rem;
}

.product-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.product-body p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.9rem;
}

.price {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--green-deep);
}

.bv {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--bronze);
  background: rgba(201, 162, 94, 0.15);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

/* Opportunity */
.opportunity {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 10% 20%, rgba(184, 146, 63, 0.22), transparent 60%),
    radial-gradient(ellipse 40% 35% at 90% 80%, rgba(201, 162, 94, 0.12), transparent 55%),
    linear-gradient(160deg, #171106 0%, #241908 45%, #1b140a 100%);
  color: #f4efe4;
}

.opportunity-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  right: -10%;
  top: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 207, 160, 0.16), transparent 70%);
  pointer-events: none;
}

.opportunity .eyebrow {
  color: var(--gold-soft);
}

.opportunity em {
  color: var(--gold-soft);
}

.opportunity-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: clamp(2.75rem, 5vw, 4rem);
  padding-bottom: clamp(1.75rem, 3vw, 2.25rem);
  border-bottom: 1px solid rgba(232, 207, 160, 0.2);
}

.opportunity-intro h2 {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
}

.opportunity-aside p {
  margin: 0 0 1.25rem;
  color: rgba(244, 239, 228, 0.75);
  font-size: 1.05rem;
  line-height: 1.6;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 11px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 207, 160, 0.55), transparent);
}

.step {
  position: relative;
  padding: 2.25rem 1.5rem 0.5rem 0;
}

.step:not(:last-child) {
  border-right: 1px solid rgba(232, 207, 160, 0.12);
  padding-right: 1.5rem;
}

.step:not(:first-child) {
  padding-left: 1.5rem;
}

.step-marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: #171106;
  box-shadow: 0 0 0 6px rgba(169, 127, 61, 0.15);
  z-index: 1;
}

.step:not(:first-child) .step-marker {
  left: 1.5rem;
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  margin: 0.85rem 0 0.65rem;
  background: linear-gradient(135deg, var(--gold-soft), var(--bronze));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
  color: #fff;
}

.step p {
  margin: 0;
  color: rgba(244, 239, 228, 0.68);
  font-size: 0.95rem;
  line-height: 1.55;
}

.values {
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(232, 207, 160, 0.15);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(232, 207, 160, 0.75);
  line-height: 1.8;
}

.values span {
  color: rgba(232, 207, 160, 0.4);
  padding: 0 0.35rem;
  border: 0;
  background: none;
  font-weight: 400;
  text-transform: none;
}

/* Testimonials */
.testimonials {
  background:
    radial-gradient(ellipse 40% 35% at 100% 0%, rgba(201, 162, 94, 0.12), transparent 55%),
    linear-gradient(180deg, #f7f4ee 0%, #f0ebe2 100%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}

.testimonial {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  border-top: 2px solid var(--bronze);
  background: transparent;
}

.testimonial-quote {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 0.7;
  color: var(--gold);
  margin-bottom: 0.85rem;
  opacity: 0.85;
}

.testimonial p {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}

.testimonial footer {
  display: grid;
  gap: 0.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(169, 127, 61, 0.2);
}

.testimonial footer strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.testimonial footer span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* Join banner */
.join-banner {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  isolation: isolate;
}

.join-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  z-index: -2;
  transform: scale(1.04);
  animation: join-pan 18s ease-in-out infinite alternate;
}

.join-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(23, 17, 6, 0.92) 0%, rgba(23, 17, 6, 0.78) 48%, rgba(36, 25, 8, 0.7) 100%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(184, 146, 63, 0.25), transparent 65%);
}

.join-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.join-copy .eyebrow {
  color: var(--gold-soft);
}

.join-copy h2 {
  margin: 0.4rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 16ch;
}

.join-copy em {
  color: var(--gold-soft);
  font-style: italic;
}

.join-copy > p {
  margin: 0;
  max-width: 34rem;
  color: rgba(244, 239, 228, 0.82);
  font-size: 1.08rem;
  line-height: 1.65;
}

.join-logo {
  width: 96px;
  margin: 0 0 1.35rem;
  animation: logo-float 5s ease-in-out infinite;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.4));
}

.join-panel {
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border: 1px solid rgba(232, 207, 160, 0.35);
  background: rgba(23, 17, 6, 0.55);
  backdrop-filter: blur(14px);
  display: grid;
  gap: 0.85rem;
}

.join-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: #fff;
}

.join-panel > p {
  margin: 0 0 0.35rem;
  color: rgba(244, 239, 228, 0.72);
  font-size: 0.98rem;
}

.join-panel .btn {
  width: 100%;
}

.join-note {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(232, 207, 160, 0.7);
  text-align: center;
}

@keyframes join-pan {
  from {
    transform: scale(1.04) translateX(0);
  }
  to {
    transform: scale(1.08) translateX(-1.5%);
  }
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 45% 40% at 0% 100%, rgba(201, 162, 94, 0.14), transparent 55%),
    linear-gradient(180deg, #f7f4ee 0%, #efe8da 100%);
}

.contact-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -5%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 146, 63, 0.16), transparent 70%);
  pointer-events: none;
}

.contact-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.25rem, 4vw, 3rem);
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(169, 127, 61, 0.25);
}

.contact-top h2 {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.contact-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1.75rem;
}

.contact-company h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.contact-company p {
  margin: 0;
  color: var(--bronze);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-detail span {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.4rem;
}

.contact-detail p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 28rem;
}

.contact-actions {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(169, 127, 61, 0.22);
}

.contact-action {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(169, 127, 61, 0.18);
  transition: color 0.2s;
}

.contact-action span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bronze);
}

.contact-action strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.contact-action:hover strong {
  color: var(--bronze);
}

.contact-form {
  display: grid;
  gap: 0.95rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(169, 127, 61, 0.28);
  backdrop-filter: blur(8px);
}

.contact-form h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid rgba(169, 127, 61, 0.22);
  border-radius: 0;
  padding: 0.8rem 0.95rem;
  font: inherit;
  background: #fffcf7;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(201, 162, 94, 0.2);
}

.form-note {
  margin: 0;
  text-align: center;
  color: var(--bronze);
  font-weight: 700;
}

/* Footer — matched to sainina.com structure */
.site-footer {
  background:
    radial-gradient(ellipse 50% 40% at 80% 0%, rgba(184, 146, 63, 0.18), transparent 55%),
    linear-gradient(180deg, #1b140a 0%, #171106 100%);
  color: rgba(244, 239, 228, 0.82);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.3fr 0.8fr;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 2.25rem;
}

.footer-logo-text {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.footer-logo-text img {
  width: 64px;
  flex-shrink: 0;
}

.footer-logo-text h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: #fff;
  font-weight: 700;
}

.footer-logo-text h3 span {
  color: var(--gold-soft);
}

.footer-about > p {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: justify;
  color: rgba(244, 239, 228, 0.72);
}

.footer-about > p a {
  color: var(--gold-soft);
  font-weight: 700;
}

.footer-about > p a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(232, 207, 160, 0.3);
  color: var(--gold-soft);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-social a:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: #fff;
}

.site-footer h4 {
  margin: 0 0 1rem;
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact h5 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
}

.footer-contact h5 b {
  color: var(--gold-soft);
}

.footer-contact > p {
  margin: 0 0 1.1rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(244, 239, 228, 0.75);
}

.footer-contact > p em {
  color: rgba(232, 207, 160, 0.85);
  font-style: italic;
}

.footer-contacts p {
  margin: 0 0 0.55rem;
  font-size: 0.92rem;
}

.footer-contacts span {
  color: var(--gold-soft);
  font-weight: 700;
  margin-right: 0.35rem;
}

.footer-contacts a {
  color: rgba(244, 239, 228, 0.85);
}

.footer-contacts a:hover {
  color: var(--gold-soft);
}

.footer-links a {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  color: rgba(244, 239, 228, 0.78);
  transition: color 0.2s, transform 0.2s;
}

.footer-links a:hover {
  color: var(--gold-soft);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  text-align: center;
  border-top: 1px solid rgba(232, 207, 160, 0.15);
  padding-top: 1.25rem;
  font-size: 0.88rem;
  color: rgba(232, 207, 160, 0.65);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom strong {
  color: #fff;
}

/* Cart FAB */
.cart-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: #fff;
  box-shadow: 0 12px 30px rgba(184, 146, 63, 0.45);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.25s var(--ease);
}

.cart-fab:hover {
  transform: scale(1.08);
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product.added {
  animation: cart-pulse 0.45s var(--ease);
}

@keyframes cart-pulse {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 960px) {
  .about-split,
  .mission-grid,
  .contact-grid,
  .product-grid,
  .testimonial-grid,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-visual img {
    max-height: 380px;
    aspect-ratio: 16 / 10;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .pillar,
  .pillar:not(:first-child) {
    padding: 1.35rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(169, 127, 61, 0.22);
  }

  .pillar:last-child {
    border-bottom: 0;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .opportunity-top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .join-layout {
    grid-template-columns: 1fr;
  }

  .join-copy h2 {
    max-width: none;
  }

  .contact-top,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .steps::before {
    display: none;
  }

  .step,
  .step:not(:first-child),
  .step:not(:last-child) {
    padding: 1.5rem 1rem 1.25rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(232, 207, 160, 0.12);
  }

  .step:nth-child(3),
  .step:nth-child(4) {
    border-bottom: 0;
  }

  .step-marker,
  .step:not(:first-child) .step-marker {
    left: 0;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(247, 244, 238, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.35rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav .btn {
    width: 100%;
    margin-top: 0.25rem;
  }

  .about-split,
  .mission-grid,
  .contact-grid,
  .product-grid,
  .testimonial-grid,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .step:nth-child(3) {
    border-bottom: 1px solid rgba(232, 207, 160, 0.12);
  }

  .step:last-child {
    border-bottom: 0;
  }

  .brand-name {
    display: none;
  }

  .hero {
    align-items: center;
    padding: 3.5rem 0 5rem;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-inner {
    padding-inline: 3.25rem;
  }

  .hero-copy-stack {
    min-height: 280px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-brand {
    font-size: clamp(2.8rem, 14vw, 3.6rem);
  }

  .site-nav.is-open {
    color: var(--ink);
  }

  .site-nav.is-open > a:not(.btn) {
    color: var(--ink-soft);
  }
}
