/* ── Variables ── */
:root {
  --white:   #F8F4EE;
  --cream:   #F0EAE0;
  --black:   #0A0907;
  --dark:    #141210;
  --surface: #1E1B17;
  --gold:    #B8924A;
  --muted:   #7A7060;
  --text:    #1A1814;
  --border:  rgba(0,0,0,0.09);
  --border-lt: rgba(255,255,255,0.08);

  --ff-d: 'Cormorant Garamond', Georgia, serif;
  --ff-b: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--ff-b);
  font-weight: 300;
  color: var(--text);
  background: var(--black);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; font-family: inherit; cursor: none; }

/* ── Cursor ── */
.cursor {
  position: fixed;
  width: 9px; height: 9px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
  background: var(--white);
  mix-blend-mode: difference;
  transition: width 0.2s var(--ease), height 0.2s var(--ease);
}
.cursor.big { width: 36px; height: 36px; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── Eyebrow labels ── */
.eyebrow {
  display: block;
  font-family: var(--ff-b);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.eyebrow--lt { color: rgba(255,255,255,0.35); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--ff-b);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 1px solid transparent;
  transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease);
  white-space: nowrap;
}
.btn--dark  { background: var(--black); color: var(--white); border-color: var(--black); }
.btn--dark:hover { background: #2c2820; border-color: #2c2820; }
.btn--light { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--light:hover { background: var(--cream); border-color: var(--cream); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn--ghost-lt { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.25); }
.btn--ghost-lt:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }
.btn--outline { background: transparent; color: var(--text); border-color: currentColor; }
.btn--outline:hover { background: var(--text); color: var(--white); }

/* ═══════════════════════════
   NAV
═══════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 1.6rem 4rem;
  gap: 1.5rem;
  transition: background 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(10,9,7,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1rem 4rem;
  border-bottom: 1px solid var(--border-lt);
}
.nav__logo { display: flex; flex-direction: row; align-items: center; gap: 0.7rem; }
.nav__logo-img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.nav__logo-text { display: flex; flex-direction: column; gap: 0.1rem; }
.nav__name {
  font-family: var(--ff-d);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}
.nav__origin {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.nav__links {
  display: flex;
  gap: 2.4rem;
  margin-left: auto;
}
.nav__link {
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--white); }
.nav__cta {
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.52rem 1.4rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  margin-left: 0.8rem;
}
.nav__cta:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* Back to Home — sub-pages (shop, partner) */
.nav__shop-btn {
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
  padding: 0.52rem 1.4rem;
  transition: background 0.2s, border-color 0.2s;
  margin-left: 0.8rem;
  white-space: nowrap;
}
.nav__shop-btn:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.75); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--white);
}

/* ── Mobile menu ── */
.mmenu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.mmenu.open { opacity: 1; pointer-events: all; }
.mmenu__close {
  position: absolute;
  top: 1.8rem; right: 2rem;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.mmenu__close:hover { color: var(--white); }
.mmenu__link {
  font-family: var(--ff-d);
  font-size: 2.2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.mmenu__link:hover { color: var(--white); }

/* ═══════════════════════════
   HERO — photo background
═══════════════════════════ */
.hero {
  min-height: 100vh;
  background: #04060e;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Desert night photo */
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

/* Subtle dark veil to keep text crisp */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 14, 0.32);
  z-index: 1;
  pointer-events: none;
}

/* Fade out the static shooting star streak baked into the top-left of the photo */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 28%;
  height: 35%;
  background: radial-gradient(ellipse at 10% 15%, rgba(4,6,14,0.82) 0%, rgba(4,6,14,0) 65%);
  z-index: 3;
  pointer-events: none;
}

/* Canvas — shooting stars + twinkle only, transparent */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}

/* Centered content */
.hero__content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 9rem 2rem 10rem;
  gap: 1.2rem;
  max-width: 820px;
  width: 100%;
}
.hero__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 0.4rem;
}
.hero__title {
  font-family: var(--ff-d);
  font-size: clamp(5rem, 10vw, 13rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.hero__tagline {
  font-family: var(--ff-d);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.hero__body {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.32);
  line-height: 1.85;
  max-width: 400px;
  font-weight: 300;
}
.hero__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.6rem;
}

/* Smooth gradient fade at hero bottom — blends photo into dark section */
.hero__fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to bottom, rgba(13,11,9,0) 0%, rgba(13,11,9,0.85) 70%, #0D0B09 100%);
  z-index: 3;
  pointer-events: none;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  transition: opacity 0.5s;
}
.hero__scroll.hidden { opacity: 0; pointer-events: none; }
.hero__scroll span {
  display: block;
  width: 1px;
  height: 52px;
  position: relative;
  overflow: hidden;
}
.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.28));
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: translateY(-100%); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

