:root {
  --brand-900: #38471f;
  --brand-500: #9cb45a;
  --accent-700: #ab5614;
  --accent-500: #e1742c;
  --accent-400: #ef9720;
  --cream-100: #fce5c5;
  --cream-50: #fdefd8;
  --text-strong: #1f2a12;
  --white: #ffffff;
  --shadow: 0 20px 55px rgb(56 71 31 / 0.2);
  --header-offset: 108px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--brand-500) var(--cream-50);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--cream-50);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brand-500), var(--brand-900));
  border-radius: 999px;
  border: 2px solid var(--cream-50);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--accent-400), var(--brand-900));
}

body {
  margin: 0;
  font-family: Manrope, "Segoe UI", sans-serif;
  color: var(--text-strong);
  background:
    radial-gradient(circle at 12% 5%, #fff6e7 0%, transparent 28%),
    radial-gradient(circle at 85% 25%, #ffd29b 0%, transparent 25%),
    linear-gradient(170deg, var(--cream-50), var(--cream-100));
  min-height: 100vh;
  overflow-x: hidden;
}

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--brand-900);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: clamp(140px, 22vw, 220px);
  filter: brightness(0) invert(1);
  -webkit-mask-image: linear-gradient(to bottom, white 40%, rgba(255,255,255,0.15) 100%);
  mask-image: linear-gradient(to bottom, white 40%, rgba(255,255,255,0.15) 100%);
  animation: loader-pulse 1.6s ease-in-out infinite;
}

.loader-bar {
  width: clamp(160px, 28vw, 260px);
  height: 3px;
  background: rgb(255 255 255 / 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.loader-progress {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-500), var(--accent-400));
  border-radius: 999px;
  animation: loader-fill 2s ease-out forwards;
}

@keyframes loader-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.88; }
}

@keyframes loader-fill {
  0% { width: 0; }
  100% { width: 100%; }
}

.page-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
}

.bg-orb {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.34;
  z-index: -1;
  pointer-events: none;
}

.orb-1 {
  top: -10rem;
  left: -10rem;
  background: var(--accent-500);
}

.orb-2 {
  right: -10rem;
  bottom: -10rem;
  background: var(--brand-500);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  backdrop-filter: blur(8px);
  background: rgb(253 239 216 / 0.82);
  border-bottom: 1px solid rgb(56 71 31 / 0.15);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.brand img {
  width: clamp(120px, 16vw, 175px);
  display: block;
}

.menu-btn {
  display: none;
  border: 1px solid rgb(56 71 31 / 0.4);
  background: var(--white);
  color: var(--brand-900);
  border-radius: 999px;
  min-height: 44px;
  padding: 0.55rem 1rem;
  font-weight: 700;
  gap: 0.45rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.menu-icon-close {
  display: none;
}

.menu-btn[aria-expanded="true"] {
  background: var(--brand-900);
  color: var(--white);
  border-color: var(--brand-900);
}

.menu-btn[aria-expanded="true"] .menu-icon-open {
  display: none;
}

.menu-btn[aria-expanded="true"] .menu-icon-close {
  display: inline-block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  color: var(--brand-900);
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--accent-700);
}

.nav-cta {
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  background: var(--brand-900);
  color: var(--white) !important;
}

main {
  width: min(1140px, 94vw);
  margin: 2rem auto 4rem;
  display: grid;
  gap: 2.5rem;
}

section {
  border-radius: 26px;
  padding: clamp(1.2rem, 2.8vw, 2.4rem);
  box-shadow: var(--shadow);
  border: 1px solid rgb(56 71 31 / 0.12);
}

section[id] {
  scroll-margin-top: calc(var(--header-offset) + 0.75rem);
}

.hero {
  background:
    linear-gradient(120deg, rgb(255 255 255 / 0.92), rgb(252 229 197 / 0.75)),
    linear-gradient(35deg, var(--cream-100), var(--cream-50));
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 1.5rem;
}

.eyebrow {
  display: inline-block;
  background: rgb(156 180 90 / 0.2);
  color: var(--brand-900);
  border: 1px solid rgb(56 71 31 / 0.25);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-weight: 700;
  margin: 0;
}

h1,
h2,
h3 {
  font-family: Fraunces, Georgia, serif;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.9rem);
  color: var(--brand-900);
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  color: var(--brand-900);
}

