
:root {
  --bg: #f6f1ea;
  --bg-soft: rgba(255,255,255,0.55);
  --card: rgba(255,255,255,0.82);
  --card-strong: rgba(255,255,255,0.92);
  --line: rgba(108, 88, 64, 0.14);
  --text: #231d17;
  --muted: #6f6458;
  --accent: #c49a6c;
  --accent-2: #ead7bf;
  --shadow: 0 24px 60px rgba(55, 39, 20, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #faf6f0 0%, var(--bg) 38%, #f1e8dc 100%);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  opacity: .4;
  z-index: 0;
  pointer-events: none;
}
.orb-1 {
  width: 340px; height: 340px;
  background: #fff4e4;
  top: -80px; left: -90px;
}
.orb-2 {
  width: 300px; height: 300px;
  background: #f0e1d2;
  bottom: 40px; right: -70px;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 22px auto 40px;
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.58);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow);
  border-radius: 24px;
  position: sticky;
  top: 12px;
  z-index: 15;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.brand-mark {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #f6ecdf, #e6d4bd);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
  font-size: 14px;
}
.brand-text { white-space: nowrap; }

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
}
.nav-links a:hover { color: var(--text); }

.section-pad {
  padding: 34px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
  padding-top: 30px;
}

.hero-copy {
  padding: 10px 6px 10px 6px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: #7f705e;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .18em;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 2;
}

h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.45rem, 2vw, 1.9rem); }

.lead {
  margin: 22px 0 14px;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  max-width: 58ch;
  color: #30271f;
}

.hero-note {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.final-actions {
  flex-direction: column;
  align-items: flex-start;
}

.btn-minor {
  opacity: .9;
  min-height: 48px;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 15px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn.wide { width: 100%; }
.btn-primary {
  background: linear-gradient(145deg, #1f1a16, #31271f);
  color: white;
  box-shadow: 0 18px 40px rgba(35,29,23,.15);
}
.btn-ghost {
  background: rgba(255,255,255,0.6);
  border-color: rgba(75, 59, 43, .12);
}
.btn-secondary {
  background: linear-gradient(145deg, #f1e3d0, #ead4b7);
}
.btn-light {
  background: rgba(255,255,255,.74);
  border-color: rgba(75, 59, 43, .1);
}

.hero-media {
  min-width: 0;
}
.photo-frame {
  position: relative;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: var(--radius-xl);
  padding: 16px;
  box-shadow: var(--shadow);
}
.full-photo {
  overflow: hidden;
}
.full-photo img {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.photo-caption {
  position: absolute;
  top: 41%;
  left: 31%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}
.photo-caption span {
  font-size: 1.18rem;
  font-weight: 600;
}
.photo-caption small {
  font-size: .96rem;
  color: var(--muted);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 20px;
}

.formats-list {
  display: grid;
  gap: 18px;
}

.format-card,
.approach-card,
.support-card,
.final-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}
.format-card {
  padding: 26px;
}
.format-card.featured {
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(250,245,239,.88));
}
.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(239, 228, 210, 0.85);
  color: #655443;
  font-size: 13px;
  font-weight: 600;
}
.price {
  font-weight: 600;
  color: #493b2e;
}
.card-lead {
  color: #2f261f;
  font-size: 1.06rem;
}
.featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: 26px;
  align-items: stretch;
  margin-bottom: 20px;
}
.feature-points {
  display: grid;
  gap: 14px;
}
.feature-points div {
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(106, 84, 57, .09);
  border-radius: 22px;
  padding: 18px;
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-points strong {
  font-size: 1rem;
  letter-spacing: -.01em;
}
.feature-points span {
  color: var(--muted);
}
.format-card p {
  margin: 12px 0 0;
}
.format-card .muted {
  color: var(--muted);
}
.calm {
  background: rgba(255,255,255,.74);
}

.approach-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  gap: 26px;
  overflow: hidden;
  padding: 24px;
}
.approach-text { padding: 8px 4px 8px 4px; }
.approach-text p { margin: 14px 0 0; }
.approach-media {
  min-height: 100%;
}
.approach-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  aspect-ratio: 4/5;
}

.support-card,
.final-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
}
.support-card p,
.final-card p { margin: 12px 0 0; }