/* ═══════════════════════════
   BEST SELLERS
═══════════════════════════ */
.section { background: #0D0B09; counter-reset: pf-counter; }

.section__head {
  padding: 6rem 5rem 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.section__head::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2.5rem;
}
.section .eyebrow { color: rgba(255,255,255,0.3); }

.section__title {
  font-family: var(--ff-d);
  font-size: clamp(2.4rem, 3.8vw, 4.2rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.pf {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,0.055);
  padding: 4rem 5rem;
  align-items: center;
  transition: background 0.3s;
  position: relative;
  counter-increment: pf-counter;
}
.pf:last-of-type { border-bottom: 1px solid rgba(255,255,255,0.055); }
.pf:hover { background: rgba(255,255,255,0.018); }

/* large decorative number watermark */
.pf::after {
  content: '0' counter(pf-counter);
  position: absolute;
  bottom: -0.5rem; right: 2rem;
  font-family: var(--ff-d);
  font-size: 9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.pf--flip .pf__img  { order: 2; }
.pf--flip .pf__text { order: 1; padding-left: 0; padding-right: 4rem; }

.pf__num {
  position: absolute;
  top: 1.6rem; left: 1.8rem;
  font-family: var(--ff-d);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.14);
  z-index: 2;
  pointer-events: none;
}

.pf__img {
  background: #1A1612;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  max-height: 540px;
  position: relative;
  z-index: 1;
}
.pf__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.pf:hover .pf__img img { transform: scale(1.05); }
.pf__img--left  img { object-position: left center; }
.pf__img--right img { object-position: right center; }

.pf__text {
  padding-left: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  z-index: 1;
}
.pf__house {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.pf__name {
  font-family: var(--ff-d);
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.015em;
  line-height: 1.05;
}
.pf__arabic {
  font-family: var(--ff-d);
  font-size: 1rem;
  color: rgba(255,255,255,0.14);
  font-weight: 300;
}
.pf__desc {
  font-size: 0.88rem;
  color: rgba(248,244,238,0.5);
  line-height: 1.9;
  font-weight: 300;
  max-width: 440px;
}
.pf__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.pf__notes span {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.32);
  background: transparent;
}
.pf__meta {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

.shop-cta {
  padding: 3.5rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,0.055);
}
.shop-cta p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

/* ═══════════════════════════
   OUR WORK
═══════════════════════════ */
.work {
  background: var(--black);
  padding: 7rem 5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.work__header { margin-bottom: 3.5rem; }
.work__title {
  font-family: var(--ff-d);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 600px;
}
.work__sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.32);
  line-height: 1.85;
  max-width: 500px;
  font-weight: 300;
}
.work__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  margin-bottom: 5rem;
  height: 520px;
}
.work__cell {
  background: var(--surface);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(255,255,255,0.06);
}
.work__cell--large { grid-row: 1 / 3; }
.work__cell img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.work__placeholder-inner { text-align: center; z-index: 1; display: flex; flex-direction: column; gap: 0.3rem; }
.work__placeholder-inner p { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.13); }
.work__placeholder-inner span { font-size: 0.54rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.07); }
.work__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-lt);
  padding-top: 3.5rem;
}
.work__stat { display: flex; flex-direction: column; gap: 0.5rem; padding: 0 2rem 0 0; border-right: 1px solid rgba(255,255,255,0.05); }
.work__stat:first-child { padding-left: 0; }
.work__stat:last-child  { border-right: none; }
.work__stat-n { font-family: var(--ff-d); font-size: 3rem; font-weight: 300; color: var(--white); line-height: 1; }
.work__stat-l { font-size: 0.62rem; letter-spacing: 0.17em; text-transform: uppercase; color: rgba(255,255,255,0.24); }

/* ═══════════════════════════
   PARTNER CTA
═══════════════════════════ */
.partner-cta {
  background: #111009;
  padding: 8rem 5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.partner-cta__inner { max-width: 620px; }
.partner-cta__title {
  font-family: var(--ff-d);
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.4rem;
}
.partner-cta__body {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.36);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

/* ═══════════════════════════
   OUR STORY
═══════════════════════════ */
.story {
  background: var(--cream);
  padding: 7rem 5rem;
}
.story__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.story__title {
  font-family: var(--ff-d);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.4rem;
}
.story__body { font-size: 0.9rem; line-height: 1.85; color: var(--muted); font-weight: 300; margin-bottom: 0.9rem; }
.story__imgs { position: relative; height: 520px; }
.story__img--a, .story__img--b { position: absolute; object-fit: cover; }
.story__img--a { width: 68%; height: 78%; top: 0; left: 0; z-index: 2; }
.story__img--b { width: 52%; height: 60%; bottom: 0; right: 0; z-index: 3; box-shadow: -8px -8px 0 var(--cream); }

/* ═══════════════════════════
   CONTACT
═══════════════════════════ */
.contact { background: var(--black); padding: 8rem 5rem; }
.contact__inner { max-width: 560px; margin: 0 auto; text-align: center; }
.contact__title {
  font-family: var(--ff-d);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.4rem;
}
.contact__body { font-size: 0.88rem; color: rgba(255,255,255,0.35); line-height: 1.85; font-weight: 300; margin-bottom: 2.5rem; }
.contact__links { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════
   FOOTER
═══════════════════════════ */
.footer { background: var(--black); border-top: 1px solid var(--border-lt); padding: 3rem 5rem; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; }
.footer__name { font-family: var(--ff-d); font-size: 1.1rem; font-weight: 400; color: var(--white); letter-spacing: 0.04em; margin-bottom: 0.2rem; }
.footer__sub { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.2); }
.footer__email { display: block; margin-top: 0.6rem; font-size: 0.65rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.38); transition: color 0.2s; }
.footer__email:hover { color: var(--gold); }
.footer__nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer__nav a { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer__nav a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.5rem; }
.footer__bottom p { font-size: 0.65rem; color: rgba(255,255,255,0.14); letter-spacing: 0.05em; }

