/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f5efe6;
  color: #241b1b;
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

button,
a {
  font: inherit;
}

button {
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}


/* =========================
   VARIABLES
========================= */

:root {
  --cream: #f5efe6;
  --paper: #fffdf9;
  --ink: #241b1b;
  --wine: #681f35;
  --wine-light: #93495f;
  --rose: #c29b9f;
  --muted: #776d68;
  --line: rgba(36, 27, 27, 0.13);
  --dark: #21191a;
  --white: #fff;
}


/* =========================
   LOADER
========================= */

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  place-items: center;
  transition:
    opacity 0.9s ease,
    visibility 0.9s ease;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
}

.loader-small,
.loader-year {
  display: block;
  font-size: 9px;
  letter-spacing: 0.28em;
  opacity: 0.55;
}

.loader-brand {
  display: block;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(50px, 9vw, 110px);
  letter-spacing: 0.08em;
  margin: 12px 0 18px;
}

.loader-line {
  width: 190px;
  height: 1px;
  background: rgba(255,255,255,0.18);
  margin: 0 auto 18px;
  overflow: hidden;
}

.loader-line span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--cream);
  animation: loadLine 1.8s ease forwards;
}

@keyframes loadLine {
  to {
    width: 100%;
  }
}


/* =========================
   NAV
========================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 5vw;

  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}

.nav.scrolled {
  background: rgba(245, 239, 230, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(36, 27, 27, 0.06);
}

.logo {
  font-family: "Bodoni Moda", serif;
  font-size: 22px;
  letter-spacing: 0.14em;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
  margin-right: 42px;
}

.desktop-nav a {
  position: relative;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #544947;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;

  border: 1px solid var(--line);
  padding: 11px 16px;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.nav-whatsapp:hover {
  background: var(--ink);
  color: white;
  transform: translateY(-2px);
}

.wa-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #28b463;
  box-shadow: 0 0 0 5px rgba(40,180,99,0.1);
}

.menu-btn {
  display: none;
  background: transparent;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 25px;
  height: 1px;
  background: var(--ink);
  margin: 6px 0;
}


/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: var(--dark);
  color: var(--cream);

  padding: 28px 7vw;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);

  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-top span {
  font-family: "Bodoni Moda", serif;
  letter-spacing: 0.14em;
}

.mobile-menu-top button {
  background: transparent;
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  margin-top: 100px;
}

.mobile-links a {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(38px, 11vw, 72px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 15px 0;
}

.mobile-whatsapp {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.3);
}


/* =========================
   HERO
========================= */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 3vw;

  padding: 130px 7vw 80px;
  position: relative;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 5;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--wine);
}

.hero h1 {
  font-family: "Bodoni Moda", serif;
  font-weight: 400;
  font-size: clamp(70px, 8.7vw, 150px);
  line-height: 0.86;
  letter-spacing: -0.06em;
  margin: 35px 0;
}

.hero h1 em,
h2 em {
  color: var(--wine);
  font-style: italic;
  font-weight: 400;
}

.hero-description {
  max-width: 390px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 28px;

  padding: 15px 20px;

  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--ink);
  color: white;
}

.btn-dark:hover {
  background: var(--wine);
}

.text-link {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
}

.hero-visual {
  min-height: 650px;
  position: relative;
  display: grid;
  place-items: center;
}

.hero-glow {
  position: absolute;
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(190, 139, 145, 0.22);
  filter: blur(70px);
}

.hero-ring {
  position: absolute;
  border: 1px solid rgba(104, 31, 53, 0.14);
  border-radius: 50%;
}

.ring-one {
  width: 75%;
  aspect-ratio: 1;
  animation: rotateRing 22s linear infinite;
}

.ring-two {
  width: 58%;
  aspect-ratio: 1;
  animation: rotateRingReverse 18s linear infinite;
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateRingReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

.hero-image-wrap {
  width: min(68%, 570px);
  position: relative;
  z-index: 2;
  animation: bottleFloat 6s ease-in-out infinite;
}

.hero-image-wrap img {
  max-height: 650px;
  object-fit: contain;
  filter:
    drop-shadow(0 35px 40px rgba(38,20,20,0.25));
}

@keyframes bottleFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-15px) rotate(1deg);
  }
}

