:root {
  --bg: #f7f5f1;
  --surface: #ffffff;
  --surface-soft: #f3efee;
  --text: #2d292c;
  --muted: #6f686d;
  --accent: #8c6c7f;
  --accent-deep: #745568;
  --accent-soft: #e9dfe4;
  --border: #ded8da;
  --line: #e8e3e4;
  --whatsapp: #128c7e;
  --whatsapp-hover: #0d7468;
  --shadow: 0 14px 34px rgba(59, 45, 53, 0.07);
  --radius: 22px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img, svg { max-width: 100%; }
button { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section-pad { padding: 88px 0; }
.section-pad-sm { padding: 66px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247,245,241,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(222,216,218,.8);
}
.nav-wrap { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; flex-direction: column; text-decoration: none; line-height: 1.2; }
.brand-name { font-family: "Cormorant Garamond", Georgia, serif; font-size: 26px; font-weight: 700; }
.brand-tag { color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; margin-top: 2px; }
.desktop-nav { display: flex; align-items: center; gap: 24px; }
.desktop-nav a { text-decoration: none; color: var(--muted); font-size: 13px; font-weight: 600; }
.desktop-nav a:hover { color: var(--accent-deep); }

.hero { padding-top: 64px; padding-bottom: 64px; min-height: calc(100vh - 72px); display: grid; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 64px; align-items: center; }
.hero-copy-wrap { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 14px; text-transform: uppercase; letter-spacing: .15em; font-size: 12px; font-weight: 700; color: var(--accent-deep); }
h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: .99;
  letter-spacing: -.025em;
  margin: 0;
}
h1 { font-size: clamp(54px, 6.6vw, 84px); max-width: 720px; font-weight: 600; }
h2 { font-size: clamp(44px, 5vw, 66px); font-weight: 600; }
h3 { margin: 0; line-height: 1.2; font-size: 24px; }
.hero-copy { max-width: 650px; font-size: 18px; color: var(--muted); margin: 24px 0 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-help { display: inline-block; margin-top: 22px; color: var(--muted); text-decoration: none; font-size: 14px; }
.hero-help strong { color: var(--accent-deep); }
.hero-help:hover strong { text-decoration: underline; text-underline-offset: 4px; }
.hero-visual { display: flex; justify-content: center; }
.hero-image-frame {
  width: min(100%, 500px);
  aspect-ratio: 1 / 1;
  border-radius: 32px;
  overflow: hidden;
  background: #a4765d;
  box-shadow: var(--shadow);
  border: 1px solid rgba(116, 85, 104, .16);
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; display: block; image-rendering: auto; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--accent-deep); color: #fff; border: 1px solid var(--accent-deep); }
.button-primary:hover { background: #66485a; }
.button-instagram { border: 1px solid var(--border); background: var(--surface); color: var(--text); }
.button-instagram:hover { border-color: var(--accent); }
.button-instagram svg { width: 18px; height: 18px; fill: currentColor; }
.button-whatsapp { background: var(--whatsapp); color: #fff; border: 1px solid var(--whatsapp); box-shadow: 0 8px 22px rgba(18,140,126,.13); }
.button-whatsapp:hover { background: var(--whatsapp-hover); border-color: var(--whatsapp-hover); box-shadow: 0 10px 26px rgba(18,140,126,.18); }
.button-whatsapp svg { width: 21px; height: 21px; fill: currentColor; }
.button-compact { align-self: flex-start; }
.full-width { width: 100%; margin-top: auto; }
.text-link { color: var(--accent-deep); font-weight: 700; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.section-heading-wrap { margin-bottom: 34px; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.section-intro { max-width: 430px; color: var(--muted); margin: 0; }
.center-heading { text-align: center; }

.comparison { scroll-margin-top: 72px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fbfaf8; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.comparison-card, .service-card, .step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.comparison-card { padding: 32px; }
.card-kicker, .mini-label { display: inline-block; color: var(--accent-deep); text-transform: uppercase; letter-spacing: .11em; font-weight: 700; font-size: 11px; }
.comparison-card h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 31px; margin: 10px 0 14px; }
.comparison-card p { color: var(--muted); }
.example { border-top: 1px solid var(--line); padding-top: 18px; }

.video-section { scroll-margin-top: 72px; background: var(--bg); }
.video-heading { align-items: end; }
.video-slider-wrap { position: relative; }
.video-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 31%);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 0 12px;
}
.video-slider::-webkit-scrollbar { display: none; }
.video-card { scroll-snap-align: start; }
.video-thumb {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 0;
  background: #ddd;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; image-rendering: auto; }
.video-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,19,.24), rgba(20,18,19,0) 45%); }
.play-button {
  position: absolute;
  left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.94); color: var(--text);
  z-index: 2;
  box-shadow: 0 10px 28px rgba(0,0,0,.15);
  font-size: 20px;
  padding-left: 3px;
}
.video-frame { width: 100%; height: 100%; border: 0; display: block; }
.video-card > a { display: inline-block; margin-top: 10px; color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 600; }
.video-card > a:hover { color: var(--accent-deep); }
.slider-arrow {
  position: absolute;
  top: 44%; transform: translateY(-50%);
  z-index: 4;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.96);
  color: var(--text);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 21px;
}
.slider-prev { left: -20px; }
.slider-next { right: -20px; }
.slider-arrow:hover { border-color: var(--accent); }

