:root {
  --ivory: #fffdf7;
  --cream: #f3efe3;
  --cream-deep: #dfe7d5;
  --gold: #d9b86a;
  --gold-rich: #a7a56a;
  --saffron: #647a4f;
  --royal: #2f5d50;
  --text: #263126;
  --muted: #5f6e5e;
  --line: rgba(72, 97, 70, 0.14);
  --glass: rgba(255, 251, 244, 0.56);
  --glass-strong: rgba(255, 248, 236, 0.82);
  --shadow-soft: 18px 18px 42px rgba(92, 114, 84, 0.14);
  --shadow-lift: 0 24px 50px rgba(74, 95, 68, 0.16);
  --shadow-inset: inset 1px 1px 0 rgba(255, 255, 255, 0.7);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(204, 220, 184, 0.72), transparent 30%),
    radial-gradient(circle at top right, rgba(82, 126, 103, 0.16), transparent 28%),
    linear-gradient(135deg, #fffdf7 0%, #f4f1e6 44%, #e8efdf 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 30px 30px, rgba(100, 122, 79, 0.14) 2px, transparent 0),
    radial-gradient(circle at 78px 78px, rgba(47, 93, 80, 0.1) 2px, transparent 0);
  background-size: 110px 110px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 94%);
}

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 110px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
}

.navbar,
.glass-card,
.mini-card,
.site-footer,
.mobile-cta {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 247, 229, 0.38));
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft), var(--shadow-inset);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  border-radius: 999px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(232, 239, 223, 0.82));
  box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.55), 0 12px 20px rgba(92, 114, 84, 0.18);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong,
h1,
h2,
h3,
h4 {
  font-family: "Cinzel", serif;
}

.brand-copy small,
.section-lead,
.hero-text,
.mini-card span,
.feature-card p,
.benefit-card p,
.product-copy p,
.testimonial-card p,
.coming-card p,
.faq-item p,
.site-footer p {
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow-soft), var(--shadow-inset);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--royal);
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-links a,
.footer-block a {
  color: var(--text);
  text-decoration: none;
  transition: color 220ms ease, transform 220ms ease;
}

.nav-links a:hover,
.footer-block a:hover {
  color: var(--saffron);
  transform: translateY(-2px);
}

.nav-cta,
.primary-btn,
.secondary-btn,
.ghost-btn,
.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease, border-color 240ms ease;
  text-align: center;
}

.nav-cta,
.primary-btn,
.mobile-cta {
  color: #fffdf9;
  background: linear-gradient(145deg, var(--gold-rich), var(--royal));
  box-shadow: 0 18px 28px rgba(74, 95, 68, 0.2);
}

.secondary-btn,
.ghost-btn {
  color: var(--royal);
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(23, 62, 109, 0.18);
}

.nav-cta:hover,
.primary-btn:hover,
.secondary-btn:hover,
.ghost-btn:hover,
.mobile-cta:hover {
  transform: translateY(-3px);
}

main section {
  margin-top: 36px;
}

.glass-card {
  border-radius: var(--radius-xl);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift), var(--shadow-inset);
  border-color: rgba(117, 148, 111, 0.45);
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0;
  min-height: 100vh;
  padding: 90px 0 110px;
}

