:root {
  --ink-950: #151514;
  --ink-800: #292826;
  --ink-700: #47433d;
  --ink-500: #6e685f;
  --sand-100: #f7f1e7;
  --sand-200: #efe3d2;
  --sand-300: #dfc9a6;
  --gold-500: #b88d4a;
  --gold-600: #98713b;
  --maple-500: #a34f2b;
  --maple-600: #843d20;
  --paper: #fffdf9;
  --white: #ffffff;
  --line: rgba(21, 21, 20, 0.1);
  --shadow-lg: 0 24px 60px rgba(18, 18, 18, 0.12);
  --shadow-md: 0 18px 42px rgba(18, 18, 18, 0.08);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--ink-800);
  background:
    radial-gradient(circle at top left, rgba(223, 201, 166, 0.32), transparent 38%),
    radial-gradient(circle at top right, rgba(163, 79, 43, 0.08), transparent 28%),
    linear-gradient(180deg, #f9f5ee 0%, #fffdfa 32%, #f6efe6 100%);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 6.5rem 0;
}

.surface-dark {
  background:
    radial-gradient(circle at top, rgba(184, 141, 74, 0.15), transparent 30%),
    linear-gradient(180deg, #181716 0%, #111111 100%);
  color: rgba(255, 255, 255, 0.88);
}

.surface-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(247, 241, 231, 0.75) 100%);
}

.eyebrow,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold-600);
}

.mini-label {
  margin-bottom: 0.8rem;
}

.eyebrow::before,
.mini-label::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink-950);
}

.surface-dark h2,
.surface-dark h3 {
  color: var(--white);
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.9rem);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

h3 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

p {
  margin: 0 0 1rem;
  color: var(--ink-700);
}

.surface-dark p,
.surface-dark li {
  color: rgba(255, 255, 255, 0.74);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--maple-500), var(--gold-500));
  box-shadow: 0 18px 36px rgba(163, 79, 43, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink-950);
  border-color: rgba(21, 21, 20, 0.14);
  backdrop-filter: blur(14px);
}

.full-width {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  color: var(--gold-500);
}

.text-link::after {
  content: "->";
  transition: transform 0.25s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0 0;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.brand-text strong {
  font-size: 1rem;
  color: var(--ink-950);
}

.brand-text small {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav-panel a {
  font-size: 0.92rem;
  color: var(--ink-700);
  transition: color 0.25s ease;
}

.nav-panel a:hover {
  color: var(--maple-500);
}

.nav-cta {
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: var(--ink-950);
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--ink-950);
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span:nth-child(1) { transform: translateY(-6px); }
.menu-toggle span:nth-child(2) { transform: translateY(0); }
.menu-toggle span:nth-child(3) { transform: translateY(6px); }

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg); }

.hero {
  position: relative;
  padding: 2.2rem 0 2rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(184, 141, 74, 0.22), transparent 26%),
    radial-gradient(circle at 80% 22%, rgba(163, 79, 43, 0.16), transparent 20%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  padding: 1.5rem 0 1rem;
}

.hero-lead {
  font-size: 1rem;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.25rem 0 1rem;
}

.hero-offer-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 38rem;
  margin: 1rem 0 0.5rem;
}

.hero-offer-band div {
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(21, 21, 20, 0.08);
  box-shadow: 0 10px 24px rgba(18, 18, 18, 0.06);
}

.hero-offer-band strong,
.contact-meta a,
.footer-links a:hover {
  color: var(--ink-950);
}

.hero-offer-band span {
  display: block;
  font-size: 0.8rem;
  color: var(--ink-500);
  margin-top: 0.3rem;
}

.hero-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 0.75rem 0 0;
}