h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}

p {
  margin: 0.7rem 0;
  line-height: 1.65;
}

.hero-sub {
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgb(0 0 0 / 0.15);
}

.btn-primary {
  background: var(--accent-700);
  color: var(--white);
}

.btn-secondary {
  background: var(--brand-900);
  color: var(--white);
}

.btn-ghost {
  border: 2px solid var(--brand-900);
  color: var(--brand-900);
}

.hero-points {
  list-style: none;
  margin: 1.2rem 0 0;
  padding-left: 0;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.45rem 0;
}

.hero-points li i {
  color: var(--accent-500);
  flex-shrink: 0;
}

.hero-media img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid rgb(56 71 31 / 0.14);
}

.benefits {
  background: linear-gradient(145deg, rgb(156 180 90 / 0.2), rgb(255 255 255 / 0.8));
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-grid article {
  background: rgb(255 255 255 / 0.72);
  border: 1px solid rgb(56 71 31 / 0.15);
  border-radius: 16px;
  padding: 1rem;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.benefit-grid article:nth-child(1) .benefit-icon {
  background-color: #fff0e6;
  color: var(--accent-500);
}

.benefit-grid article:nth-child(2) .benefit-icon {
  background-color: #fffbe6;
  color: #c8920a;
}

.benefit-grid article:nth-child(3) .benefit-icon {
  background-color: #eef7ee;
  color: #3a7d44;
}

.product {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 1.2rem;
  background:
    linear-gradient(130deg, rgb(171 86 20 / 0.08), rgb(225 116 44 / 0.11)),
    var(--white);
  position: relative;
}

.product-card {
  position: relative;
}

.product-stamp {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 14px;
  border: 3px solid var(--accent-500);
  box-shadow: inset 0 0 0 5px rgb(255 248 240), inset 0 0 0 7px var(--accent-500);
  background: rgb(255 248 235 / 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.05rem;
  padding: 0.6rem;
  transform: rotate(-8deg);
  pointer-events: none;
  user-select: none;
}

.product-stamp-pct {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-500);
  line-height: 1;
}

.product-stamp-line {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--accent-500);
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.product-card img {
  width: 100%;
  border-radius: 18px;
  border: 2px solid rgb(56 71 31 / 0.15);
}

.gallery {
  background:
    linear-gradient(150deg, rgb(255 255 255 / 0.87), rgb(252 229 197 / 0.62));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery figure {
  margin: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgb(56 71 31 / 0.15);
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

figcaption {
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
}

.contact {
  background: linear-gradient(145deg, rgb(56 71 31 / 0.07), rgb(255 255 255 / 0.85));
  text-align: center;
}

.contact h2 {
  color: var(--brand-900);
}

.contact .btn-primary {
  display: inline-block;
  margin-top: 0.5rem;
}

.order {
  background:
    linear-gradient(130deg, rgb(171 86 20 / 0.85), rgb(225 116 44 / 0.82));
  color: var(--white);
}

.order h2 {
  color: var(--white);
}

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

.order .btn-primary {
  background: var(--white);
  color: var(--accent-700);
}

.order .btn-secondary {
  border: 2px solid rgb(255 255 255 / 0.8);
  background: transparent;
}

.location {
  margin-top: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ============================================
   ORDER MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgb(31 42 18 / 0.72);
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--white);
  border-radius: 26px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  width: min(100%, 480px);
  position: relative;
  box-shadow: 0 32px 80px rgb(31 42 18 / 0.35);
  transform: translateY(16px);
  transition: transform 0.25s ease;
}

.modal-overlay.is-open .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-strong);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.modal-close:hover {
  background: var(--cream-100);
}

.modal-card h3 {
  margin: 0 0 0.4rem;
  color: var(--brand-900);
}

.modal-card > p {
  margin: 0 0 1.25rem;
  color: var(--text-strong);
  font-size: 0.95rem;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.order-form label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--brand-900);
  margin-top: 0.5rem;
}

.order-form input,
.order-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgb(56 71 31 / 0.25);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-strong);
  background: var(--cream-50);
  transition: border-color 0.2s ease;
  resize: vertical;
}