.hero-content {
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-copy {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 0 24px;
  max-width: 100%;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(6.8rem, 12vw, 10.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--royal);
  opacity: 0;
  transform: translateY(-260px);
  animation: headline-bounce 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.12s forwards;
}

.hero-copy .eyebrow {
  margin: 0 0 10px;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 700;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  line-height: 1.7;
  color: rgba(23, 62, 109, 0.92);
  margin: 0;
  font-weight: 500;
  max-width: 820px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  align-items: center;
  flex-wrap: wrap;
}

@keyframes headline-bounce {
  0% {
    opacity: 0;
    transform: translateY(-260px);
  }
  40% {
    opacity: 1;
    transform: translateY(38px);
  }
  55% {
    transform: translateY(-14px);
  }
  70% {
    transform: translateY(18px);
  }
  82% {
    transform: translateY(-6px);
  }
  92% {
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy .eyebrow {
  margin: 0 0 8px;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 600;
}

.hero-subtitle {
  font-size: 1.24rem;
  line-height: 1.72;
  color: rgba(23, 62, 109, 0.85);
  margin: 0;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  align-items: center;
}

.hero-actions .primary-btn,
.hero-actions .secondary-btn {
  padding: 14px 32px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 280ms ease;
  text-decoration: none;
  display: inline-block;
  border: 2px solid transparent;
}

.hero-actions .primary-btn {
  background: var(--saffron);
  color: white;
  box-shadow: 0 8px 20px rgba(241, 138, 69, 0.24);
}

.hero-actions .primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(241, 138, 69, 0.32);
}

.hero-actions .secondary-btn {
  background: transparent;
  color: var(--royal);
  border-color: var(--royal);
}

.hero-actions .secondary-btn:hover {
  background: rgba(23, 62, 109, 0.06);
  transform: translateY(-2px);
}

.hero-product-showcase {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hero-visual {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-bg-accent {
  position: absolute;
  width: 480px;
  height: 480px;
  background: linear-gradient(135deg, rgba(241, 245, 233, 0.6), rgba(241, 138, 69, 0.08));
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.product-image-container {
  position: relative;
  width: 380px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.12));
}

.hero-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.product-badge {
  position: absolute;
  bottom: 32px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--saffron);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  z-index: 3;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.inner-hero {
  margin-top: 34px;
}

.inner-hero-card {
  padding: 38px;
}

.hero-copy,
.product-card,
.story-card,
.feature-card,
.benefit-card,
.testimonial-card,
.coming-card,
.variant-card,
.faq-item {
  padding: 30px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--saffron);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(5.5rem, 10vw, 9.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 100%;
  font-weight: 800;
  color: var(--royal);
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.2;
  color: var(--royal);
  font-weight: 700;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.25;
  color: var(--royal);
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading .eyebrow {
  margin: 0 0 12px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 700;
}

.section-heading h2 {
  margin: 0 0 16px;
}

.section-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(23, 62, 109, 0.8);
  margin: 0;
  font-weight: 500;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.content-card {
  padding: 30px;
}

.product-showcase {
  min-width: 0;
}

.product-showcase .image-panel {
  min-height: 420px;
}

.section-lead,
.hero-text,
.feature-card p,
.benefit-card p,
.testimonial-card p,
.product-copy p,
.coming-card p,
.faq-item p,
.footer-brand p,
.footer-block p {
  line-height: 1.72;
}

.hero-promise {
  display: grid;
  gap: 6px;
  margin: 26px 0 0;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(241, 245, 233, 0.92), rgba(255, 251, 244, 0.56));
  border: 1px solid rgba(117, 148, 111, 0.24);
}

.hero-promise strong {
  color: var(--royal);
}

.features-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 72px;
  margin-bottom: 72px;
}

.feature-item {
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(241, 245, 233, 0.4));
  border: 1px solid rgba(117, 148, 111, 0.2);
  border-radius: 12px;
  transition: all 320ms ease;
  backdrop-filter: blur(8px);
}

.feature-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(117, 148, 111, 0.4);
}

.feature-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--saffron);
  margin-bottom: 16px;
  line-height: 1;
}

.feature-item h3 {
  font-size: 1.42rem;
  margin: 0 0 12px 0;
  color: var(--royal);
  font-weight: 700;
  line-height: 1.2;
}

.feature-item p {
  margin: 0;
  line-height: 1.72;
  color: rgba(23, 62, 109, 0.75);
  font-weight: 500;
}

.hero-highlights li,
.product-points li {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid var(--line);
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.68);
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.photo-frame {
  position: sticky;
  top: 110px;
  overflow: hidden;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.photo-frame img,
.image-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame img {
  min-height: 640px;
  filter: saturate(1.08) contrast(1.02);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 25, 37, 0.05), transparent 22%, transparent 70%, rgba(16, 25, 37, 0.18)),
    radial-gradient(circle at top right, rgba(185, 212, 173, 0.26), transparent 26%);
}