.hero-highlights li {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 21, 20, 0.08);
  color: var(--ink-700);
  font-size: 0.84rem;
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-showcase {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.circular-video-gallery {
  position: relative;
  width: 360px;
  height: 360px;
  max-width: 100%;
  perspective: 1000px;
}

.video-item {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.8s cubic-bezier(0.4, 2, 0.3, 1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-item.active {
  z-index: 3;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotateY(0);
}

.video-item.left {
  z-index: 2;
  opacity: 1;
  transform: translate(-50%, -50%) translateX(-82px) translateY(-28px) scale(0.84) rotateY(15deg);
}

.video-item.right {
  z-index: 2;
  opacity: 1;
  transform: translate(-50%, -50%) translateX(82px) translateY(-28px) scale(0.84) rotateY(-15deg);
}

.video-item.hidden {
  z-index: 1;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
}

.video-controls {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.video-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(21, 21, 20, 0.12);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink-950);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.video-nav-btn:hover {
  transform: translateY(-2px);
}

.trust-strip {
  padding: 1rem 0 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(21, 21, 20, 0.08);
  box-shadow: var(--shadow-md);
}

.trust-grid p {
  margin: 0;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-500);
}

.overview-section,
.summary-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(247, 241, 231, 0.72) 100%);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.path-card {
  padding: 1.6rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(21, 21, 20, 0.08);
  box-shadow: var(--shadow-md);
}

.offer-grid .path-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.center-actions {
  justify-content: center;
}

.summary-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.summary-points {
  display: grid;
  gap: 1rem;
}

.summary-points article {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(21, 21, 20, 0.08);
  box-shadow: var(--shadow-md);
}

.video-panel .split-grid {
  align-items: center;
}

.page-hero {
  padding: 2.4rem 0 2rem;
}

.page-hero-grid,
.split-grid,
.detail-grid,
.article-grid,
.review-grid,
.stat-grid {
  display: grid;
  gap: 1.25rem;
}

.page-hero-grid,
.split-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.page-hero-media,
.feature-panel,
.list-card,
.article-card,
.review-card,
.stat-card,
.cta-banner {
  padding: 1.6rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(21, 21, 20, 0.08);
  box-shadow: var(--shadow-md);
}

.page-hero-media img,
.article-card img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.small-media img {
  max-height: 320px;
}

.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-panel.dark-panel,
.cta-banner.dark-panel {
  background: linear-gradient(180deg, #1a1918 0%, #111111 100%);
}

.feature-panel.dark-panel h2,
.feature-panel.dark-panel h3,
.cta-banner.dark-panel h2,
.cta-banner.dark-panel h3,
.review-card.dark-panel h3,
.review-card.dark-panel strong {
  color: var(--white);
}

.feature-panel.dark-panel p,
.feature-panel.dark-panel li,
.cta-banner.dark-panel p,
.review-card.dark-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.detail-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.75rem;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), #f5d7a2);
}

.price-stack {
  display: flex;
  align-items: end;
  gap: 0.8rem;
  margin: 0.5rem 0 0.3rem;
}

.price-stack strong {
  font-size: 2.2rem;
  color: var(--ink-950);
}

.price-stack span,
.muted-copy {
  color: var(--ink-500);
  font-size: 0.92rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.tag-row span {
  display: inline-flex;
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 21, 20, 0.08);
  color: var(--ink-700);
  font-size: 0.84rem;
}

.review-card img {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.review-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  line-height: 1.15;
  color: var(--ink-950);
  margin: 0 0 1rem;
}

.article-card h3,
.review-card h3,
.stat-card h3 {
  margin-bottom: 0.6rem;
}

.story-grid,
.audience-grid,
.journal-grid,
.materials-grid {
  display: grid;
  gap: 2rem;
}

.story-grid,
.audience-grid {
  grid-template-columns: 1.02fr 0.98fr;
  align-items: start;
}

.story-stats,
.audience-panels {
  display: grid;
  gap: 1rem;
}

.story-stats article,
.audience-panels article,
.journal-card,
.material-copy,
.process-step {
  padding: 1.55rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(21, 21, 20, 0.08);
  box-shadow: var(--shadow-md);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2.4rem;
}

.simple-packages {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.8fr;
  gap: 1.25rem;
}

.simple-package {
  padding: 1.6rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(21, 21, 20, 0.08);
  box-shadow: var(--shadow-md);
}