.about {
  scroll-margin-top: 72px;
  background: #fbfaf8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 64px;
  align-items: center;
}
.about-grid-story { grid-template-columns: .78fr 1.22fr; gap: 72px; }
.about-image-wrap {
  width: min(100%, 390px);
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  background: #efe9e4;
  border: 1px solid rgba(116, 85, 104, .16);
  box-shadow: var(--shadow);
}
.about-portrait-wrap { width: min(100%, 410px); aspect-ratio: 3 / 4; }
.about-image-wrap img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center center; image-rendering: auto; }
.about-portrait-wrap img { object-position: 50% 42%; }
.about-copy h2 { max-width: 700px; }
.about-copy > p:not(.eyebrow) { max-width: 720px; color: var(--muted); font-size: 17px; margin: 20px 0 0; }
.about-story-copy strong { color: var(--text); font-weight: 700; }
.about-highlights { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.about-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 700;
}

.services { scroll-margin-top: 72px; }
.kundali-bg { background: #fbfaf8; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.tarot-grid { display: grid; grid-template-columns: 1.5fr .72fr; gap: 20px; align-items: stretch; }
.service-card { padding: 30px; display: flex; flex-direction: column; gap: 20px; }
.featured-soft { background: var(--surface-soft); }
.live-card { border-color: rgba(116,85,104,.34); }
.recorded-card { background: #fbfaf8; box-shadow: none; }
.service-topline { display: flex; justify-content: space-between; align-items: start; gap: 24px; }
.service-topline h3 { margin-top: 6px; font-size: 27px; }
.price { white-space: nowrap; margin: 0; font-size: 28px; font-weight: 700; color: var(--accent-deep); }
.price span { font-size: 14px; font-weight: 600; color: var(--muted); margin-left: 2px; }
.service-card > p { margin: 0; color: var(--muted); }
.service-note { border-top: 1px solid var(--line); padding-top: 16px; }
.live-package-list { border-top: 1px solid var(--line); }
.live-package-row { display: grid; grid-template-columns: minmax(150px,1fr) auto minmax(170px,auto); gap: 20px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--line); }
.package-copy strong { display: block; font-size: 20px; }
.package-copy span { display: block; color: var(--muted); font-size: 13px; margin-top: 3px; }
.package-price { font-size: 24px; font-weight: 700; color: var(--accent-deep); white-space: nowrap; }
.recorded-card h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 31px; margin-top: 8px; }
.recorded-price { font-size: 29px; font-weight: 700; color: var(--accent-deep); }
.recorded-price span { color: var(--muted); font-size: 13px; font-weight: 600; }
.wa-dot { font-size: 8px; }
.requirement-strip { display: flex; flex-wrap: wrap; gap: 10px 20px; align-items: center; padding: 16px 20px; margin-bottom: 20px; border: 1px solid var(--border); background: rgba(255,255,255,.72); border-radius: 14px; color: var(--muted); font-size: 14px; }
.requirement-strip strong { color: var(--text); }
.requirement-strip span::before { content: "•"; margin-right: 12px; color: var(--accent); }

