/*
 * LOCCO — frames pages
 * Scoped stylesheet for the dedicated frames renderer.
 */

.frames-page {
  --fr-page: #f6f3ed;
  --fr-soft: #ece9e1;
  --fr-card: #fffdf8;
  --fr-green-soft: #e4eee7;
  --fr-text: #183e36;
  --fr-muted: #68746f;
  --fr-green: #1f5b4d;
  --fr-green-deep: #123f35;
  --fr-warm: #efb08c;
  --fr-warm-soft: #f8dfcf;
  --fr-border: rgba(24, 62, 54, .14);
  --fr-shadow: 0 24px 60px rgba(25, 66, 55, .12);
  --fr-radius-control: 999px;
  --fr-radius-card: 24px;
  --fr-radius-feature: 36px;
  --fr-container: 1220px;

  overflow: clip;
  background: var(--fr-page);
  color: var(--fr-text);
  font-family: Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.frames-page *,
.frames-page *::before,
.frames-page *::after {
  box-sizing: border-box;
}

.frames-page a {
  color: inherit;
}

.frames-page img {
  display: block;
  width: 100%;
  height: auto;
}

.frames-page .container {
  width: min(var(--fr-container), calc(100% - 48px));
  margin-inline: auto;
}

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

.frames-page h1 {
  margin: 16px 0 24px;
  font-size: clamp(50px, 6vw, 82px);
  line-height: .98;
  letter-spacing: -.06em;
}

.frames-page h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.07;
  letter-spacing: -.047em;
}

.frames-page h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.frames-page .btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--fr-radius-control);
  font: inherit;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.frames-page .btn-primary {
  background: var(--fr-green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(31, 91, 77, .18);
}

.frames-page .btn-primary:hover {
  background: var(--fr-green-deep);
  transform: translateY(-1px);
}

.frames-page .btn-secondary {
  border-color: var(--fr-border);
  background: transparent;
  color: var(--fr-text);
}

.frames-page .fr-breadcrumbs {
  overflow: hidden;
  padding: 24px 0 18px;
  color: var(--fr-muted);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.frames-page .fr-breadcrumbs span {
  margin: 0 8px;
  opacity: .55;
}

.frames-page .fr-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--fr-green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.frames-page .fr-kicker::before {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--fr-warm);
  content: "";
}

/* Hero */
.frames-page .fr-hero-section {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
  padding: 8px 0 68px;
}

.frames-page .fr-hero-section > .container.fr-hero-grid {
  width: min(var(--fr-container), calc(100% - 48px)) !important;
  max-width: none !important;
  margin-inline: auto !important;
  padding-inline: 0 !important;
}

.frames-page .fr-hero-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 48px;
}

.frames-page .fr-hero-copy {
  min-width: 0;
}

.frames-page .fr-hero-lead {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(20px, 2.05vw, 28px);
  line-height: 1.27;
  letter-spacing: -.03em;
}

.frames-page .fr-hero-text,
.frames-page .fr-body-copy {
  max-width: 760px;
  color: var(--fr-muted);
  font-size: 16px;
  line-height: 1.64;
}

.frames-page .fr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.frames-page .fr-location-inline {
  position: relative;
  max-width: 690px;
  margin: 0;
  padding-left: 17px;
  color: var(--fr-green-deep);
  font-size: 13px;
  font-weight: 730;
}

.frames-page .fr-location-inline::before {
  position: absolute;
  top: .62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fr-warm);
  content: "";
}

.frames-page .fr-hero-media {
  position: relative;
  min-width: 0;
  min-height: 580px;
}

.frames-page .fr-hero-photo {
  height: 580px;
  border-radius: 24px 72px 24px 72px;
  object-fit: cover;
  box-shadow: var(--fr-shadow);
}

.frames-page .fr-hero-note {
  position: absolute;
  bottom: 36px;
  left: -28px;
  max-width: 270px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 24px;
  background: var(--fr-card);
  box-shadow: var(--fr-shadow);
}

