/* ===========================================================
   Cake Essential Dealer — Stylesheet
   Theme: warm ivory + gold + blush, clean & elegant
   =========================================================== */

:root {
  --ivory:      #fdf7f0;
  --cream:      #fbeede;
  --blush:      #f6dcd2;
  --rose:       #e7a9a0;
  --gold:       #c9952f;
  --gold-soft:  #e3c067;
  --gold-deep:  #a9781d;
  --choco:      #4a3326;
  --ink:        #3a2a20;
  --muted:      #7d6b5f;
  --white:      #ffffff;
  --line:       #ecdcc9;

  --shadow-sm: 0 6px 18px rgba(74, 51, 38, .08);
  --shadow-md: 0 16px 40px rgba(74, 51, 38, .12);
  --shadow-lg: 0 30px 70px rgba(74, 51, 38, .16);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;

  --font-body: 'Poppins', system-ui, sans-serif;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Great Vibes', cursive;

  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
  font-weight: 300;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Shared bits ---------- */
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: .8rem;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  color: var(--choco);
  letter-spacing: .3px;
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--gold);
  font-size: 1.25em;
  line-height: .8;
}

.section-head { text-align: center; max-width: 660px; margin: 0 auto 3rem; }
.section-lead { color: var(--muted); margin-top: .9rem; font-size: 1.05rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, background .35s;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #fff;
  box-shadow: 0 10px 24px rgba(201, 149, 47, .35);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(201, 149, 47, .45); }
.btn--ghost {
  background: transparent;
  color: var(--choco);
  border: 1.5px solid var(--gold);
}
.btn--ghost:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }
.btn--ghost-light { color: #fff; border-color: rgba(255,255,255,.7); }
.btn--ghost-light:hover { background: #fff; color: var(--choco); }

/* ===========================================================
   NAVBAR
   =========================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s, box-shadow .4s, padding .4s;
  padding: .55rem 0;
}
.nav.scrolled {
  background: rgba(253, 247, 240, .92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.nav__brand { display: flex; align-items: center; gap: .65rem; }
.nav__logo {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.nav__brandtext {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--choco);
  display: flex; flex-direction: column;
}
.nav__brandtext small {
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  font-family: var(--font-body);
}
.nav__links { margin-left: auto; display: flex; gap: 2rem; }
.nav__links a {
  font-size: .95rem; font-weight: 400; color: var(--ink);
  position: relative; padding: .2rem 0;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 2px; background: var(--gold);
  transition: width .3s;
}
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__cta { padding: .6rem 1.2rem; font-size: .88rem; }

.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav__burger span {
  width: 26px; height: 2.5px; background: var(--choco); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 1.5rem 60px;
  background:
    radial-gradient(1100px 600px at 85% -5%, var(--blush), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, var(--cream), transparent 55%),
    var(--ivory);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.float {
  position: absolute; font-size: 2.6rem; opacity: .5; color: var(--gold);
  animation: bob 7s ease-in-out infinite;
  filter: drop-shadow(0 8px 14px rgba(74,51,38,.12));
}
.float svg { width: 1em; height: 1em; stroke-width: 1.4; }
.float--1 { top: 18%; left: 8%;  font-size: 3rem; animation-delay: 0s; }
.float--2 { top: 64%; left: 14%; animation-delay: 1.2s; }
.float--3 { top: 30%; right: 12%; font-size: 3.2rem; animation-delay: .6s; }
.float--4 { top: 74%; right: 18%; animation-delay: 1.8s; }
.float--5 { top: 10%; right: 38%; font-size: 1.8rem; animation-delay: 2.2s; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-4deg);} 50% { transform: translateY(-22px) rotate(4deg);} }

.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center;
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  line-height: 1.02;
  color: var(--choco);
  margin: .4rem 0 1.2rem;
}
.hero__title .script { font-size: 1.15em; }
.hero__sub { font-size: 1.12rem; color: var(--muted); max-width: 520px; }
.hero__sub strong { color: var(--gold-deep); font-weight: 600; }
.hero__actions { display: flex; gap: 1rem; margin: 1.8rem 0 2.4rem; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 2.4rem; flex-wrap: wrap; }
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--font-head); font-size: 2rem; color: var(--gold); font-weight: 700; }
.hero__stats span { font-size: .82rem; color: var(--muted); letter-spacing: .04em; }

/* Hero visual */
.hero__visual { position: relative; display: grid; place-items: center; min-height: 380px; }
.hero__badge {
  width: clamp(240px, 30vw, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(169,120,29,.3);
  position: relative; z-index: 3;
  animation: floatBadge 6s ease-in-out infinite;
}
.hero__badge img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #0c0a07;
  box-shadow: inset 0 0 0 3px rgba(12,10,7,.9);
}
@keyframes floatBadge { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-16px);} }
.ring { position: absolute; border-radius: 50%; border: 1.5px dashed var(--gold-soft); opacity: .6; }
.ring--1 { width: 76%; aspect-ratio:1; animation: spin 26s linear infinite; }
.ring--2 { width: 96%; aspect-ratio:1; border-style: dotted; opacity:.4; animation: spin 40s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg);} }