.booking { scroll-margin-top: 72px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { padding: 28px; min-height: 280px; }
.step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 38px; }
.step-number { width: 48px; height: 48px; display: inline-grid; place-items: center; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); font-weight: 800; }
.step-icon { width: 54px; height: 54px; display: grid; place-items: center; color: var(--accent-deep); }
.step-icon svg { width: 48px; height: 48px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.step-card h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 34px; }
.step-card p { color: var(--muted); margin-bottom: 0; }
.booking-cta { margin-top: 28px; text-align: center; padding: 28px; border-radius: 20px; background: #f1ece9; border: 1px solid var(--border); }
.booking-cta p { margin: 0 0 14px; color: var(--muted); }
.booking-button { min-width: min(100%, 360px); font-size: 15px; }

.final-cta { background: #ece5e7; }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta h2 { font-size: clamp(40px, 4vw, 56px); max-width: 650px; }
.final-cta p { color: var(--muted); }
.cta-stack { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; min-width: 270px; }
.social-follow { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.social-label { width: 100%; color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 2px; }
.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.72);
  color: var(--text);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}
.social-button:hover { border-color: var(--accent); color: var(--accent-deep); }
.about-socials { margin-top: 30px; }
.about-social-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.social-button-icon { min-height: 42px; gap: 8px; padding: 9px 15px; }
.social-button-icon svg { width: 17px; height: 17px; fill: currentColor; flex: 0 0 auto; }

.footer { padding: 32px 0 104px; border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; color: var(--muted); font-size: 13px; }
.footer-inner strong { color: var(--text); display: block; }
.footer-inner span { display: block; margin-top: 2px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { text-decoration: none; }

.sticky-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #fff;
  text-decoration: none;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(18, 140, 126, .23);
}
.sticky-whatsapp:hover { background: var(--whatsapp-hover); }
.sticky-whatsapp svg { width: 22px; height: 22px; fill: currentColor; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1.02fr .8fr; gap: 36px; }
  .tarot-grid { grid-template-columns: 1.25fr .75fr; }
  .live-package-row { grid-template-columns: 1fr auto; }
  .live-package-row .button { grid-column: 1 / -1; width: 100%; }
}

