:root {
  --bg: #f5f5f7;
  --panel: #ffffff;
  --panel-soft: #fbfbfd;
  --text: #1d1d1f;
  --text-strong: #111111;
  --text-body: #424245;
  --muted: #6e6e73;
  --line: #d2d2d7;
  --accent: #6e7f93;
  --accent-hover: #5f7084;
  --accent-soft: #eef2f6;
  --warm-soft: #f4eee5;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  --radius-xl: 32px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1680px;
  --content: 1400px;
  --font-text:
    -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial,
    sans-serif;
  --font-display:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue",
    Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-text);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.011em;
}

body.is-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.99);
  filter: blur(6px);
  transition:
    opacity 1.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.95s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.95s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

body.is-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

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

img {
  max-width: 100%;
}

p,
li,
input,
textarea,
select,
button {
  font-size: 16px;
  color: var(--text-body);
}

.page-shell {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 18px 0 72px;
}

.top-contact-bar {
  display: none;
}

.top-contact-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.2;
}

.site-header {
  position: relative;
  z-index: 50;
  width: calc(100% - 40px);
  max-width: calc(var(--container) - 40px);
  margin: 0 auto 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 56px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(210, 210, 215, 0.7);
  border-radius: 999px;
  backdrop-filter: saturate(180%) blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-lockup {
  gap: 0;
}

.brand-logo {
  display: block;
  width: clamp(59px, 6vw, 84px);
  height: auto;
}

.brand-mark {
  color: var(--text-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.brand-submark {
  padding-top: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-menu {
  display: block;
}

.menu-toggle {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-menu > .site-nav {
  display: flex;
}

.site-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.008em;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.site-nav a.is-active {
  font-weight: 700;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(110, 127, 147, 0.18);
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}

.nav-cta:hover,
.nav-cta.is-active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.hero,
.section,
.closing {
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(247, 247, 250, 0.9));
  border-radius: var(--radius-lg);
}

.section,
.closing {
  width: min(calc(100% - 48px), var(--content));
  margin-left: auto;
  margin-right: auto;
}

.hero {
  width: min(calc(100% - 48px), calc(var(--container) - 48px));
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 52px;
}

.hero-copy,
.hero-card,
.soft-panel,
.info-card,
.pricing-card,
.faq-item,
.contact-form,
.closing,
.section-accent,
.journal-card,
.gallery-card,
.footer-panel,
.contact-card,
.article-card {
  background: var(--panel);
  border: 1px solid rgba(210, 210, 215, 0.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(42px, 5.4vw, 78px);
  min-height: 620px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.9), transparent 46%),
    linear-gradient(180deg, #ffffff 0%, #f8f8fb 100%);
}

.hero-card {
  padding: clamp(20px, 2.4vw, 28px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(180deg, #ffffff 0%, #f6f7fb 100%);
  min-height: 620px;
}

.hero.hero-compact .hero-copy,
.hero.hero-compact .hero-card {
  min-height: 520px;
}

.editorial-photo {
  width: 100%;
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
}

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

.hero-photo {
  aspect-ratio: 0.92 / 1.02;
  height: 100%;
  margin: 0;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.split-photo {
  margin: 0;
  aspect-ratio: 1 / 1.08;
  box-shadow: var(--shadow);
  border: 1px solid rgba(210, 210, 215, 0.7);
}

.profile-photo {
  width: clamp(220px, 23vw, 290px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

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

h1,
h2,
h3,
.price {
  margin: 0;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  font-family: var(--font-display);
}

h1 {
  max-width: 15ch;
  font-size: clamp(40px, 4.4vw, 46px);
  line-height: 1.04;
  font-weight: 700;
}

.home-hero-title {
  font-size: clamp(48px, 5.2vw, 56px);
  max-width: 13ch;
  line-height: 1.02;
}

h2 {
  font-size: clamp(32px, 4.8vw, 64px);
  line-height: 1.04;
  font-weight: 700;
}

h3 {
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.16;
  font-weight: 600;
}

.quote-lead {
  max-width: none;
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(24px, 2.35vw, 32px);
  line-height: 1.32;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.hero-lead {
  max-width: 28ch;
  margin: 34px 0 24px;
  color: var(--text);
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-copy p:not(.eyebrow):not(.hero-lead):not(.quote-lead) {
  max-width: 44rem;
  color: var(--text-body);
  margin-top: 0;
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 1.6;
}

.hero-card-intro {
  margin: 18px 0 8px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-body);
}

.hero-note {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(210, 210, 215, 0.8);
}

.hero-note strong {
  display: block;
  font-size: 16px;
  color: var(--text-strong);
}

.hero-note span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
}

.eyebrow,
.card-kicker,
.featured-badge,
.placeholder-label,
.nav-meta {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.placeholder-label {
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

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

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-primary:hover {
  background: var(--accent-hover);
}

.button-secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--accent);
}

.button-secondary:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.feature-list,
.check-list,
.pricing-list,
.compact-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li,
.pricing-list li,
.compact-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
}

.feature-list li::before,
.check-list li::before,
.pricing-list li::before,
.compact-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.section {
  padding: 84px 0;
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 64px;
  padding: 0 12px;
  text-align: center;
}

.section-heading h2 + p,
.section-text p,
.pricing-summary,
.pricing-footer p,
.faq-item p,
.contact-side p,
.info-card p,
.soft-panel p,
.contact-card p,
.article-card p,
.journal-card p,
.gallery-card p {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.65;
}

.section-text p {
  margin-bottom: 18px;
}

.section-text {
  padding: 0 14px;
}

.section-text.narrow {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.section-grid,
.cards.three-up,
.cards.two-up,
.pricing-grid,
.contact-grid,
.field-grid,
.split-cards,
.gallery-grid,
.journal-grid,
.footer-grid,
.mini-grid,
.logo-grid {
  display: grid;
  gap: 34px;
}

.section-grid,
.cards.two-up,
.split-cards,
.mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards.three-up,
.pricing-grid,
.gallery-grid,
.journal-grid,
.logo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.logo-grid {
  gap: 18px;
}

.contact-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
}

.soft-panel,
.info-card,
.pricing-card,
.contact-card,
.journal-card,
.gallery-card,
.article-card {
  padding: clamp(36px, 4.2vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.soft-panel {
  background: var(--panel-soft);
}

.info-card,
.pricing-card,
.journal-card,
.article-card {
  background: linear-gradient(180deg, #ffffff 0%, #fafafc 100%);
}

.section-accent {
  padding: clamp(52px, 6vw, 82px);
  background: linear-gradient(180deg, #ffffff 0%, #f7f7fa 100%);
}

.pricing-card {
  gap: 26px;
}

.pricing-card.featured {
  background: linear-gradient(180deg, #ffffff 0%, #f3f6fa 100%);
  border-color: rgba(110, 127, 147, 0.22);
  box-shadow: 0 14px 34px rgba(110, 127, 147, 0.12);
}

.pricing-card.featured .card-footer,
.pricing-card.featured .pricing-footer {
  border-top-color: rgba(110, 127, 147, 0.2);
}

.pricing-card.featured .button-secondary {
  border-color: rgba(110, 127, 147, 0.28);
  background: rgba(255, 255, 255, 0.72);
}

.pricing-name {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
  font-weight: 700;
}

.offer-duration,
.offer-subtitle {
  margin: 0 0 10px;
}

.offer-duration {
  color: var(--text-strong);
  font-size: 28px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.offer-subtitle {
  color: var(--accent);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

.offer-list {
  margin-top: 0;
}

.offer-list li:last-child {
  margin-bottom: 0;
}

.occasions-strip {
  margin-top: 30px;
}

.occasions-strip .section-heading {
  margin-bottom: 24px;
}

.home-page .home-hero {
  margin-bottom: 28px;
}

.home-page .home-problem {
  padding-top: 102px;
}

.home-page .home-offers {
  padding-top: 108px;
  padding-bottom: 112px;
}

.home-page .home-offers .section-heading {
  margin-bottom: 78px;
}

.home-page .home-capacity {
  margin-top: 66px;
  margin-bottom: 40px;
}

.home-page .home-capacity h3 {
  margin-bottom: 14px;
}

.home-page .home-occasions {
  margin-top: 72px;
}

.home-page .home-occasions .section-heading {
  margin-bottom: 42px;
}

.home-page .home-trust {
  padding-top: 124px;
}

.home-page .home-trust .section-heading {
  margin-bottom: 88px;
}

.home-page .home-closing {
  margin-top: 92px;
}

.home-page .home-faq {
  padding-top: 108px;
}

.occasion-link-card {
  padding: 28px 24px;
}

.occasion-link-card h3 {
  margin-bottom: 8px;
}

.occasion-link-card .card-actions {
  margin-top: auto;
}

.pricing-footer,
.card-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.split-photo-tall {
  aspect-ratio: 0.92 / 1.12;
}

.benefit-card,
.offer-card,
.comparison-card,
.occasion-card,
.reassurance-card,
.value-card,
.reason-card {
  padding: 24px 24px 28px;
}

.benefit-photo,
.card-photo,
.gallery-photo,
.article-photo,
.contact-photo {
  margin-bottom: 18px;
  aspect-ratio: 1 / 0.82;
  border: 1px solid rgba(210, 210, 215, 0.7);
}

.gallery-photo {
  aspect-ratio: 1 / 1;
}

.article-photo {
  aspect-ratio: 1.08 / 0.76;
}

.contact-photo {
  aspect-ratio: 1 / 0.92;
}

.cards .hero-actions,
.card-actions {
  margin-top: 18px;
}

.cards .button,
.card-actions .button {
  width: auto;
}

.placeholder-proof-card,
.logo-placeholder {
  min-height: 210px;
  justify-content: center;
}

.logo-placeholder {
  align-items: center;
  text-align: center;
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 60px;
  align-items: start;
}

.method-intro p {
  margin: 0;
  max-width: 32ch;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-body);
}

.method-flow {
  display: grid;
  gap: 0;
}

.method-step {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 28px 0 30px;
  border-top: 1px solid rgba(210, 210, 215, 0.9);
}

.method-step:first-child {
  padding-top: 0;
  border-top: 0;
}

.method-step span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.method-step h3 {
  min-height: auto;
  margin-bottom: 10px;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.08;
}

.method-step p {
  margin: 0 0 8px;
  max-width: 44ch;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
}

.faq-list {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  padding: 32px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
  border-color: rgba(110, 127, 147, 0.18);
  box-shadow: 0 10px 24px rgba(110, 127, 147, 0.07);
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  padding-right: 32px;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
  transition: transform 0.25s ease, color 0.25s ease;
}

.faq-item[open] summary::after {
  content: "−";
  color: var(--accent);
}

.faq-item p {
  margin: 18px 0 0;
}

.contact-form {
  padding: clamp(36px, 4.2vw, 56px);
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
}

.contact-form span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(110, 127, 147, 0.55);
  box-shadow: 0 0 0 4px rgba(110, 127, 147, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-form button {
  border: 0;
  cursor: pointer;
}

.contact-note,
.meta-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-stack,
.footer-links {
  display: grid;
  gap: 14px;
}

.contact-card strong,
.footer-column strong {
  color: var(--text-strong);
}

.gallery-masonry {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.gallery-masonry .gallery-card:nth-child(1) {
  grid-column: span 5;
}

.gallery-masonry .gallery-card:nth-child(2) {
  grid-column: span 4;
}

.gallery-masonry .gallery-card:nth-child(3) {
  grid-column: span 3;
}

.gallery-masonry .gallery-card:nth-child(4) {
  grid-column: span 3;
}

.gallery-masonry .gallery-card:nth-child(5) {
  grid-column: span 4;
}

.gallery-masonry .gallery-card:nth-child(6) {
  grid-column: span 5;
}

.gallery-masonry .gallery-card:nth-child(7),
.gallery-masonry .gallery-card:nth-child(8),
.gallery-masonry .gallery-card:nth-child(9) {
  grid-column: span 4;
}

.gallery-card {
  padding: 18px;
}

.gallery-card h3,
.journal-card h3,
.article-card h3 {
  min-height: auto;
  margin-bottom: 8px;
}

.closing {
  margin-top: 64px;
  padding: 96px 42px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7fa 100%);
}

.closing h2 {
  max-width: 16ch;
  margin: 0 auto;
}

.closing p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-body);
}

.closing .hero-actions {
  margin-top: 34px;
  justify-content: center;
  align-items: center;
}

.site-footer {
  width: min(calc(100% - 40px), var(--content));
  margin: 36px auto 0;
}

.footer-panel {
  padding: 28px 28px 18px;
}

.footer-grid {
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 26px;
  align-items: start;
}

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

.footer-brand p,
.footer-column a,
.footer-column p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.footer-column h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(210, 210, 215, 0.8);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.footer-legal {
  margin-top: 10px;
  max-width: 42rem;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.footer-legal-secondary {
  margin-top: 4px;
  font-size: 10px;
  opacity: 0.82;
}

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

  body.is-ready [data-reveal],
  body.is-ready [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (max-width: 1400px) {
  .method-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-masonry .gallery-card {
    grid-column: span 1 !important;
  }
}

@media (max-width: 1100px) {
  .site-header,
  .section,
  .closing,
  .hero {
    width: min(calc(100% - 28px), var(--content));
  }

  .hero,
  .section-grid,
  .cards.three-up,
  .cards.two-up,
  .pricing-grid,
  .contact-grid,
  .field-grid,
  .split-feature,
  .split-cards,
  .journal-grid,
  .gallery-grid,
  .logo-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero.hero-compact .hero-copy,
  .hero-card,
  .hero.hero-compact .hero-card {
    min-height: auto;
  }

  .hero {
    gap: 24px;
  }

  .section {
    padding: 42px 0;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .nav-cta {
    padding: 9px 14px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding-top: 10px;
    padding-bottom: 48px;
  }

  .site-header {
    width: calc(100% - 16px);
    padding: 8px 12px;
    border-radius: 18px;
    margin-bottom: 10px;
    position: relative;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    min-height: 44px;
  }

  .top-contact-bar {
    display: none;
  }

  .brand-logo {
    width: 62px;
  }

  .site-menu {
    display: block;
    position: relative;
    width: auto;
    margin-left: auto;
    z-index: 60;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 34px;
    margin-top: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    list-style: none;
    cursor: pointer;
  }

  .menu-toggle::-webkit-details-marker {
    display: none;
  }

  .menu-icon {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    width: 14px;
  }

  .menu-icon span {
    display: block;
    width: 14px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
  }

  .site-menu[open] .menu-toggle {
    margin-bottom: 8px;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(280px, calc(100vw - 32px));
    gap: 8px;
    justify-content: flex-start;
    flex-direction: column;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(210, 210, 215, 0.9);
    border-radius: 18px;
    box-shadow: var(--shadow);
    backdrop-filter: saturate(180%) blur(20px);
    z-index: 80;
  }

  .site-menu[open] .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    font-size: 14px;
  }

  .section,
  .closing,
  .hero,
  .site-footer {
    width: calc(100% - 20px);
  }

  .hero-copy,
  .hero-card,
  .soft-panel,
  .info-card,
  .pricing-card,
  .contact-form,
  .closing,
  .section-accent,
  .faq-item,
  .contact-card,
  .journal-card,
  .gallery-card,
  .article-card,
  .footer-panel {
    padding: 20px;
  }

  .hero {
    gap: 16px;
    margin-bottom: 14px;
  }

  .hero-copy {
    padding: 26px 22px;
  }

  .hero-card {
    padding: 16px;
  }

  .hero-photo,
  .split-photo,
  .card-photo,
  .article-photo,
  .contact-photo {
    aspect-ratio: 1 / 0.72;
  }

  h1 {
    max-width: none;
    font-size: clamp(30px, 8.2vw, 36px);
  }

  .home-hero-title {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(28px, 10vw, 40px);
  }

  .section {
    padding: 30px 0;
  }

  .home-page .home-hero {
    margin-bottom: 12px;
  }

  .home-page .home-problem,
  .home-page .home-offers,
  .home-page .home-trust,
  .home-page .home-faq {
    padding-top: 42px;
  }

  .home-page .home-offers {
    padding-bottom: 44px;
  }

  .home-page .home-offers .section-heading,
  .home-page .home-trust .section-heading {
    margin-bottom: 38px;
  }

  .home-page .home-capacity {
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .home-page .home-occasions {
    margin-top: 42px;
  }

  .home-page .home-occasions .section-heading {
    margin-bottom: 28px;
  }

  .home-page .home-closing {
    margin-top: 44px;
  }

  .section-heading {
    margin-bottom: 30px;
    padding: 0 8px;
  }

  .section-text {
    padding: 0 4px;
  }

  .section-text p,
  .pricing-summary,
  .pricing-footer p,
  .faq-item p,
  .contact-card p,
  .info-card p,
  .soft-panel p,
  .article-card p,
  .journal-card p {
    font-size: 15px;
    line-height: 1.58;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-item {
    padding: 20px 18px;
  }

  .faq-item summary {
    font-size: 18px;
  }

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

  .button {
    width: 100%;
  }

  .method-step {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 18px 22px;
    background: #fff;
    border: 1px solid rgba(210, 210, 215, 0.8);
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 12px;
  }

  .method-step:first-child {
    padding-top: 20px;
    border-top: 1px solid rgba(210, 210, 215, 0.8);
  }

  .method-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent-soft);
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .closing {
    padding: 60px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