/* ===========================================================
   TRUST STRIP (marquee)
   =========================================================== */
.strip {
  background: linear-gradient(135deg, var(--choco), #2c1d14);
  color: var(--gold-soft);
  overflow: hidden;
  padding: .9rem 0;
}
.strip__track {
  display: flex; gap: 3rem; white-space: nowrap; width: max-content;
  animation: marquee 28s linear infinite;
}
.strip__track span { font-size: .92rem; letter-spacing: .06em; }
@keyframes marquee { to { transform: translateX(-50%);} }

/* ===========================================================
   ABOUT
   =========================================================== */
.about { max-width: var(--maxw); margin: 0 auto; padding: 6rem 1.5rem; }
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: center; }
.about__media { display: grid; place-items: center; }
.about__photo {
  position: relative;
  width: 100%; max-width: 420px; aspect-ratio: 1;
  border-radius: 32% 68% 60% 40% / 42% 38% 62% 58%;
  background: linear-gradient(150deg, var(--blush), var(--cream));
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  animation: morph 12s ease-in-out infinite;
}
@keyframes morph {
  0%,100% { border-radius: 32% 68% 60% 40% / 42% 38% 62% 58%; }
  50% { border-radius: 60% 40% 38% 62% / 56% 62% 38% 44%; }
}
.about__photo .about__icon {
  display: block;
  font-size: clamp(7rem, 18vw, 13rem);
  line-height: 1;
  filter: drop-shadow(0 12px 22px rgba(74, 51, 38, .18));
}
.about__chip {
  position: absolute; background: #fff; color: var(--choco);
  padding: .5rem 1rem; border-radius: 999px; font-size: .82rem; font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.about__chip--a { top: 6%; left: -4%; }
.about__chip--b { bottom: 14%; left: -8%; color: var(--gold-deep); }
.about__chip--c { bottom: 4%; right: 2%; }
.about__text p { color: var(--muted); margin-bottom: 1rem; max-width: 540px; }
.about__list { list-style: none; margin: 1.2rem 0 1.8rem; }
.about__list li { color: var(--ink); margin-bottom: .5rem; font-weight: 400; }

/* ===========================================================
   CATALOG
   =========================================================== */
.catalog {
  max-width: var(--maxw); margin: 0 auto; padding: 4rem 1.5rem 6rem;
}
.filters {
  display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-bottom: 3rem;
}
.filter {
  background: #fff; border: 1.5px solid var(--line); color: var(--muted);
  padding: .6rem 1.25rem; border-radius: 999px; font-family: var(--font-body);
  font-size: .9rem; cursor: pointer; transition: all .3s; font-weight: 400;
}
.filter:hover { border-color: var(--gold); color: var(--gold-deep); }
.filter.is-active {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #fff; border-color: transparent; box-shadow: 0 8px 18px rgba(201,149,47,.3);
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.6rem;
}
.card {
  background: #fff; border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
  animation: cardIn .5s both;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
@keyframes cardIn { from { opacity: 0; transform: translateY(16px);} to { opacity:1; transform: none;} }
.card__media {
  aspect-ratio: 4/3; display: grid; place-items: center; position: relative;
}
.card__media i {
  display: grid; place-items: center;
  width: 116px; height: 116px; border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  box-shadow: 0 10px 24px rgba(74, 51, 38, .14), inset 0 0 0 1px rgba(255,255,255,.6);
}
.card__media svg {
  width: 62px; height: 62px; color: var(--gold-deep);
  stroke-width: 1.7;
}
.card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.card--photo .card__media { background: var(--cream) !important; }
.card__tag {
  position: absolute; top: .8rem; left: .8rem;
  background: rgba(255,255,255,.9); color: var(--gold-deep);
  font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 999px; font-weight: 600;
}
.card__real {
  position: absolute; top: .8rem; right: .8rem;
  background: var(--choco); color: #fff;
  font-size: .62rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .28rem .6rem; border-radius: 999px; font-weight: 600;
  display: inline-flex; align-items: center; gap: .3rem;
}
.card__real::before { content: "✓"; font-size: .7rem; }
.card__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.card__title { font-family: var(--font-head); font-size: 1.4rem; font-weight: 600; color: var(--choco); }
.card__desc { color: var(--muted); font-size: .88rem; margin: .4rem 0 1rem; flex: 1; }
.card__foot { display: flex; align-items: center; justify-content: space-between; }
.card__price { color: var(--muted); font-weight: 500; font-size: .82rem; }
.card__enquire {
  font-size: .82rem; font-weight: 500; color: var(--gold-deep);
  border: 1.5px solid var(--gold-soft); padding: .4rem .9rem; border-radius: 999px;
  transition: all .3s;
}
.card__enquire:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* ===========================================================
   WHY US
   =========================================================== */
.why { background: linear-gradient(180deg, var(--cream), var(--ivory)); padding: 6rem 1.5rem; }
.why .section-head { max-width: 1000px; }
.why .section-title { font-size: clamp(1.9rem, 4vw, 3rem); }
.why .section-title .script { font-size: 1.1em; }
@media (min-width: 880px) { .why .section-title { white-space: nowrap; } }
.why__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.6rem;
}
.feature {
  background: #fff; padding: 2.2rem 1.6rem; border-radius: var(--r-md);
  text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .4s, box-shadow .4s;
}
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.feature__icon {
  width: 70px; height: 70px; margin: 0 auto 1.1rem; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blush), var(--cream));
}
.feature__icon svg { width: 30px; height: 30px; color: var(--gold-deep); stroke-width: 1.8; }
.feature h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--choco); margin-bottom: .4rem; font-weight: 600; }
.feature p { color: var(--muted); font-size: .92rem; }