.order-form input:focus,
.order-form textarea:focus {
  outline: none;
  border-color: var(--brand-500);
}

.btn-wa {
  margin-top: 0.75rem;
  background: #25D366;
  color: var(--white);
  border: none;
  width: 100%;
}

.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgb(37 211 102 / 0.3);
}

.site-footer {
  width: min(1140px, 94vw);
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgb(31 42 18 / 0.82);
  font-weight: 700;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.back-to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 1.5rem);
  bottom: 1.25rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--brand-900), var(--brand-500));
  color: var(--white);
  padding: 0;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 12px 30px rgb(56 71 31 / 0.35);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgb(56 71 31 / 0.4);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   ANIMATION KEYFRAMES
   ============================================ */

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fade-slide-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-slide-left {
  from { opacity: 0; transform: translateX(-22px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fade-slide-right {
  from { opacity: 0; transform: translateX(22px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes stamp-pop {
  0%   { opacity: 0; transform: rotate(-8deg) scale(0.3); }
  60%  { transform: rotate(-8deg) scale(1.1); }
  80%  { transform: rotate(-8deg) scale(0.96); }
  100% { opacity: 1; transform: rotate(-8deg) scale(1); }
}

@keyframes stamp-idle {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  33%       { transform: rotate(-10.5deg) scale(1.015); }
  66%       { transform: rotate(-5.5deg) scale(0.985); }
}

@keyframes pulse-glow-orange {
  0%, 100% { box-shadow: 0 4px 16px rgb(171 86 20 / 0.35); }
  50%       { box-shadow: 0 6px 30px rgb(171 86 20 / 0.65), 0 0 0 5px rgb(171 86 20 / 0.14); }
}

@keyframes pulse-glow-white {
  0%, 100% { box-shadow: 0 4px 16px rgb(255 255 255 / 0.22); }
  50%       { box-shadow: 0 6px 30px rgb(255 255 255 / 0.5), 0 0 0 5px rgb(255 255 255 / 0.12); }
}

@keyframes pin-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-5px) scale(1.15); }
}

@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* ============================================
   HEADER — HOVER & MICRO-INTERACTIONS
   ============================================ */

/* Brand logo subtle scale + shadow on hover */
.brand img {
  transition: transform 0.3s ease, filter 0.3s ease;
}
.brand:hover img {
  transform: scale(1.06) rotate(-1.5deg);
  filter: drop-shadow(0 4px 10px rgb(56 71 31 / 0.22));
}

/* Nav link underline sweep */
.site-nav a:not(.nav-cta) {
  position: relative;
}
.site-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-500);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

/* Nav CTA pill hover */
.nav-cta {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}
.nav-cta:hover {
  background: var(--accent-700) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgb(56 71 31 / 0.28);
}

/* Menu button hover */
.menu-btn {
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.menu-btn:hover:not([aria-expanded="true"]) {
  transform: scale(1.05);
  border-color: var(--brand-500);
}

/* ============================================
   HERO — ENTRANCE & HOVER ANIMATIONS
   ============================================ */

/* Staggered child entrances when section becomes visible */
.hero.is-visible .eyebrow {
  animation: fade-slide-left 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.15s;
}
.hero.is-visible h1 {
  animation: fade-slide-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.3s;
}
.hero.is-visible .hero-sub {
  animation: fade-slide-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.45s;
}
.hero.is-visible .hero-actions {
  animation: fade-in 0.55s ease both;
  animation-delay: 0.6s;
}
.hero.is-visible .hero-points li:nth-child(1) {
  animation: fade-slide-left 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.72s;
}
.hero.is-visible .hero-points li:nth-child(2) {
  animation: fade-slide-left 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.87s;
}
.hero.is-visible .hero-points li:nth-child(3) {
  animation: fade-slide-left 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 1.02s;
}
.hero.is-visible .hero-media {
  animation: fade-slide-right 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.2s;
}

/* Hero image: continuous floating idle */
.hero-media img {
  animation: float 6s ease-in-out infinite;
  transition: box-shadow 0.35s ease;
}
.hero-media img:hover {
  box-shadow: 0 28px 64px rgb(56 71 31 / 0.3);
  animation-play-state: paused;
}

/* Primary CTA idle glow pulse — stops on hover so transition takes over */
.hero .btn-primary {
  animation: pulse-glow-orange 3.5s ease-in-out infinite;
  animation-delay: 2.5s;
}
.hero .btn-primary:hover {
  animation: none;
}

/* Hero bullet point hover: slide right + icon pop */
.hero-points li {
  transition: transform 0.22s ease;
  cursor: default;
}
.hero-points li:hover {
  transform: translateX(5px);
}
.hero-points li i {
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), color 0.22s ease;
}
.hero-points li:hover i {
  transform: scale(1.35);
  color: var(--accent-700);
}

/* ============================================
   BENEFITS — ENTRANCE & HOVER ANIMATIONS
   ============================================ */

.benefits.is-visible h2 {
  animation: fade-slide-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.1s;
}

/* Staggered article fade-in (opacity only — keeps hover transform conflict-free) */
.benefits.is-visible .benefit-grid article:nth-child(1) {
  animation: fade-in 0.55s ease both;
  animation-delay: 0.2s;
}
.benefits.is-visible .benefit-grid article:nth-child(2) {
  animation: fade-in 0.55s ease both;
  animation-delay: 0.38s;
}
.benefits.is-visible .benefit-grid article:nth-child(3) {
  animation: fade-in 0.55s ease both;
  animation-delay: 0.56s;
}

/* Icon staggered fade-in */
.benefits.is-visible .benefit-grid article:nth-child(1) .benefit-icon {
  animation: fade-in 0.5s ease both;
  animation-delay: 0.38s;
}
.benefits.is-visible .benefit-grid article:nth-child(2) .benefit-icon {
  animation: fade-in 0.5s ease both;
  animation-delay: 0.56s;
}
.benefits.is-visible .benefit-grid article:nth-child(3) .benefit-icon {
  animation: fade-in 0.5s ease both;
  animation-delay: 0.74s;
}

/* Article hover: lift + shadow + border accent */
.benefit-grid article {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  cursor: default;
}
.benefit-grid article:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 48px rgb(56 71 31 / 0.16);
  border-color: var(--accent-400);
}

/* Icon scale + rotate on article hover — no animation conflict since fade-in is opacity-only */
.benefit-icon {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s ease;
}
.benefit-grid article:hover .benefit-icon {
  transform: scale(1.18) rotate(8deg);
}

/* Icon background deepens on hover */
.benefit-grid article:nth-child(1):hover .benefit-icon { background-color: #ffd6b8; }
.benefit-grid article:nth-child(2):hover .benefit-icon { background-color: #fff0c0; }
.benefit-grid article:nth-child(3):hover .benefit-icon { background-color: #c8eec8; }

/* ============================================
   PRODUCT — ENTRANCE & HOVER ANIMATIONS
   ============================================ */

/* Card slides from left, copy from right — creates a split-open effect */
.product.is-visible .product-card {
  animation: fade-slide-left 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.15s;
}
.product.is-visible .product-copy {
  animation: fade-slide-right 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.3s;
}

/* Product image hover zoom */
.product-card img {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  cursor: default;
}
.product-card img:hover {
  transform: scale(1.04);
  box-shadow: 0 28px 64px rgb(56 71 31 / 0.28);
}

/* Stamp: pop-in on section reveal, then continuous idle wobble */
.product.is-visible .product-stamp {
  animation:
    stamp-pop 0.8s cubic-bezier(0.22, 1, 0.36, 1) both 0.55s,
    stamp-idle 5s ease-in-out infinite 1.35s;
}

/* ============================================
   GALLERY — ENTRANCE & HOVER ANIMATIONS
   ============================================ */

.gallery.is-visible h2 {
  animation: fade-slide-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.1s;
}

/* Staggered figure fade-in (opacity only — hover transform conflict-free) */
.gallery.is-visible .gallery-grid figure:nth-child(1) {
  animation: fade-in 0.55s ease both;
  animation-delay: 0.2s;
}
.gallery.is-visible .gallery-grid figure:nth-child(2) {
  animation: fade-in 0.55s ease both;
  animation-delay: 0.36s;
}
.gallery.is-visible .gallery-grid figure:nth-child(3) {
  animation: fade-in 0.55s ease both;
  animation-delay: 0.52s;
}

/* Figure hover: lift + shadow */
.gallery figure {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  cursor: default;
}
.gallery figure:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgb(56 71 31 / 0.2);
}

/* Image zoom inside hovered figure */
.gallery img {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery figure:hover img {
  transform: scale(1.06);
}

/* Figcaption subtle rise + accent color on figure hover */
figcaption {
  transition: transform 0.3s ease, color 0.3s ease;
}
.gallery figure:hover figcaption {
  transform: translateY(-2px);
  color: var(--accent-700);
}

/* ============================================
   ORDER — ENTRANCE & HOVER ANIMATIONS
   ============================================ */

.order.is-visible h2 {
  animation: fade-slide-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.1s;
}
.order.is-visible > p:not(.location) {
  animation: fade-slide-up 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.25s;
}
.order.is-visible .order-actions {
  animation: fade-in 0.55s ease both;
  animation-delay: 0.42s;
}
.order.is-visible .location {
  animation: fade-slide-up 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.58s;
}

/* Primary CTA idle glow pulse — stops on hover so transition can take over */
.order .btn-primary {
  animation: pulse-glow-white 3.5s ease-in-out infinite;
  animation-delay: 2s;
}
.order .btn-primary:hover {
  animation: none;
}

/* Location pin idle bounce */
.location i {
  display: inline-block;
  animation: pin-bounce 2.5s ease-in-out infinite;
  animation-delay: 1s;
}

/* ============================================
   BACK-TO-TOP — HOVER ANIMATION
   ============================================ */

.back-to-top:hover i {
  animation: arrow-bounce 0.65s ease;
}

/* ============================================
   ACCESSIBILITY — REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    animation-delay: 0ms !important;
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr 0.92fr;
    gap: 1.25rem;
  }

  .product {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1rem;
  }

  .site-nav {
    gap: 0.8rem;
  }

  .hero,
  .product {
    align-items: start;
  }

  .hero-media,
  .product-card {
    align-self: start;
  }

  .benefit-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero,
  .product {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .product-card {
    width: min(100%, 32rem);
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .menu-btn {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    right: 1rem;
    top: 4.1rem;
    flex-direction: column;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid rgb(56 71 31 / 0.2);
    border-radius: 14px;
    padding: 0.8rem;
    width: min(74vw, 280px);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav a {
    display: inline-flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
    padding: 0.45rem 0.35rem;
  }

  .site-nav .nav-cta {
    margin-inline: 0.35rem;
    width: calc(100% - 0.7rem);
    padding: 0.65rem 1.05rem;
    justify-content: center;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .benefit-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery img {
    height: 220px;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.2rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 380px) {
  .site-header {
    gap: 0.6rem;
    padding-inline: 0.7rem;
  }

  .brand img {
    width: clamp(92px, 26vw, 120px);
  }

  main {
    width: min(1140px, calc(100vw - 1rem));
    margin-top: 1rem;
    gap: 1rem;
  }

  section {
    border-radius: 20px;
    padding: 0.95rem;
  }

  h1 {
    font-size: clamp(1.75rem, 11vw, 2.35rem);
  }

  h2 {
    font-size: clamp(1.45rem, 8vw, 1.9rem);
  }

  .hero-actions,
  .order-actions {
    gap: 0.55rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-points {
    padding-left: 1rem;
  }

  .gallery img {
    height: 190px;
  }
}