.link-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.link-board a {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: var(--shadow);
  border-radius: 26px;
  font-weight: 600;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px 4px 12px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .hero,
  .approach-card,
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    gap: 24px;
  }
  .hero-copy {
    order: 1;
  }
  .hero-media {
    order: 2;
  }
  .full-photo img {
    aspect-ratio: 4 / 3;
  }
  .support-card,
  .final-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .link-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
    margin-top: 12px;
  }
  .topbar {
    padding: 16px 16px;
    border-radius: 20px;
  }
  .nav-links {
    display: none;
  }
  .section-pad {
    padding: 22px 0;
  }
  .hero {
    padding-top: 12px;
  }
  h1 {
    font-size: clamp(2.65rem, 14vw, 4.3rem);
    gap: 0;
  }
  .lead {
    margin-top: 18px;
    font-size: 1rem;
  }
  .photo-frame,
  .format-card,
  .approach-card,
  .support-card,
  .final-card,
  .link-board a {
    border-radius: 24px;
  }
  .full-photo {
    padding: 12px;
  }
  .full-photo img {
    border-radius: 18px;
    aspect-ratio: 4/3;
  }
  .photo-caption {
    top: 45%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    padding: 11px 15px;
  }
  .photo-caption span {
    font-size: 1rem;
  }
  .photo-caption small {
    font-size: .86rem;
  }
  .card-topline {
    flex-wrap: wrap;
  }
  .hero-actions,
  .final-actions,
  .primary-actions {
    width: 100%;
    flex-direction: column;
  }
  .btn,
  .btn.wide { width: 100%; }
  .feature-points div {
    min-height: 86px;
  }
  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
  }
}

.minor-action-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.minor-label {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: 6px;
}
.final-actions .primary-actions .btn {
  min-width: 210px;
}
.final-actions .btn-minor {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
  opacity: .82;
  background: rgba(255,255,255,.58);
}

@media (max-width: 720px) {
  .minor-action-wrap {
    width: 100%;
  }
  .minor-action-wrap .btn-minor {
    width: 100%;
  }
}


.final-card-refined {
  display: block;
  padding: 28px;
}

.final-intro {
  max-width: 760px;
  margin-bottom: 22px;
}

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

.choice-card {
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 26px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45);
}

.choice-card-primary {
  padding: 22px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}

.choice-card-primary.subtle {
  background: rgba(255,255,255,.58);
}

.choice-card-primary p {
  margin: 12px 0 18px;
  color: #3e342a;
}

.choice-card-primary .btn {
  margin-top: auto;
  width: 100%;
}

.choice-meta {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #7a6958;
}

.choice-card-secondary {
  grid-column: 1 / -1;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255,255,255,.45);
}

.choice-card-secondary h3 {
  font-size: 1.28rem;
}

.choice-card-secondary p {
  margin: 8px 0 0;
  color: var(--muted);
}

.muted-meta {
  color: #8d806f;
}

.choice-card-secondary .btn-minor {
  white-space: nowrap;
  opacity: .88;
}

