:root {
  --bg: #080808;
  --surface: #111;
  --surface-2: #181818;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 118, 10, 0.45);
  --text: #f7f7f7;
  --muted: #b7b7b7;
  --soft: #777;
  --accent: #ff6a00;
  --accent-2: #e53315;
  --good: #f6a700;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 44px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  background: rgba(8, 8, 8, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 190px;
}

.brand img {
  width: 118px;
  height: auto;
}

.brand span {
  max-width: 190px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.25;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #dedede;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a {
  opacity: 0.82;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover {
  color: var(--accent);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone {
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.btn,
.link-btn,
.filter-btn {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  color: #100b08;
  background: var(--accent);
  border-color: transparent;
  font-weight: 850;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 14px 36px rgba(255, 106, 0, 0.22);
}

.btn:hover {
  transform: translateY(-2px);
  background: #ff7f1a;
  box-shadow: 0 18px 44px rgba(255, 106, 0, 0.3);
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 11px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}

.section {
  padding: 100px 0;
  background: var(--bg);
}

.section-dark {
  background: #030303;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.62) 38%, rgba(0, 0, 0, 0.22) 72%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.98), rgba(8, 8, 8, 0.02) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 150px 0 44px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(38px, 5.4vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.hero-lead {
  max-width: 660px;
  color: #e6e6e6;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 54px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.hero-proof article,
.card,
.package-card,
.review-card,
.lead-form,
.map-panel {
  background: rgba(20, 20, 20, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-proof article {
  min-height: 116px;
  padding: 20px 18px;
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-proof strong,
.hero-proof span {
  display: block;
  color: var(--accent);
  font-size: clamp(20px, 1.35vw, 23px);
  font-weight: 900;
  line-height: 1.14;
}

.hero-proof .proof-large span,
.hero-proof .proof-statement strong {
  font-size: clamp(20px, 1.35vw, 23px);
  font-weight: 900;
  line-height: 1.14;
}

.intro-band {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0e0e0e;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: end;
}

.intro-grid h2 {
  margin-bottom: 0;
}

.intro-grid p:last-child,
.section-head > p:last-child,
.studio-copy > p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head.compact {
  display: block;
}

.section-head > p {
  max-width: 470px;
  margin-bottom: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  min-height: 246px;
  padding: 24px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.card:hover,
.package-card:hover,
.review-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  background: rgba(28, 28, 28, 0.94);
}

.line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 106, 0, 0.44);
  border-radius: 50%;
  color: var(--accent);
  font-weight: 900;
  font-size: 13px;
}

.card p,
.package-card p,
.timeline p,
.review-card p,
.faq-list p,
.bonus-card p {
  color: var(--muted);
}

.studio-section,
.process-section,
.contact-section {
  background: #0c0c0c;
}

.price-factors-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 106, 0, 0.14), transparent 34%),
    linear-gradient(180deg, #101010 0%, #080808 100%);
  color: var(--text);
}

.price-factors-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.18;
}

.price-factors-section .container {
  position: relative;
  z-index: 1;
}

.price-factors-section h2 {
  max-width: 780px;
  margin-bottom: 34px;
  color: var(--text);
  font-size: clamp(38px, 4.4vw, 68px);
  font-weight: 900;
  line-height: 1.05;
}

.price-factor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-factor-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(18, 18, 18, 0.9);
  box-shadow: var(--shadow);
}

.price-factor-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #080808;
  font-size: 20px;
  font-weight: 900;
}

.price-factor-grid h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: clamp(21px, 1.55vw, 28px);
  font-weight: 900;
  line-height: 1.15;
}

.price-factor-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.studio-grid,
.process-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.media-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: stretch;
}

.media-stack img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: #080808;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.media-stack img:nth-child(2) {
  height: 250px;
}

.fact-list {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.fact-list article {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.fact-list strong {
  color: var(--accent);
  font-size: 44px;
  line-height: 1;
}

.fact-list p {
  margin: 0;
  color: var(--muted);
}

.bonus-section {
  background: #090909;
}

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

.bonus-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.74fr);
  gap: 26px;
  align-items: center;
  min-height: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.bonus-card img {
  width: 100%;
  height: clamp(330px, 38vw, 520px);
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #050505;
}

.bonus-copy {
  width: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.72);
}

.bonus-card h3 {
  font-size: clamp(28px, 3.2vw, 42px);
}

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 106, 0, 0.5);
  border-radius: 999px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.bonus-card small {
  display: block;
  margin-top: 12px;
  color: var(--soft);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 28px;
}

.package-card.featured {
  border-color: rgba(255, 106, 0, 0.55);
  background:
    linear-gradient(180deg, rgba(255, 106, 0, 0.08), rgba(255, 255, 255, 0.02)),
    var(--surface-2);
}

.package-number {
  color: var(--accent);
  font-weight: 900;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 28px;
  padding: 0;
  list-style: none;
  color: #e0e0e0;
}

