/* ============================================================
   Twenty Four Bakery — توينتي فور بيكري
   Brand: rose pink #E8788F · baby blue #C7E3F8 · chocolate brown
   ============================================================ */

:root {
  /* brand */
  --pink: #e8788f;
  --pink-deep: #d4536f;
  --pink-soft: #f6d7df;
  --pink-mist: #fbecf0;
  --blue: #c7e3f8;
  --blue-deep: #8fc1e9;
  --blue-ink: #2e5c80;
  --brown: #3d2420;
  --brown-soft: #6b4a44;
  --cream: #faf4ef;
  --card: #fffdfb;

  /* type */
  --font: "IBM Plex Sans Arabic", system-ui, sans-serif;

  /* shape */
  --r-lg: 2.5rem;
  --r-md: 1.5rem;
  --r-sm: 1rem;

  /* motion */
  --ease: cubic-bezier(0.33, 1, 0.68, 1);
  --dur: 0.3s;

  --shadow-sm: 0 2px 10px rgba(61, 36, 32, 0.06);
  --shadow-md: 0 14px 40px -12px rgba(61, 36, 32, 0.18);
}

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

html {
  scroll-behavior: smooth;
  /* the rotated marquee overflows slightly; without this, mobile browsers
     widen the layout viewport and the whole page pans sideways */
  overflow-x: clip;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--brown);
  line-height: 1.7;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, 72rem);
  margin-inline: auto;
}

.section {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

/* ============ Preloader ============ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: var(--cream);
}

.preloader__inner {
  display: grid;
  justify-items: center;
  gap: 1.25rem;
}

.preloader__logo {
  width: 6rem;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.preloader__count {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}

.preloader__curtain {
  position: absolute;
  inset: 0;
  background: var(--pink);
  transform: scaleY(0);
  transform-origin: top;
  z-index: -1;
}

/* ============ Scroll progress ============ */
.progress {
  position: fixed;
  top: 0;
  inset-inline: 0;
  height: 4px;
  z-index: 150;
  pointer-events: none;
}

.progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--pink-deep));
  transform: scaleX(0);
  transform-origin: right;
}

/* ============ Custom cursor ============ */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--pink);
  pointer-events: none;
  z-index: 180;
  opacity: 0;
  mix-blend-mode: multiply;
}

@media (hover: none), (pointer: coarse) {
  .cursor {
    display: none;
  }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: 99px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease),
    background-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  min-height: 44px;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn__icon {
  width: 1.1em;
  height: 1.1em;
  flex: none;
  transition: transform var(--dur) var(--ease);
}

.btn:hover .btn__icon {
  transform: translate(-3px, -3px) rotate(-8deg);
}

.btn--solid {
  background: var(--brown);
  color: var(--cream);
}

.btn--solid:hover {
  background: var(--pink-deep);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  border-color: var(--brown);
  color: var(--brown);
  background: transparent;
}

.btn--outline:hover {
  background: var(--brown);
  color: var(--cream);
}

.btn--ghost {
  border-color: rgba(61, 36, 32, 0.25);
  color: var(--brown);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  border-color: var(--brown);
  background: rgba(255, 255, 255, 0.8);
}

.btn--light {
  background: var(--cream);
  color: var(--brown);
}

.btn--light:hover {
  background: var(--blue);
  color: var(--blue-ink);
  box-shadow: var(--shadow-md);
}

/* ============ Hero shell ============ */
.hero-shell {
  padding: 1rem;
}

.hero-card {
  position: relative;
  border-radius: var(--r-lg);
  background:
    radial-gradient(60rem 30rem at 85% -10%, rgba(199, 227, 248, 0.55), transparent 60%),
    linear-gradient(150deg, #f7dde4 0%, #f0bdcb 55%, #eaa9bb 100%);
  overflow: hidden;
  min-height: min(92svh, 60rem);
  display: flex;
  flex-direction: column;
}

/* floating decorations */
.float-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.float-blob--blue {
  width: clamp(8rem, 16vw, 14rem);
  height: clamp(8rem, 16vw, 14rem);
  background: radial-gradient(circle at 35% 35%, #e2f1fc, var(--blue));
  top: 14%;
  inset-inline-start: -3rem;
  opacity: 0.85;
}

.float-blob--pink {
  width: clamp(5rem, 9vw, 8rem);
  height: clamp(5rem, 9vw, 8rem);
  background: radial-gradient(circle at 35% 35%, #fbd9e1, var(--pink));
  bottom: 18%;
  inset-inline-end: 6%;
  opacity: 0.55;
}

.sprinkle {
  position: absolute;
  width: 1.6rem;
  color: rgba(61, 36, 32, 0.35);
  pointer-events: none;
}

.sprinkle--1 { top: 22%; inset-inline-end: 12%; }
.sprinkle--2 { top: 60%; inset-inline-start: 8%; color: rgba(46, 92, 128, 0.4); }
.sprinkle--3 { bottom: 12%; inset-inline-start: 38%; }

/* ============ Header ============ */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1.25rem, 4vw, 3rem);
  position: relative;
  z-index: 5;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 1.15rem;
}

.brand__logo {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease);
}

