    :root {
      --bg: #fffaf4;
      --paper: #ffffff;
      --paper-soft: #f7efe4;
      --blue: #143f5b;
      --blue-2: #23617f;
      --orange: #a9470f;
      --orange-2: #7f350b;
      --green: #5d9d72;
      --text: #18222c;
      --muted: #596775;
      --line: #e6d8c7;
      --line-blue: #c9dbe4;
      --title-wave: #f1d8c5;
      --shadow: 0 18px 45px rgba(20, 63, 91, 0.13);
      --focus: rgba(242, 125, 47, 0.42);
      --radius: 8px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: clamp(170px, 18vw, 260px);
    }

    body {
      margin: 0;
      color: var(--text);
      background: var(--bg);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 20px;
      line-height: 1.6;
    }

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

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

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

    .skip-link {
      position: absolute;
      top: -90px;
      left: 18px;
      z-index: 1000;
      padding: 12px 16px;
      color: var(--paper);
      background: var(--blue);
      border-radius: var(--radius);
      font-weight: 800;
    }

    .skip-link:focus {
      top: 18px;
    }

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

    .topbar {
      padding: 10px 0;
      color: var(--paper);
      background: var(--blue);
      font-size: 18px;
    }

    .topbar .container,
    .nav,
    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255, 250, 244, 0.96);
      border-bottom: 2px solid var(--line);
      backdrop-filter: blur(10px);
    }

    .nav {
      padding: 14px 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      color: var(--blue);
      font-weight: 900;
    }

    .brand-logo {
      width: 76px;
      height: 76px;
      object-fit: contain;
      background: var(--paper);
      border: 2px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 8px 20px rgba(20, 63, 91, 0.12);
    }

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

    .brand-subline {
      display: block;
      color: var(--muted);
      font-size: 16px;
      font-weight: 700;
    }

    nav ul {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 22px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    nav a {
      color: var(--blue);
      font-size: 18px;
      font-weight: 800;
    }

    .button,
    button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 62px;
      min-width: 188px;
      padding: 16px 24px;
      color: var(--paper);
      background: var(--orange);
      border: 2px solid var(--orange);
      border-radius: var(--radius);
      box-shadow: 0 12px 24px rgba(242, 125, 47, 0.25);
      cursor: pointer;
      font: inherit;
      font-weight: 900;
      text-align: center;
    }

    .button:hover,
    button:hover {
      background: var(--orange-2);
      border-color: var(--orange-2);
    }

    .button.secondary {
      color: var(--blue);
      background: var(--paper);
      border-color: var(--blue-2);
      box-shadow: none;
    }

    .button.phone {
      background: var(--blue);
      border-color: var(--blue);
      box-shadow: 0 12px 24px rgba(20, 63, 91, 0.22);
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    summary:focus-visible {
      outline: 4px solid var(--focus);
      outline-offset: 4px;
    }

    main {
      overflow: hidden;
    }

    section {
      padding: clamp(58px, 8vw, 96px) 0;
      border-bottom: 2px solid var(--line);
    }

    .hero {
      min-height: calc(100vh - 116px);
      display: grid;
      align-items: center;
      background:
        linear-gradient(90deg, rgba(255, 250, 244, 0.96) 0%, rgba(255, 250, 244, 0.88) 56%, rgba(247, 239, 228, 0.94) 56%, rgba(247, 239, 228, 0.94) 100%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
      column-gap: clamp(34px, 6vw, 74px);
      row-gap: clamp(18px, 3vw, 34px);
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      margin: 0 0 20px;
      padding: 8px 14px;
      color: var(--blue);
      background: #e9f4f7;
      border: 2px solid var(--line-blue);
      border-radius: var(--radius);
      font-size: 18px;
      font-weight: 900;
    }

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

    h1 {
      max-width: 860px;
      margin-bottom: 24px;
      color: var(--blue);
      font-size: clamp(46px, 7vw, 78px);
      line-height: 1.04;
      letter-spacing: 0;
    }

    .hero-heading {
      grid-column: 1 / -1;
      grid-row: 1;
    }

    .hero-title {
      max-width: none !important;
      margin-bottom: 10px;
      white-space: normal !important;
      font-family: "Trebuchet MS", "Arial Rounded MT Bold", "Segoe UI", Arial, sans-serif !important;
      letter-spacing: -0.03em !important;
      font-size: clamp(38px, 5.2vw, 66px) !important;
      line-height: 1.06 !important;
      text-wrap: balance;
    }

    .hero-slogan {
      width: fit-content;
      margin: 0;
      color: var(--blue);
      font-family: "Trebuchet MS", "Arial Rounded MT Bold", "Segoe UI", Arial, sans-serif;
      font-size: clamp(25px, 3.1vw, 40px);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -0.025em;
      position: relative;
      z-index: 0;
      display: inline-block;
      isolation: isolate;
    }

    .hero-slogan::after {
      content: "";
      position: absolute;
      z-index: -1;
      right: -0.28em;
      bottom: -0.12em;
      left: -0.28em;
      height: 1.65em;
      background: var(--title-wave);
      -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 37 C6 10 12 10 18 37 C24 64 30 64 36 37 C42 10 48 10 54 37 C60 70 66 70 72 37 C78 4 84 4 90 37 C94 57 97 57 100 37 L100 100 L0 100 Z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
      mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 37 C6 10 12 10 18 37 C24 64 30 64 36 37 C42 10 48 10 54 37 C60 70 66 70 72 37 C78 4 84 4 90 37 C94 57 97 57 100 37 L100 100 L0 100 Z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
    }

    .hero-copy {
      grid-column: 1;
      grid-row: 2;
    }

    .hero-visual {
      grid-column: 2;
      grid-row: 2;
    }

    h2 {
      margin-bottom: 16px;
      color: var(--blue);
      font-size: clamp(34px, 5vw, 52px);
      line-height: 1.12;
      letter-spacing: 0;
    }

    .single-line-title {
      white-space: nowrap;
      font-size: clamp(28px, 4.4vw, 52px);
    }

    h3 {
      margin-bottom: 10px;
      color: var(--blue);
      font-size: 28px;
      line-height: 1.18;
    }

    .lead,
    .section-head p {
      color: var(--muted);
      font-size: 24px;
      line-height: 1.48;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin: 32px 0 28px;
    }

    .trust-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 820px;
    }

    .trust-pill {
      padding: 14px 16px;
      color: var(--blue);
      background: var(--paper);
      border: 2px solid var(--line);
      border-radius: var(--radius);
      font-size: 18px;
      font-weight: 800;
    }

    .hero-visual {
      position: relative;
      padding: clamp(22px, 4vw, 38px);
      background: var(--paper);
      border: 2px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .hero-logo {
      width: min(440px, 100%);
      margin: 0 auto;
    }

    .hero-note {
      margin: 22px 0 0;
      padding: 18px;
      color: var(--blue);
      background: #fff8ed;
      border: 2px solid var(--line);
      border-radius: var(--radius);
      font-weight: 800;
      text-align: center;
    }

    .section-head {
      max-width: 820px;
      margin-bottom: 36px;
    }

    .value-strip {
      background: var(--paper);
    }

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

    .value-item,
    .service-card,
    .contact-card,
    .about-logo,
    details {
      background: var(--paper);
      border: 2px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 10px 26px rgba(20, 63, 91, 0.08);
    }

    .value-item {
      position: relative;
      min-height: 210px;
      padding: 26px;
      overflow: hidden;
      border: 1px solid rgba(20, 63, 91, 0.12);
      box-shadow: 0 18px 48px rgba(20, 63, 91, 0.09);
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .value-item::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.18));
      pointer-events: none;
    }

    .value-item::after {
      content: "";
      position: absolute;
      right: -42px;
      top: -46px;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.42);
      pointer-events: none;
    }

    .value-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 58px rgba(20, 63, 91, 0.14);
    }

    .value-item > * {
      position: relative;
      z-index: 1;
    }

    .value-item:nth-child(1) {
      background: #fff0dc;
    }

    .value-item:nth-child(2) {
      background: #e4f4f3;
    }

    .value-item:nth-child(3) {
      background: #edf0ff;
    }

    .value-item:nth-child(4) {
      background: #f4ecff;
    }

    .value-number {
      display: inline-flex;
      width: 54px;
      height: 54px;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--paper);
      background: var(--blue);
      border-radius: var(--radius);
      box-shadow: 0 12px 24px rgba(20, 63, 91, 0.18);
      font-weight: 900;
    }

    .value-item:nth-child(1) .value-number {
      background: #c85b1e;
    }

    .value-item:nth-child(2) .value-number {
      background: #24706b;
    }

    .value-item:nth-child(3) .value-number {
      background: #4d5fae;
    }

    .value-item:nth-child(4) .value-number {
      background: #7653a8;
    }

    .value-item strong {
      display: block;
      color: var(--blue);
      margin-bottom: 8px;
      font-size: 25px;
      line-height: 1.25;
    }

    .value-item p {
      margin: 0;
      color: #21394a;
    }

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

    .service-card {
      min-height: 260px;
      padding: 24px;
    }

    .service-icon {
      display: inline-flex;
      width: 54px;
      height: 54px;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      color: var(--paper);
      background: var(--blue-2);
      border-radius: var(--radius);
      font-size: 27px;
      font-weight: 900;
    }

    .service-card p,
    .about-text p,
    .contact-card p,
    details p {
      color: var(--muted);
    }

    .price-section {
      color: var(--paper);
      background: var(--blue);
    }

    .price-section h2,
    .price-section h3,
    .price-section .section-head p {
      color: var(--paper);
    }

    .price-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1.1fr;
      gap: 20px;
      align-items: stretch;
    }

    .price-card {
      padding: 30px;
      background: rgba(255, 255, 255, 0.10);
      border: 2px solid rgba(255, 255, 255, 0.24);
      border-radius: var(--radius);
    }

    .price {
      margin: 8px 0;
      color: #ffd39c;
      font-size: clamp(44px, 6vw, 58px);
      font-weight: 900;
      line-height: 1.05;
    }

    .price-note {
      display: grid;
      align-content: center;
      background: rgba(255, 255, 255, 0.16);
    }

    .promise-section {
      background: #fffdf8;
      border-bottom: 1px solid var(--line);
    }

    .promise-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
      gap: clamp(26px, 5vw, 54px);
      align-items: stretch;
    }

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

    .promise-card,
    .gift-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: 0 10px 28px rgba(23, 63, 86, 0.08);
    }

    .promise-card {
      padding: 24px;
    }

    .promise-card-important {
      position: relative;
      padding: 30px;
      overflow: hidden;
      background: linear-gradient(135deg, #fff1c9 0%, #ffe3d4 52%, #fff8ec 100%);
      border: 3px solid #d45518;
      box-shadow: 0 26px 58px rgba(164, 72, 20, 0.2);
    }

    .promise-card-important::before {
      content: "Wichtig";
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      min-height: 40px;
      padding: 8px 14px;
      color: #ffffff;
      background: #a9470f;
      border-radius: var(--radius);
      font-size: 18px;
      font-weight: 900;
      letter-spacing: 0;
    }

    .promise-card-important::after {
      content: "";
      position: absolute;
      right: -44px;
      top: -44px;
      width: 148px;
      height: 148px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.42);
      pointer-events: none;
    }

    .promise-card strong,
    .gift-card h3 {
      color: var(--blue);
    }

    .promise-card strong {
      display: block;
      margin-bottom: 8px;
      font-size: 22px;
      line-height: 1.25;
    }

    .promise-card-important strong {
      color: #7f350b;
      font-size: 28px;
      line-height: 1.15;
      text-wrap: balance;
    }

    .promise-card-important p {
      color: #3b2a1f;
      max-width: 52ch;
      font-size: 21px;
      line-height: 1.58;
      font-weight: 700;
      text-wrap: pretty;
    }

    .promise-card p,
    .gift-card p {
      color: var(--muted);
    }

    .gift-card {
      padding: clamp(26px, 4vw, 36px);
      display: grid;
      align-content: center;
    }

    .gift-card h3 {
      margin: 0 0 14px;
      font-size: clamp(30px, 4vw, 42px);
      line-height: 1.12;
    }

    .gift-card .button {
      width: fit-content;
      margin-top: 8px;
    }

    .about-grid,
    .contact-grid {
      display: grid;
      grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
      gap: clamp(30px, 5vw, 58px);
      align-items: center;
    }

    .about-logo {
      padding: clamp(14px, 2.5vw, 24px);
      text-align: center;
    }

    .about-logo img {
      display: block;
      width: 100%;
      max-width: 430px;
      height: auto;
      margin: 0 auto;
      border-radius: calc(var(--radius) - 8px);
      box-shadow: 0 18px 42px rgba(8, 47, 81, 0.16);
    }

    .about-logo strong {
      display: block;
      color: var(--blue);
      font-size: 32px;
      line-height: 1.2;
    }

    .about-story {
      padding: clamp(24px, 4vw, 34px);
      background: #fffdf8;
      border-left: 6px solid var(--orange);
      border-radius: var(--radius);
    }

    .about-story p {
      margin-bottom: 18px;
      color: #33414d;
      font-size: 21px;
      line-height: 1.72;
    }

    .about-story p:last-child {
      margin-bottom: 0;
    }

    .about-closing {
      color: var(--blue);
      font-size: 24px;
      font-weight: 900;
    }

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

    .check-list li {
      position: relative;
      padding-left: 34px;
      font-weight: 800;
    }

    .check-list li::before {
      content: "\2713";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--green);
      font-weight: 900;
    }

    .google-review-summary {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 22px 40px;
      padding: 34px 0 4px;
      color: #202124;
      background: #ffffff;
      border-top: 1px solid #c9cdd1;
    }

    .google-review-main {
      min-width: 0;
    }

    .google-review-rating {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: clamp(30px, 3vw, 40px);
      line-height: 1.15;
    }

    .google-review-rating strong {
      flex: none;
      font-weight: 700;
    }

    .google-review-stars {
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .google-review-stars img {
      width: clamp(28px, 2.7vw, 36px);
      height: clamp(28px, 2.7vw, 36px);
    }

    .google-review-count {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 20px 0 0;
      color: #4f5357;
      font-size: clamp(19px, 2vw, 25px);
      line-height: 1.35;
    }

    .google-review-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 60px;
      padding: 12px 36px;
      color: #0b57d0;
      background: #ffffff;
      border: 1px solid #7d8185;
      border-radius: 999px;
      font-size: 20px;
      font-weight: 700;
      line-height: 1.2;
      white-space: nowrap;
    }

    .google-review-button:hover {
      color: #0842a0;
      background: #f8faff;
      border-color: #5f6368;
    }

    .google-review-button:focus-visible {
      outline: 4px solid var(--focus);
      outline-offset: 4px;
    }

    .google-review-note {
      grid-column: 1 / -1;
      margin: 0;
      color: #4f5357;
      font-size: clamp(17px, 1.8vw, 23px);
      line-height: 1.45;
    }

    .google-review-note a {
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .contact-section {
      background: var(--paper-soft);
    }

    .faq {
      display: grid;
      gap: 14px;
      margin-top: 28px;
    }

    details {
      padding: 20px;
    }

    summary {
      color: var(--blue);
      cursor: pointer;
      font-size: 22px;
      font-weight: 900;
    }

    details p {
      margin: 0;
      padding-top: 12px;
    }

    .contact-card {
      padding: 30px;
      background: var(--paper);
    }

    .contact-options {
      display: grid;
      gap: 14px;
      margin: 24px 0;
    }

    .contact-option {
      display: block;
      padding: 18px;
      color: var(--text);
      background: #fffdf8;
      border: 2px solid var(--line);
      border-radius: var(--radius);
    }

    .contact-option strong {
      display: block;
      color: var(--blue);
      font-size: 21px;
    }

    .contact-form {
      display: grid;
      gap: 14px;
      margin-top: 24px;
      padding-top: 24px;
      border-top: 2px solid var(--line);
    }

    .privacy-note {
      margin: 4px 0 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.45;
    }

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

    label {
      display: grid;
      gap: 7px;
      color: var(--blue);
      font-weight: 900;
    }

    input,
    textarea {
      width: 100%;
      min-height: 58px;
      padding: 13px 14px;
      color: var(--text);
      background: var(--paper);
      border: 2px solid #bcc9c4;
      border-radius: var(--radius);
      font: inherit;
    }

    textarea {
      resize: vertical;
    }

    footer {
      padding: 34px 0;
      color: var(--paper);
      background: #102f45;
    }

    footer p {
      margin: 0;
    }

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

    .footer-links a {
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .booking-section {
      background: #fffdf8;
    }

    .booking-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
      gap: clamp(28px, 5vw, 56px);
      align-items: start;
    }

    .calendar-card,
    .booking-form-card {
      background: var(--paper);
      border: 2px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .calendar-card {
      overflow: hidden;
    }

    .calendar-booking {
      display: grid;
      min-height: 500px;
      place-items: center;
      padding: clamp(28px, 5vw, 48px);
      text-align: center;
      background: linear-gradient(135deg, #e9f4f7, #fffaf4);
    }

    .calendar-booking img {
      width: min(230px, 72%);
      margin: 0 auto 20px;
    }

    .calendar-booking strong {
      display: block;
      color: var(--blue);
      font-size: clamp(30px, 4vw, 42px);
      line-height: 1.12;
    }

    .calendar-booking p {
      max-width: 620px;
      margin: 16px auto 24px;
      color: var(--muted);
      font-size: 22px;
    }

    .booking-form-card {
      padding: 30px;
    }

    .booking-form {
      display: grid;
      gap: 14px;
      margin-top: 22px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .calendar-note {
      margin-top: 18px;
      padding: 16px;
      color: var(--blue);
      background: #fff8ec;
      border: 2px solid var(--line);
      border-radius: var(--radius);
      font-weight: 800;
    }

    .helper-bear {
      position: fixed;
      left: 18px;
      bottom: 18px;
      z-index: 9000;
      display: flex;
      align-items: center;
      gap: 12px;
      max-width: min(360px, calc(100vw - 36px));
      padding: 12px 14px;
      color: var(--blue);
      background: var(--paper);
      border: 2px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      animation: helperWalkIn 900ms ease-out 800ms both;
    }

    .helper-bear img {
      width: 62px;
      height: 62px;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .helper-bear strong {
      display: block;
      font-size: 17px;
      line-height: 1.25;
    }

    .helper-bear span {
      display: block;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.3;
    }

    @keyframes helperWalkIn {
      from {
        opacity: 0;
        transform: translateX(-80px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

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

      .helper-bear {
        animation: none;
      }
    }

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

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

      .price-note {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 720px) {
      .google-review-summary {
        grid-template-columns: 1fr;
        align-items: start;
        padding-top: 28px;
      }

      .google-review-button {
        justify-self: start;
      }
    }

    @media (max-width: 900px) {
      .nav {
        align-items: stretch;
      }

      nav {
        order: 3;
        width: 100%;
      }

      nav ul {
        gap: 10px 18px;
      }

      .hero {
        min-height: auto;
        background: var(--bg);
      }

      .hero-grid,
      .about-grid,
      .contact-grid,
      .booking-grid {
        grid-template-columns: 1fr;
      }

      .hero-heading,
      .hero-copy,
      .hero-visual {
        grid-column: 1;
        grid-row: auto;
      }

      .trust-row {
        grid-template-columns: 1fr;
      }

      .hero-title {
        font-size: clamp(38px, 7.2vw, 56px) !important;
      }
    }

    @media (max-width: 620px) {
      body {
        font-size: 18px;
      }

      .topbar {
        display: none;
      }

      .brand {
        width: 100%;
        justify-content: center;
        text-align: center;
      }

      .brand-logo {
        width: 104px;
        height: 104px;
      }

      .brand-name {
        font-size: 30px;
      }

      .brand-subline {
        font-size: 17px;
      }

      header .button.phone {
        display: none;
      }

      .nav {
        justify-content: center;
        padding: 16px 0;
      }

      .hero {
        padding-top: 28px;
      }

      .hero-heading {
        grid-row: 1;
      }

      .hero-visual {
        grid-row: 2;
        padding: 16px;
      }

      .hero-copy {
        grid-row: 3;
      }

      .hero-title {
        font-size: clamp(34px, 10vw, 46px) !important;
      }

      .hero-slogan {
        font-size: clamp(24px, 7.4vw, 32px);
      }

      .hero-logo {
        width: min(260px, 100%);
      }

      .hero-note {
        margin-top: 14px;
        padding: 14px;
        font-size: 17px;
      }

      .eyebrow {
        font-size: 17px;
      }

      nav ul {
        display: none;
      }

      h1 {
        font-size: 38px;
      }

      .single-line-title {
        font-size: clamp(24px, 6vw, 32px);
      }

      .lead,
      .section-head p {
        font-size: 21px;
      }

      .button,
      button,
      .hero-actions {
        width: 100%;
        min-width: 0;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .value-grid,
      .service-grid,
      .price-grid {
        grid-template-columns: 1fr;
      }

      .promise-grid,
      .promise-list {
        grid-template-columns: 1fr;
      }

      .contact-card,
      .about-logo,
      .service-card,
      .price-card {
        padding: 24px;
      }

      .google-review-rating {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
      }

      .google-review-count {
        margin-top: 14px;
      }

      .google-review-button {
        width: auto;
        min-width: min(100%, 250px);
      }

      .helper-bear {
        position: static;
        margin: 18px;
        max-width: none;
      }
    }
