:root {
      --ink: #141510;
      --ink-soft: #2f3028;
      --paper: #f4ecd9;
      --paper-soft: #fffaf0;
      --cream: #fbf4e6;
      --tomato: #d83b24;
      --tomato-dark: #a8281a;
      --olive: #536447;
      --olive-dark: #283224;
      --gold: #c99a4a;
      --line: rgba(20, 21, 16, 0.14);
      --line-light: rgba(255, 250, 240, 0.2);
      --shadow: 0 24px 70px rgba(15, 16, 12, 0.18);
      --radius: 8px;
      --serif: "Cormorant Garamond", Georgia, serif;
      --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      width: 100%;
      max-width: 100%;
      scroll-behavior: smooth;
      scroll-padding-top: 96px;
      overflow-x: hidden;
    }

    body {
      position: relative;
      width: 100%;
      max-width: 100%;
      min-height: 100vh;
      color: var(--ink);
      background: var(--paper);
      font-family: var(--sans);
      line-height: 1.6;
      overflow-x: clip;
      overscroll-behavior-x: none;
    }

    @supports not (overflow: clip) {
      body {
        overflow-x: hidden;
      }
    }

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

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

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    ::selection {
      color: var(--cream);
      background: var(--tomato);
    }

    main,
    .page-shell,
    .hero,
    .section,
    .kids-event-hero,
    .site-footer {
      max-width: 100%;
      overflow-x: clip;
      overscroll-behavior-x: none;
    }

    .page-shell {
      background: var(--paper);
    }

    .hero {
      position: relative;
      min-height: 92vh;
      color: var(--cream);
      background:
        linear-gradient(90deg, rgba(15, 16, 12, 0.9) 0%, rgba(15, 16, 12, 0.64) 45%, rgba(15, 16, 12, 0.25) 100%),
        url("../img/Cardapio/pomodoro poró.jpg") center / cover no-repeat;
    }

    .hero::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      height: 28%;
      background: linear-gradient(180deg, rgba(20, 21, 16, 0), var(--paper));
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      align-items: end;
      width: min(1180px, calc(100% - 40px));
      min-height: 92vh;
      margin: 0 auto;
      padding: 130px 0 86px;
    }

    .hero-copy {
      width: min(790px, 100%);
    }

    .hero-copy,
    .metric,
    .section-header > *,
    .experience-card,
    .story-band > *,
    .simulator-layout > *,
    .form-grid > *,
    .estimate-grid > *,
    .faq-card,
    .kids-event-layout > *,
    .kids-event-points > *,
    .footer-inner > * {
      min-width: 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--gold);
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      display: inline-block;
      width: 34px;
      height: 1px;
      background: currentColor;
    }

    h1,
    h2,
    h3 {
      font-family: var(--serif);
      line-height: 0.95;
      letter-spacing: 0;
    }

    h1 {
      max-width: 760px;
      margin-top: 18px;
      font-size: clamp(4rem, 12vw, 8.7rem);
      font-weight: 700;
    }

    .hero-lead {
      max-width: 710px;
      margin-top: 22px;
      color: rgba(255, 250, 240, 0.86);
      font-size: clamp(1rem, 1.8vw, 1.28rem);
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 50px;
      padding: 0 20px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      font-size: 0.82rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .btn:hover,
    .btn:focus-visible {
      transform: translateY(-2px);
    }

    .btn-primary {
      color: var(--cream);
      background: var(--tomato);
      border-color: var(--tomato);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      background: var(--tomato-dark);
      border-color: var(--tomato-dark);
    }

    .btn-outline {
      color: var(--cream);
      border-color: rgba(255, 250, 240, 0.34);
      background: rgba(255, 250, 240, 0.06);
    }

    .btn-outline:hover,
    .btn-outline:focus-visible {
      border-color: rgba(255, 250, 240, 0.64);
      background: rgba(255, 250, 240, 0.12);
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      width: min(880px, 100%);
      margin-top: 48px;
    }

    .metric {
      min-height: 104px;
      padding: 16px;
      border: 1px solid rgba(255, 250, 240, 0.16);
      border-radius: var(--radius);
      background: rgba(20, 21, 16, 0.58);
      backdrop-filter: blur(10px);
    }

    .metric strong {
      display: block;
      color: var(--cream);
      font-family: var(--serif);
      font-size: clamp(1.55rem, 2.8vw, 2.25rem);
      line-height: 1;
    }

    .metric span {
      display: block;
      margin-top: 8px;
      color: rgba(255, 250, 240, 0.72);
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }

    .section {
      padding: 86px 0;
    }

    .section.dark {
      color: var(--cream);
      background: var(--ink);
    }

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

    .section-header {
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.68fr);
      gap: 44px;
      align-items: end;
      margin-bottom: 34px;
    }

    .section-header h2 {
      margin-top: 12px;
      color: inherit;
      font-size: clamp(3rem, 7.5vw, 6.5rem);
    }

    .section-header p {
      color: rgba(20, 21, 16, 0.74);
      font-size: 1.02rem;
    }

    .dark .section-header p {
      color: rgba(255, 250, 240, 0.72);
    }

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

    .experience-card {
      min-height: 250px;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper-soft);
    }

    .experience-card.dark-card {
      border-color: rgba(255, 250, 240, 0.14);
      background: rgba(255, 250, 240, 0.05);
    }

    .card-kicker {
      color: var(--tomato);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .dark-card .card-kicker {
      color: var(--gold);
    }

    .experience-card h3 {
      margin-top: 18px;
      color: inherit;
      font-size: clamp(1.8rem, 3vw, 2.45rem);
    }

    .experience-card p {
      margin-top: 16px;
      color: rgba(20, 21, 16, 0.7);
      font-size: 0.95rem;
    }

    .dark-card p {
      color: rgba(255, 250, 240, 0.72);
    }

    .story-band {
      display: grid;
      grid-template-columns: minmax(0, 0.75fr) minmax(460px, 0.82fr);
      gap: 18px;
      align-items: stretch;
    }

    .story-photo {
      min-height: 520px;
      border-radius: var(--radius);
      background: url("../img/Cardapio/parma.jpg") center / cover no-repeat;
      box-shadow: var(--shadow);
    }

    .story-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(28px, 4vw, 48px);
      border: 1px solid rgba(255, 250, 240, 0.14);
      border-radius: var(--radius);
      background: rgba(255, 250, 240, 0.055);
    }

    .story-copy h2 {
      margin-top: 12px;
      max-width: 100%;
      font-size: clamp(3rem, 5.2vw, 4.9rem);
      text-wrap: balance;
    }

    .story-copy p {
      margin-top: 22px;
      color: rgba(255, 250, 240, 0.76);
      font-size: 1rem;
    }

    .signature-list {
      display: grid;
      gap: 10px;
      margin-top: 28px;
    }

    .signature-list li {
      display: grid;
      grid-template-columns: 28px minmax(0, 1fr);
      gap: 10px;
      align-items: start;
      color: rgba(255, 250, 240, 0.84);
      list-style: none;
    }

    .signature-list i {
      margin-top: 5px;
      color: var(--gold);
    }

    .simulator-layout {
      display: grid;
      grid-template-columns: minmax(320px, 0.86fr) minmax(360px, 0.72fr);
      gap: 18px;
      align-items: start;
    }

    .simulator-status {
      margin-bottom: 18px;
      padding: 13px 16px;
      border: 1px solid rgba(201, 154, 74, 0.28);
      border-radius: var(--radius);
      color: rgba(20, 21, 16, 0.7);
      background: rgba(201, 154, 74, 0.1);
      font-size: 0.86rem;
      font-weight: 800;
    }

    .simulator-status.success {
      border-color: rgba(83, 100, 71, 0.24);
      color: var(--olive-dark);
      background: rgba(83, 100, 71, 0.1);
    }

    .simulator-status.error {
      border-color: rgba(216, 59, 36, 0.25);
      color: var(--tomato-dark);
      background: rgba(216, 59, 36, 0.08);
    }

    .config-panel,
    .estimate-panel,
    .contact-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper-soft);
      box-shadow: var(--shadow);
    }

    .panel-body {
      padding: clamp(22px, 4vw, 34px);
    }

    .panel-title {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--line);
    }

    .panel-title h3 {
      color: var(--ink);
      font-size: clamp(2.15rem, 4vw, 3.4rem);
    }

    .panel-title p {
      max-width: 380px;
      color: rgba(20, 21, 16, 0.66);
      font-size: 0.92rem;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 24px;
    }

    .form-field {
      display: grid;
      gap: 8px;
    }

    .form-field.full {
      grid-column: 1 / -1;
    }

    label {
      color: rgba(20, 21, 16, 0.72);
      font-size: 0.73rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    input,
    select,
    textarea {
      width: 100%;
      min-height: 48px;
      padding: 12px 14px;
      border: 1px solid rgba(20, 21, 16, 0.18);
      border-radius: var(--radius);
      color: var(--ink);
      background: #fffdf7;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    textarea {
      min-height: 100px;
      resize: vertical;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: rgba(216, 59, 36, 0.68);
      box-shadow: 0 0 0 4px rgba(216, 59, 36, 0.1);
      background: #fff;
    }

    .slider-wrap {
      margin-top: 24px;
      padding: 22px;
      border: 1px solid rgba(20, 21, 16, 0.12);
      border-radius: var(--radius);
      background: #fffaf0;
    }

    .slider-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .slider-value {
      color: var(--tomato);
      font-family: var(--serif);
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 700;
      line-height: 1;
      white-space: nowrap;
    }

    input[type="range"] {
      --range-progress: 20%;
      appearance: none;
      -webkit-appearance: none;
      width: 100%;
      height: 52px;
      min-height: auto;
      margin-top: 16px;
      padding: 0;
      border: 0;
      background: transparent;
      accent-color: var(--tomato);
      cursor: ew-resize;
      touch-action: pan-y;
      -webkit-tap-highlight-color: transparent;
    }

    input[type="range"]::-webkit-slider-runnable-track {
      height: 10px;
      border: 1px solid rgba(20, 21, 16, 0.18);
      border-radius: 999px;
      background: linear-gradient(
        90deg,
        var(--tomato) 0%,
        var(--tomato) var(--range-progress),
        rgba(20, 21, 16, 0.16) var(--range-progress),
        rgba(20, 21, 16, 0.16) 100%
      );
    }

    input[type="range"]::-webkit-slider-thumb {
      appearance: none;
      -webkit-appearance: none;
      width: 30px;
      height: 30px;
      margin-top: -11px;
      border: 5px solid #fffaf0;
      border-radius: 50%;
      background: var(--tomato);
      box-shadow: 0 8px 18px rgba(216, 59, 36, 0.28);
    }

    input[type="range"]::-moz-range-track {
      height: 10px;
      border: 1px solid rgba(20, 21, 16, 0.18);
      border-radius: 999px;
      background: rgba(20, 21, 16, 0.16);
    }

    input[type="range"]::-moz-range-progress {
      height: 10px;
      border-radius: 999px;
      background: var(--tomato);
    }

    input[type="range"]::-moz-range-thumb {
      width: 22px;
      height: 22px;
      border: 5px solid #fffaf0;
      border-radius: 50%;
      background: var(--tomato);
      box-shadow: 0 8px 18px rgba(216, 59, 36, 0.28);
    }

    input[type="range"]:focus-visible {
      outline: 3px solid rgba(216, 59, 36, 0.28);
      outline-offset: 2px;
    }

    .range-scale {
      position: relative;
      height: 20px;
      margin-top: 8px;
      color: rgba(20, 21, 16, 0.5);
      font-size: 0.76rem;
      font-weight: 700;
    }

    .range-scale span {
      position: absolute;
      top: 0;
      left: var(--scale-pos, 40%);
      transform: translateX(-50%);
    }

    .range-scale span:first-child {
      left: 0;
      transform: translateX(0);
    }

    .range-scale span:nth-child(2) {
      --scale-pos: 40%;
    }

    .range-scale span:last-child {
      left: 100%;
      transform: translateX(-100%);
    }

    .over60 {
      display: none;
      margin-top: 14px;
      padding: 14px;
      border-left: 3px solid var(--gold);
      border-radius: var(--radius);
      color: rgba(20, 21, 16, 0.75);
      background: rgba(201, 154, 74, 0.12);
      font-size: 0.9rem;
    }

    .estimate-panel {
      position: sticky;
      top: 96px;
      overflow: hidden;
    }

    .estimate-header {
      padding: 28px;
      color: var(--cream);
      background: var(--ink);
    }

    .estimate-header span {
      color: var(--gold);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .estimate-header h3 {
      margin-top: 10px;
      color: var(--cream);
      font-size: clamp(2.4rem, 5vw, 4rem);
    }

    .estimate-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      padding: 14px;
    }

    .estimate-card {
      min-height: 142px;
      padding: 18px;
      border: 1px solid rgba(20, 21, 16, 0.1);
      border-radius: var(--radius);
      background: #fffdf7;
    }

    .estimate-card span {
      display: block;
      color: rgba(20, 21, 16, 0.56);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .estimate-card strong {
      display: block;
      margin-top: 14px;
      color: var(--ink);
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3.15rem);
      line-height: 0.98;
    }

    .estimate-card small {
      display: block;
      margin-top: 10px;
      color: rgba(20, 21, 16, 0.58);
      font-size: 0.78rem;
      line-height: 1.4;
    }

    .estimate-card.total {
      grid-column: 1 / -1;
      min-height: 160px;
      color: var(--cream);
      background: var(--tomato);
      border-color: transparent;
    }

    .estimate-card.total span,
    .estimate-card.total small {
      color: rgba(255, 250, 240, 0.82);
    }

    .estimate-card.total strong {
      color: var(--cream);
      font-size: clamp(2.8rem, 6vw, 5.1rem);
    }

    .breakdown {
      padding: 0 28px 28px;
    }

    .breakdown p {
      color: rgba(20, 21, 16, 0.72);
      font-size: 0.93rem;
    }

    .min-badge {
      display: none;
      width: fit-content;
      margin-top: 14px;
      padding: 7px 10px;
      border-radius: var(--radius);
      color: var(--tomato-dark);
      background: rgba(216, 59, 36, 0.1);
      font-size: 0.7rem;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .team-note {
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid var(--line);
      color: rgba(20, 21, 16, 0.64);
      font-size: 0.86rem;
    }

    .operation-note {
      margin-top: 14px;
      padding: 14px;
      border-left: 3px solid var(--tomato);
      border-radius: var(--radius);
      color: rgba(20, 21, 16, 0.76);
      background: rgba(216, 59, 36, 0.07);
      font-size: 0.86rem;
      font-weight: 750;
      line-height: 1.5;
    }

    .pricing-note {
      margin-top: 18px;
      padding: 16px;
      border-radius: var(--radius);
      color: rgba(20, 21, 16, 0.74);
      background: rgba(83, 100, 71, 0.1);
      font-size: 0.9rem;
    }

    .contact-panel {
      margin-top: 18px;
    }

    .contact-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      margin-top: 20px;
    }

    .submit-btn {
      width: 100%;
      min-height: 54px;
      color: var(--cream);
      background: var(--olive-dark);
      border: 1px solid var(--olive-dark);
    }

    .submit-btn:hover,
    .submit-btn:focus-visible {
      background: var(--tomato);
      border-color: var(--tomato);
    }

    .submit-btn:disabled {
      cursor: wait;
      opacity: 0.58;
    }

    .optional-label {
      color: rgba(20, 21, 16, 0.42);
      font-size: 0.65rem;
      letter-spacing: 0.04em;
      text-transform: lowercase;
    }

    .consent-card {
      display: grid;
      grid-template-columns: 22px minmax(0, 1fr);
      gap: 12px;
      align-items: start;
      padding: 15px;
      border: 1px solid rgba(20, 21, 16, 0.12);
      border-radius: var(--radius);
      color: rgba(20, 21, 16, 0.68);
      background: #fffdf7;
      font-size: 0.86rem;
      font-weight: 500;
      letter-spacing: 0;
      line-height: 1.5;
      text-transform: none;
      cursor: pointer;
    }

    .consent-card input {
      width: 20px;
      min-height: 20px;
      margin-top: 2px;
      padding: 0;
      accent-color: var(--tomato);
    }

    .consent-card strong {
      display: block;
      margin-bottom: 4px;
      color: var(--ink);
    }

    .privacy-note {
      margin: 0;
      padding: 14px;
      border: 1px solid rgba(20, 21, 16, 0.12);
      border-radius: var(--radius);
      color: rgba(20, 21, 16, 0.66);
      background: #fffaf0;
      font-size: 0.86rem;
      line-height: 1.5;
    }

    .privacy-note a {
      color: var(--tomato-dark);
      font-weight: 900;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .privacy-note.compact {
      margin-top: 10px;
      padding: 0;
      border: 0;
      background: transparent;
      font-size: 0.78rem;
    }

    .website-field {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      overflow: hidden !important;
      clip: rect(0, 0, 0, 0) !important;
      white-space: nowrap !important;
    }

    .success-box {
      display: none;
      margin-top: 18px;
      padding: 18px;
      border: 1px solid rgba(83, 100, 71, 0.28);
      border-radius: var(--radius);
      color: var(--olive-dark);
      background: rgba(83, 100, 71, 0.1);
    }

    .success-box h4 {
      margin-bottom: 6px;
      font-size: 1rem;
    }

    .error-box {
      display: none;
      margin-top: 18px;
      padding: 18px;
      border: 1px solid rgba(216, 59, 36, 0.28);
      border-radius: var(--radius);
      color: var(--tomato-dark);
      background: rgba(216, 59, 36, 0.08);
      font-size: 0.9rem;
      font-weight: 750;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .faq-card {
      padding: 24px;
      border: 1px solid rgba(255, 250, 240, 0.14);
      border-radius: var(--radius);
      background: rgba(255, 250, 240, 0.05);
    }

    .faq-card .card-kicker {
      color: var(--gold);
    }

    .faq-card h3 {
      color: var(--cream);
      font-size: clamp(1.8rem, 3vw, 2.5rem);
    }

    .faq-card p {
      margin-top: 14px;
      color: rgba(255, 250, 240, 0.72);
      font-size: 0.95rem;
    }

    .kids-event-hero {
      padding: clamp(78px, 10vw, 128px) 0;
      color: var(--ink);
      background: var(--paper);
    }

    .kids-event-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
      gap: clamp(28px, 5vw, 72px);
      align-items: center;
    }

    .kids-event-copy h2 {
      max-width: 760px;
      margin-top: 12px;
      color: var(--ink);
      font-family: var(--serif);
      font-size: clamp(3.2rem, 7vw, 6.7rem);
      font-weight: 700;
      line-height: 0.95;
    }

    .kids-event-copy > p {
      max-width: 700px;
      margin-top: 22px;
      color: rgba(20, 21, 16, 0.72);
      font-size: clamp(1rem, 1.5vw, 1.18rem);
      line-height: 1.7;
    }

    .kids-event-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 28px;
    }

    .kids-event-points article {
      min-height: 178px;
      padding: 20px;
      border: 1px solid rgba(20, 21, 16, 0.12);
      border-radius: var(--radius);
      background: var(--paper-soft);
    }

    .kids-event-points span {
      display: inline-flex;
      color: var(--tomato-dark);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .kids-event-points h3 {
      margin-top: 12px;
      color: var(--ink);
      font-family: var(--serif);
      font-size: clamp(1.8rem, 3vw, 2.45rem);
      line-height: 1;
    }

    .kids-event-points p {
      margin-top: 12px;
      color: rgba(20, 21, 16, 0.66);
      font-size: 0.94rem;
      line-height: 1.55;
    }

    .kids-event-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .kids-event-hero .btn-primary {
      color: var(--cream);
      background: var(--olive-dark);
      border-color: var(--olive-dark);
    }

    .kids-event-hero .btn-primary:hover,
    .kids-event-hero .btn-primary:focus-visible {
      background: var(--tomato);
      border-color: var(--tomato);
    }

    .kids-event-hero .btn-outline {
      color: var(--ink);
      border-color: rgba(20, 21, 16, 0.18);
      background: rgba(20, 21, 16, 0.04);
    }

    .kids-event-hero .btn-outline:hover,
    .kids-event-hero .btn-outline:focus-visible {
      border-color: rgba(20, 21, 16, 0.34);
      background: rgba(20, 21, 16, 0.08);
    }

    .kids-event-media {
      margin: 0;
      overflow: hidden;
      border: 1px solid rgba(20, 21, 16, 0.12);
      border-radius: var(--radius);
      background: var(--paper-soft);
      box-shadow: var(--shadow);
    }

    .kids-event-media img {
      display: block;
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      object-position: center;
    }

    .site-footer {
      color: rgba(255, 250, 240, 0.72);
      background: #0f100c;
      border-top: 1px solid rgba(255, 250, 240, 0.12);
    }

    .footer-inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      align-items: center;
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      padding: 34px 0;
    }

    .footer-brand strong {
      display: block;
      color: var(--cream);
      font-size: 0.85rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .footer-brand span {
      display: block;
      margin-top: 6px;
      font-size: 0.9rem;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      padding: 0 12px;
      border: 1px solid rgba(255, 250, 240, 0.18);
      border-radius: var(--radius);
      color: var(--cream);
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

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

      .hero {
        min-height: auto;
      }

      .hero-inner {
        min-height: 780px;
        padding-top: 120px;
      }

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

      .section-header,
      .story-band,
      .simulator-layout,
      .kids-event-layout {
        grid-template-columns: 1fr;
      }

      .story-photo {
        min-height: 420px;
      }

      .estimate-panel {
        position: static;
      }
    }

    @media (max-width: 620px) {
      .hero {
        background-position: 64% center;
      }

      .hero-inner {
        min-height: 820px;
        padding: 112px 0 56px;
      }

      h1 {
        font-size: clamp(3.8rem, 20vw, 5.7rem);
      }

      .hero-actions {
        display: grid;
      }

      .hero-metrics,
      .experience-grid,
      .faq-grid,
      .kids-event-points,
      .form-grid,
      .estimate-grid,
      .footer-inner {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 66px 0;
      }

      .section-header {
        gap: 18px;
      }

      .section-header h2,
      .story-copy h2 {
        font-size: clamp(3.1rem, 14vw, 4.4rem);
      }

      .story-photo {
        min-height: 360px;
      }

      .story-copy,
      .panel-body {
        padding: 22px;
      }

      .panel-title {
        display: grid;
      }

      .slider-top {
        display: grid;
      }

      .estimate-header,
      .breakdown {
        padding-right: 22px;
        padding-left: 22px;
      }
    }