.brand:hover .brand__logo {
  transform: rotate(-14deg) scale(1.06);
}

.brand__name em {
  font-style: normal;
  color: var(--pink-deep);
}

.nav {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2.2rem);
}

.nav__link {
  font-weight: 500;
  font-size: 0.98rem;
  position: relative;
  padding-block: 0.4rem;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--brown);
  transform: scaleX(0);
  transform-origin: inline-end;
  transition: transform 0.35s var(--ease);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
  transform-origin: inline-start;
}

.burger {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 130;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--brown);
  transition: transform 0.35s var(--ease);
}

.burger.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.burger.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* ============ Hero ============ */
.hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(1rem, 3vw, 2rem) clamp(1.25rem, 4vw, 3.5rem) clamp(3rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brown-soft);
  background: rgba(255, 255, 255, 0.55);
  padding: 0.45rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.4rem;
}

.hero__eyebrow-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--pink-deep);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 83, 111, 0.45); }
  60% { box-shadow: 0 0 0 9px rgba(212, 83, 111, 0); }
}

.hero__title {
  font-size: clamp(2.6rem, 6.2vw, 4.8rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
  max-width: 12ch;
}

.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--brown-soft);
  max-width: 38ch;
  margin-bottom: 2.2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* hero media */
.hero__media {
  position: relative;
  justify-self: center;
  width: min(100%, 26rem);
}

.hero__img-wrap {
  border-radius: 47% 53% 44% 56% / 55% 48% 52% 45%;
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  box-shadow: 0 30px 60px -20px rgba(110, 40, 60, 0.45);
  will-change: transform;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  will-change: transform;
}

.hero__chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: var(--r-sm);
  padding: 0.75rem 1.1rem;
  box-shadow: var(--shadow-md);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero__chip--followers {
  top: 9%;
  inset-inline-start: -10%;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.hero__chip-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pink-deep);
  line-height: 1.2;
}

.hero__chip-label {
  color: var(--brown-soft);
  font-weight: 500;
}

.hero__chip--fresh {
  bottom: 7%;
  inset-inline-end: -6%;
  color: var(--blue-ink);
}

.hero__chip--fresh svg {
  width: 1.3rem;
  height: 1.3rem;
}

.hero__scroll {
  position: absolute;
  bottom: 1.8rem;
  inset-inline-start: clamp(1.25rem, 4vw, 3.5rem);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown-soft);
  z-index: 3;
}

.hero__scroll-line {
  width: 3rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform-origin: inline-start;
  animation: scrollLine 2.2s var(--ease) infinite;
}

@keyframes scrollLine {
  0% { transform: scaleX(0); transform-origin: inline-start; }
  45% { transform: scaleX(1); transform-origin: inline-start; }
  55% { transform: scaleX(1); transform-origin: inline-end; }
  100% { transform: scaleX(0); transform-origin: inline-end; }
}

/* ============ Marquee ============ */
.marquee {
  background: var(--pink);
  color: #fff;
  overflow: hidden;
  padding-block: 1.1rem;
  margin-block: clamp(1.5rem, 3vw, 2.5rem);
  transform: rotate(-1.2deg) scale(1.02);
}

.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee__part {
  display: flex;
  align-items: center;
  flex: none;
}

.marquee__part span {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  white-space: nowrap;
  padding-inline: 1.4rem;
}

.marquee__part i {
  font-style: normal;
  opacity: 0.7;
}

/* ============ Labels & headings ============ */
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pink-deep);
  margin-bottom: 1.1rem;
}

