:root {
  --bg: #fbf7f0;
  --bg-soft: #fffaf4;
  --surface: #ffffff;
  --surface-warm: #f3e7da;
  --text: #2d2723;
  --muted: #756a61;
  --line: rgba(87, 70, 57, 0.14);
  --accent: #9c6f4f;
  --accent-dark: #6f4a34;
  --sage: #8a9275;
  --shadow: 0 22px 60px rgba(77, 56, 38, 0.13);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--accent-dark);
}

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(91, 70, 55, 0.08);
  background: rgba(251, 247, 240, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #efe0d0;
  color: var(--accent-dark);
  font-size: 22px;
  font-family: Georgia, "Times New Roman", serif;
}

.brand-name {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.brand-caption {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #50463f;
  font-size: 14px;
  font-weight: 600;
}

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

.phone-link {
  color: var(--accent-dark);
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: var(--accent-dark);
  color: #fff;
  box-shadow: 0 16px 36px rgba(111, 74, 52, 0.24);
}

.button-primary:hover {
  color: #fff;
  background: #5f3d2a;
}

.button-soft {
  border-color: rgba(111, 74, 52, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-dark);
}

.hero {
  padding: 38px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 840px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 500;
  line-height: 0.98;
}

.hero-lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

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

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin-top: 38px;
}

.meta-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.6);
}

.meta-card strong {
  display: block;
  color: var(--accent-dark);
  font-size: 18px;
}

.meta-card span {
  color: var(--muted);
  font-size: 14px;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  right: -18px;
  bottom: 32px;
  max-width: 240px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 250, 244, 0.9);
  box-shadow: 0 16px 38px rgba(61, 44, 32, 0.15);
  backdrop-filter: blur(12px);
  color: var(--muted);
  font-size: 14px;
}

.hero-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 15px;
}

.section {
  padding: 82px 0;
}

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

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

.section-head h2 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.05;
}

.section-head p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
}

.section-head-action {
  align-items: center;
}

.section-head-action > div {
  max-width: 760px;
}

.section-head-action p {
  margin-top: 14px;
}

.benefit-grid,
.services-grid,
.fit-grid,
.reviews-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

.benefit,
.service-card,
.fit-card,
.visit-step,
.review-card,
.faq-item,
.contact-panel,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 42px rgba(77, 56, 38, 0.06);
}

.benefit {
  padding: 24px;
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  background: #efe2d4;
  color: var(--accent-dark);
  font-weight: 800;
}

.benefit h3,
.service-card h3,
.fit-card h3,
.visit-step h3,
.review-card h3,
.faq-item h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.benefit p,
.service-card p,
.fit-card p,
.visit-step p,
.review-card p,
.faq-item p {
  margin: 0;
  color: var(--muted);
}

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

.service-card {
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
}

.service-body {
  padding: 22px;
}

.service-tag {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  background: #efe2d4;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 42px;
  align-items: center;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-content h2 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.08;
}

.split-content p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #4b423c;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.2em;
  content: "✓";
  color: var(--sage);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(77, 56, 38, 0.09);
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 14px;
}

.gallery-preview-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: #eadbcb;
  box-shadow: 0 14px 32px rgba(77, 56, 38, 0.09);
}

.gallery-preview-item-large {
  grid-row: span 2;
}

.gallery-preview-item picture,
.gallery-preview-item img {
  width: 100%;
  height: 100%;
}

.gallery-preview-item img {
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-preview-item:hover img {
  transform: scale(1.035);
}

.gallery-preview-video::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(47, 41, 36, 0.08), rgba(47, 41, 36, 0.42));
  content: "";
}

.gallery-preview-video span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 250, 244, 0.9);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
}

.album-hero {
  padding: 54px 0 74px;
}

.album-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 44px;
  align-items: center;
}

.album-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 500;
  line-height: 0.98;
}

.album-hero-collage {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-auto-rows: 210px;
  gap: 14px;
}

.album-hero-collage picture,
.album-hero-collage img {
  width: 100%;
  height: 100%;
}

.album-hero-collage picture {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.album-hero-collage picture:first-child {
  grid-row: span 2;
}

.album-hero-collage img {
  object-fit: cover;
}

.album-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 280px;
  gap: 14px;
}

.album-photo-card,
.album-video-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: #eadbcb;
  box-shadow: 0 14px 34px rgba(77, 56, 38, 0.1);
  cursor: pointer;
}

.album-photo-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.album-photo-card-tall {
  grid-row: span 2;
}

.album-photo-card picture,
.album-photo-card img,
.album-video-card picture,
.album-video-card img {
  width: 100%;
  height: 100%;
}

.album-photo-card img,
.album-video-card img {
  object-fit: cover;
  transition: transform 0.35s ease;
}

.album-photo-card:hover img,
.album-video-card:hover img {
  transform: scale(1.035);
}

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

.album-video-card {
  aspect-ratio: 3 / 4;
}

.album-video-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(47, 41, 36, 0.04), rgba(47, 41, 36, 0.48));
  content: "";
}

.play-mark {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 250, 244, 0.92);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
}

.play-mark::before {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
  content: "";
}