/* ═══════════════════════════
   PARTNER PAGE
═══════════════════════════ */
.partner-hero { background: var(--black); padding: 10rem 5rem 6rem; border-bottom: 1px solid var(--border-lt); }
.partner-hero__title {
  font-family: var(--ff-d);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1.2rem;
}
.partner-hero__body { font-size: 0.9rem; color: rgba(255,255,255,0.35); line-height: 1.85; font-weight: 300; max-width: 500px; }
.partner-form-section { background: var(--cream); padding: 7rem 5rem; }
.partner-form-section__inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 7rem; align-items: start; }
.partner-info__title {
  font-family: var(--ff-d);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 1.4rem;
}
.partner-info__body { font-size: 0.88rem; color: var(--muted); line-height: 1.85; font-weight: 300; margin-bottom: 0.9rem; }
.partner-info__list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.partner-info__list li { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.03em; padding-left: 1rem; position: relative; line-height: 1.5; }
.partner-info__list li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 4px; height: 1px; background: var(--muted); }
.partner-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.form-group input,
.form-group textarea {
  font-family: var(--ff-b);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: 1px solid rgba(0,0,0,0.18);
  padding: 0.85rem 1rem;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  cursor: text;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus { border-color: rgba(0,0,0,0.4); }
.form-group textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-submit { margin-top: 0.5rem; }
.form-note { font-size: 0.68rem; color: rgba(0,0,0,0.28); margin-top: 0.8rem; line-height: 1.55; }

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 1024px) {
  .pf { grid-template-columns: 1fr 1fr; padding: 3.5rem 3rem; }
  .pf__text { padding-left: 2.5rem; }
  .pf--flip .pf__text { padding-right: 2.5rem; }
  .section__head { padding: 5rem 3rem 3rem; }
  .shop-cta { padding: 3rem; }
}

@media (max-width: 900px) {
  .nav { padding: 1.4rem 2rem; }
  .nav.scrolled { padding: 0.9rem 2rem; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  /* sub-page back btn hides behind burger on mobile */
  .nav__shop-btn { display: none; }

  .hero__content { padding: 7rem 1.5rem 8rem; }
  .hero__title { font-size: clamp(4rem, 13vw, 7rem); }

  .section__head { padding: 4rem 2rem 2.5rem; }
  .pf { grid-template-columns: 1fr; padding: 3rem 2rem; gap: 2rem; }
  .pf__num { position: relative; top: auto; left: auto; display: none; }
  .pf::after { font-size: 5rem; }
  .pf--flip .pf__img  { order: 1; }
  .pf--flip .pf__text { order: 2; padding-right: 0; }
  .pf__text { padding-left: 0; }
  .pf__img { max-height: 380px; aspect-ratio: 4 / 3; }
  .shop-cta { padding: 2.5rem 2rem; flex-direction: column; align-items: flex-start; }

  .work { padding: 5rem 2rem; }
  .work__grid { grid-template-columns: 1fr 1fr; height: auto; }
  .work__cell { aspect-ratio: 4 / 3; }
  .work__cell--large { grid-row: auto; grid-column: 1 / -1; }
  .work__stats { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .work__stat { border: none; padding: 0; }

  .partner-cta { padding: 5rem 2rem; }
  .story { padding: 5rem 2rem; }
  .story__inner { grid-template-columns: 1fr; gap: 3rem; }
  .story__imgs { height: 260px; }
  .contact { padding: 5rem 2rem; }
  .footer { padding: 3rem 2rem; }
  .footer__nav { gap: 1.2rem; }
  .partner-hero { padding: 8rem 2rem 4rem; }
  .partner-form-section { padding: 5rem 2rem; }
  .partner-form-section__inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 560px) {
  .hero__title { font-size: clamp(3.6rem, 14vw, 5rem); }
  .hero__actions { flex-direction: column; align-items: center; width: 100%; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .work__grid { grid-template-columns: 1fr; }
  .work__cell--large { grid-column: auto; }
  .work__stats { grid-template-columns: 1fr 1fr; }
  .pf__name { font-size: 1.6rem; }
}