.label__line {
  width: 2.4rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: inline-start;
}

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

.h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.h2--center {
  text-align: center;
}

.para {
  color: var(--brown-soft);
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  max-width: 52ch;
  margin-bottom: 1.8rem;
}

.para--center {
  text-align: center;
  margin-inline: auto;
}

/* split-text helpers */
.w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}

.wi {
  display: inline-block;
  will-change: transform;
}

/* ============ About ============ */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about__media {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow-md);
}

.about__media img,
.services__media img,
.visit__media img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  will-change: transform;
}

.about__badge {
  position: absolute;
  bottom: 1.2rem;
  inset-inline-start: 1.2rem;
  background: var(--blue);
  color: var(--blue-ink);
  border-radius: var(--r-sm);
  padding: 0.7rem 1.2rem;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  box-shadow: var(--shadow-md);
}

.about__badge strong {
  font-size: 1.6rem;
  font-weight: 700;
}

.about__badge span {
  font-size: 0.85rem;
  font-weight: 600;
}

/* features row */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.feature {
  background: var(--card);
  border: 1px solid rgba(61, 36, 32, 0.08);
  border-radius: var(--r-md);
  padding: 1.8rem 1.6rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature--filled {
  background: var(--pink-soft);
  border-color: transparent;
}

.feature__icon {
  display: inline-grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.7);
  color: var(--pink-deep);
  margin-bottom: 1.1rem;
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.feature:hover .feature__icon {
  transform: rotate(-8deg) scale(1.08);
}

.feature__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.feature h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature p {
  color: var(--brown-soft);
  font-size: 0.95rem;
}

/* ============ Statement ============ */
.statement {
  background: var(--card);
}

.statement__text {
  font-size: clamp(1.7rem, 4.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
  max-width: 24ch;
  margin-inline: auto;
}

.statement__text .sw {
  color: #e3cfd3;
  transition: none;
}

/* ============ Stats ============ */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.stat {
  background: var(--card);
  border: 1px solid rgba(61, 36, 32, 0.08);
  border-radius: var(--r-md);
  padding: 2rem 1.6rem 1.6rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.stat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.stat--accent {
  background: var(--pink-soft);
  border-color: transparent;
}

.stat--blue {
  background: var(--blue);
  border-color: transparent;
}

.stat--blue p {
  color: var(--blue-ink);
}

.stat__num {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.6rem;
  font-variant-numeric: tabular-nums;
}

.stat__num i {
  font-style: normal;
  font-size: 0.45em;
  font-weight: 700;
  color: var(--pink-deep);
}

.stat--blue .stat__num i {
  color: var(--blue-ink);
}

.stat p {
  color: var(--brown-soft);
  font-size: 0.93rem;
  font-weight: 500;
}

/* ============ Services ============ */
.services {
  background: var(--card);
}

.services__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.srow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--cream);
  border: 1px solid rgba(61, 36, 32, 0.08);
  border-radius: var(--r-md);
  padding: 1.5rem 1.8rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    background-color var(--dur) var(--ease);
}

.srow:hover {
  transform: translateX(-6px);
  box-shadow: var(--shadow-md);
}

.srow__text h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.srow__text p {
  color: var(--brown-soft);
  font-size: 0.92rem;
  max-width: 42ch;
}

.srow__arrow {
  flex: none;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid currentColor;
  color: var(--pink-deep);
  transition: transform 0.4s var(--ease), background-color var(--dur) var(--ease),
    color var(--dur) var(--ease);
}

.srow:hover .srow__arrow {
  transform: rotate(-45deg);
  background: var(--pink-deep);
  border-color: var(--pink-deep);
  color: #fff;
}

.srow__arrow svg {
  width: 1.3rem;
  height: 1.3rem;
}

.srow--dark {
  background: var(--brown);
  color: var(--cream);
  border-color: transparent;
}

.srow--dark .srow__text p {
  color: rgba(250, 244, 239, 0.75);
}

.srow--dark .srow__arrow {
  color: var(--pink-soft);
}

.srow--dark:hover .srow__arrow {
  background: var(--pink);
  border-color: var(--pink);
}

.services__media {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 24rem;
}

/* ============ Why ============ */
.why {
  text-align: center;
  overflow: hidden;
}

.why__title {
  font-size: clamp(2.8rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--pink-deep);
  margin-bottom: 1.2rem;
}

.why__sub {
  color: var(--brown-soft);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 46ch;
  margin: 0 auto 2.2rem;
}

/* ============ Visit ============ */
.visit__card {
  position: relative;
  background:
    radial-gradient(40rem 20rem at 10% 110%, rgba(199, 227, 248, 0.5), transparent 60%),
    linear-gradient(150deg, #f7dde4, #eba9bc);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.visit__blob {
  top: -4rem;
  inset-inline-end: 30%;
  inset-inline-start: auto;
}

.visit__info {
  position: relative;
  z-index: 2;
}

.visit__list {
  display: grid;
  gap: 1.4rem;
  margin-block: 1.8rem 2.2rem;
}

.visit__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.visit__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.75);
  color: var(--pink-deep);
}

