/* =========================================================
   LALI & CO — main stylesheet
   Online handbag & accessory boutique · Lahore, Pakistan
   Palette: cream / beige / warm black / muted rose
   Type: Jost (single family, weight-driven hierarchy)
   ========================================================= */

:root {
  /* --- surfaces --- */
  --cream: #fbf8f4;
  --cream-2: #f5efe6;
  --beige: #ebe1d4;
  --beige-2: #ddcfbc;
  --white: #ffffff;

  /* --- ink --- */
  --black: #17140f;
  --ink: #2a2520;
  --ink-2: #4a423a;
  --muted: #7c7368;
  --muted-2: #9c9287;

  /* --- accent --- */
  --rose: #c4868d;
  --rose-deep: #a96b73;
  --rose-mid: #dcaeb2;
  --rose-soft: #f7e8e8;
  --rose-wash: #fbf2f1;

  /* --- lines --- */
  --line: rgba(23, 20, 15, 0.10);
  --line-soft: rgba(23, 20, 15, 0.06);
  --line-light: rgba(255, 255, 255, 0.12);

  --font: 'Jost', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;

  --r-sm: 6px;
  --r: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  --sh-sm: 0 2px 10px rgba(23, 20, 15, 0.05);
  --sh: 0 10px 34px rgba(23, 20, 15, 0.07);
  --sh-lg: 0 26px 70px rgba(23, 20, 15, 0.12);

  --container: 1180px;
  --header-h: 68px;
  --announce-h: 38px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------------- reset ---------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
input, select, textarea, button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.14;
  color: var(--black);
}
p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

::selection { background: var(--rose-soft); color: var(--black); }

/* ---------------- primitives ---------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.section--beige { background: var(--cream-2); }
.section--rose { background: var(--rose-wash); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--rose);
}

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

.section-head h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 300;
}
.section-head h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose-deep);
}
.section-head .lead {
  margin-top: 18px;
  font-size: 17px;
  color: var(--muted);
  font-weight: 300;
}

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.28s var(--ease), background 0.28s var(--ease),
              color 0.28s var(--ease), border-color 0.28s var(--ease),
              box-shadow 0.28s var(--ease);
}
.btn svg { width: 16px; height: 16px; flex: 0 0 auto; }

.btn-dark {
  background: var(--black);
  color: var(--cream);
  border: 1px solid var(--black);
}
.btn-dark:hover { background: var(--ink-2); border-color: var(--ink-2); transform: translateY(-2px); box-shadow: var(--sh); }

.btn-rose {
  background: var(--rose);
  color: #fff;
  border: 1px solid var(--rose);
}
.btn-rose:hover { background: var(--rose-deep); border-color: var(--rose-deep); transform: translateY(-2px); box-shadow: var(--sh); }

.btn-ghost {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--beige-2);
}
.btn-ghost:hover { border-color: var(--black); background: var(--white); transform: translateY(-2px); }

.btn-sm { padding: 10px 18px; font-size: 12.5px; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--beige-2);
  padding-bottom: 4px;
  transition: gap 0.28s var(--ease), border-color 0.28s var(--ease), color 0.28s var(--ease);
}
.link-arrow:hover { gap: 14px; border-color: var(--rose); color: var(--rose-deep); }

/* ---------------- announcement bar ---------------- */
.announce {
  background: var(--black);
  color: rgba(251, 248, 244, 0.86);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  height: var(--announce-h);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.announce .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.announce span { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }
.announce .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--rose); flex: 0 0 auto; }
.announce .hide-sm { display: inline-flex; }

