    :root {
      --gold:        #c69e50;
      --gold-light:  #e8c87a;
      --gold-dim:    rgba(198,158,80,.13);
      --gold-border: rgba(198,158,80,.24);

      --bg:          #f2f4f1;
      --bg2:         #e8ebe7;
      --surface:     #f8faf7;
      --card:        #ffffff;
      --border:      rgba(25,35,25,.1);
      --text:        #191b19;
      --muted:       #656b64;
      --muted2:      #4d544e;
      --accent-deep: #46544c;
      --accent-soft: #e2e7e2;
      --accent-line: rgba(70,84,76,.22);
      --noise-opacity: .018;

      /* Dunkle Flächen -> Deep Green (wie Startseite) */
      --deep-green:  #1b201d;
      --deep-green-2:#212724;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed; inset: 0;
      pointer-events: none; z-index: 900;
      opacity: var(--noise-opacity);
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 128px 128px;
    }

    a, button { text-decoration: none; color: inherit; cursor: pointer; }
    img { display: block; max-width: 100%; }
    .container { width: min(1280px, calc(100% - 48px)); margin: 0 auto; }

    .site-header {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 500;
      padding: 0 40px;
      height: 80px;
      display: flex; align-items: center; justify-content: space-between;
      transition: background .4s, border-color .4s, box-shadow .4s;
      border-bottom: 1px solid transparent;
    }
    .site-header.scrolled {
      background: rgba(243,238,231,.94);
      border-color: var(--border);
      backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 rgba(198,158,80,.12);
    }
    .header-back {
      display: flex; align-items: center; gap: 10px;
      font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
      color: var(--muted); transition: color .2s;
    }
    .header-back:hover { color: var(--gold); }
    .header-back::before {
      content: '←';
      font-size: .9rem;
      transition: transform .2s;
    }
    .header-back:hover::before { transform: translateX(-4px); }
    .header-left {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }
    .header-dot {
      color: var(--muted);
      opacity: .9;
      font-size: .9rem;
      line-height: 1;
    }
    .nav-logo {
      position: absolute; left: 50%; transform: translateX(-50%);
      display: flex; align-items: center; justify-content: center;
      opacity: .82;
    }
    .nav-logo img {
      width: auto;
      height: 48px;
      max-width: 220px;
    }
    .nav-name {
      font-size: .72rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--text);
      white-space: nowrap;
    }
    .header-badge {
      display: flex; align-items: center; gap: 8px;
      font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
      color: var(--muted2);
      border: 1px solid var(--gold-border);
      padding: 7px 16px; border-radius: 2px;
      background: rgba(255,255,255,.35);
    }
    .header-badge-dot {
      width: 5px; height: 5px;
      background: var(--accent-deep); border-radius: 50%;
    }

    .hero {
      min-height: 100svh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
    }
    .hero-left {
      display: flex; flex-direction: column;
      justify-content: center;
      padding: 120px 80px 70px 60px;
      background: var(--bg);
      position: relative; z-index: 2;
    }
    .hero-left::after {
      content: '';
      position: absolute; right: -1px; top: 15%; bottom: 15%;
      width: 1px;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
      opacity: .5;
      z-index: 10;
    }
    .hero-tag {
      display: flex; align-items: center; gap: 14px;
      font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 32px;
    }
    .hero-tag::before {
      content: ''; width: 36px; height: 1px;
      background: var(--gold); flex-shrink: 0;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.8rem, 7vw, 7.2rem);
      font-weight: 300;
      line-height: .92;
      letter-spacing: -.025em;
      color: var(--text);
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold);
      display: block;
    }
    .hero-sub {
      margin-top: 32px;
      font-size: 1rem; font-weight: 300;
      color: var(--muted); max-width: 46ch; line-height: 1.82;
    }
    .hero-actions {
      margin-top: 44px;
      display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 12px;
      padding: 15px 34px;
      background: var(--deep-green); color: var(--surface);
      font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
      font-weight: 500; border-radius: 2px;
      transition: background .25s, transform .2s;
    }
    .btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 12px;
      padding: 14px 28px;
      border: 1px solid var(--gold-border);
      color: var(--gold);
      font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
      border-radius: 2px;
      transition: border-color .25s, background .25s;
    }
    .btn-outline:hover { border-color: var(--gold); background: var(--gold-dim); }

    .hero-right {
      position: relative; overflow: hidden;
      background: linear-gradient(180deg, rgba(35,69,63,.10), rgba(35,69,63,.04));
    }
    .hero-right img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center 30%;
      filter: brightness(.86) saturate(.88);
      transition: transform 12s ease;
    }
    .hero-right:hover img { transform: scale(1.03); }
    .hero-right::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 58%, rgba(243,238,231,.38) 100%);
    }
    .hero-float {
      position: absolute; bottom: 48px; left: 36px;
      z-index: 5;
      background: rgba(243,238,231,.92);
      border: 1px solid var(--gold-border);
      backdrop-filter: blur(12px);
      padding: 20px 28px;
      border-radius: 2px;
      display: flex; gap: 32px;
    }
    .hero-float-item { text-align: center; }
    .hero-float-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem; font-weight: 300; color: var(--gold);
      display: block; line-height: 1;
    }
    .hero-float-label {
      font-size: .65rem; letter-spacing: .16em; text-transform: uppercase;
      color: var(--muted); margin-top: 4px; display: block;
    }
    .scroll-hint {
      position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
      color: var(--muted); z-index: 3;
    }
    .scroll-line {
      width: 1px; height: 48px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s ease infinite;
    }
    @keyframes scrollPulse { 0%,100% { opacity:.3; } 50% { opacity:1; } }

    .marquee-wrap {
      overflow: hidden;
      border-top: 1px solid var(--gold-border);
      border-bottom: 1px solid var(--gold-border);
      padding: 13px 0;
      background: var(--bg2);
    }
    .marquee-track {
      display: flex; animation: marquee 30s linear infinite;
      width: max-content;
    }
    .marquee-item {
      display: inline-flex; align-items: center; gap: 20px;
      padding: 0 36px;
      font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
      color: var(--muted); white-space: nowrap;
    }
    .marquee-dot {
      width: 4px; height: 4px;
      background: var(--accent-deep); border-radius: 50%; flex-shrink: 0;
    }
    @keyframes marquee {
      from { transform: translateX(0); } to { transform: translateX(-50%); }
    }

    .section { padding: 120px 0; }
    .section-sm { padding: 80px 0; }
    .label-row {
      display: flex; align-items: center; gap: 14px;
      font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 18px;
    }
    .label-row::before {
      content: ''; width: 30px; height: 1px;
      background: var(--gold); flex-shrink: 0;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 3.5vw, 4rem);
      font-weight: 300; line-height: 1.05; color: var(--text);
    }
    .section-title em { font-style: italic; color: var(--gold); }

    .philosophy { background: var(--surface); }
    .philosophy-inner {
      display: grid;
      grid-template-columns: 1fr 1.35fr;
      gap: 100px; align-items: center;
    }
    .philosophy-text .section-title { max-width: 12ch; }
    .philosophy-body {
      color: var(--muted); font-size: 1.03rem;
      font-weight: 300; line-height: 1.92;
      margin-top: 24px;
    }
    .philosophy-visual {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3px; background: var(--border);
    }
    .phil-img { overflow: hidden; aspect-ratio: 3/4; }
    .phil-img:first-child { margin-top: -40px; }
    .phil-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(.88) saturate(.84);
      transition: transform .7s ease, filter .4s;
    }
    .phil-img:hover img { transform: scale(1.05); filter: brightness(.95) saturate(1); }

    .services-header,
    .process-header,
    .locations-header,
    .gallery-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      gap: 40px; margin-bottom: 56px; padding-bottom: 28px;
      border-bottom: 1px solid var(--border);
    }
    .services-desc,
    .process-intro,
    .locations-desc,
    .gallery-desc {
      max-width: 44ch; color: var(--muted);
      font-size: .9rem; font-weight: 300; line-height: 1.75;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px; background: var(--border);
    }
    .service-card {
      background: var(--card);
      padding: 44px 48px 48px;
      display: flex; flex-direction: column;
      transition: background .3s;
      position: relative; overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--accent-deep);
      transform: scaleX(0); transform-origin: left;
      transition: transform .4s ease;
    }
    .service-card:hover { background: var(--surface); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem; color: var(--gold); opacity: .42;
      margin-bottom: 16px; line-height: 1;
    }
    .service-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem; font-weight: 300; color: var(--text);
      line-height: 1.1; margin-bottom: 12px;
    }
    .service-desc {
      color: var(--muted); font-size: .88rem;
      font-weight: 300; line-height: 1.75; flex: 1;
    }
    .service-meta {
      margin-top: 28px; padding-top: 20px;
      border-top: 1px solid var(--border);
      display: flex; justify-content: space-between;
      align-items: flex-end; gap: 20px;
    }
    .service-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; color: var(--gold); font-weight: 300;
    }
    .service-price-note {
      font-size: .72rem; letter-spacing: .08em;
      color: var(--muted); display: block; margin-top: 2px;
    }
    .service-duration {
      font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
      color: var(--muted); text-align: right;
    }

    .process { background: var(--deep-green); }
    .process .section-title { color: var(--surface); }
    .process .section-title em { color: var(--gold-light); }
    .process .label-row { color: var(--gold); }
    .process .label-row::before { background: var(--gold); }
    .process-header { border-bottom: 1px solid rgba(255,255,255,.1); }
    .process-intro { color: rgba(233,237,233,.55); }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px; background: rgba(255,255,255,.06);
    }
    .process-step {
      background: var(--deep-green);
      padding: 44px 36px 48px;
      transition: background .3s;
    }
    .process-step:hover { background: var(--deep-green-2); }
    .step-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 4rem; font-weight: 300; color: var(--gold);
      opacity: .3; line-height: 1; margin-bottom: 20px;
    }
    .step-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.55rem; font-weight: 300;
      color: rgba(233,237,233,.9); margin-bottom: 12px;
    }
    .step-desc {
      font-size: .85rem; font-weight: 300;
      color: rgba(233,237,233,.45); line-height: 1.75;
    }

    .locations { background: var(--accent-soft); }
    .locations-inner {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 80px; align-items: start;
    }
    .locations-list {
      display: flex; flex-direction: column; gap: 0;
    }
    .location-item {
      display: grid; grid-template-columns: 60px 1fr auto;
      align-items: start; gap: 28px;
      padding: 28px 0; border-bottom: 1px solid var(--accent-line);
    }
    .location-item:first-child { border-top: 1px solid var(--accent-line); }
    .location-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: .9rem; color: var(--gold); letter-spacing: .08em;
    }
    .location-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.55rem; font-weight: 300; color: var(--text);
      margin-bottom: 8px;
    }
    .location-body {
      font-size: .88rem; color: var(--muted2); font-weight: 300; line-height: 1.8;
    }
    .location-side {
      text-align: right;
      font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
      color: var(--muted);
    }
    .locations-aside .label-row { margin-bottom: 28px; }
    .locations-aside-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 300; color: var(--text);
      line-height: 1.2; margin-bottom: 20px;
    }
    .locations-aside-body {
      color: var(--muted2); font-size: .9rem;
      font-weight: 300; line-height: 1.85;
    }
    .locations-note {
      margin-top: 28px;
      padding: 20px 22px;
      border: 1px solid var(--gold-border);
      background: rgba(255,255,255,.48);
      font-size: .82rem; line-height: 1.7; color: var(--muted2);
    }
    .locations-note strong { color: var(--text); font-weight: 500; }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3px;
    }
    .gallery-item { position: relative; overflow: hidden; }
    .gallery-img { aspect-ratio: 3/4; overflow: hidden; }
    .gallery-img img {
      width: 100%; height: 100%; object-fit: cover;
      filter: brightness(.78) saturate(.82);
      transition: transform .7s ease, filter .5s;
    }
    .gallery-item:hover .gallery-img img {
      transform: scale(1.05); filter: brightness(.9) saturate(1.02);
    }
    .gallery-info { padding: 24px 0 8px; }
    .gallery-cat {
      font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 6px;
    }
    .gallery-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 300; color: var(--text);
    }
    .gallery-sub {
      font-size: .82rem; color: var(--muted);
      font-weight: 300; margin-top: 4px;
    }

    .booking { position: relative; overflow: hidden; }
    .booking-box {
      position: relative;
      background: var(--deep-green);
      padding: 100px 80px;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
      overflow: hidden;
    }
    .booking-box::before {
      content: none; /* Deko-Buchstabe entfernt */
      font-family: 'Cormorant Garamond', serif;
      font-size: 40vw; font-weight: 300;
      color: rgba(198,158,80,.04);
      position: absolute;
      right: -5vw; top: 50%;
      transform: translateY(-50%);
      line-height: 1;
      pointer-events: none; user-select: none;
    }
    
    /* Lesbarkeit: Buchungs-Aktionen im dunklen Kasten */
    .booking-box .booking-action {
      color: #e9ede9;
      border-color: rgba(255,255,255,.16);
    }
    .booking-box .booking-action--phone:hover { border-color: var(--gold); }
    .booking-box .booking-note { color: rgba(233,237,233,.55); }
    .booking-tag { color: var(--gold); }
    .booking-tag::before { background: var(--gold); }
    .booking-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 4vw, 4.2rem);
      font-weight: 300; color: var(--surface);
      line-height: 1.05;
    }
    .booking-title em { font-style: italic; color: var(--gold-light); }
    .booking-sub {
      margin-top: 16px; color: rgba(233,237,233,.52);
      font-size: .9rem; font-weight: 300; line-height: 1.8;
    }
    .booking-right { position: relative; z-index: 2; }
    .booking-form { display: flex; flex-direction: column; gap: 12px; }
    .booking-field {
      display: flex; align-items: center; justify-content: space-between;
      gap: 20px;
      padding: 18px 22px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      transition: border-color .25s, background .25s;
      border-radius: 2px;
    }
    .booking-field:hover {
      border-color: var(--gold-border);
      background: rgba(198,158,80,.06);
    }
    .booking-field-label {
      font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
      color: rgba(233,237,233,.5);
    }
    .booking-field-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; color: var(--gold);
      text-align: right;
    }
    .booking-submit {
      margin-top: 8px;
      display: flex; align-items: center; justify-content: center;
      gap: 14px;
      padding: 18px;
      background: var(--gold); color: var(--text);
      font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
      font-weight: 500; border: none; border-radius: 2px;
      transition: background .25s, transform .2s;
      cursor: pointer;
    }
    .booking-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
    .booking-note {
      text-align: center; font-size: .7rem;
      color: rgba(233,237,233,.34); letter-spacing: .06em; margin-top: 10px;
    }

    .footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 44px 0;
    }
    .footer-bereiche {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 12px 28px;
      padding-bottom: 28px;
      margin-bottom: 28px;
      border-bottom: 1px solid var(--border);
    }
    .footer-bereiche a {
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color .2s;
    }
    .footer-bereiche a:hover { color: var(--gold); }
    .footer-inner {
      display: flex; justify-content: space-between;
      align-items: center; gap: 24px;
    }
    .footer-copy { font-size: .75rem; color: var(--muted); letter-spacing: .06em; }
    .footer-links { display: flex; gap: 32px; }
    .footer-links a {
      font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
      color: var(--muted); transition: color .2s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-credit { font-size: .72rem; letter-spacing: .08em; color: var(--muted); }
    .footer-credit a { color: var(--gold); transition: opacity .2s; }
    .footer-credit a:hover { opacity: .7; }

    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity .75s ease, transform .75s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }

    @media (max-width: 1024px) {
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-left { padding: 104px 32px 48px; min-height: 62svh; justify-content: center; }
      .hero-left::after { display: none; }
      .hero-right { min-height: 54svh; }
      .philosophy-inner { grid-template-columns: 1fr; gap: 48px; }
      .phil-img:first-child { margin-top: 0; }
      .services-grid { grid-template-columns: 1fr; }
      .process-header,
      .services-header,
      .locations-header,
      .gallery-header { flex-direction: column; gap: 24px; }
      .process-steps { grid-template-columns: 1fr 1fr; }
      .locations-inner { grid-template-columns: 1fr; gap: 48px; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .booking-box { grid-template-columns: 1fr; padding: 60px 32px; gap: 48px; }
      .footer-inner { flex-direction: column; text-align: center; gap: 20px; }
      .site-header { padding: 0 24px; }
    }
    @media (max-width: 760px) {
      .site-header {
        height: auto;
        min-height: 80px;
        padding: 14px 18px;
        align-items: flex-start;
      }
      .nav-name { display: none; }
      .header-dot { display: none; }
      .nav-logo {
        position: static;
        transform: none;
        order: 1;
      }
      .nav-logo img {
        height: 38px;
        max-width: 180px;
      }
      .header-back {
        order: 2;
        margin-left: auto;
        font-size: .62rem;
        letter-spacing: .12em;
      }
      .header-left { order: 2; margin-left: auto; }
      .header-badge {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 0;
        padding: 8px 12px;
        font-size: .58rem;
        letter-spacing: .16em;
      }
      .hero-left {
        padding: 148px 22px 42px;
        min-height: auto;
      }
      .hero-title { font-size: clamp(2.9rem, 15vw, 4.6rem); }
      .hero-sub { margin-top: 22px; font-size: .96rem; line-height: 1.72; }
      .hero-actions {
        margin-top: 28px;
        flex-direction: column;
        align-items: stretch;
      }
      .btn-primary, .btn-outline {
        justify-content: center;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
      }
      .hero-right { min-height: 50svh; }
      .hero-float {
        left: 16px; right: 16px; bottom: 18px;
        justify-content: space-between;
        gap: 16px; padding: 16px 18px;
      }
      .hero-float-num { font-size: 1.35rem; }
      .hero-float-label { font-size: .56rem; letter-spacing: .12em; }
      .scroll-hint { display: none; }
      .container { width: min(1280px, calc(100% - 28px)); }
      .section { padding: 84px 0; }
      .section-sm { padding: 60px 0; }
      .section-title { font-size: clamp(2.05rem, 10vw, 3rem); }
      .philosophy-body { font-size: .95rem; line-height: 1.8; }
      .philosophy-visual { grid-template-columns: 1fr; }
      .service-card { padding: 34px 24px 36px; }
      .service-name { font-size: 1.58rem; }
      .service-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
      }
      .process-steps,
      .gallery-grid { grid-template-columns: 1fr; }
      .process-step { padding: 36px 24px 38px; }
      .step-title { font-size: 1.35rem; }
      .location-item {
        grid-template-columns: 32px 1fr;
        gap: 16px;
      }
      .location-side {
        grid-column: 2;
        text-align: left;
        margin-top: 8px;
      }
      .booking-box { padding: 48px 22px; }
      .booking-field {
        flex-direction: column;
        align-items: flex-start;
      }
      .booking-field-val { text-align: left; }
      .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
      }
    }