.hero-caption {
  position: absolute;
  right: 2%;
  bottom: 12%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--muted);
}


/* =========================
   MARQUEE
========================= */

.marquee {
  overflow: hidden;
  background: var(--wine);
  color: var(--cream);
  padding: 20px 0;
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  animation: marquee 28s linear infinite;
}

.marquee span {
  font-family: "Bodoni Moda", serif;
  font-size: 27px;
  letter-spacing: 0.04em;
}

.marquee i {
  font-size: 10px;
  opacity: 0.65;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}


/* =========================
   COMMON
========================= */

.section-padding {
  padding: 140px 7vw;
}

.section-number {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
}


/* =========================
   INTRO
========================= */

.intro {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 50px;
}

.intro-content {
  max-width: 900px;
}

.intro h2 {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(55px, 7vw, 105px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.045em;
  margin: 30px 0;
}

.intro-text {
  max-width: 480px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
}


/* =========================
   COLLECTION
========================= */

.collection {
  background: var(--paper);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading h2 {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(55px, 6vw, 90px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.05em;
  margin-top: 25px;
}

.heading-note {
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
  text-align: right;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 90px 30px;
}

.product-card {
  position: relative;
}

.product-image {
  position: relative;
  height: min(54vw, 650px);
  background:
    radial-gradient(
      circle at 50% 40%,
      #f9eee6 0%,
      #eadbd1 50%,
      #ddd0c8 100%
    );

  overflow: hidden;
}

.product-image.dark-product {
  background:
    radial-gradient(
      circle at 50% 40%,
      #39302e 0%,
      #201b1b 55%,
      #100f0f 100%
    );
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8%;
  transition:
    transform 0.8s cubic-bezier(.2,.7,.2,1),
    filter 0.8s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.045);
  filter: brightness(1.03);
}

.explore-btn {
  position: absolute;
  bottom: 22px;
  right: 22px;

  width: 78px;
  height: 78px;
  border-radius: 50%;

  background: var(--ink);
  color: white;

  font-size: 9px;
  letter-spacing: 0.1em;

  transform: translateY(20px);
  opacity: 0;

  transition:
    transform 0.4s ease,
    opacity 0.4s ease,
    background 0.3s ease;
}

.product-card:hover .explore-btn {
  transform: translateY(0);
  opacity: 1;
}

.explore-btn:hover {
  background: var(--wine);
}

.product-info {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
}

.product-number {
  display: block;
  font-size: 8px;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 7px;
}

.product-info h3 {
  font-family: "Bodoni Moda", serif;
  font-size: 27px;
  font-weight: 400;
}

.product-meta {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 7px;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}


/* =========================
   EXPERIENCE
========================= */

.experience {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--cream);
  min-height: 100vh;
  padding: 150px 7vw;
  display: flex;
  align-items: center;
}

.experience-bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background:
    radial-gradient(
      circle at 70% 30%,
      rgba(147, 73, 95, 0.5),
      transparent 35%
    );
}

.experience-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.light {
  color: rgba(245,239,230,0.55);
}