.floating-chip,
.photo-badge {
  position: absolute;
  z-index: 2;
}

.floating-chip {
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--royal);
  background: rgba(255, 252, 245, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-soft);
}

.chip-top {
  top: 30px;
  right: 28px;
}

.chip-bottom {
  left: 24px;
  bottom: 26px;
}

.photo-badge {
  left: 26px;
  top: 26px;
  display: grid;
  gap: 4px;
  width: 130px;
  padding: 16px;
  border-radius: 24px;
  color: #fffdf9;
  background: linear-gradient(145deg, rgba(100, 122, 79, 0.96), rgba(47, 93, 80, 0.96));
  box-shadow: 0 22px 30px rgba(74, 95, 68, 0.24);
}

.photo-badge strong {
  font-size: 1.5rem;
}

.mandala {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  opacity: 0.26;
  background:
    radial-gradient(circle, transparent 34%, rgba(100, 122, 79, 0.2) 35%, transparent 38%),
    radial-gradient(circle, transparent 53%, rgba(47, 93, 80, 0.14) 54%, transparent 57%),
    repeating-conic-gradient(from 0deg, rgba(167, 165, 106, 0.22) 0deg 8deg, transparent 8deg 18deg);
}

.mandala-left {
  left: -14px;
  bottom: 18px;
}

.mandala-right {
  right: 12px;
  top: 12px;
}

.trust-strip,
.feature-grid,
.benefits-grid,
.testimonial-grid,
.upcoming-grid,
.variants-grid {
  display: grid;
  gap: 20px;
}

.trust-strip,
.feature-grid,
.benefits-grid,
.testimonial-grid,
.upcoming-grid,
.variants-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-card {
  display: grid;
  gap: 8px;
  padding: 22px 18px;
  border-radius: 22px;
  text-align: center;
}

.section-split .story-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.story-stats {
  display: grid;
  gap: 18px;
}

.stat-card {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-radius: 24px;
}

.stat-card strong,
.feature-icon,
.variant-size {
  color: var(--saffron);
  font-weight: 700;
}

.feature-icon {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(167, 165, 106, 0.18);
}

.assurance-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
  padding: 18px;
}

.assurance-bar div {
  padding: 14px;
  text-align: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid var(--line);
}

.benefit-card,
.coming-card,
.testimonial-card {
  position: relative;
  overflow: hidden;
}

.benefit-icon,
.coming-preview {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  font-weight: 700;
  color: #fffdf9;
  background: linear-gradient(145deg, var(--gold-rich), var(--royal));
  box-shadow: 0 16px 26px rgba(47, 93, 80, 0.16);
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 0.98fr;
  gap: 24px;
}

.product-tag,
.coming-pill {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--royal);
  background: rgba(23, 62, 109, 0.1);
  font-size: 0.85rem;
  font-weight: 600;
}

.image-panel {
  overflow: hidden;
  min-height: 100%;
}

.image-panel img {
  min-height: 100%;
}

.variant-card {
  display: grid;
  gap: 14px;
}

.variant-card strong {
  font-size: 1.4rem;
}

.highlighted {
  border-color: rgba(117, 148, 111, 0.48);
  box-shadow: 0 28px 46px rgba(92, 114, 84, 0.18), var(--shadow-inset);
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.coming-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.coming-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -50px;
  top: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 212, 173, 0.22), transparent 68%);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 0.8fr;
  gap: 22px;
  margin-top: 36px;
  padding: 30px;
  border-radius: var(--radius-xl);
}