.lightbox {
  width: min(1040px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: transparent;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(31, 25, 20, 0.78);
  backdrop-filter: blur(8px);
}

.lightbox-content {
  display: grid;
  place-items: center;
}

.lightbox-content img,
.lightbox-content video {
  display: block;
  max-width: 100%;
  max-height: calc(100dvh - 72px);
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 250, 244, 0.96);
  color: var(--accent-dark);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

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

.fit-card {
  padding: 24px;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: visit;
}

.visit-step {
  padding: 24px;
  counter-increment: visit;
}

.visit-step::before {
  display: inline-flex;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-dark);
  color: #fff;
  content: counter(visit, decimal-leading-zero);
  font-size: 13px;
  font-weight: 800;
}

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

.review-card {
  padding: 24px;
}

.review-card p {
  margin-bottom: 20px;
}

.review-card h3 {
  color: var(--accent-dark);
}

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

.faq-item {
  overflow: hidden;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  padding: 22px 24px;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  font-size: 18px;
}

.faq-question span {
  flex: 0 0 auto;
  color: var(--accent-dark);
  font-size: 26px;
  line-height: 1;
}

.faq-answer {
  display: none;
  padding: 0 24px 24px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.contact-panel {
  padding: 30px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-list a,
.contact-list span {
  display: block;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}

.contact-list small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.map-card {
  min-height: 390px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(82, 66, 51, 0.22), rgba(82, 66, 51, 0.22)),
    url("../img/studio-session.jpg") center / cover;
  box-shadow: var(--shadow);
}

.cta-band {
  padding: 34px 0;
  background: var(--accent-dark);
  color: #fff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cta-inner h2 {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
}

.cta-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 44px 0;
  background: #2f2924;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.footer-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: none;
  max-width: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 250, 244, 0.96);
  box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.page-hero {
  padding: 68px 0 40px;
}

.page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.legal-card {
  margin-bottom: 70px;
  padding: clamp(24px, 4vw, 46px);
}

.legal-card h2 {
  margin: 34px 0 12px;
  font-size: 24px;
  line-height: 1.25;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: #4f463f;
}

.legal-card ul {
  padding-left: 22px;
}

.legal-card a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-note {
  border-left: 4px solid var(--accent-dark);
  border-radius: var(--radius);
  margin: 24px 0;
  padding: 18px 20px;
  background: #fff6ec;
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent-dark);
  font-weight: 800;
}

@media (max-width: 1020px) {
  .main-nav,
  .header-actions .button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 20px 24px;
    background: rgba(251, 247, 240, 0.98);
  }

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

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(91, 70, 55, 0.08);
  }

  .hero-grid,
  .split,
  .contact-wrap,
  .album-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 620px;
  }

  .benefit-grid,
  .services-grid,
  .fit-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-preview-grid,
  .album-photo-grid,
  .album-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .album-video-card {
    aspect-ratio: 4 / 5;
  }
}

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

  .header-inner {
    min-height: 68px;
  }

  .brand-caption,
  .phone-link {
    display: none;
  }

  .main-nav {
    top: 68px;
  }

  .hero {
    padding: 26px 0 50px;
  }

  .hero-grid {
    gap: 28px;
  }

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

  .hero-actions,
  .cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-meta,
  .benefit-grid,
  .services-grid,
  .fit-grid,
  .visit-grid,
  .reviews-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-note {
    position: static;
    margin-top: 14px;
    max-width: none;
  }

  .section {
    padding: 56px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 16px;
  }

  .section-head-action .button {
    margin-top: 20px;
  }

  .gallery-preview-grid {
    grid-auto-rows: 190px;
    gap: 12px;
  }

  .gallery-preview-item-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .album-hero {
    padding: 34px 0 54px;
  }

  .album-hero-grid {
    gap: 30px;
  }

  .album-hero-collage {
    grid-auto-rows: 170px;
  }

  .album-photo-grid {
    grid-auto-rows: 230px;
    gap: 12px;
  }

  .album-photo-card-large,
  .album-photo-card-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
    gap: 12px;
  }

  .gallery-grid img:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .lightbox {
    width: min(100% - 20px, 1040px);
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
  }

  .contact-panel {
    padding: 22px;
  }

  .map-card {
    min-height: 280px;
  }

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

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }
}

@media (max-width: 430px) {
  .hero h1,
  .page-hero h1 {
    font-size: 41px;
  }

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

  .gallery-grid img:first-child {
    grid-column: auto;
  }

  .gallery-preview-grid,
  .album-photo-grid,
  .album-video-grid {
    grid-template-columns: 1fr;
  }

  .gallery-preview-item-large {
    grid-column: auto;
  }

  .album-hero-collage {
    grid-template-columns: 1fr;
  }

  .album-hero-collage picture:first-child {
    grid-row: auto;
  }
}

/* Offer PDF page */
.offer-pdf-page {
  max-width: 1180px;
}

.offer-hero {
  text-align: center;
}

