
    :root {
      --navy: #000033;
      --white: #ffffff;
      --cream: #faf9f7;
      --light-grey: #f2f1ef;
      --mid-grey: #b0aeab;
      --text-grey: #5a5856;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      color: var(--navy);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 48px;
      background: transparent;
      transition: background 0.4s, backdrop-filter 0.4s;
    }

    nav.scrolled {
      background: rgba(0,0,51,0.96);
      backdrop-filter: blur(8px);
    }

    .nav-logo svg {
      height: 52px;
      width: auto;
    }

    /* New horizontal logo — invert to white for dark nav */
    .nav-logo svg .cls-1 { fill: var(--white); }

    nav ul {
      list-style: none;
      display: flex;
      gap: 36px;
    }

    nav ul li a {
      text-decoration: none;
      color: rgba(255,255,255,0.7);
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    nav ul li a:hover { color: var(--white); }

    .nav-cta {
      background: var(--white);
      color: var(--navy) !important;
      padding: 10px 22px;
      border-radius: 2px;
      font-weight: 500 !important;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: left center;
    }

    /* Gradient: dark on right for text legibility, clear on left for subject */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(0,0,51,0) 0%,
        rgba(0,0,51,0.08) 40%,
        rgba(0,0,51,0.72) 65%,
        rgba(0,0,51,0.92) 100%
      );
    }

    /* Bottom fade so content area reads cleanly */
    .hero-overlay::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 200px;
      background: linear-gradient(to top, rgba(0,0,51,0.5), transparent);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
      padding: 0 56px 72px;
      box-sizing: border-box;
    }

    .hero-text-block {
      max-width: 520px;
      text-align: center;
    }

    .hero-svg-wrap {
      width: 160px;
      margin: 0 auto 28px;
    }

    .hero-svg-wrap svg {
      width: 100%;
      height: auto;
      display: block;
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(24px, 2.6vw, 36px);
      font-weight: 300;
      line-height: 1.25;
      color: var(--white);
      margin-bottom: 12px;
      letter-spacing: -0.01em;
      white-space: nowrap;
    }

    .hero h1 em {
      font-style: italic;
      font-weight: 300;
    }

    .hero-location {
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      margin-bottom: 32px;
      text-align: center;
    }

    .hero-inner { max-width: 600px; }

    .hero-eyebrow {
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      margin-bottom: 28px;
    }

    .hero-sub {
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      font-weight: 300;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
      max-width: 480px;
      margin: 0 auto 44px;
    }

    .btn-primary {
      display: inline-block;
      background: var(--white);
      color: var(--navy);
      text-decoration: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 16px 44px;
      border-radius: 2px;
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }

    .btn-primary:hover {
      background: rgba(255,255,255,0.88);
      transform: translateY(-1px);
    }

    .btn-outline {
      display: inline-block;
      border: 1px solid var(--navy);
      color: var(--navy);
      text-decoration: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 15px 44px;
      border-radius: 2px;
      transition: background 0.2s, color 0.2s;
    }

    .btn-outline:hover { background: var(--navy); color: var(--white); }

    /* Keep original SVG colors — white body, navy outline */

    /* ── SECTIONS ── */
    section { padding: 96px 48px; }

    .section-inner { max-width: 1080px; margin: 0 auto; }

    .section-label {
      display: block;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--mid-grey);
      margin-bottom: 20px;
    }

    h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(34px, 4vw, 52px);
      font-weight: 300;
      line-height: 1.15;
      letter-spacing: -0.01em;
      color: var(--navy);
    }

    /* ── ABOUT ── */
    .about { background: var(--cream); }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: stretch;
    }

    .about-image-placeholder {
      aspect-ratio: 4/5;
      background: var(--light-grey);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .about-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .about-story {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(22px, 2.2vw, 32px);
      font-weight: 600;
      line-height: 1.6;
      color: var(--navy);
      text-align: center;
    }

    .about-story p {
      margin-bottom: 28px;
    }

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

    /* ── SERVICES ── */
    .services { background: var(--white); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2px;
      margin-top: 56px;
    }

    .service-card {
      background: var(--cream);
      padding: 40px 36px;
      transition: background 0.25s;
    }

    .service-card:hover { background: var(--navy); }

    .service-card:hover .service-icon,
    .service-card:hover .service-name,
    .service-card:hover .service-desc {
      color: var(--white);
    }

    .service-svg-icon {
      display: block;
      width: 52px;
      height: 52px;
      margin-bottom: 20px;
    }

    .service-svg-icon svg {
      width: 100%;
      height: 100%;
    }

    /* Navy icons on cream background */
    .service-svg-icon .icon-daycare,
    .service-svg-icon .icon-boarding,
    .service-svg-icon .icon-play,
    .service-svg-icon .icon-feeding,
    .service-svg-icon .icon-photos {
      fill: var(--navy);
      transition: fill 0.25s;
    }

    /* White icons on navy hover */
    .service-card:hover .service-svg-icon .icon-daycare,
    .service-card:hover .service-svg-icon .icon-boarding,
    .service-card:hover .service-svg-icon .icon-play,
    .service-card:hover .service-svg-icon .icon-feeding,
    .service-card:hover .service-svg-icon .icon-photos {
      fill: var(--white);
    }

    .service-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--navy);
      display: block;
      margin-bottom: 12px;
      transition: color 0.25s;
    }

    .service-desc {
      font-size: 14px;
      font-weight: 300;
      color: var(--text-grey);
      line-height: 1.6;
      transition: color 0.25s;
    }

    /* ── FOUNDER ── */
    .founder { background: var(--navy); color: var(--white); }

    .founder .section-label { color: rgba(255,255,255,0.35); }
    .founder h2 { color: var(--white); }

    .founder-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 80px;
      align-items: start;
      margin-top: 56px;
    }

    .founder-image-placeholder {
      aspect-ratio: 3/4;
      border-radius: 2px;
      overflow: hidden;
    }

    .founder-image-placeholder span {
      display: none;
    }

    .founder-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      font-weight: 300;
      margin-bottom: 8px;
    }

    .founder-title {
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 32px;
      display: block;
    }

    .founder-bio {
      font-size: 16px;
      font-weight: 300;
      color: rgba(255,255,255,0.7);
      line-height: 1.8;
      margin-bottom: 40px;
    }

    .founder-quote {
      border-left: 1px solid rgba(255,255,255,0.2);
      padding-left: 28px;
    }

    .founder-quote p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 300;
      font-style: italic;
      color: rgba(255,255,255,0.85);
      line-height: 1.6;
    }

    .founder-quote cite {
      display: block;
      margin-top: 16px;
      font-size: 12px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      font-style: normal;
    }

    /* ── GALLERY ── */
    .gallery { background: var(--navy); }
    .gallery .section-label { color: rgba(255,255,255,0.35); }
    .gallery h2 { color: var(--white); }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: 320px 260px;
      gap: 6px;
      margin-top: 40px;
      border-radius: 4px;
      overflow: hidden;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      background: var(--light-grey);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.04);
    }

    .gallery-item span { display: none; }

    /* Bento layout — row 1 */
    .gallery-item:nth-child(1) { grid-column: span 5; grid-row: 1; }
    .gallery-item:nth-child(2) { grid-column: span 7; grid-row: 1; }
    /* row 2 */
    .gallery-item:nth-child(3) { grid-column: span 4; grid-row: 2; }
    .gallery-item:nth-child(4) { grid-column: span 4; grid-row: 2; }
    .gallery-item:nth-child(5) { grid-column: span 4; grid-row: 2; }

    /* ── WHY ── */
    .why { background: var(--white); }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-top: 56px;
    }

    .why-list {
      list-style: none;
    }

    .why-list li {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 24px 0;
      border-bottom: 1px solid var(--light-grey);
      font-size: 16px;
      font-weight: 300;
      color: var(--text-grey);
      line-height: 1.5;
    }

    .why-list li:first-child { border-top: 1px solid var(--light-grey); }

    .why-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 13px;
      color: var(--mid-grey);
      min-width: 24px;
      padding-top: 2px;
    }

    .why-image-placeholder {
      background: var(--navy);
      border-radius: 4px;
      overflow: hidden;
      display: block;
      min-height: 400px;
    }

    .why-image-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
    }

    .why-image-placeholder span { display: none; }

    /* ── MAP PREVIEW ── */
    .map-preview {
      display: block;
      text-decoration: none;
      border-radius: 4px;
      overflow: hidden;
      margin-bottom: 28px;
      position: relative;
    }

    .map-embed-wrap {
      position: relative;
      width: 100%;
      height: 220px;
      border-radius: 4px;
      overflow: hidden;
    }

    .map-embed-wrap iframe {
      pointer-events: none;
      width: 100%;
      height: 100%;
    }

    .map-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,51,0.7) 0%, transparent 50%);
      display: flex;
      align-items: flex-end;
      padding: 16px;
      transition: background 0.3s;
    }

    .map-preview:hover .map-overlay {
      background: linear-gradient(to top, rgba(0,0,51,0.85) 0%, rgba(0,0,51,0.1) 60%);
    }

    .map-pin-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      width: 100%;
    }

    .map-pin-icon { font-size: 18px; flex-shrink: 0; }

    .map-pin-title {
      display: block;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: var(--white);
      line-height: 1.2;
    }

    .map-pin-sub {
      display: block;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 300;
      color: rgba(255,255,255,0.6);
      letter-spacing: 0.04em;
    }

    .map-open-label {
      margin-left: auto;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      flex-shrink: 0;
      transition: color 0.2s;
    }

    .map-preview:hover .map-open-label { color: var(--white); }

    /* ── CONTACT ── */
    .contact { background: var(--navy); color: var(--white); }

    .contact .section-label { color: rgba(255,255,255,0.35); }
    .contact h2 { color: var(--white); }

    .contact-intro {
      font-size: 17px;
      font-weight: 300;
      color: rgba(255,255,255,0.6);
      line-height: 1.8;
      max-width: 500px;
      margin-top: 16px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      margin-top: 64px;
      align-items: start;
    }

    .contact-details { display: flex; flex-direction: column; gap: 28px; }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }

    .contact-icon {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    .contact-info-label {
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      display: block;
      margin-bottom: 4px;
    }

    .contact-info-value {
      font-size: 16px;
      color: rgba(255,255,255,0.8);
      font-weight: 300;
    }

    .contact-link {
      text-decoration: none;
      color: rgba(255,255,255,0.8);
      transition: color 0.2s;
    }

    .contact-link:hover {
      color: var(--white);
    }

    .contact-actions {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }

    /* Desktop QR block */
    .contact-qr-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      margin-left: auto;
      padding-right: 24px;
    }

    .contact-qr-label {
      font-family: 'DM Sans', sans-serif;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
    }

    .contact-qr-wrap {
      width: 300px;
      height: 300px;
      background: #fff;
      border-radius: 4px;
      padding: 10px;
      box-sizing: border-box;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-qr-wrap svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .contact-qr-wrap svg {
      width: 100%;
      height: 100%;
    }

    .contact-qr-number {
      font-family: 'DM Sans', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.04em;
    }

    /* Mobile WA button — hidden on desktop */
    .contact-mobile-wa-btn {
      display: none;
      background: #25D366;
      color: #fff;
      text-decoration: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 16px 44px;
      border-radius: 2px;
      text-align: center;
      transition: background 0.2s, transform 0.2s;
    }

    .contact-mobile-wa-btn:hover {
      background: #1ebe5a;
      transform: translateY(-1px);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 36px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer-logo svg {
      height: 44px;
      width: auto;
    }

    .footer-logo svg .cls-1 { fill: var(--white); }

    .footer-copy {
      font-size: 12px;
      color: rgba(255,255,255,0.25);
      letter-spacing: 0.05em;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 860px) {
      nav { padding: 16px 24px; }
      nav ul { display: none; }
      section { padding: 72px 24px; }

      .hero-content { padding: 0 24px 48px; justify-content: center; }
      .hero-text-block { max-width: 100%; text-align: center; }
      .hero-svg-wrap { margin: 0 auto 28px; }
      .hero-overlay {
        background: linear-gradient(
          to top,
          rgba(0,0,51,0.9) 0%,
          rgba(0,0,51,0.3) 60%,
          rgba(0,0,51,0) 100%
        );
      }
      .hero-overlay::after { display: none; }

      .about-grid,
      .founder-grid,
      .why-grid,
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }

      .about-image-placeholder,
      .why-image-placeholder { aspect-ratio: 4/3; width: 100%; }

      .services-grid { grid-template-columns: 1fr 1fr; }

      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 4px;
      }

      .gallery-item,
      .gallery-item:nth-child(1),
      .gallery-item:nth-child(2),
      .gallery-item:nth-child(3),
      .gallery-item:nth-child(4),
      .gallery-item:nth-child(5) {
        grid-column: span 1;
        grid-row: auto;
        min-height: 180px;
      }

      .gallery-item:nth-child(1) {
        grid-column: span 2;
        min-height: 220px;
      }

      footer { flex-direction: column; gap: 16px; text-align: center; }

      .about-story { font-size: clamp(22px, 5vw, 28px); text-align: center; }

      .contact-qr-block { display: none; }
      .contact-mobile-wa-btn { display: inline-block; width: 100%; }
      .contact-actions { align-items: stretch; }
    }
    /* ── BOOKING MODAL ── */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 500;
      background: rgba(0,0,51,0.72);
      backdrop-filter: blur(6px);
      align-items: center;
      justify-content: center;
    }

    .modal-overlay.active {
      display: flex;
    }

    .modal-box {
      background: var(--white);
      border-radius: 4px;
      padding: 48px 40px 40px;
      max-width: 400px;
      width: 90%;
      text-align: center;
      position: relative;
      box-shadow: 0 32px 80px rgba(0,0,51,0.3);
      animation: modalIn 0.25s ease;
    }

    @keyframes modalIn {
      from { opacity: 0; transform: translateY(16px) scale(0.97); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }

    .modal-close {
      position: absolute;
      top: 16px; right: 20px;
      background: none;
      border: none;
      font-size: 24px;
      color: var(--mid-grey);
      cursor: pointer;
      line-height: 1;
      padding: 4px;
      transition: color 0.2s;
    }

    .modal-close:hover { color: var(--navy); }

    .modal-eyebrow {
      font-family: 'DM Sans', sans-serif;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--mid-grey);
      margin-bottom: 6px;
    }

    .modal-scan {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 300;
      color: var(--navy);
      margin-bottom: 28px;
    }

    .modal-qr {
      width: 220px;
      height: 220px;
      margin: 0 auto 28px;
      border: 1px solid var(--light-grey);
      border-radius: 4px;
      padding: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .modal-qr svg {
      width: 100%;
      height: 100%;
    }

    .modal-number {
      font-family: 'DM Sans', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: 0.04em;
      margin-bottom: 28px;
    }

    .modal-wa-btn {
      display: inline-block;
      background: #25D366;
      color: #fff;
      text-decoration: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 14px 36px;
      border-radius: 2px;
      transition: background 0.2s, transform 0.2s;
    }

    .modal-wa-btn:hover {
      background: #1ebe5a;
      transform: translateY(-1px);
    }
  