@media (max-width: 920px) {
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .choice-card-secondary {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .final-card-refined {
    padding: 22px;
  }

  .choice-card-secondary {
    flex-direction: column;
    align-items: flex-start;
  }

  .choice-card-secondary .btn-minor {
    width: 100%;
  }
}


/* v15: forced photo caption position */
.photo-caption {
  top: 34% !important;
  left: 31% !important;
  transform: translate(-50%, -50%) !important;
}

@media (max-width: 720px) {
  .photo-caption {
    top: 38% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
}


/* v16 visual refinement with icons */
.btn-icon { gap: 10px; }
.icon { width: 18px; height: 18px; flex: 0 0 18px; }
.title-wrap { display:flex; align-items:center; gap:14px; min-width:0; }
.card-topline-rich { align-items:flex-start; }
.card-topline-rich h3 { margin-top: 6px; }
.with-icon .pill { margin-bottom: 8px; }
.icon-badge {
  width: 52px; height: 52px; border-radius: 16px; display:inline-flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.82); color: #4c4034; border: 1px solid rgba(106,84,57,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}
.icon-badge.accent { background: linear-gradient(145deg, #f4ecdf, #e8d7bf); color:#3e3125; }
.icon-badge.soft { background: rgba(245,236,223,.9); color:#5b4b3f; }
.icon-badge.muted { background: rgba(255,255,255,.9); color:#796858; }
.icon-badge.big { width: 60px; height: 60px; border-radius: 18px; }
.formats-duo { display:grid; grid-template-columns: 1.1fr .9fr; gap:18px; }
.secondary-format { background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.7)); }
.feature-points div { position:relative; padding-left: 56px; }
.mini-icon {
  position:absolute; left:18px; top:18px; width:28px; height:28px; border-radius: 999px;
  display:flex; align-items:center; justify-content:center; background: rgba(239,228,210,.76); color:#5d4e3f;
}
.support-card-rich { align-items:center; }
.support-intro { display:flex; align-items:flex-start; gap:18px; }
.link-board a { gap: 10px; font-weight: 600; }
.link-board a .icon { width: 20px; height: 20px; }
.final-intro { max-width: 860px; }
.choice-head { display:flex; align-items:center; gap:14px; margin-bottom: 14px; }
.visual-choice { padding: 22px; }
.visual-choice .choice-meta { margin-bottom: 6px; }
.visual-choice p { margin: 12px 0 18px; }
.visual-choice-secondary { padding: 18px 20px; }
.visual-choice-secondary p { margin: 0 0 16px 66px; color: var(--muted); }
.visual-choice-secondary .btn-minor { margin-left: 66px; align-self:flex-start; }
@media (max-width: 980px) {
  .formats-duo { grid-template-columns: 1fr; }
  .support-intro { align-items: flex-start; }
}
@media (max-width: 720px) {
  .support-intro { flex-direction: row; }
  .card-topline-rich { flex-direction: column; }
  .visual-choice-secondary p, .visual-choice-secondary .btn-minor { margin-left: 0; }
}


/* v18: remove mini icons from feature bullets in closed channel */
.feature-points div { padding-left: 18px !important; }
.mini-icon { display: none !important; }


/* v20: softer premium button palette */
.btn {
  box-shadow: 0 10px 24px rgba(84, 66, 47, 0.08);
}

.btn-primary {
  background: linear-gradient(135deg, #75634f 0%, #8e7960 48%, #b39a7c 100%);
  color: #fffaf3;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 16px 34px rgba(94, 74, 52, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(247, 240, 230, 0.98) 0%, rgba(232, 218, 201, 0.95) 52%, rgba(213, 196, 174, 0.92) 100%);
  color: #4a3b2e;
  border-color: rgba(130, 104, 75, 0.12);
  box-shadow:
    0 14px 30px rgba(91, 70, 47, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.btn-ghost {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.70) 0%, rgba(245, 236, 224, 0.66) 100%);
  color: #44372d;
  border-color: rgba(122, 96, 67, 0.14);
  box-shadow:
    0 12px 26px rgba(91, 70, 47, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.btn-light {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0%, rgba(244, 237, 226, 0.62) 100%);
  color: #57483b;
  border-color: rgba(122, 96, 67, 0.10);
  box-shadow:
    0 10px 22px rgba(91, 70, 47, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 38px rgba(86, 66, 45, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #806c56 0%, #9a8267 48%, #bea586 100%);
}

.btn-secondary:hover,
.btn-ghost:hover,
.btn-light:hover {
  background: linear-gradient(135deg, rgba(255, 250, 244, 0.86) 0%, rgba(236, 224, 210, 0.76) 100%);
}

/* v20: final block button harmony */
.choice-card .btn-primary,
.choice-card .btn-ghost,
.choice-card .btn-light {
  min-height: 52px;
}

.choice-card-primary {
  background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(249,244,237,.66));
}

.choice-card-primary.subtle {
  background: linear-gradient(180deg, rgba(255,255,255,.64), rgba(246,239,230,.58));
}

.choice-card-secondary {
  background: linear-gradient(135deg, rgba(255,255,255,.46), rgba(246,239,230,.38));
}


/* v21: mobile cleanup — more air, no overlay chaos, clearer rhythm */
@media (max-width: 720px) {
  body {
    line-height: 1.5;
  }

  .site-shell {
    width: min(100% - 24px, 1180px);
    margin-top: 12px;
  }

  .topbar {
    position: static;
    margin-bottom: 10px;
    box-shadow: 0 14px 34px rgba(55, 39, 20, 0.06);
  }

  .brand-text {
    font-size: 14px;
  }

  .section-pad {
    padding: 18px 0;
  }

  .hero {
    gap: 18px;
    padding-top: 10px;
  }

  .hero-copy {
    padding: 4px 2px 0;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.7rem);
    line-height: .98;
  }

  h2 {
    font-size: clamp(1.82rem, 9vw, 2.45rem);
  }

  h3 {
    font-size: clamp(1.28rem, 6.2vw, 1.65rem);
    line-height: 1.08;
  }

  .lead {
    max-width: 100%;
    margin: 18px 0 12px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-note {
    margin-bottom: 22px;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 10px;
  }

  .photo-frame,
  .format-card,
  .approach-card,
  .support-card,
  .final-card,
  .link-board a {
    border-radius: 22px;
  }

  .full-photo {
    padding: 10px;
  }

  .full-photo img {
    border-radius: 18px;
    aspect-ratio: 4 / 3.15;
    object-position: center;
  }

  /* На телефоне убираем плашку с лица и ставим её как аккуратную подпись под фото */
  .photo-caption {
    position: static !important;
    transform: none !important;
    margin: 10px 2px 0;
    width: auto;
    display: flex;
    padding: 12px 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(244,236,225,.62));
    box-shadow: none;
  }

  .photo-caption span {
    font-size: .96rem;
  }

  .photo-caption small {
    font-size: .84rem;
  }

  .section-heading {
    display: block;
    margin-bottom: 14px;
  }

  .section-heading .eyebrow {
    margin-bottom: 8px;
  }

  .format-card {
    padding: 20px;
  }

  .format-card.featured {
    padding: 21px;
  }

  .card-topline,
  .card-topline-rich {
    gap: 14px;
    margin-bottom: 16px;
  }

  .title-wrap {
    align-items: flex-start;
    gap: 12px;
  }

  .icon-badge {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .icon-badge .icon {
    width: 17px;
    height: 17px;
  }

  .pill {
    min-height: 28px;
    padding: 0 10px;
    font-size: 12px;
  }

  .price {
    font-size: .98rem;
  }

  .format-card p {
    margin-top: 10px;
    line-height: 1.52;
  }

  .card-lead {
    font-size: 1rem;
    line-height: 1.53;
  }

  .featured-grid {
    gap: 16px;
    margin-bottom: 16px;
  }

  .feature-points {
    gap: 10px;
  }

  .feature-points div {
    min-height: auto;
    padding: 15px 16px !important;
    border-radius: 18px;
  }

  .formats-duo {
    gap: 14px;
  }

  .approach-card {
    padding: 18px;
    gap: 18px;
  }

  .approach-text {
    padding: 2px 2px 0;
  }

  .approach-text p {
    margin-top: 12px;
    line-height: 1.54;
  }

  .approach-media {
    order: -1;
  }

  .approach-media img {
    border-radius: 20px;
    aspect-ratio: 4 / 3.1;
    object-position: center;
  }

  .support-card {
    padding: 20px;
    gap: 16px;
  }

  .support-intro {
    gap: 12px;
  }

  .support-intro .icon-badge.big {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .link-board {
    gap: 10px;
  }

  .link-board a {
    min-height: 64px;
    justify-content: flex-start;
    padding: 16px 18px;
  }

  .final-card-refined {
    padding: 20px;
  }

  .final-intro {
    margin-bottom: 18px;
  }

  .final-intro p {
    line-height: 1.5;
  }

  .choice-grid {
    gap: 12px;
  }

  .choice-card-primary,
  .choice-card-secondary {
    padding: 18px;
    min-height: auto;
    border-radius: 20px;
  }

  .choice-head {
    gap: 12px;
    margin-bottom: 12px;
  }

  .choice-card-primary p,
  .choice-card-secondary p {
    margin-top: 10px;
    line-height: 1.48;
  }

  .choice-card-secondary {
    display: block;
  }

  .choice-card-secondary .btn-minor {
    margin-top: 16px;
  }

  .btn {
    min-height: 52px;
    padding: 0 18px;
  }

  .footer {
    padding-bottom: 8px;
  }
}

@media (max-width: 390px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
  }

  h1 {
    font-size: clamp(2.35rem, 12.4vw, 3.35rem);
  }

  .format-card,
  .support-card,
  .final-card-refined {
    padding: 18px;
  }

  .title-wrap,
  .choice-head,
  .support-intro {
    gap: 10px;
  }
}


/* v23: mobile-only integrated hero and less cropped photos */
@media (max-width: 720px) {
  .topbar {
    display: none;
  }

  .site-shell {
    width: min(100% - 18px, 1180px);
    margin-top: 12px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 12px;
    background: var(--card);
    border: 1px solid rgba(255,255,255,.78);
    box-shadow: var(--shadow);
    border-radius: 24px;
  }

  .hero-media {
    order: 1;
  }

  .hero-copy {
    order: 2;
    padding: 4px 6px 8px;
  }

  .photo-frame.full-photo {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
  }

  .full-photo img {
    width: 100%;
    height: auto !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center;
    border-radius: 18px;
  }

  .photo-caption {
    position: absolute !important;
    top: 44% !important;
    left: 16px !important;
    right: auto !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    width: auto;
    max-width: 46%;
    display: inline-flex;
    padding: 11px 13px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,.68), rgba(244,236,225,.56));
    box-shadow: 0 10px 24px rgba(0,0,0,.05);
  }

  .photo-caption span {
    font-size: .92rem;
    line-height: 1.14;
  }

  .photo-caption small {
    font-size: .80rem;
    line-height: 1.14;
  }

  .hero-copy .eyebrow {
    margin-bottom: 8px;
  }

  .hero-copy .lead {
    margin-top: 14px;
  }

  .approach-card {
    padding: 18px;
    gap: 18px;
  }

  .approach-media {
    order: -1;
  }

  .approach-media img {
    width: 100%;
    height: auto !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center top;
    border-radius: 20px;
  }
}

@media (max-width: 420px) {
  .photo-caption {
    top: 42% !important;
    left: 14px !important;
    max-width: 50%;
    padding: 10px 12px;
  }

  .photo-caption span {
    font-size: .88rem;
  }

  .photo-caption small {
    font-size: .77rem;
  }
}


/* v24: keep 1 на 1 together and refine mobile final block */
.nowrap { white-space: nowrap; }

@media (max-width: 720px) {
  .final-card-refined .choice-card h3 .nowrap,
  .format-card h3 .nowrap,
  .hero-copy h3 .nowrap {
    white-space: nowrap;
  }

  .final-card-refined .choice-card h3 {
    font-size: clamp(1.18rem, 5.3vw, 1.42rem);
    line-height: 1.12;
  }

  .final-card-refined .choice-card .choice-head {
    align-items: flex-start;
  }
}


/* v25: desktop refinements only */
@media (min-width: 721px) {
  .photo-caption {
    top: 40%;
    left: 28%;
    max-width: 245px;
    padding: 13px 16px;
    gap: 3px;
  }

  .photo-caption span {
    font-size: 1rem;
    line-height: 1.12;
  }

  .photo-caption small {
    font-size: .84rem;
    line-height: 1.12;
  }

  .final-intro {
    max-width: 820px;
    margin-bottom: 24px;
  }

  .choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
  }

  .choice-card,
  .choice-card-primary,
  .choice-card-secondary {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 260px;
    padding: 24px;
    border-radius: 28px;
  }

  .choice-card-primary p,
  .choice-card-secondary p {
    margin: 14px 0 18px;
    color: #3e342a;
  }

  .choice-card-secondary h3 {
    font-size: 1.34rem;
  }

  .visual-choice-secondary p,
  .visual-choice-secondary .btn-minor {
    margin-left: 0;
  }

  .choice-card .btn-primary,
  .choice-card .btn-ghost,
  .choice-card .btn-light {
    width: 100%;
    margin-top: auto;
  }

  .choice-card-secondary {
    background: linear-gradient(180deg, rgba(255,255,255,.56), rgba(246,239,230,.44));
    border: 1px solid rgba(106,84,57,.07);
  }

  .choice-head {
    align-items: flex-start;
    margin-bottom: 12px;
  }
}


/* v26: desktop alignment refinements */
@media (min-width: 721px) {
  .section-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    margin-bottom: 18px;
    text-align: left;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .support-card-rich {
    align-items: center;
  }

  .support-intro {
    align-items: center;
    gap: 16px;
  }

  .support-intro .icon-badge.big,
  .support-intro .icon-badge {
    align-self: center;
    flex: 0 0 auto;
  }

  .support-intro > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .support-intro > div .eyebrow {
    margin-bottom: 6px;
  }
}