.package-card li {
  padding-left: 18px;
  position: relative;
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.package-card .btn {
  margin-top: auto;
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.timeline article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #0b0b0b;
  background: var(--accent);
  font-weight: 900;
}

.timeline h3 {
  margin-bottom: 0;
  font-size: 19px;
  line-height: 1.18;
}

.timeline p {
  margin-bottom: 0;
}

.process-media {
  display: grid;
  gap: 12px;
}

.process-media img {
  width: 100%;
  height: clamp(260px, 28vw, 360px);
  max-height: 360px;
  object-fit: cover;
  background: #080808;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.gallery-section {
  background: var(--bg);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-btn {
  min-height: 40px;
  padding: 0 15px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.filter-btn.active,
.filter-btn:hover {
  color: #110b06;
  background: var(--accent);
  border-color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.work-card {
  display: grid;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.work-card.is-hidden {
  display: none;
}

.image-button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.image-button img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.image-button:hover img {
  transform: scale(1.035);
}

.work-card div {
  padding: 20px;
}

.photo-only {
  background: transparent;
}

.photo-only .image-button img {
  height: 340px;
}

.work-card h3 {
  font-size: 20px;
}

.link-btn {
  min-height: auto;
  padding: 0;
  color: var(--accent);
  background: transparent;
  border: 0;
  font-weight: 850;
}

.reviews-section {
  background: #0d0d0d;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  min-height: 260px;
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.review-card div {
  display: grid;
  gap: 4px;
  margin-bottom: 24px;
}

.review-card strong {
  font-size: 18px;
}

.review-card span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.review-top {
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 12px !important;
  margin-bottom: 12px !important;
}

.avatar {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #ff6a00, #e53315);
  font-weight: 900;
}

.stars {
  margin-bottom: 14px;
  color: var(--good);
  font-size: 18px;
  letter-spacing: 2px;
}

.source-card {
  background: rgba(255, 106, 0, 0.08);
}

.faq-grid {
  align-items: start;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-grid {
  align-items: start;
}

.contact-list,
.messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.contact-list a,
.contact-list span,
.messengers a,
.map-panel a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #e9e9e9;
  background: rgba(255, 255, 255, 0.05);
}

.messengers a:hover,
.map-panel a:hover {
  border-color: var(--line-strong);
  color: var(--accent);
}

.map-panel {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  margin-top: 30px;
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(255, 106, 0, 0.1), transparent),
    var(--surface);
}

.map-panel strong,
.map-panel span {
  display: block;
}

.map-panel span {
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.lead-form h2,
.lead-form h3 {
  margin-bottom: 0;
}

.lead-form > p {
  color: var(--muted);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #e8e8e8;
  font-size: 14px;
  font-weight: 800;
}

.lead-form input[type="text"],
.lead-form input[type="tel"] {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.lead-form input:focus {
  border-color: var(--accent);
}

.checkbox {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-weight: 500 !important;
}

.checkbox input {
  margin-top: 4px;
  accent-color: var(--accent);
}

.checkbox a {
  color: var(--accent);
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--accent);
  font-size: 14px;
}

.form-message.error {
  color: #ff6048;
}

.site-footer {
  padding: 42px 0 78px;
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  color: var(--muted);
}

.footer-grid img {
  width: 110px;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  color: var(--accent);
}

.modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open,
.lightbox.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(12px);
}

.modal-panel {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.lightbox {
  background: rgba(0, 0, 0, 0.86);
}

.lightbox img {
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 45;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(16px);
}

.mobile-bar a,
.mobile-bar button {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-bar button {
  color: #100b08;
  background: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand span,
  .main-nav {
    display: none;
  }

  .main-nav.is-open {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 76px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 8, 8, 0.96);
  }

  .main-nav.is-open a {
    padding: 14px 10px;
  }

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

  .hero-proof,
  .benefit-grid,
  .package-grid,
  .gallery-grid,
  .review-grid,
  .price-factor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-factor-grid article {
    grid-template-columns: 54px 1fr;
  }

  .price-factor-grid span {
    width: 50px;
    height: 50px;
  }

  .bonus-card,
  .studio-grid,
  .process-grid,
  .contact-grid,
  .faq-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .bonus-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 104px;
  }

  .phone {
    font-size: 14px;
  }

  .header-actions .btn-small {
    display: none;
  }

  .main-nav.is-open {
    top: 68px;
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    min-height: 98vh;
    align-items: end;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.7) 54%, rgba(0, 0, 0, 0.18) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent);
  }

  .hero-content {
    padding: 110px 0 148px;
  }

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions,
  .filter-row {
    display: grid;
  }

  .hero-proof,
  .benefit-grid,
  .package-grid,
  .gallery-grid,
  .review-grid,
  .price-factor-grid {
    grid-template-columns: 1fr;
  }

  .price-factors-section h2 {
    margin-bottom: 24px;
    font-size: 34px;
  }

  .price-factor-grid {
    gap: 12px;
  }

  .price-factor-grid article {
    grid-template-columns: 50px 1fr;
    gap: 14px;
    min-height: auto;
    padding: 18px;
  }

  .price-factor-grid span {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .price-factor-grid h3 {
    margin-bottom: 6px;
    font-size: 21px;
  }

  .price-factor-grid p {
    font-size: 15px;
  }

  .section-head {
    display: block;
  }

  .media-stack {
    grid-template-columns: 1fr;
  }

  .media-stack img,
  .media-stack img:nth-child(2) {
    height: 260px;
  }

  .bonus-card {
    padding: 18px;
  }

  .bonus-card div {
    padding: 18px;
  }

  .bonus-card img {
    height: auto;
    max-height: none;
  }

  .process-media img {
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .photo-only .image-button img {
    height: 260px;
  }

  .package-card {
    min-height: auto;
  }

  .map-panel {
    grid-template-columns: 1fr;
  }

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

  .mobile-bar {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