@media (max-width: 860px) {
  .section-pad { padding: 70px 0; }
  .hero { padding-top: 54px; padding-bottom: 58px; }
  .hero-grid, .service-grid, .comparison-grid, .steps-grid, .tarot-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 34px; }
  .hero-visual { justify-content: flex-start; }
  .hero-image-frame { width: min(100%, 520px); }
  .about-grid { gap: 34px; }
  .about-image-wrap { width: min(100%, 460px); }
  .about-portrait-wrap { width: min(100%, 520px); aspect-ratio: 4 / 5; }
  .split-heading, .final-cta-inner { display: block; }
  .section-intro { margin-top: 18px; }
  .cta-stack { margin-top: 28px; }
  .step-card { min-height: auto; }
  .video-slider { grid-auto-columns: minmax(245px, 48%); }
  .slider-arrow { display: none; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav-wrap { min-height: 64px; }
  .brand-name { font-size: 23px; }
  .brand-tag { font-size: 9px; }
  h1 { font-size: 49px; }
  h2 { font-size: 43px; }
  .hero-copy { font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; margin-top: 24px; }
  .hero-actions .button { width: 100%; }
  .hero-help { font-size: 13px; }
  .hero-image-frame { border-radius: 24px; }
  .about-image-wrap { border-radius: 22px; }
  .about-portrait-wrap { aspect-ratio: 4 / 5; }
  .about-social-buttons { display: grid; grid-template-columns: 1fr; }
  .social-button-icon { width: 100%; }
  .about-copy > p:not(.eyebrow) { font-size: 16px; }
  .section-pad { padding: 56px 0; }
  .section-pad-sm { padding: 50px 0; }
  .comparison-card, .service-card, .step-card { padding: 23px; border-radius: 18px; }
  .service-topline { gap: 16px; }
  .service-topline h3 { font-size: 24px; }
  .price { font-size: 23px; }
  .live-package-row { padding: 20px 0; }
  .package-price { font-size: 22px; }
  .requirement-strip { display: block; padding: 16px 18px; }
  .requirement-strip strong, .requirement-strip span { display: block; }
  .requirement-strip span { margin-top: 7px; }
  .video-slider { grid-auto-columns: 82%; gap: 14px; }
  .video-heading .section-intro { margin-top: 14px; }
  .play-button { width: 56px; height: 56px; }
  .step-top { margin-bottom: 26px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .sticky-whatsapp { left: 14px; right: 14px; bottom: 14px; justify-content: center; }
  .footer { padding-bottom: 96px; }
}

/* --- V2.4 overrides --- */
.compare-button { margin-top: 12px; min-width: 210px; }

.hero-visual { justify-content: center; }
.hero-image-frame {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 9 / 10;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(255,255,255,.98), rgba(255,255,255,.78) 26%, rgba(255,255,255,0) 56%),
    radial-gradient(circle at 50% 70%, rgba(171, 139, 110, .36), rgba(171, 139, 110, 0) 44%),
    linear-gradient(180deg, #f6f1eb 0%, #eee5db 100%);
  box-shadow: 0 18px 40px rgba(59, 45, 53, 0.09);
  border: 1px solid rgba(116, 85, 104, .12);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 18px;
}
.hero-image-frame::before,
.hero-image-frame::after,
.about-image-wrap::before,
.about-image-wrap::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.hero-image-frame::before {
  width: 76%;
  height: 76%;
  left: 12%;
  top: 10%;
  background: radial-gradient(circle, rgba(255,255,255,.95), rgba(255,255,255,.1) 66%, rgba(255,255,255,0) 74%);
  filter: blur(2px);
}
.hero-image-frame::after {
  width: 70%;
  height: 22%;
  left: 15%;
  bottom: 7%;
  background: radial-gradient(ellipse at center, rgba(95,72,82,.18), rgba(95,72,82,0) 70%);
  filter: blur(10px);
}
.hero-image-frame img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  image-rendering: auto;
}

.about-image-wrap {
  position: relative;
  width: min(100%, 410px);
  aspect-ratio: 4 / 5;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 25%, rgba(255,255,255,.95), rgba(255,255,255,.72) 28%, rgba(255,255,255,0) 58%),
    linear-gradient(180deg, #f5f0ea 0%, #ede4d9 100%);
  border: 1px solid rgba(116, 85, 104, .14);
  box-shadow: 0 16px 36px rgba(59,45,53,.09);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 16px;
}
.about-image-wrap::before {
  width: 72%;
  height: 72%;
  left: 14%;
  top: 12%;
  background: radial-gradient(circle, rgba(255,255,255,.9), rgba(255,255,255,.08) 68%, rgba(255,255,255,0) 76%);
}
.about-image-wrap::after {
  width: 66%;
  height: 20%;
  left: 17%;
  bottom: 8%;
  background: radial-gradient(ellipse at center, rgba(95,72,82,.16), rgba(95,72,82,0) 72%);
  filter: blur(10px);
}
.about-portrait-wrap { width: min(100%, 420px); aspect-ratio: 4 / 5; }
.about-image-wrap img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center bottom;
  image-rendering: auto;
}
.about-copy > p:not(.eyebrow) { max-width: 760px; }

.courses-cta {
  background: #f7f3ef;
  border-top: 1px solid var(--line);
}
.courses-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.courses-cta-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  margin-bottom: 10px;
}
.courses-cta-card p:last-child,
.courses-cta-card p { margin: 0; color: var(--muted); }

@media (max-width: 980px) {
  .hero-image-frame { width: min(100%, 470px); }
}