.experience h2 {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(60px, 8vw, 125px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.05em;
  margin: 40px 0 100px;
}

.notes {
  max-width: 900px;
  margin-left: auto;
}

.note {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 30px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.note:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.note > span {
  font-size: 9px;
  letter-spacing: 0.15em;
  opacity: 0.4;
}

.note strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.note p {
  max-width: 450px;
  color: rgba(245,239,230,0.55);
  font-size: 12px;
  line-height: 1.8;
}


/* =========================
   STORY
========================= */

.story {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 10vw;
  align-items: center;
  background: var(--cream);
}

.story-image {
  position: relative;
}

.story-image-inner {
  height: 650px;
  overflow: hidden;
}

.story-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.story-image:hover img {
  transform: scale(1.04);
}

.story-image-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: white;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.story-copy h2 {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(50px, 5vw, 80px);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: -0.05em;
  margin: 28px 0 40px;
}

.story-copy > p {
  max-width: 460px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 20px;
}

.btn-outline {
  border: 1px solid var(--line);
  margin-top: 18px;
}

.btn-outline:hover {
  background: var(--ink);
  color: white;
}


/* =========================
   STATEMENT
========================= */

.statement {
  min-height: 90vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #2b2021;
  color: var(--cream);
}

.statement-bg {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      rgba(25,17,18,0.48),
      rgba(25,17,18,0.65)
    ),
    url("https://images.unsplash.com/photo-1594035910387-fea47794261f?auto=format&fit=crop&w=2000&q=90")
    center / cover;

  transform: scale(1.05);
  transition: transform 2s ease;
}

.statement:hover .statement-bg {
  transform: scale(1);
}

.statement-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 30px;
}

.statement-mark {
  display: block;
  font-family: "Bodoni Moda", serif;
  font-size: 80px;
  color: var(--rose);
  margin-bottom: 25px;
}

.statement h2 {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(55px, 7vw, 110px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.statement h2 em {
  color: #d7b8b9;
}

.statement p {
  margin-top: 35px;
  color: rgba(255,255,255,0.65);
  font-size: 11px;
  letter-spacing: 0.08em;
}


/* =========================
   REVIEWS
========================= */

.reviews {
  background: var(--paper);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review {
  padding: 38px;
  border: 1px solid var(--line);
  min-height: 340px;
  display: flex;
  flex-direction: column;
}

.quote {
  font-family: "Bodoni Moda", serif;
  font-size: 60px;
  line-height: 0.7;
  color: var(--wine);
}

.review p {
  font-family: "Bodoni Moda", serif;
  font-size: 24px;
  line-height: 1.25;
  margin-top: 35px;
}

.review-author {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.review-author strong {
  font-size: 9px;
  letter-spacing: 0.15em;
}

.review-author span {
  font-size: 8px;
  letter-spacing: 0.15em;
  color: var(--muted);
}


/* =========================
   CONTACT
========================= */

.contact {
  background: var(--wine);
  color: var(--cream);
  text-align: center;
}

.contact-inner {
  max-width: 900px;
  margin: auto;
}

.contact .section-kicker {
  justify-content: center;
  color: rgba(245,239,230,0.55);
}

.contact h2 {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(55px, 7vw, 105px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.05em;
  margin: 30px 0;
}

.contact h2 em {
  color: #dfbdc1;
}

.contact p {
  max-width: 500px;
  margin: auto;
  color: rgba(245,239,230,0.62);
  font-size: 12px;
  line-height: 1.8;
}

.whatsapp-main {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 45px;
  padding: 18px 25px;
  background: var(--cream);
  color: var(--ink);
  text-align: left;
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.whatsapp-main:hover {
  transform: translateY(-5px);
  background: white;
}

.whatsapp-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: white;
}

.whatsapp-main span:last-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: "Bodoni Moda", serif;
  font-size: 20px;
}

.whatsapp-main small {
  font-family: "Manrope", sans-serif;
  font-size: 7px;
  letter-spacing: 0.16em;
  color: var(--muted);
}


/* =========================
   FLOATING WHATSAPP
========================= */

.floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;

  display: flex;
  align-items: center;
  gap: 10px;

  background: #25d366;
  color: white;

  padding: 13px 16px;

  border-radius: 40px;

  box-shadow: 0 12px 35px rgba(0,0,0,0.18);

  font-size: 10px;
  letter-spacing: 0.08em;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
}

.floating-whatsapp strong {
  font-size: 15px;
}


/* =========================
   MODAL
========================= */

.modal {
  position: fixed;
  inset: 0;
  z-index: 3000;

  display: grid;
  place-items: center;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,14,15,0.7);
  backdrop-filter: blur(10px);
}

.modal-box {
  position: relative;
  z-index: 2;

  width: min(900px, 90vw);
  max-height: 90vh;

  background: var(--paper);

  display: grid;
  grid-template-columns: 1fr 1fr;

  overflow: hidden;

  transform: translateY(30px) scale(0.97);

  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}

.modal.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  z-index: 5;
  top: 15px;
  right: 18px;

  width: 40px;
  height: 40px;
  border-radius: 50%;

  background: rgba(255,255,255,0.85);
  cursor: pointer;

  font-size: 24px;
}

.modal-image {
  min-height: 500px;
  background: #eee2d9;
  display: grid;
  place-items: center;
}

.modal-image img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}