/* ---------------- header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 248, 244, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(23, 20, 15, 0.04);
}

.nav-wrapper {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--black);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  flex: 0 0 auto;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.12; }
.brand-text strong {
  font-size: 16.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--black);
}
.brand-text em {
  font-style: normal;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 2px;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative;
  padding: 9px 13px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  border-radius: var(--r-sm);
  transition: color 0.24s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 3px;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--black); }
.nav-links a.nav-privacy { color: var(--muted); font-size: 13px; }

.header-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--black);
  padding: 8px 4px;
}
.header-phone svg { width: 15px; height: 15px; color: var(--rose-deep); }
.header-phone:hover { color: var(--rose-deep); }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--beige-2);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: 0 0 auto;
}
.menu-toggle span {
  display: block;
  width: 17px;
  height: 1.4px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6.4px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.4px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 10px 24px 26px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 2px;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .btn { margin-top: 16px; }

/* ---------------- hero ---------------- */
.hero {
  position: relative;
  padding: 74px 0 88px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -220px;
  right: -180px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--rose-soft), transparent 68%);
  pointer-events: none;
}
.hero .container { position: relative; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 68px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(38px, 5.6vw, 66px);
  font-weight: 300;
  line-height: 1.05;
}
.hero-copy h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose-deep);
}
.hero-copy .lead {
  margin-top: 24px;
  max-width: 46ch;
  font-size: 17.5px;
  font-weight: 300;
  color: var(--ink-2);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero-proof .stars { color: var(--rose); font-size: 15px; letter-spacing: 0.14em; }
.hero-proof p { font-size: 14px; color: var(--muted); }
.hero-proof strong { color: var(--black); font-weight: 500; }

.hero-media { position: relative; }
.hero-frame {
  position: relative;
  border-radius: var(--r-xl) var(--r-xl) var(--r-xl) 120px;
  overflow: hidden;
  background: var(--beige);
  box-shadow: var(--sh-lg);
}
.hero-frame img { width: 100%; aspect-ratio: 5 / 6; object-fit: cover; }
.hero-media::after {
  content: '';
  position: absolute;
  inset: 26px -22px -24px 30px;
  border: 1px solid var(--beige-2);
  border-radius: var(--r-xl) var(--r-xl) var(--r-xl) 120px;
  z-index: -1;
}

.hero-tag {
  position: absolute;
  left: -26px;
  bottom: 54px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px 20px;
  box-shadow: var(--sh);
  min-width: 186px;
}
.hero-tag span {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.hero-tag strong {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
}
.hero-tag b {
  display: block;
  margin-top: 2px;
  font-size: 15px;
  font-weight: 500;
  color: var(--rose-deep);
}

.hero-badge {
  position: absolute;
  top: 22px;
  right: -14px;
  background: var(--black);
  color: var(--cream);
  border-radius: 999px;
  padding: 9px 17px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------------- trust strip ---------------- */
.trust {
  background: var(--black);
  color: rgba(251, 248, 244, 0.9);
  padding: 30px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.trust-item { display: flex; align-items: flex-start; gap: 13px; }
.trust-item svg { width: 21px; height: 21px; color: var(--rose-mid); flex: 0 0 auto; margin-top: 3px; }
.trust-item strong {
  display: block;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.trust-item p { font-size: 13px; color: rgba(251, 248, 244, 0.58); line-height: 1.5; }

/* ---------------- shop ---------------- */
.shop-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--beige-2);
  background: transparent;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--ink-2);
  transition: all 0.26s var(--ease);
}
.chip:hover { border-color: var(--rose); color: var(--rose-deep); }
.chip.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--cream);
}
.shop-count { font-size: 13.5px; color: var(--muted); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 28px;
}

.product-card {
  display: flex;
  flex-direction: column;
  opacity: 1;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.product-card.is-hidden { display: none; }

.p-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--beige);
  margin-bottom: 18px;
}
.p-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.product-card:hover .p-media img { transform: scale(1.045); }