.simple-package.featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 241, 231, 0.92));
}

.simple-package-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.simple-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(184, 141, 74, 0.15);
  color: var(--gold-600);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.simple-price-row {
  display: flex;
  align-items: end;
  gap: 0.8rem;
  margin: 0.3rem 0 0.1rem;
}

.simple-price {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--ink-950);
}

.simple-price-note,
.simple-subtext {
  font-size: 0.92rem;
  color: var(--ink-500);
}

.simple-price-note {
  margin: 0 0 0.3rem;
}

.simple-subtext {
  margin-bottom: 1rem;
}

.simple-feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.2rem;
}

.simple-feature-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.7rem;
  color: var(--ink-700);
}

.simple-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), #f5d7a2);
}

.simple-qty-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0 1.4rem;
}

.simple-qty-row span,
.quick-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(21, 21, 20, 0.08);
  color: var(--ink-700);
  background: rgba(255, 255, 255, 0.7);
}

.simple-qty-row .active {
  background: var(--ink-950);
  color: var(--white);
}

.quick-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 1.2rem;
}

.compact-heading {
  max-width: 40rem;
}

.materials-grid {
  grid-template-columns: 1fr 1fr 0.92fr;
  align-items: stretch;
}

.material-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(21, 21, 20, 0.08);
  box-shadow: var(--shadow-md);
}

.material-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.material-card div {
  padding: 1.35rem 1.4rem 1.55rem;
}

.process-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--ink-950);
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  padding: 1.3rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
}

.testimonial-card img {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

blockquote {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 1.2;
  color: var(--white);
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 58rem;
}

.faq-item {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(21, 21, 20, 0.08);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.4rem;
  text-align: left;
  background: transparent;
  border: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-950);
  position: relative;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--maple-500);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.4rem 0;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: 1.3rem;
}

.faq-item.open .faq-question::after {
  content: "-";
}

.journal-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.journal-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-panel {
  padding: 3rem;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(184, 141, 74, 0.18), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(246, 239, 230, 0.92));
  border: 1px solid rgba(21, 21, 20, 0.08);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.contact-panel h2,
.contact-panel p {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-copy {
  max-width: 28rem;
}

.footer-heading {
  margin: 0 0 1rem;
  color: var(--ink-950);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.footer-links {
  display: grid;
  gap: 0.75rem;
}

.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1100px) {
  .hero-grid,
  .path-grid,
  .summary-grid,
  .page-hero-grid,
  .split-grid,
  .detail-grid,
  .article-grid,
  .review-grid,
  .stat-grid,
  .story-grid,
  .audience-grid,
  .journal-grid,
  .simple-packages,
  .materials-grid,
  .process-grid,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding-top: 0.5rem;
  }

  .journal-cards {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .section {
    padding: 5rem 0;
  }

  .site-header {
    padding-top: 0.8rem;
  }

  .navbar {
    border-radius: 26px;
    align-items: center;
  }

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

  .nav-panel {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 252, 246, 0.95);
    border: 1px solid rgba(21, 21, 20, 0.08);
    box-shadow: var(--shadow-lg);
  }

  .nav-panel.open {
    display: flex;
  }

  .hero {
    padding-top: 1.4rem;
  }

  .hero-offer-band,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .hero-copy {
    order: 2;
    text-align: center;
    padding-top: 0.2rem;
  }

  .hero-visual {
    order: 1;
  }

  .hero-highlights {
    justify-content: center;
  }

  .circular-video-gallery {
    width: 320px;
    height: 320px;
  }

  .contact-panel {
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .hero-actions,
  .contact-meta,
  .simple-price-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-offer-band div,
  .story-stats article,
  .audience-panels article,
  .journal-card,
  .material-copy,
  .process-step,
  .simple-package {
    padding: 1.25rem;
  }

  .circular-video-gallery {
    width: 280px;
    height: 280px;
  }

  .video-item.left,
  .video-item.right {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
  }

  .hero-highlights li {
    width: 100%;
    white-space: normal;
  }
}