.offer-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.pdf-shell {
  margin: 34px auto 0;
  width: 100%;
  height: 78vh;
  min-height: 680px;
  overflow: hidden;
  border: 1px solid rgba(63, 46, 34, .14);
  border-radius: 28px;
  background: #f7f1ea;
  box-shadow: 0 22px 70px rgba(52, 35, 22, .12);
}

.pdf-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #fff;
}

.pdf-fallback {
  margin: 34px auto 0;
  max-width: 760px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 55px rgba(52, 35, 22, .08);
  text-align: center;
}

.pdf-fallback h2 {
  margin: 0 0 12px;
}

.pdf-fallback p {
  margin: 0 0 22px;
}

@media (max-width: 720px) {
  .offer-actions {
    flex-direction: column;
  }

  .offer-actions .button,
  .pdf-fallback .button {
    width: 100%;
  }

  .pdf-shell {
    height: 74vh;
    min-height: 540px;
    border-radius: 20px;
  }

  .pdf-fallback {
    padding: 22px;
    border-radius: 20px;
  }
}

/* Offer text page */
.offer-text-page {
  max-width: 1080px;
}

.offer-text-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 34px 34px 46px;
  border-radius: 30px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 60px rgba(52, 35, 22, .08);
}

.offer-text-content h2 {
  margin: 42px 0 18px;
  padding-top: 8px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  color: #2f231b;
}

.offer-text-content h2:first-child {
  margin-top: 0;
}

.offer-text-content h3 {
  margin: 30px 0 14px;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.25;
  color: #3a2a20;
}

.offer-text-content p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.78;
  color: rgba(47,35,27,.88);
}

.offer-text-content strong {
  color: #2f231b;
  font-weight: 750;
}

.offer-text-content ul {
  margin: 10px 0 22px;
  padding-left: 22px;
}

.offer-text-content li {
  margin: 0 0 9px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(47,35,27,.88);
}

@media (max-width: 720px) {
  .offer-text-content {
    padding: 24px 18px 34px;
    border-radius: 22px;
  }

  .offer-text-content h2 {
    margin-top: 34px;
  }

  .offer-text-content p,
  .offer-text-content li {
    font-size: 15px;
    line-height: 1.68;
  }
}

/* Clean offer text document */
.offer-document-card {
  max-width: 960px;
}

.offer-document-text {
  margin: 0;
  white-space: pre-wrap;
  word-break: normal;
  overflow-wrap: break-word;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  color: #4f463f;
}

@media (max-width: 720px) {
  .offer-document-card {
    padding: 22px 16px 30px;
  }

  .offer-document-text {
    font-size: 15px;
    line-height: 1.66;
  }
}

/* MOBILE CONTACT FAB START */
.mobile-contact-fab {
  display: none;
}

@media (max-width: 720px) {
  .mobile-contact-fab {
    position: fixed;
    right: max(14px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }

  .mobile-contact-fab__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    opacity: 0;
    transform: translateY(12px) scale(.96);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }

  .mobile-contact-fab.is-open .mobile-contact-fab__actions {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .mobile-contact-fab__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(47, 35, 27, .22);
    backdrop-filter: blur(10px);
    transform: translateZ(0);
  }

  .mobile-contact-fab__action--call {
    background: #2f231b;
  }

  .mobile-contact-fab__action--wa {
    background: #25D366;
  }

  .mobile-contact-fab__icon {
    display: inline-flex;
    width: 21px;
    height: 21px;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
  }

  .mobile-contact-fab__main {
    width: 62px;
    height: 62px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #3b2a20, #8d6a4e);
    color: #ffffff;
    box-shadow: 0 18px 44px rgba(47, 35, 27, .32);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, box-shadow .2s ease;
  }

  .mobile-contact-fab__main:active {
    transform: scale(.96);
  }

  .mobile-contact-fab.is-open .mobile-contact-fab__main {
    box-shadow: 0 14px 34px rgba(47, 35, 27, .24);
  }

  .mobile-contact-fab__main-icon {
    font-size: 27px;
    line-height: 1;
    transform: rotate(0deg);
    transition: transform .22s ease;
  }

  .mobile-contact-fab.is-open .mobile-contact-fab__main-icon {
    transform: rotate(135deg);
  }
}
/* MOBILE CONTACT FAB END */

/* ALBUM VIDEO CENTER PLAY START */
.album-video-card,
.gallery-preview-video {
  position: relative;
  overflow: hidden;
}

.album-video-card span,
.gallery-preview-video > span {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) !important;
  z-index: 3;
  width: 66px;
  height: 66px;
  min-width: 66px;
  min-height: 66px;
  padding: 0 !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #7b5138;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0 !important;
  line-height: 1 !important;
  box-shadow: 0 18px 46px rgba(47, 35, 27, .24);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .78);
}

.album-video-card span::before,
.gallery-preview-video > span::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 19px solid currentColor;
}

.album-video-card:hover span,
.gallery-preview-video:hover > span {
  transform: translate(-50%, -50%) scale(1.06) !important;
}

@media (max-width: 720px) {
  .album-video-card span,
  .gallery-preview-video > span {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
  }

  .album-video-card span::before,
  .gallery-preview-video > span::before {
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 16px;
  }
}
/* ALBUM VIDEO CENTER PLAY END */