.frames-page .fr-hero-note strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
  line-height: 1.18;
}

.frames-page .fr-hero-note span {
  display: block;
  color: var(--fr-muted);
  font-size: 11px;
  line-height: 1.45;
}

/* Reading layout */
.frames-page .fr-content-wrap {
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr);
  align-items: start;
  gap: 48px;
}

.frames-page .fr-side-nav {
  position: sticky;
  top: 112px;
  padding: 17px;
  border: 1px solid var(--fr-border);
  border-radius: 22px;
  background: rgba(255, 253, 248, .82);
}

.frames-page .fr-side-nav-title {
  margin-bottom: 10px;
  color: var(--fr-muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.frames-page .fr-side-nav a {
  display: block;
  padding: 8px 9px;
  border-radius: 11px;
  color: var(--fr-muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.frames-page .fr-side-nav a:hover {
  background: var(--fr-soft);
  color: var(--fr-green-deep);
}

.frames-page .fr-reading {
  min-width: 0;
}

.frames-page .fr-section {
  padding: 46px 0 72px;
  scroll-margin-top: 112px;
}

.frames-page .fr-section.fr-soft {
  margin: 8px 0;
  padding: 36px;
  border-radius: var(--fr-radius-feature);
  background: var(--fr-soft);
}

.frames-page .fr-section-head {
  max-width: 820px;
  margin-bottom: 30px;
}

.frames-page .fr-eyebrow {
  margin-bottom: 10px;
  color: var(--fr-green);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.frames-page .fr-eyebrow-light {
  color: var(--fr-warm);
}

.frames-page .fr-copy-more {
  margin-top: 14px;
  border-top: 1px solid var(--fr-border);
  padding-top: 11px;
}

.frames-page .fr-copy-more summary {
  display: inline-flex;
  cursor: pointer;
  color: var(--fr-green);
  font-size: 13px;
  font-weight: 820;
  list-style: none;
}

.frames-page .fr-copy-more summary::-webkit-details-marker {
  display: none;
}

.frames-page .fr-copy-more summary::after {
  margin-left: 6px;
  content: "+";
}

.frames-page .fr-copy-more[open] summary::after {
  content: "−";
}

.frames-page .fr-copy-more div {
  padding-top: 10px;
}

/* Overview */
.frames-page .fr-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.frames-page .fr-overview-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--fr-border);
  border-radius: 26px;
  background: var(--fr-card);
}

.frames-page .fr-overview-card img {
  height: 205px;
  object-fit: cover;
}

.frames-page .fr-overview-copy {
  padding: 23px;
}

.frames-page .fr-overview-copy p {
  margin-bottom: 0;
  color: var(--fr-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Fit */
.frames-page .fr-fit-grid {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  align-items: stretch;
  gap: 24px;
}

.frames-page .fr-fit-media {
  min-width: 0;
}

.frames-page .fr-fit-media img {
  height: 100%;
  min-height: 540px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--fr-shadow);
}

.frames-page .fr-fit-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  border: 1px solid var(--fr-border);
  border-radius: 28px;
  background: var(--fr-card);
}

.frames-page .fr-fit-card .btn {
  align-self: flex-start;
  margin-top: 12px;
}

/* Gender */
.frames-page .fr-gender-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.frames-page .fr-gender-card {
  position: relative;
  min-width: 0;
  min-height: 410px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--fr-shadow);
}

.frames-page .fr-gender-card img {
  height: 410px;
  object-fit: cover;
}

.frames-page .fr-gender-overlay {
  position: absolute;
  right: 17px;
  bottom: 17px;
  left: 17px;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 20px;
  background: rgba(255, 253, 248, .91);
  backdrop-filter: blur(10px);
}

.frames-page .fr-gender-overlay h3 {
  margin: 0;
  font-size: 20px;
}

/* Gallery */
.frames-page .fr-gallery {
  display: grid;
  grid-template-columns: 1.35fr .82fr .82fr;
  grid-template-rows: 245px 245px;
  gap: 14px;
}

.frames-page .fr-gallery .fr-g1 {
  grid-row: 1 / 3;
}

.frames-page .fr-gallery img {
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.frames-page .fr-gallery-note {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-top: 18px;
  padding: 21px;
  border: 1px solid var(--fr-border);
  border-radius: 20px;
  background: var(--fr-card);
}

.frames-page .fr-gallery-note p {
  margin: 0;
  color: var(--fr-muted);
  font-size: 14px;
  line-height: 1.55;
}

.frames-page .fr-dot {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--fr-warm);
}

/* Price */
.frames-page .fr-price-note {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: center;
  gap: 34px;
  padding: 44px;
  border-radius: var(--fr-radius-feature);
  background: var(--fr-green-deep);
  color: #fff;
  box-shadow: var(--fr-shadow);
}

.frames-page .fr-price-note h2 {
  max-width: 620px;
}

.frames-page .fr-price-note p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.62;
}

.frames-page .fr-price-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.frames-page .fr-price-chip {
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 17px;
  background: rgba(255, 255, 255, .09);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.frames-page .fr-price-chip:nth-child(2) {
  background: var(--fr-warm);
  color: var(--fr-green-deep);
}

/* Order flow */
.frames-page .fr-flow-panel {
  padding: 38px;
  border: 1px solid var(--fr-border);
  border-radius: var(--fr-radius-feature);
  background: var(--fr-card);
}

.frames-page .fr-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin: 28px 0 18px;
}

.frames-page .fr-flow-step {
  display: flex;
  min-width: 0;
  min-height: 126px;
  flex-direction: column;
  justify-content: space-between;
  gap: 13px;
  padding: 21px;
  border-radius: 20px;
  background: var(--fr-soft);
  text-align: center;
}

.frames-page .fr-flow-step > span {
  font-weight: 850;
}

.frames-page .fr-step-link {
  color: var(--fr-green);
  font-size: 12px;
  font-weight: 820;
  text-decoration: none;
}

.frames-page .fr-step-link::after {
  margin-left: 5px;
  content: "→";
}

.frames-page .fr-flow-arrow {
  color: var(--fr-warm);
  font-size: 25px;
  font-weight: 900;
}

.frames-page .fr-related-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.frames-page .fr-related-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--fr-border);
  border-radius: 999px;
  background: var(--fr-card);
  color: var(--fr-green-deep);
  font-size: 12px;
  font-weight: 760;
  text-decoration: none;
}