/* ===========================================================
   STEPS
   =========================================================== */
.steps { max-width: var(--maxw); margin: 0 auto; padding: 6rem 1.5rem; }
.steps__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 2rem; }
.step {
  position: relative; background: #fff; padding: 2.4rem 1.8rem 2rem;
  border-radius: var(--r-md); box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.step__num {
  position: absolute; top: -22px; left: 1.8rem;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.4rem;
  color: #fff; background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 8px 18px rgba(201,149,47,.35);
}
.step h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--choco); margin: .4rem 0 .4rem; font-weight: 600; }
.step p { color: var(--muted); font-size: .92rem; }

/* ===========================================================
   CTA
   =========================================================== */
.cta { padding: 0 1.5rem 6rem; }
.cta__inner {
  max-width: var(--maxw); margin: 0 auto; text-align: center;
  background: linear-gradient(135deg, var(--choco), #2c1d14);
  border-radius: var(--r-lg); padding: 4.5rem 2rem;
  position: relative; overflow: hidden;
}
.cta__inner::before, .cta__inner::after {
  content: ''; position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(227,192,103,.25), transparent 70%);
}
.cta__inner::before { width: 360px; height: 360px; top: -120px; left: -80px; }
.cta__inner::after { width: 300px; height: 300px; bottom: -120px; right: -60px; }
.cta__inner h2 {
  font-family: var(--font-head); color: #fff; font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem); position: relative; z-index: 1;
}
.cta__inner .script { color: var(--gold-soft); }
.cta__inner p { color: rgba(255,255,255,.75); margin: .8rem 0 2rem; position: relative; z-index: 1; }
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: #2a1d14; color: rgba(255,255,255,.78); padding: 4.5rem 1.5rem 2rem; }
.footer__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.5fr; gap: 2.5rem;
}
.footer__logo { width: 64px; height: 64px; border-radius: 50%; margin-bottom: 1rem; }
.footer__about p { font-size: .92rem; max-width: 320px; margin-bottom: 1.3rem; }
.footer__social { display: flex; gap: .7rem; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: rgba(255,255,255,.08); transition: all .3s;
}
.footer__social a:hover { background: var(--gold); transform: translateY(-3px); }
.footer__pay { margin-top: 1.6rem; }
.footer__pay-label {
  display: inline-block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: .6rem; font-weight: 600;
}
.footer__pay-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.footer__pay-badges span {
  font-size: .75rem; font-weight: 500; color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  padding: .35rem .7rem; border-radius: 8px;
}
.footer__col h4 {
  font-family: var(--font-head); font-size: 1.3rem; color: #fff;
  margin-bottom: 1.1rem; font-weight: 600;
}
.footer__col a { display: block; font-size: .92rem; margin-bottom: .6rem; transition: color .25s, padding .25s; }
.footer__col a:hover { color: var(--gold-soft); padding-left: 5px; }
.footer__contact-item {
  display: flex; gap: .6rem; font-size: .92rem; margin-bottom: .9rem; align-items: flex-start;
}
.footer__contact-item svg {
  width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--gold-soft);
}
.footer__contact-item a:hover { color: var(--gold-soft); }
.footer__map { color: var(--gold-soft); font-weight: 500; font-size: .9rem; margin-top: .4rem; }
.footer__bottom {
  max-width: var(--maxw); margin: 3rem auto 0; padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem;
  font-size: .85rem; color: rgba(255,255,255,.55);
}