.footer-block {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-block h4 {
  margin: 0;
}

.footer-bottom {
  margin: 18px 0 36px;
  padding-top: 16px;
  text-align: center;
  color: rgba(23, 62, 109, 0.72);
  font-size: 0.95rem;
  border-top: 1px solid rgba(23, 62, 109, 0.1);
}

.mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 40;
  display: none;
  min-height: 54px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-section,
  .product-card,
  .section-split .story-layout,
  .content-grid,
  .feature-grid,
  .benefits-grid,
  .testimonial-grid,
  .upcoming-grid,
  .variants-grid,
  .features-strip,
  .trust-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    gap: 48px;
    padding: 48px 0;
  }

  .hero-content {
    height: auto;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 8vw, 5.6rem);
  }

  .hero-product-showcase {
    min-height: 420px;
  }

  .product-hero-visual {
    height: 420px;
  }

  .product-image-container {
    width: 280px;
    height: 360px;
  }

  .product-bg-accent {
    width: 320px;
    height: 320px;
  }

  .photo-frame {
    position: relative;
    top: auto;
    min-height: 520px;
  }

  .photo-frame img {
    min-height: 520px;
  }

  .product-showcase .image-panel {
    min-height: 360px;
  }

  .assurance-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 18px, 1200px);
    padding-bottom: 120px;
  }

  .site-header {
    top: 8px;
  }

  .navbar {
    position: relative;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-radius: 28px;
    padding: 14px 16px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 239, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft), var(--shadow-inset);
  }

  .menu-open .nav-links {
    display: grid;
  }

  .nav-links a {
    display: block;
    padding: 13px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.6);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-copy,
  .inner-hero-card,
  .content-card,
  .product-card,
  .story-card,
  .feature-card,
  .benefit-card,
  .testimonial-card,
  .coming-card,
  .variant-card,
  .faq-item,
  .site-footer {
    padding: 22px;
  }

  .photo-frame,
  .photo-frame img {
    min-height: 440px;
  }

  .hero-actions,
  .product-actions {
    flex-direction: column;
  }

  .hero-actions a,
  .product-actions a,
  .coming-card .ghost-btn,
  .content-card .primary-btn,
  .content-card .ghost-btn {
    width: 100%;
  }

  .nav-cta {
    display: none;
  }

  .photo-badge,
  .floating-chip {
    transform: scale(0.92);
    transform-origin: top left;
  }

  .chip-top {
    right: 10px;
  }

  .chip-bottom {
    left: 10px;
    bottom: 14px;
  }

  .mobile-cta {
    display: inline-flex;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: calc(100% - 12px);
    padding-top: 10px;
  }

  .site-header {
    position: relative;
    top: 0;
  }

  .navbar {
    gap: 14px;
    padding: 14px;
    border-radius: 24px;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .brand-copy strong {
    font-size: 1.02rem;
  }

  .brand-copy small {
    font-size: 0.8rem;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  h1 {
    font-size: 2.15rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.06em;
  }

  .hero-copy,
  .inner-hero-card,
  .content-card,
  .product-card,
  .story-card,
  .feature-card,
  .benefit-card,
  .testimonial-card,
  .coming-card,
  .variant-card,
  .faq-item,
  .site-footer {
    padding: 18px;
  }

  .assurance-bar {
    grid-template-columns: 1fr;
  }

  .photo-frame,
  .photo-frame img {
    min-height: 360px;
  }

  .product-showcase .image-panel {
    min-height: 280px;
  }

  .photo-badge {
    width: 110px;
    padding: 12px;
  }

  .photo-badge strong {
    font-size: 1.25rem;
  }

  .floating-chip {
    padding: 10px 12px;
    font-size: 0.86rem;
  }

  .hero-highlights li,
  .product-points li,
  .mini-card,
  .assurance-bar div {
    padding: 14px;
  }

  .mobile-cta {
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    padding: 14px 18px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.78rem;
  }

  .nav-links {
    gap: 10px 12px;
  }

  .nav-links a {
    font-size: 0.88rem;
  }

  .photo-frame,
  .photo-frame img {
    min-height: 300px;
  }

  .chip-top,
  .chip-bottom {
    position: static;
  }

  .photo-frame {
    align-content: end;
    gap: 10px;
    padding: 10px;
  }

  .photo-badge {
    left: 14px;
    top: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
}
