    /* ── VARIABLES & RESET ── */
    :root {
      --teal-deep: #234339;
      --teal-mid: #2E564A;
      --cream: #F4EFE3;
      --ink: #1D2420;
      --ink-soft: #4B544D;
      --gold: #D9A441;
      --gold-soft: #E9C887;
      --clay: #BE6A42;
      --stone: #C9C2AE;
      --line-on-dark: rgba(244,239,227,0.18);
      --font-display: "Bricolage Grotesque", system-ui, sans-serif;
      --font-body: "Inter", system-ui, sans-serif;
      --font-mono: "JetBrains Mono", monospace;
      --container: min(1180px, 92vw);
    }
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font-body);
      color: var(--ink);
      background: var(--cream);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    ul { margin: 0; padding: 0; }
    .wrap { width: var(--container); margin-inline: auto; }
    :focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

    /* ── NAV ── */
    .nav {
      position: sticky; top: 0; z-index: 50;
      background: rgba(35,67,57,0.82);
      backdrop-filter: blur(14px) saturate(140%);
      border-bottom: 1px solid var(--line-on-dark);
    }
    .nav .wrap {
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 0; color: var(--cream);
    }
    .brand {
      font-family: var(--font-display); font-weight: 700;
      font-size: 1.25rem; letter-spacing: 0.01em;
      display: flex; align-items: center; gap: 8px;
    }
    .brand .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); display: inline-block; }
    .nav-links { display: flex; gap: 32px; font-size: 0.95rem; }
    .nav-links a { opacity: 0.85; transition: opacity .2s; }
    .nav-links a:hover { opacity: 1; }
    .nav-right { display: flex; align-items: center; gap: 14px; }
    .nav-phone {
      font-family: var(--font-mono); font-size: 0.9rem;
      border: 1px solid var(--line-on-dark); padding: 8px 16px; border-radius: 30px;
      transition: background .2s, border-color .2s;
    }
    .nav-phone:hover { background: rgba(244,239,227,0.08); border-color: rgba(244,239,227,0.4); }
    .lang-switcher { display: flex; align-items: center; gap: 6px; }
    .lang-btn {
      display: flex; align-items: center; justify-content: center;
      width: 26px; height: 20px; border-radius: 3px; overflow: hidden;
      opacity: 0.45; transition: opacity .2s, transform .15s;
      line-height: 0;
    }
    .lang-btn:hover { opacity: 0.85; transform: scale(1.08); }
    .lang-btn.active { opacity: 1; cursor: default; }
    .lang-btn .fi { font-size: 20px; display: block; border-radius: 2px; }
    .burger { display: none; background: none; border: none; color: var(--cream); cursor: pointer; padding: 6px; }
    .mobile-nav {
      display: none; flex-direction: column;
      background: rgba(35,67,57,0.96); backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line-on-dark);
    }
    .mobile-nav.is-open { display: flex; }
    .mobile-nav a {
      display: block; padding: 16px 24px;
      color: rgba(244,239,227,0.9); font-size: 1rem;
      border-bottom: 1px solid var(--line-on-dark);
      transition: background .15s;
    }
    .mobile-nav a:hover { background: rgba(244,239,227,0.06); }
    .mobile-nav .mobile-lang-row {
      display: flex; align-items: center; gap: 12px;
      padding: 14px 24px; border-bottom: 1px solid var(--line-on-dark);
    }
    .mobile-lang-row .lang-btn { width: 30px; height: 22px; }
    .mobile-lang-row .lang-btn .fi { font-size: 22px; }

    /* ── BUTTONS ── */
    .btn {
      font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
      padding: 15px 30px; border-radius: 12px;
      display: inline-flex; align-items: center; gap: 8px;
      transition: transform .25s ease, box-shadow .25s ease, background .2s ease;
      cursor: pointer; border: none; text-align: center;
    }
    .btn-primary { background: linear-gradient(120deg, var(--gold) 0%, var(--gold-soft) 100%); color: var(--teal-deep); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(217,164,65,0.6), 0 4px 18px -4px rgba(190,106,66,0.4); }
    .btn-dark { background: var(--teal-deep); color: var(--cream); }
    .btn-dark:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(35,67,57,0.4); }
    .btn-ghost { background: rgba(244,239,227,0.06); color: var(--cream); border: 1px solid var(--line-on-dark); backdrop-filter: blur(10px); }
    .btn-ghost:hover { background: rgba(244,239,227,0.1); border-color: rgba(244,239,227,0.4); }
    .btn-outline {
      background: transparent; color: var(--teal-deep);
      border: 1.5px solid var(--teal-deep);
    }
    .btn-outline:hover { background: var(--teal-deep); color: var(--cream); }
    .btn-sm { padding: 9px 18px; font-size: 0.87rem; }
    .btn-block { width: 100%; justify-content: center; }

    /* ── KICKER & SECTION HEAD ── */
    .kicker {
      font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--clay); margin-bottom: 12px; display: block;
    }
    .section-head { max-width: 600px; margin-bottom: 48px; }
    .section-head h2 {
      font-family: var(--font-display); font-weight: 600;
      font-size: clamp(1.7rem, 2.6vw, 2.3rem); line-height: 1.2;
      margin: 0 0 12px;
      background: linear-gradient(95deg, var(--ink) 0%, var(--clay) 100%);
      -webkit-background-clip: text; background-clip: text; color: transparent;
    }
    .section-head p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.6; margin: 0; }

    /* ── REVEAL ── */
    .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.in { opacity: 1; transform: translateY(0); }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      html { scroll-behavior: auto; }
    }

    /* ── SECTION ── */
    .section { padding: 96px 0; }
    .section-sm { padding: 64px 0; }

    /* ── PAGE HEADER (inner pages) ── */
    .page-header {
      background:
        radial-gradient(ellipse 70% 60% at 80% 0%, rgba(217,164,65,0.13), transparent 60%),
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(190,106,66,0.09), transparent 60%),
        var(--teal-deep);
      color: var(--cream);
      padding: 64px 0 60px;
    }
    .page-header .kicker { color: var(--gold-soft); }
    .page-header h1 {
      font-family: var(--font-display); font-weight: 600;
      font-size: clamp(1.9rem, 3.2vw, 2.7rem);
      line-height: 1.1; letter-spacing: -0.01em;
      margin: 0 0 16px;
    }
    .page-header p {
      font-size: 1.05rem; line-height: 1.6;
      color: rgba(244,239,227,0.78); max-width: 560px; margin: 0;
    }

    /* ── APARTMENT CARDS ── */
    .apt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
    .apt-card {
      background: #fff; border-radius: 18px; overflow: hidden;
      box-shadow: 0 1px 0 var(--stone);
      transition: transform .3s ease, box-shadow .3s ease;
    }
    .apt-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px -20px rgba(29,36,32,0.25); }
    .apt-photo { position: relative; aspect-ratio: 5/4; overflow: hidden; }
    .apt-photo img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .5s ease; filter: saturate(1.06) contrast(1.03);
    }
    .apt-card:hover .apt-photo img { transform: scale(1.06); }
    .apt-badge {
      position: absolute; top: 16px; left: 16px;
      background: rgba(35,67,57,0.7); backdrop-filter: blur(6px);
      color: var(--cream); font-family: var(--font-mono); font-size: 0.78rem;
      padding: 6px 12px; border-radius: 30px;
    }
    .apt-body { padding: 28px 28px 30px; }
    .apt-specs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
    .apt-specs span {
      font-family: var(--font-mono); font-size: 0.75rem; color: var(--ink-soft);
      border: 1px solid var(--stone); border-radius: 30px; padding: 4px 11px;
    }
    .apt-body h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin: 0 0 10px; color: var(--ink); }
    .apt-body p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.55; margin: 0 0 16px; }
    .apt-features { list-style: none; padding: 0; margin: 0 0 20px; }
    .apt-features li {
      color: var(--ink-soft); font-size: 0.9rem; padding: 6px 0 6px 16px;
      border-bottom: 1px solid rgba(201,194,174,0.5); position: relative;
    }
    .apt-features li:last-child { border-bottom: none; }
    .apt-features li::before {
      content: ""; position: absolute; left: 0; top: 13px;
      width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
    }
    .apt-link { font-weight: 600; font-size: 0.92rem; color: var(--clay); display: inline-flex; align-items: center; gap: 6px; }
    .apt-link svg { width: 14px; height: 14px; transition: transform .2s ease; }
    .apt-link:hover svg { transform: translateX(3px); }

    /* ── INTRO BAND (apartments page) ── */
    .intro-band {
      background: #fff; border: 1px solid var(--stone);
      border-radius: 18px; padding: 36px 40px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
      align-items: start; margin-bottom: 48px;
    }
    .intro-band h2 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; margin: 0 0 8px; color: var(--ink); }
    .intro-band p { color: var(--ink-soft); font-size: 0.97rem; line-height: 1.65; margin: 0; }

    /* ── DETAIL PAGE ── */
    .detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
    .detail-sidebar {
      position: sticky; top: 88px;
      background: var(--teal-deep); color: var(--cream);
      border-radius: 18px; padding: 32px;
    }
    .detail-sidebar .kicker { color: var(--gold-soft); }
    .detail-sidebar h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--cream); font-weight: 600; margin: 0 0 22px; }
    .feature-list { list-style: none; padding: 0; margin: 0 0 20px; }
    .feature-list li {
      display: flex; align-items: flex-start; gap: 10px;
      padding: 11px 0; border-bottom: 1px solid var(--line-on-dark);
      color: rgba(244,239,227,0.85); font-size: 0.92rem; line-height: 1.4;
    }
    .feature-list li::before {
      content: ""; width: 5px; height: 5px; border-radius: 50%;
      background: var(--gold); margin-top: 7px; flex-shrink: 0;
    }
    .detail-meta { padding: 10px 0; border-top: 1px solid var(--line-on-dark); margin-bottom: 2px; }
    .detail-meta-row {
      display: flex; justify-content: space-between;
      font-size: 0.9rem; padding: 6px 0;
    }
    .detail-meta-row span { color: rgba(244,239,227,0.55); }
    .detail-meta-row strong { color: var(--cream); }
    .smoking-note { font-size: 0.83rem; color: rgba(244,239,227,0.55); line-height: 1.5; margin: 16px 0 0; }

    .main-photo {
      width: 100%; aspect-ratio: 4/3; object-fit: cover;
      border-radius: 16px; filter: saturate(1.06) contrast(1.03);
      cursor: pointer; transition: transform .3s;
    }
    .main-photo:hover { transform: scale(1.01); }

    .content-block { margin-top: 44px; padding-top: 44px; border-top: 1px solid var(--stone); }
    .content-block h3 {
      font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
      margin: 0 0 14px; color: var(--ink);
    }
    .content-block p { color: var(--ink-soft); line-height: 1.65; font-size: 0.97rem; margin: 0 0 12px; }
    .content-block p:last-child { margin-bottom: 0; }

    .note-block {
      background: rgba(217,164,65,0.08); border: 1px solid rgba(217,164,65,0.22);
      border-radius: 12px; padding: 20px 24px;
      color: var(--ink-soft); font-size: 0.94rem; line-height: 1.6;
    }

    .chips-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .chip {
      padding: 12px 16px;
      background: var(--cream); border: 1px solid var(--stone);
      border-radius: 10px; font-size: 0.9rem; color: var(--ink-soft); font-weight: 500;
    }

    .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .gallery-grid img {
      width: 100%; aspect-ratio: 4/3; object-fit: cover;
      border-radius: 10px; cursor: pointer; filter: saturate(1.05);
      transition: transform .3s ease, filter .3s ease;
    }
    .gallery-grid img:hover { transform: scale(1.02); filter: saturate(1.15); }

    /* ── INFO PANELS (information page) ── */
    .info-panels-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
      background: var(--stone); border-radius: 18px; overflow: hidden;
    }
    .info-panel { background: var(--cream); padding: 34px 32px; transition: background .25s; }
    .info-panel:hover { background: #EFE8D6; }
    .info-panel h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin: 0 0 10px; color: var(--ink); }
    .info-panel p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.55; margin: 0; }

    .content-band {
      background: #fff; border: 1px solid var(--stone); border-radius: 18px; padding: 40px;
      display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px; align-items: start;
    }
    .content-band h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 2vw, 1.9rem); font-weight: 600; margin: 0; color: var(--ink); }
    .content-band p { color: var(--ink-soft); line-height: 1.65; font-size: 0.97rem; margin: 0 0 12px; }
    .content-band p:last-child { margin-bottom: 0; }

    .photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .photo-grid img {
      width: 100%; aspect-ratio: 4/3; object-fit: cover;
      border-radius: 12px; cursor: pointer; filter: saturate(1.05);
      transition: transform .3s;
    }
    .photo-grid img:hover { transform: scale(1.01); }

    /* ── CONTACT PAGE ── */
    .contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
    .contact-info-panel {
      background: var(--teal-deep); color: var(--cream);
      border-radius: 18px; padding: 36px;
    }
    .contact-info-panel .kicker { color: var(--gold-soft); }
    .contact-info-panel h2 { font-family: var(--font-display); font-size: 1.25rem; color: var(--cream); margin: 0 0 28px; }
    .contact-line {
      display: flex; justify-content: space-between; gap: 16px;
      padding: 13px 0; border-bottom: 1px solid var(--line-on-dark); font-size: 0.93rem;
    }
    .contact-line span { color: rgba(244,239,227,0.55); }
    .contact-line strong { color: var(--cream); text-align: right; }
    .contact-note { font-size: 0.9rem; color: rgba(244,239,227,0.65); line-height: 1.55; margin-top: 24px 0 0; }

    .contact-form-panel h2 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin: 0 0 28px; color: var(--ink); }

    /* ── FORMS ── */
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-grid .full { grid-column: 1 / -1; }
    .form-group { display: flex; flex-direction: column; }
    .form-label {
      display: block; font-size: 0.87rem; font-weight: 500;
      color: var(--ink); margin-bottom: 7px;
    }
    .form-control, .form-select {
      display: block; width: 100%;
      padding: 11px 14px;
      font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
      background: #fff; border: 1.5px solid var(--stone);
      border-radius: 8px; line-height: 1.5;
      transition: border-color .2s, box-shadow .2s;
      appearance: none; -webkit-appearance: none;
    }
    .form-control:focus, .form-select:focus {
      outline: none; border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(217,164,65,0.18);
      background: #fffdf8;
    }
    textarea.form-control { resize: vertical; min-height: 150px; }
    input[type="date"].form-control {
      color-scheme: light;
      cursor: pointer;
    }
    input[type="date"].form-control::-webkit-calendar-picker-indicator {
      opacity: 0.5;
      cursor: pointer;
      filter: invert(28%) sepia(20%) saturate(500%) hue-rotate(100deg);
    }
    .form-select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%234B544D' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 12px center;
      padding-right: 38px; cursor: pointer;
    }
    .alert {
      padding: 13px 16px; border-radius: 10px; margin-bottom: 22px;
      font-size: 0.94rem; line-height: 1.5; border: 1px solid transparent;
    }
    .alert-success { background: rgba(35,67,57,0.09); color: var(--teal-mid); border-color: rgba(35,67,57,0.18); }
    .alert-danger { background: rgba(190,106,66,0.09); color: #7A2F0E; border-color: rgba(190,106,66,0.22); }

    /* ── CTA STRIP ── */
    .cta-strip {
      background: linear-gradient(120deg, var(--gold) 0%, var(--gold-soft) 100%);
      color: var(--teal-deep); padding: 56px 0;
    }
    .cta-strip .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
    .cta-strip h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin: 0 0 6px; }
    .cta-strip p { margin: 0; font-size: 0.98rem; opacity: 0.85; }

    /* ── LIGHTBOX ── */
    body.lightbox-open { overflow: hidden; }
    .lightbox-overlay {
      position: fixed; inset: 0; z-index: 1080;
      display: none; align-items: center; justify-content: center;
      padding: 64px 28px 28px; background: rgba(15,36,31,0.88);
    }
    .lightbox-overlay.is-open { display: flex; }
    .lightbox-dialog {
      position: relative; display: grid; gap: 0.7rem;
      width: min(100%, 1080px); max-height: calc(100vh - 92px);
    }
    .lightbox-image {
      display: block; max-width: 100%; max-height: calc(100vh - 180px);
      justify-self: center; object-fit: contain;
      background: var(--cream); border-radius: 10px;
      box-shadow: 0 24px 70px rgba(0,0,0,0.38);
    }
    .lightbox-footer {
      display: flex; align-items: center; justify-content: center;
      gap: 1.25rem; flex-wrap: wrap;
    }
    .lightbox-caption {
      margin: 0; padding: 0.45rem 1rem; color: var(--ink);
      background: rgba(255,255,255,0.92);
      border-radius: 8px; text-align: center; font-size: 0.88rem;
    }
    .lightbox-counter {
      font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em;
      color: rgba(244,239,227,0.65); white-space: nowrap;
    }
    .lightbox-close {
      position: absolute; top: -14px; right: -14px;
      display: inline-grid; width: 42px; height: 42px;
      place-items: center; color: var(--ink); background: var(--cream);
      border-radius: 50%; border: none; cursor: pointer;
      font-size: 1.5rem; line-height: 1;
      box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    }
    .lightbox-close:hover { color: var(--clay); }
    .lightbox-prev, .lightbox-next {
      position: fixed; top: 50%; transform: translateY(-50%);
      display: flex; align-items: center; justify-content: center;
      width: 48px; height: 64px;
      background: rgba(35,67,57,0.72); color: rgba(244,239,227,0.9);
      border: 1px solid rgba(244,239,227,0.18); border-radius: 8px;
      cursor: pointer; font-size: 1.5rem; line-height: 1;
      transition: background 0.18s, color 0.18s;
      z-index: 1090;
    }
    .lightbox-prev { left: 14px; }
    .lightbox-next { right: 14px; }
    .lightbox-prev:hover, .lightbox-next:hover {
      background: var(--teal-deep); color: var(--gold);
    }
    @media (max-width: 600px) {
      .lightbox-prev, .lightbox-next { width: 38px; height: 50px; font-size: 1.2rem; }
      .lightbox-prev { left: 6px; }
      .lightbox-next { right: 6px; }
    }

    /* ── FOOTER ── */
    footer { background: #0F241F; color: rgba(244,239,227,0.7); padding: 64px 0 32px; }
    .footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1fr; gap: 48px; margin-bottom: 48px; }
    .footer-grid h4 { font-family: var(--font-display); color: var(--cream); font-size: 1rem; margin: 0 0 16px; }
    .footer-grid p { font-size: 0.92rem; line-height: 1.6; margin: 0; max-width: 320px; }
    .footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 0.92rem; }
    .footer-links a { transition: color .2s; }
    .footer-links a:hover { color: var(--gold-soft); }
    .footer-bottom {
      border-top: 1px solid rgba(244,239,227,0.12); padding-top: 24px;
      font-size: 0.82rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    }
    .footer-brand { font-family: var(--font-display); color: var(--cream); font-weight: 700; font-size: 1.1rem; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
    .footer-brand .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .burger { display: block; }
      .detail-layout { grid-template-columns: 1fr; }
      .detail-sidebar { position: static; }
      .apt-grid { grid-template-columns: 1fr; }
      .intro-band { grid-template-columns: 1fr; }
      .contact-layout { grid-template-columns: 1fr; }
      .content-band { grid-template-columns: 1fr; }
      .info-panels-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .section { padding: 64px 0; }
      .cta-strip .wrap { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 600px) {
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .chips-grid { grid-template-columns: 1fr; }
      .form-grid { grid-template-columns: 1fr; }
      .form-grid .full { grid-column: 1; }
      .photo-grid { grid-template-columns: 1fr; }
      .page-header { padding: 48px 0 44px; }
    }

    /* ── Public availability calendar ── */
    .cal-controls {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 20px;
    }
    .cal-controls__apartments, .cal-controls__nav {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
    }
    .cal-controls__label {
      font-family: var(--font-display);
      font-weight: 600;
      min-width: 12ch;
      text-align: center;
    }
    .cal-nav-disabled { opacity: 0.35; pointer-events: none; }
    .cal-legend {
      display: flex;
      gap: 20px;
      margin-bottom: 16px;
      font-size: 0.88rem;
      color: var(--ink-soft);
    }
    .cal-legend__item { display: inline-flex; align-items: center; gap: 8px; }
    .cal-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
    .cal-dot--free { background: var(--teal-mid); }
    .cal-dot--taken { background: var(--stone); }
    .cal-table-wrap {
      overflow-x: auto;
      border: 1px solid var(--stone);
      border-radius: 14px;
      background: #fff;
    }
    .cal-table { width: 100%; min-width: 560px; border-collapse: collapse; table-layout: fixed; }
    .cal-table th {
      font-family: var(--font-display);
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--ink-soft);
      padding: 10px 6px;
      border-bottom: 2px solid var(--stone);
    }
    .cal-day {
      text-align: center;
      padding: 10px 4px;
      border: 1px solid #ece6d8;
      font-variant-numeric: tabular-nums;
      width: 14.28%;
    }
    .cal-day--empty { background: #faf8f2; }
    .cal-day--taken { color: var(--stone); }
    .cal-day--past { color: #ded6c1; }
    .cal-day--today { box-shadow: inset 0 0 0 2px var(--gold); border-radius: 6px; }
    .cal-day--free a {
      display: block;
      color: var(--teal-deep);
      font-weight: 600;
      text-decoration: none;
      border-radius: 6px;
    }
    .cal-day--free a:hover, .cal-day--free a:focus-visible {
      background: var(--teal-mid);
      color: var(--cream);
    }
    .cal-note {
      margin-top: 16px;
      font-size: 0.85rem;
      color: var(--ink-soft);
      max-width: 60ch;
    }
    /* CTA strip embedded directly in the page container (not a full-bleed section) */
    .cta-strip.cal-cta {
      box-sizing: border-box;
      padding: 32px;
      border-radius: 14px;
    }
    .cal-cta h3 { margin: 0 0 10px; }
    .cal-cta p { margin: 0 0 24px; }
    @media (max-width: 600px) {
      .cal-controls { flex-direction: column; align-items: stretch; }
      .cal-table { min-width: 100%; font-size: 0.85rem; }
      .cta-strip.cal-cta { padding: 22px; }
    }