.p-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--white);
  color: var(--black);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: var(--sh-sm);
}
.p-badge.sale { background: var(--rose); color: #fff; }
.p-badge.out { background: var(--muted); color: #fff; }

.p-quick {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.product-card:hover .p-quick,
.product-card:focus-within .p-quick { opacity: 1; transform: translateY(0); }
.p-quick .btn {
  background: rgba(251, 248, 244, 0.95);
  color: var(--black);
  border: 1px solid transparent;
  backdrop-filter: blur(6px);
}
.p-quick .btn:hover { background: var(--black); color: var(--cream); }

.p-cat {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.p-name {
  margin-top: 6px;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.p-desc {
  margin-top: 7px;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.55;
}
.p-foot {
  margin-top: 14px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.p-price { font-size: 17px; font-weight: 500; color: var(--black); }
.p-old { font-size: 14px; color: var(--muted-2); text-decoration: line-through; }
.p-rating {
  margin-left: auto;
  font-size: 12.5px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.p-rating span { color: var(--rose); }

.shop-note {
  margin-top: 48px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.shop-note p { font-size: 15px; color: var(--ink-2); font-weight: 300; }
.shop-note strong { font-weight: 500; color: var(--black); }

/* ---------------- feature band ---------------- */
.band-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 64px;
  align-items: center;
}
.band-media {
  border-radius: 140px var(--r-xl) var(--r-xl) var(--r-xl);
  overflow: hidden;
  background: var(--beige);
}
.band-media img { width: 100%; aspect-ratio: 5 / 6; object-fit: cover; }

.steps { display: flex; flex-direction: column; gap: 4px; margin-top: 34px; }
.step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-num {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--rose-deep);
  flex: 0 0 34px;
  padding-top: 4px;
}
.step h3 { font-size: 18px; font-weight: 400; }
.step p { margin-top: 5px; font-size: 14.5px; font-weight: 300; color: var(--muted); }

/* ---------------- about ---------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 66px;
  align-items: center;
}
.about-copy p {
  font-size: 16.5px;
  font-weight: 300;
  color: var(--ink-2);
  margin-top: 18px;
}
.about-copy p:first-of-type {
  font-size: 19px;
  color: var(--ink);
}
.about-sign {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}
.about-sign strong { display: block; color: var(--black); font-weight: 500; font-size: 15px; }

.about-media { position: relative; }
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-xl);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 40px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.stat { background: var(--cream); padding: 22px 18px; text-align: center; }
.section--beige .stat { background: var(--cream-2); }
.stat strong {
  display: block;
  font-size: 28px;
  font-weight: 300;
  color: var(--black);
  letter-spacing: -0.02em;
}
.stat span {
  display: block;
  margin-top: 4px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------------- reviews ---------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.stars { color: var(--rose); font-size: 14px; letter-spacing: 0.16em; }
.review-card blockquote {
  margin: 14px 0 0;
  font-size: 15.5px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.66;
}
.review-item {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.reviewer {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--rose-deep);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 500;
  flex: 0 0 auto;
}
.reviewer strong { display: block; font-size: 14.5px; font-weight: 500; color: var(--black); }
.reviewer span { display: block; font-size: 12.5px; color: var(--muted); }

.reviews-foot {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

/* ---------------- faq ---------------- */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 4px;
  text-align: left;
  font-size: 17.5px;
  font-weight: 400;
  color: var(--black);
  transition: color 0.24s var(--ease);
}
.faq-q:hover { color: var(--rose-deep); }
.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--rose-deep);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq-icon::before { top: 9.3px; left: 0; width: 20px; height: 1.4px; }
.faq-icon::after { left: 9.3px; top: 0; width: 1.4px; height: 20px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.faq-a-inner {
  padding: 0 60px 26px 4px;
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}
.faq-a-inner a { color: var(--rose-deep); border-bottom: 1px solid var(--rose-mid); }

/* ---------------- contact ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px;
  box-shadow: var(--sh-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field label .req { color: var(--rose-deep); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 15.5px;
  transition: border-color 0.24s var(--ease), background 0.24s var(--ease);
}
.field textarea { resize: vertical; min-height: 118px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: var(--white);
}
.field input.invalid,
.field select.invalid,
.field textarea.invalid { border-color: #c0563f; background: #fdf4f1; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237c7368' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 20px;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.55;
}
.form-consent input { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--rose-deep); flex: 0 0 auto; }
.form-consent a { color: var(--rose-deep); border-bottom: 1px solid var(--rose-mid); }

.form-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.form-status {
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  font-size: 14.5px;
  display: none;
}
.form-status.show { display: block; }
.form-status.ok { background: #eef5ee; color: #2f5d3a; border: 1px solid #cfe3d2; }
.form-status.error { background: #fdf1ee; color: #a2432c; border: 1px solid #f2d6cd; }

.contact-info { display: flex; flex-direction: column; gap: 2px; }
.info-row {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.info-row:first-child { border-top: 1px solid var(--line); }
.info-row svg { width: 19px; height: 19px; color: var(--rose-deep); flex: 0 0 auto; margin-top: 4px; }
.info-row span {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}
.info-row strong { font-size: 16.5px; font-weight: 400; color: var(--black); }
.info-row a:hover { color: var(--rose-deep); }
.info-row p { font-size: 14px; font-weight: 300; color: var(--muted); margin-top: 3px; }

.info-cta {
  margin-top: 26px;
  padding: 24px;
  background: var(--black);
  color: var(--cream);
  border-radius: var(--r-lg);
}
.info-cta h3 { color: var(--cream); font-size: 19px; font-weight: 400; }
.info-cta p { margin-top: 8px; font-size: 14.5px; font-weight: 300; color: rgba(251, 248, 244, 0.66); }
.info-cta .btn { margin-top: 18px; }

/* ---------------- footer ---------------- */
.site-footer {
  background: var(--black);
  color: rgba(251, 248, 244, 0.62);
  padding: 68px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 52px;
}
.footer-brand .brand-mark { background: var(--cream); color: var(--black); }
.footer-brand .brand-text strong { color: var(--cream); }
.footer-brand .brand-text em { color: rgba(251, 248, 244, 0.42); }
.footer-brand p {
  margin-top: 20px;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.66;
  max-width: 34ch;
}
.footer-col h4 {
  color: var(--cream);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { font-size: 14.5px; font-weight: 300; }
.footer-col a { transition: color 0.24s var(--ease); }
.footer-col a:hover { color: var(--cream); }
.footer-col .muted-line { color: rgba(251, 248, 244, 0.42); font-size: 13px; }

.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding: 24px 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13.5px;
}
.footer-bottom nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--cream); }

/* ---------------- back to top ---------------- */
.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--black);
  color: var(--cream);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  box-shadow: var(--sh);
  transition: all 0.3s var(--ease);
}
.back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--rose-deep); }
.back-top svg { width: 17px; height: 17px; }