.frames-page .fr-center-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* Children */
.frames-page .fr-children {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 24px;
}

.frames-page .fr-children-media img {
  height: 440px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--fr-shadow);
}

.frames-page .fr-children-copy {
  padding: 20px 8px 20px 18px;
}

.frames-page .fr-child-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 22px;
}

.frames-page .fr-child-tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--fr-warm-soft);
  color: var(--fr-green-deep);
  font-size: 12px;
  font-weight: 800;
}

/* FAQ */
.frames-page .fr-faq {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: start;
  gap: 20px;
}

.frames-page .fr-faq-list {
  display: grid;
  gap: 8px;
}

.frames-page .fr-faq-list details {
  padding: 0 19px;
  border: 1px solid var(--fr-border);
  border-radius: 16px;
  background: var(--fr-card);
}

.frames-page .fr-faq-list summary {
  position: relative;
  padding: 17px 31px 17px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.frames-page .fr-faq-list summary::-webkit-details-marker {
  display: none;
}

.frames-page .fr-faq-list summary::after {
  position: absolute;
  top: 13px;
  right: 0;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--fr-soft);
  content: "+";
  font-size: 18px;
}

.frames-page .fr-faq-list details[open] summary::after {
  content: "−";
}

.frames-page .fr-faq-list details p {
  margin: 0;
  padding: 0 0 17px;
  color: var(--fr-muted);
  font-size: 14px;
  line-height: 1.55;
}