/* ===========================================================
   FLOATING WHATSAPP
   =========================================================== */
.fab {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(37,211,102,.5);
  animation: pulse 2.4s infinite;
  transition: transform .3s;
}
.fab:hover { transform: scale(1.08); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5);}
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0);}
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0);}
}

/* ===========================================================
   SCROLL REVEAL
   =========================================================== */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in-view { opacity: 1; transform: none; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
/* Tablet / small laptop */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__text { order: 2; }
  .hero__visual { order: 1; min-height: 300px; }
  .hero__actions, .hero__stats { justify-content: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { order: 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile: nav drawer + drop the hero logo */
@media (max-width: 720px) {
  .nav__links {
    position: fixed; inset: 0 0 auto 0; top: 0; padding: 90px 2rem 2rem;
    flex-direction: column; gap: 1.4rem; background: var(--ivory);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%); transition: transform .4s cubic-bezier(.2,.8,.2,1);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__cta { display: none; }
  .nav__burger { display: flex; margin-left: auto; }
  .nav__brandtext { font-size: 1.1rem; }

  /* No hero logo / floating clutter on phones — keep it clean */
  .hero { min-height: auto; padding: 104px 1.25rem 52px; }
  .hero__visual, .hero__bg { display: none; }
  .hero__title { font-size: clamp(2.4rem, 11vw, 3.4rem); }

  /* Tighter vertical rhythm on small screens */
  .about, .steps, .why { padding: 3.6rem 1.25rem; }
  .catalog { padding: 2.4rem 1.25rem 3.6rem; }
  .cta { padding: 0 1.25rem 3.6rem; }
  .section-head { margin-bottom: 2.2rem; }
  .about__photo { max-width: 320px; }
}

/* Small phones */
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__stats { gap: 1.4rem; }
  .hero__stats strong { font-size: 1.7rem; }
  .cta__inner { padding: 2.6rem 1.2rem; }

  /* Category filter: one straight line you swipe through */
  .filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    gap: .5rem;
    margin: 0 -1.25rem 2rem;
    padding: 0 1.25rem .7rem;
  }
  .filters::-webkit-scrollbar { height: 3px; }
  .filters::-webkit-scrollbar-thumb { background: var(--gold-soft); border-radius: 999px; }
  .filter {
    flex: 0 0 auto; white-space: nowrap; scroll-snap-align: start;
    padding: .5rem .95rem; font-size: .8rem;
  }

  /* Catalog: ~3 compact products per row */
  .products { grid-template-columns: repeat(3, 1fr); gap: .6rem; }
  .card { border-radius: 14px; }
  .card__media { aspect-ratio: 1 / 1; }
  .card__media i {
    width: 50px; height: 50px;
    box-shadow: 0 6px 14px rgba(74, 51, 38, .12);
  }
  .card__media svg { width: 26px; height: 26px; stroke-width: 1.8; }
  .card__tag { font-size: .48rem; padding: .18rem .4rem; top: .35rem; left: .35rem; letter-spacing: .03em; }
  .card__real { font-size: .46rem; padding: .16rem .38rem; top: .35rem; right: .35rem; gap: .15rem; }
  .card__real::before { font-size: .55rem; }
  .card__body { padding: .55rem .5rem .65rem; }
  .card__title {
    font-size: .76rem; line-height: 1.18; margin-bottom: .35rem;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .card__desc { display: none; }
  .card__foot { margin-top: auto; }
  .card__price { display: none; }
  .card__enquire {
    width: 100%; text-align: center; padding: .4rem; font-size: .68rem; border-radius: 8px;
  }

  /* Full-width, thumb-friendly buttons */
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn, .cta__actions .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