/* ---------------- reveal ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =========================================================
   Privacy policy page
   ========================================================= */
.policy-hero {
  background: var(--cream-2);
  padding: 66px 0 58px;
  border-bottom: 1px solid var(--line);
}
.policy-hero .crumbs {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 20px;
}
.policy-hero .crumbs a:hover { color: var(--rose-deep); }
.policy-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 300;
}
.policy-hero .lead {
  margin-top: 20px;
  max-width: 72ch;
  font-size: 17px;
  font-weight: 300;
  color: var(--ink-2);
}
.policy-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.policy-dates span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
}

.policy-layout {
  display: grid;
  /* minmax(0, …) so the wide data tables inside .table-wrap scroll
     instead of forcing the whole page wider than the viewport */
  grid-template-columns: minmax(0, 250px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  padding: 66px 0 90px;
}

.policy-toc {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  min-width: 0;
}
.policy-toc h2 {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.policy-toc ol { display: flex; flex-direction: column; gap: 2px; counter-reset: toc; }
.policy-toc a {
  display: block;
  padding: 7px 12px;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-2);
  border-left: 2px solid var(--line);
  transition: all 0.24s var(--ease);
}
.policy-toc a:hover { color: var(--black); border-left-color: var(--rose); background: var(--cream-2); }

.policy-content { max-width: 78ch; min-width: 0; }
.policy-content section + section { margin-top: 46px; }
.policy-content h2 {
  font-size: 25px;
  font-weight: 400;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.policy-content h2 .num {
  font-size: 13px;
  font-weight: 500;
  color: var(--rose-deep);
  letter-spacing: 0.1em;
  margin-right: 10px;
  vertical-align: 2px;
}
.policy-content h3 {
  font-size: 17.5px;
  font-weight: 500;
  margin: 26px 0 10px;
}
.policy-content p {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.72;
  margin-bottom: 14px;
}
.policy-content ul { margin: 0 0 16px; display: flex; flex-direction: column; gap: 10px; }
.policy-content ul li {
  position: relative;
  padding-left: 20px;
  font-size: 15.5px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.66;
}
.policy-content ul li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose);
}
.policy-content ul li strong { font-weight: 500; color: var(--black); }
.policy-content a { color: var(--rose-deep); border-bottom: 1px solid var(--rose-mid); }
.policy-content a:hover { color: var(--black); border-color: var(--black); }