.frames-page .fr-contact-mini {
  position: sticky;
  top: 112px;
  padding: 21px;
  border-radius: 22px;
  background: var(--fr-green-soft);
}

.frames-page .fr-contact-mini h3 {
  color: var(--fr-muted);
  font-size: 15px;
  line-height: 1.45;
}

/* Final CTA */
.frames-page .fr-final-cta {
  padding: 32px 0 28px;
}

.frames-page .fr-final-inner {
  position: relative;
  overflow: hidden;
  padding: 50px;
  border-radius: 40px;
  background: var(--fr-green);
  color: #fff;
}

.frames-page .fr-final-inner::after {
  position: absolute;
  right: -80px;
  bottom: -150px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  content: "";
}

.frames-page .fr-final-inner h2 {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.frames-page .fr-final-inner p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
}

.frames-page .fr-final-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 21px;
}

.frames-page .fr-final-inner .btn-primary {
  background: #fff;
  color: var(--fr-green-deep);
}

.frames-page .fr-final-inner .btn-secondary {
  border-color: rgba(255, 255, 255, .33);
  color: #fff;
}

/* Optional standalone shell */
.frames-shell {
  margin: 0;
  background: #f6f3ed;
  color: #183e36;
  font-family: Manrope, "Segoe UI", Arial, sans-serif;
}

.frames-shell *,
.frames-shell *::before,
.frames-shell *::after {
  box-sizing: border-box;
}

.frames-shell > .utility {
  background: #123f35;
  color: #fff;
  font-size: 13px;
}

.frames-shell > .utility .container,
.frames-shell > .site-header .container,
.frames-shell > .footer .container {
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}

.frames-shell .utility-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.frames-shell .utility-left,
.frames-shell .utility-right {
  display: flex;
  gap: 18px;
}

.frames-shell .site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(24, 62, 54, .14);
  background: rgba(246, 243, 237, .94);
  backdrop-filter: blur(16px);
}

.frames-shell .nav {
  display: grid;
  min-height: 76px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.frames-shell .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.frames-shell .brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1f5b4d;
}

.frames-shell .nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
}

.frames-shell .nav-links a {
  color: inherit;
  text-decoration: none;
}

.frames-shell .header-actions {
  display: flex;
  gap: 9px;
}

.frames-shell .menu-btn {
  display: none;
}

.frames-shell .footer {
  padding: 30px 0 70px;
  border-top: 1px solid rgba(24, 62, 54, .14);
  color: #68746f;
  font-size: 13px;
}

.frames-shell .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 36px;
}

.frames-shell .footer a {
  display: block;
  margin-top: 8px;
}

.frames-shell .mobile-bar {
  display: none;
}