.visit__icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.visit__list strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.visit__list p {
  color: var(--brown-soft);
  font-size: 0.95rem;
}

.visit__list a {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(61, 36, 32, 0.3);
  text-underline-offset: 4px;
  transition: text-decoration-color var(--dur);
}

.visit__list a:hover {
  text-decoration-color: var(--brown);
}

.visit__phones {
  text-align: end;
}

.visit__media {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
  box-shadow: 0 30px 60px -20px rgba(110, 40, 60, 0.4);
  position: relative;
  z-index: 2;
}

/* ============ Footer ============ */
.footer {
  background: var(--brown);
  color: var(--cream);
  padding-top: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2.5rem;
}

.brand--footer .brand__name {
  font-size: 1.25rem;
}

.brand--footer em {
  color: var(--pink);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.footer__nav a {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity var(--dur), color var(--dur);
}

.footer__nav a:hover {
  opacity: 1;
  color: var(--pink-soft);
}

.footer__big {
  font-size: clamp(4rem, 14vw, 13rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(250, 244, 239, 0.35);
  white-space: nowrap;
  user-select: none;
  padding-block: 1rem;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(250, 244, 239, 0.15);
  padding-block: 1.5rem;
  font-size: 0.88rem;
  opacity: 0.85;
}

.heart {
  color: var(--pink);
  display: inline-block;
  animation: heartbeat 1.6s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  12% { transform: scale(1.25); }
  24% { transform: scale(1); }
}

/* ============ Mobile menu ============ */
.mmenu {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: linear-gradient(160deg, #f7dde4, #eba9bc);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  /* burger is the last flex item, so in RTL it sits at the physical left */
  clip-path: circle(0% at 3.4rem 3.2rem);
  visibility: hidden;
}

.mmenu.is-open {
  clip-path: circle(150% at 3.4rem 3.2rem);
  visibility: visible;
}

.mmenu__close {
  /* mirrors the burger position (physical left in RTL) */
  position: absolute;
  top: 1.4rem;
  left: 1.25rem;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  color: var(--brown);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.35s var(--ease), background-color var(--dur);
}

.mmenu__close:hover {
  transform: rotate(90deg);
  background: #fff;
}

.mmenu__close svg {
  width: 1.4rem;
  height: 1.4rem;
}

.mmenu__nav {
  display: grid;
  gap: 1.4rem;
  text-align: center;
}

.mmenu__link {
  font-size: 1.8rem;
  font-weight: 700;
}

/* ============ Responsive ============ */
@media (max-width: 64rem) {
  .nav { display: none; }
  .header__cta { display: none; }
  .burger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 1.5rem;
  }

  .hero__text { display: grid; justify-items: center; }
  .hero__title { max-width: none; }
  .hero__actions { justify-content: center; }
  .hero__media { width: min(100%, 21rem); margin-bottom: 1.5rem; }
  .hero__chip--followers { inset-inline-start: -4%; }
  .hero__chip--fresh { inset-inline-end: -2%; }
  .hero__scroll { display: none; }

  .about__grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .services__media { min-height: 18rem; }
  .visit__card { grid-template-columns: 1fr; }
}

@media (max-width: 40rem) {
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .stat:last-child { grid-column: 1 / -1; }
  .stat { padding: 1.4rem 1.1rem 1.1rem; }
  .srow { padding: 1.2rem 1.3rem; }
  .hero-card { min-height: auto; }
}

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

  html {
    scroll-behavior: auto;
  }
}