@media (max-width: 860px) {
  .hero-visual { justify-content: center; }
  .hero-image-frame { width: min(100%, 430px); aspect-ratio: 5 / 6; }
  .about-image-wrap { width: min(100%, 460px); }
  .courses-cta-card { display: block; }
  .courses-cta-card .button { margin-top: 18px; }
}

@media (max-width: 600px) {
  .compare-button { width: 100%; }
  .hero-image-frame { width: min(100%, 390px); border-radius: 26px; padding: 0 12px; }
  .about-image-wrap { border-radius: 24px; padding: 0 10px; }
  .courses-cta-card { padding: 24px 22px; border-radius: 18px; }
  .courses-cta-card h3 { font-size: 31px; }
}

/* --- V2.5 hero image update --- */
.hero-image-frame {
  width: min(100%, 560px);
  aspect-ratio: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  overflow: visible;
  display: block;
}
.hero-image-frame::before,
.hero-image-frame::after {
  display: none;
}
.hero-image-frame img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  filter: drop-shadow(0 12px 30px rgba(59,45,53,.10));
}

@media (max-width: 980px) {
  .hero-image-frame { width: min(100%, 500px); }
}

@media (max-width: 860px) {
  .hero-image-frame { width: min(100%, 430px); }
}

@media (max-width: 600px) {
  .hero-image-frame {
    width: min(100%, 390px);
    border-radius: 0;
  }
}

/* --- V2.6 hero refinement --- */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}
.hero-grid {
  grid-template-columns: 1.02fr .98fr;
  gap: 56px;
  align-items: center;
}
.hero-copy-wrap {
  padding-top: 8px;
}
.hero-visual {
  align-self: center;
  justify-content: center;
}
.hero-image-frame {
  width: min(100%, 500px);
  aspect-ratio: 1 / 1;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  overflow: visible;
  display: block;
}
.hero-image-frame img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 12px 28px rgba(59,45,53,.08));
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr 0.92fr;
    gap: 34px;
  }
  .hero-image-frame {
    width: min(100%, 460px);
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-copy-wrap {
    padding-top: 0;
  }
  .hero-visual {
    order: 2;
    justify-content: center;
  }
  .hero-image-frame {
    width: min(100%, 420px);
  }
}

@media (max-width: 600px) {
  .hero-image-frame {
    width: min(100%, 360px);
  }
}

/* --- V2.7 about section image + alignment refinement --- */
.about-grid,
.about-grid-story {
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: start;
}
.about-image-wrap {
  width: min(100%, 390px);
  aspect-ratio: 1 / 1;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  overflow: visible;
  display: block;
  margin-top: 4px;
}
.about-image-wrap::before,
.about-image-wrap::after {
  display: none;
}
.about-image-wrap img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 10px 24px rgba(59,45,53,.08));
}
.about-copy {
  padding-top: 6px;
}
.about-copy h2 {
  max-width: 640px;
}
.about-copy > p:not(.eyebrow) {
  max-width: 700px;
}
.about-socials {
  margin-top: 26px;
}

@media (max-width: 980px) {
  .about-grid,
  .about-grid-story {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 36px;
  }
  .about-image-wrap {
    width: min(100%, 350px);
  }
}

@media (max-width: 860px) {
  .about-grid,
  .about-grid-story {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }
  .about-image-wrap {
    width: min(100%, 430px);
    margin-top: 0;
  }
  .about-copy {
    padding-top: 0;
  }
}

@media (max-width: 600px) {
  .about-image-wrap {
    width: min(100%, 380px);
  }
}

/* --- V2.8 desktop About section scale refinement --- */
@media (min-width: 1080px) {
  .about-grid,
  .about-grid-story {
    grid-template-columns: 0.98fr 1.02fr;
    gap: 54px;
    align-items: center;
  }

  .about-image-wrap {
    width: min(100%, 510px);
    margin-top: 0;
  }

  .about-copy {
    padding-top: 0;
  }

  .about-copy h2 {
    max-width: 620px;
  }

  .about-copy > p:not(.eyebrow) {
    max-width: 650px;
  }
}

@media (min-width: 1280px) {
  .about-image-wrap {
    width: min(100%, 530px);
  }
}