.callout {
  background: var(--rose-wash);
  border: 1px solid var(--rose-soft);
  border-left: 3px solid var(--rose);
  border-radius: var(--r);
  padding: 20px 24px;
  margin: 20px 0 22px;
}
.callout strong { display: block; color: var(--black); font-weight: 500; margin-bottom: 6px; }
.callout p:last-child { margin-bottom: 0; }

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin: 18px 0 22px;
  background: var(--white);
}
table.data { width: 100%; border-collapse: collapse; min-width: 560px; }
table.data th,
table.data td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px;
  font-weight: 300;
  color: var(--ink-2);
  vertical-align: top;
}
table.data th {
  background: var(--cream-2);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
table.data tr:last-child td { border-bottom: 0; }
table.data td strong { font-weight: 500; color: var(--black); }

/* ---------------- responsive ---------------- */
@media (max-width: 1060px) {
  .nav-links a { padding: 9px 10px; font-size: 13.5px; }
  .header-phone { display: none; }
  .hero-grid { gap: 44px; }
  .policy-layout { grid-template-columns: 210px 1fr; gap: 38px; }
}

@media (max-width: 940px) {
  .nav-links, .header-actions .btn { display: none; }
  .menu-toggle { display: flex; }
  .section { padding: 76px 0; }
  .hero { padding: 52px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-copy .lead { max-width: none; }
  .hero-media { max-width: 480px; }
  .hero-media::after { inset: 22px -18px -20px 24px; }
  .band-grid, .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .band-media, .about-media { max-width: 470px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .product-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .policy-layout { grid-template-columns: minmax(0, 1fr); gap: 34px; padding: 48px 0 72px; }
  .policy-toc { position: static; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
  .policy-toc ol { display: grid; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .section { padding: 62px 0; }
  .announce { font-size: 11.5px; }
  .announce .hide-sm { display: none; }
  .brand-text strong { font-size: 15px; letter-spacing: 0.13em; }
  .hero-frame { border-radius: var(--r-lg) var(--r-lg) var(--r-lg) 80px; }
  .hero-media::after { display: none; }
  .hero-tag { left: 0; bottom: -18px; padding: 12px 16px; min-width: 0; }
  .hero-badge { right: 8px; }
  .hero-cta .btn { flex: 1 1 auto; }
  .product-grid { gap: 26px 16px; }
  .p-name { font-size: 17px; }
  .p-desc { display: none; }
  .p-media { border-radius: var(--r); }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .faq-q { font-size: 16.5px; padding: 20px 2px; }
  .faq-a-inner { padding-right: 24px; }
  .about-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bottom { justify-content: flex-start; }
  .policy-toc ol { grid-template-columns: 1fr; }
  .policy-content h2 { font-size: 22px; }
  .back-top { right: 16px; bottom: 16px; }
}

@media (max-width: 420px) {
  .product-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
}