.modal-content {
  padding: 80px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-number {
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.modal-content h2 {
  font-family: "Bodoni Moda", serif;
  font-size: 55px;
  font-weight: 400;
  line-height: 0.95;
  margin: 20px 0 25px;
}

.modal-content p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.modal-whatsapp {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;

  margin-top: 35px;
  padding: 16px 18px;

  background: var(--ink);
  color: white;

  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  transition: background 0.3s ease;
}

.modal-whatsapp:hover {
  background: var(--wine);
}


/* =========================
   FOOTER
========================= */

.footer {
  background: var(--dark);
  color: var(--cream);
  padding: 80px 7vw 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 100px;
  align-items: start;
}

.footer-brand > span {
  font-family: "Bodoni Moda", serif;
  font-size: 32px;
  letter-spacing: 0.12em;
}

.footer-brand p {
  color: rgba(245,239,230,0.45);
  font-size: 10px;
  line-height: 1.8;
  margin-top: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-wa {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245,239,230,0.65);
}

.footer-links a:hover,
.footer-wa:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 80px;
  padding-top: 20px;

  font-size: 7px;
  letter-spacing: 0.14em;
  color: rgba(245,239,230,0.35);
}


/* =========================
   REVEAL
========================= */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.9s cubic-bezier(.2,.8,.2,1),
    transform 0.9s cubic-bezier(.2,.8,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.15s;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

  .desktop-nav {
    gap: 20px;
    margin-right: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 150px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    min-height: 580px;
  }

  .hero-image-wrap {
    width: min(70%, 520px);
  }

  .story {
    grid-template-columns: 1fr;
  }

  .story-image-inner {
    height: 600px;
  }

  .story-copy {
    max-width: 700px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review {
    min-height: 280px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .footer-wa {
    grid-column: 2;
  }
}


@media (max-width: 760px) {

  .nav {
    height: 70px;
    padding: 0 6vw;
  }

  .desktop-nav,
  .nav-whatsapp {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .section-padding {
    padding: 90px 6vw;
  }

  .hero {
    min-height: auto;
    padding: 125px 6vw 70px;
  }

  .hero h1 {
    font-size: clamp(65px, 19vw, 105px);
    margin: 30px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-image-wrap {
    width: 82%;
  }

  .hero-caption {
    bottom: 6%;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .intro h2 {
    font-size: clamp(52px, 15vw, 82px);
  }

  .section-heading {
    display: block;
  }

  .heading-note {
    text-align: left;
    margin-top: 25px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .product-image {
    height: 115vw;
    max-height: 600px;
  }

  .explore-btn {
    opacity: 1;
    transform: none;
  }

  .experience {
    padding: 100px 6vw;
  }

  .experience h2 {
    margin-bottom: 70px;
  }

  .note {
    grid-template-columns: 35px 1fr;
  }

  .story-image-inner {
    height: 480px;
  }

  .statement {
    min-height: 75vh;
  }

  .review {
    padding: 30px;
  }

  .contact h2 {
    font-size: clamp(52px, 14vw, 80px);
  }

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
  }

  .modal-box {
    grid-template-columns: 1fr;
    width: 92vw;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-image {
    min-height: 300px;
  }

  .modal-content {
    padding: 35px 28px 40px;
  }

  .modal-content h2 {
    font-size: 43px;
  }

  .footer {
    padding: 60px 6vw 25px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-wa {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}


/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

}