/* Narrow desktop */
@media (max-width: 1120px) {
  .frames-page .fr-content-wrap {
    grid-template-columns: 1fr;
  }

  .frames-page .fr-side-nav {
    display: none;
  }

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

  .frames-page .fr-price-note {
    grid-template-columns: 1fr;
  }

  .frames-page .fr-price-visual {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Tablet */
@media (max-width: 900px) {
  .frames-page .container {
    width: min(var(--fr-container), calc(100% - 36px));
  }

  .frames-page .fr-hero-section > .container.fr-hero-grid {
    width: min(var(--fr-container), calc(100% - 36px)) !important;
  }

  .frames-page .fr-hero-grid,
  .frames-page .fr-fit-grid,
  .frames-page .fr-children {
    grid-template-columns: 1fr;
  }

  .frames-page .fr-hero-media {
    min-height: auto;
    max-width: 680px;
  }

  .frames-page .fr-hero-photo {
    height: 500px;
  }

  .frames-page .fr-hero-note {
    left: 18px;
  }

  .frames-page .fr-gender-card,
  .frames-page .fr-gender-card img {
    min-height: 360px;
    height: 360px;
  }

  .frames-page .fr-fit-media img {
    min-height: 380px;
    height: 380px;
  }

  .frames-page .fr-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 210px 210px;
  }

  .frames-page .fr-gallery .fr-g1 {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .frames-page .fr-faq {
    grid-template-columns: 1fr;
  }

  .frames-page .fr-contact-mini {
    position: static;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .frames-page .container {
    width: min(100% - 28px, var(--fr-container));
  }

  .frames-page .fr-hero-section > .container.fr-hero-grid {
    width: min(100% - 28px, var(--fr-container)) !important;
  }

  .frames-page {
    font-size: 15px;
  }

  .frames-page h1 {
    font-size: 49px;
  }

  .frames-page h2 {
    font-size: 34px;
  }

  .frames-page h3 {
    font-size: 20px;
  }

  .frames-page .fr-breadcrumbs {
    padding: 16px 0 10px;
  }

  .frames-page .fr-hero-section {
    padding-bottom: 42px;
  }

  .frames-page .fr-hero-grid {
    gap: 28px;
  }

  .frames-page .fr-hero-lead {
    font-size: 20px;
  }

  .frames-page .fr-hero-text,
  .frames-page .fr-body-copy {
    font-size: 15px;
  }

  .frames-page .fr-hero-actions {
    display: grid;
  }

  .frames-page .fr-hero-actions .btn {
    width: 100%;
  }

  .frames-page .fr-hero-photo {
    height: 390px;
    border-radius: 22px 52px 22px 52px;
  }

  .frames-page .fr-hero-note {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: none;
    margin: -34px 14px 0;
  }

  .frames-page .fr-section {
    padding: 34px 0 50px;
  }

  .frames-page .fr-section.fr-soft {
    margin: 0;
    padding: 24px 17px;
    border-radius: 27px;
  }

  .frames-page .fr-overview-grid,
  .frames-page .fr-gender-grid {
    grid-template-columns: 1fr;
  }

  .frames-page .fr-overview-card img {
    height: 220px;
  }

  .frames-page .fr-fit-media img {
    min-height: 0;
    height: 340px;
  }

  .frames-page .fr-fit-card {
    padding: 25px;
  }

  .frames-page .fr-gender-card,
  .frames-page .fr-gender-card img {
    min-height: 350px;
    height: 350px;
  }

  .frames-page .fr-gallery {
    display: flex;
    flex-direction: column;
  }

  .frames-page .fr-gallery img,
  .frames-page .fr-gallery .fr-g1 {
    height: 235px;
  }

  .frames-page .fr-price-note {
    padding: 31px 24px;
  }

  .frames-page .fr-price-visual {
    grid-template-columns: 1fr;
  }

  .frames-page .fr-flow-panel {
    padding: 26px 20px;
  }

  .frames-page .fr-flow {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .frames-page .fr-flow-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .frames-page .fr-flow-step {
    min-height: 112px;
  }

  .frames-page .fr-center-action .btn {
    width: 100%;
  }

  .frames-page .fr-children-media img {
    height: 340px;
  }

  .frames-page .fr-children-copy {
    padding: 5px 0;
  }

  .frames-page .fr-final-inner {
    padding: 34px 24px;
    border-radius: 30px;
  }

  .frames-page .fr-final-actions {
    display: grid;
  }

  .frames-page .fr-final-actions .btn {
    width: 100%;
  }

  .frames-shell > .utility,
  .frames-shell .nav-links {
    display: none;
  }

  .frames-shell .nav {
    min-height: 64px;
  }

  .frames-shell .menu-btn {
    display: inline-flex;
  }

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

  .frames-shell .mobile-bar {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 52px;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(24, 62, 54, .14);
    border-radius: 19px;
    background: rgba(246, 243, 237, .94);
    box-shadow: 0 16px 40px rgba(24, 62, 54, .18);
    backdrop-filter: blur(18px);
  }
}

@media (max-width: 420px) {
  .frames-page h1 {
    font-size: 43px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .frames-page *,
  .frames-shell * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
