
    /*
      PROPERTY PAGE QUICK EDITS
      Replace the placeholder price, location, bedroom/bathroom details, contact number,
      and enquiry email with the correct property information before publishing.
    */
    :root {
      --bg: #f7f3ee;
      --card: #ffffff;
      --ink: #191714;
      --muted: #6d675f;
      --line: rgba(25, 23, 20, 0.12);
      --accent: #9b6b43;
      --accent-dark: #4b3324;
      --soft: #eee4d8;
      --shadow: 0 22px 70px rgba(31, 25, 20, 0.14);
      --radius-xl: 30px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at top left, rgba(155, 107, 67, 0.16), transparent 34rem),
        linear-gradient(180deg, #fbf8f4 0%, var(--bg) 48%, #fff 100%);
      line-height: 1.55;
    }

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

    img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(18px);
      background: rgba(251, 248, 244, 0.82);
      border-bottom: 1px solid var(--line);
    }

    .nav {
      max-width: var(--max);
      margin: 0 auto;
      padding: 14px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--accent-dark), var(--accent));
      color: white;
      display: grid;
      place-items: center;
      font-weight: 900;
      box-shadow: 0 10px 30px rgba(75, 51, 36, 0.22);
      flex: 0 0 auto;
    }

    .brand small {
      display: block;
      font-weight: 650;
      color: var(--muted);
      letter-spacing: 0;
      font-size: 12px;
      line-height: 1.1;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 18px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 650;
    }

    .nav-links a {
      transition: color 0.2s ease;
    }

    .nav-links a:hover {
      color: var(--ink);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 0;
      cursor: pointer;
      font-weight: 800;
      border-radius: 999px;
      padding: 13px 18px;
      background: var(--ink);
      color: #fff;
      box-shadow: 0 12px 28px rgba(25, 23, 20, 0.18);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(25, 23, 20, 0.22);
      background: #060504;
    }

    .btn.secondary {
      color: var(--ink);
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: none;
    }

    .section {
      max-width: var(--max);
      margin: 0 auto;
      padding: 80px 22px;
      scroll-margin-top: 96px;
    }

    .hero {
      padding-top: 42px;
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
      gap: 34px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--accent-dark);
      background: rgba(155, 107, 67, 0.12);
      border: 1px solid rgba(155, 107, 67, 0.18);
      font-size: 13px;
      font-weight: 800;
      padding: 8px 12px;
      border-radius: 999px;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
    }

    h1 {
      margin: 0;
      font-size: clamp(42px, 6vw, 78px);
      line-height: 0.94;
      letter-spacing: -0.07em;
    }

    .lead {
      margin: 22px 0 0;
      font-size: clamp(17px, 2vw, 21px);
      color: var(--muted);
      max-width: 620px;
    }

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

    .info-strip {
      margin-top: 32px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 620px;
    }

    .info-pill {
      padding: 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid var(--line);
    }

    .info-pill strong {
      display: block;
      font-size: 20px;
      letter-spacing: -0.03em;
    }

    .info-pill span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 650;
    }

    .hero-gallery {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      grid-template-rows: repeat(2, 210px);
      gap: 12px;
      min-height: 440px;
    }

    .hero-main, .hero-thumb {
      position: relative;
      overflow: hidden;
      border: 0;
      padding: 0;
      cursor: pointer;
      background: var(--soft);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
    }

    .hero-main {
      grid-row: span 2;
      border-radius: var(--radius-xl);
    }

    .hero-thumb {
      box-shadow: none;
      border: 1px solid rgba(255, 255, 255, 0.7);
    }

    .hero-main::after, .hero-thumb::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.22));
      opacity: 0;
      transition: opacity 0.2s ease;
    }

    .hero-main:hover::after, .hero-thumb:hover::after {
      opacity: 1;
    }

    .hero-badge {
      position: absolute;
      left: 18px;
      bottom: 18px;
      z-index: 2;
      color: #fff;
      background: rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 999px;
      padding: 10px 14px;
      font-size: 14px;
      font-weight: 800;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 22px;
      margin-bottom: 28px;
    }

    .section-kicker {
      color: var(--accent);
      font-weight: 900;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      font-size: 12px;
      margin-bottom: 8px;
    }

    h2 {
      margin: 0;
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1;
      letter-spacing: -0.055em;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      max-width: 460px;
      font-size: 16px;
    }

    .overview-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .overview-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      border-bottom: 1px solid var(--line);
    }

    .stat {
      padding: 24px;
      border-right: 1px solid var(--line);
    }

    .stat:last-child {
      border-right: 0;
    }

    .stat span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .stat strong {
      display: block;
      margin-top: 7px;
      font-size: 22px;
      letter-spacing: -0.04em;
    }

    .overview-body {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
      gap: 28px;
      padding: 30px;
      align-items: start;
    }

    .overview-body p {
      color: var(--muted);
      margin: 0 0 18px;
    }

    .feature-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 22px;
    }

    .feature {
      padding: 16px;
      border-radius: 18px;
      background: #faf7f2;
      border: 1px solid var(--line);
    }

    .feature b {
      display: block;
      margin-bottom: 5px;
    }

    .feature span {
      color: var(--muted);
      font-size: 14px;
    }

    .side-panel {
      border-radius: 24px;
      background: linear-gradient(135deg, #251b15, #8d603f);
      color: #fff;
      padding: 26px;
      min-height: 100%;
      display: grid;
      align-content: space-between;
      gap: 24px;
    }

    .side-panel p {
      color: rgba(255, 255, 255, 0.78);
    }

    .side-panel .price {
      font-size: clamp(34px, 5vw, 52px);
      line-height: 1;
      font-weight: 900;
      letter-spacing: -0.06em;
      margin: 4px 0 8px;
    }

    .side-panel small {
      color: rgba(255, 255, 255, 0.72);
      font-weight: 650;
    }

    .filter-row {
      display: flex;
      gap: 9px;
      flex-wrap: wrap;
      margin: 0 0 24px;
    }

    .filter-btn {
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.76);
      color: var(--muted);
      border-radius: 999px;
      padding: 10px 14px;
      font-weight: 800;
      cursor: pointer;
      transition: all 0.18s ease;
    }

    .filter-btn:hover, .filter-btn.is-active {
      background: var(--ink);
      color: #fff;
      border-color: var(--ink);
    }

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

    .gallery-card {
      border: 0;
      padding: 0;
      cursor: pointer;
      background: #fff;
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: 0 10px 28px rgba(25, 23, 20, 0.08);
      text-align: left;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .gallery-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 42px rgba(25, 23, 20, 0.13);
    }

    .gallery-card img {
      aspect-ratio: 1.42 / 1;
      height: auto;
    }

    .gallery-card span {
      display: block;
      padding: 12px 14px 14px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 750;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .location-card {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 18px;
      padding: 18px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }

    .map-placeholder {
      min-height: 350px;
      border-radius: 24px;
      background:
        linear-gradient(135deg, rgba(75, 51, 36, 0.78), rgba(155, 107, 67, 0.65)),
        url("assets/images/photo-57-view-from-rooftop.webp") center/cover;
      color: #fff;
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: end;
      overflow: hidden;
      position: relative;
    }

    .map-placeholder::before {
      content: "";
      position: absolute;
      inset: 20px;
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: 20px;
      pointer-events: none;
    }

    .map-placeholder strong {
      position: relative;
      font-size: 34px;
      line-height: 1.02;
      letter-spacing: -0.055em;
    }

    .map-placeholder span {
      position: relative;
      color: rgba(255, 255, 255, 0.8);
      margin-top: 8px;
      max-width: 340px;
    }

    .location-details {
      padding: 16px;
    }

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

    .amenity {
      border-radius: 16px;
      background: #faf7f2;
      border: 1px solid var(--line);
      padding: 16px;
      color: var(--muted);
      font-weight: 700;
    }

    .contact {
      padding-bottom: 96px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
      gap: 18px;
      align-items: stretch;
    }

    .contact-intro {
      border-radius: var(--radius-xl);
      padding: 34px;
      background: var(--ink);
      color: #fff;
      box-shadow: var(--shadow);
    }

    .contact-intro p {
      color: rgba(255, 255, 255, 0.72);
    }

    .contact-lines {
      margin-top: 28px;
      display: grid;
      gap: 12px;
    }

    .contact-line {
      padding: 15px 16px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.82);
      font-weight: 700;
    }

    form {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
      padding: 26px;
      display: grid;
      gap: 14px;
    }

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

    label {
      display: grid;
      gap: 7px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 850;
    }

    input, textarea, select {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 13px 14px;
      font: inherit;
      color: var(--ink);
      background: #fbfaf8;
      outline: none;
      transition: border 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }

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

    input:focus, textarea:focus, select:focus {
      border-color: rgba(155, 107, 67, 0.55);
      box-shadow: 0 0 0 4px rgba(155, 107, 67, 0.12);
      background: #fff;
    }

    .form-note {
      color: var(--muted);
      font-size: 13px;
      margin: 0;
    }

    footer {
      border-top: 1px solid var(--line);
      padding: 26px 22px;
      color: var(--muted);
      text-align: center;
      font-size: 13px;
    }

    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 80;
      background: rgba(10, 8, 6, 0.88);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .lightbox.is-open {
      display: flex;
    }

    .lightbox-inner {
      width: min(1120px, 100%);
      max-height: 92vh;
      display: grid;
      gap: 12px;
    }

    .lightbox-img {
      width: 100%;
      max-height: 82vh;
      object-fit: contain;
      border-radius: 20px;
      background: #111;
    }

    .lightbox-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: #fff;
      font-weight: 800;
    }

    .lightbox-close {
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 999px;
      padding: 10px 14px;
      cursor: pointer;
      font-weight: 850;
    }



    .scroll-progress {
      position: fixed;
      inset: 0 auto auto 0;
      height: 4px;
      width: 0%;
      z-index: 100;
      background: linear-gradient(90deg, var(--accent-dark), var(--accent));
      box-shadow: 0 0 18px rgba(155, 107, 67, 0.45);
      transition: width 0.08s linear;
    }

    .site-header {
      transition: padding 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
    }

    .site-header.is-scrolled {
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 10px 32px rgba(25, 23, 20, 0.08);
    }

    .menu-toggle {
      display: none;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.75);
      color: var(--ink);
      border-radius: 999px;
      padding: 11px 14px;
      font: inherit;
      font-size: 14px;
      font-weight: 850;
      cursor: pointer;
    }

    .mobile-menu {
      display: none;
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 22px 14px;
      gap: 8px;
    }

    .mobile-menu a {
      display: block;
      padding: 13px 14px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid var(--line);
      font-weight: 800;
      color: var(--muted);
    }

    .nav-links a.is-active,
    .mobile-menu a.is-active {
      color: var(--accent-dark);
    }

    .hero-main img,
    .hero-thumb img,
    .gallery-card img {
      transition: transform 0.7s cubic-bezier(.2,.8,.2,1), filter 0.35s ease;
    }

    .hero-main:hover img,
    .hero-thumb:hover img,
    .gallery-card:hover img {
      transform: scale(1.045);
      filter: saturate(1.06) contrast(1.04);
    }

    .hero-hint {
      position: absolute;
      right: 18px;
      bottom: 18px;
      z-index: 2;
      color: #fff;
      background: rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 999px;
      padding: 10px 14px;
      font-size: 13px;
      font-weight: 850;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .hero-main:hover .hero-hint {
      opacity: 1;
      transform: translateY(0);
    }

    .gallery-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin: -6px 0 20px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
    }

    .text-btn {
      border: 0;
      background: transparent;
      color: var(--accent-dark);
      font: inherit;
      font-weight: 900;
      cursor: pointer;
      padding: 8px 0;
    }

    .gallery-card {
      animation: cardIn 0.32s ease both;
    }

    @keyframes cardIn {
      from { opacity: 0; transform: translateY(12px) scale(0.985); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.75s cubic-bezier(.2,.8,.2,1), transform 0.75s cubic-bezier(.2,.8,.2,1);
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .overview-card,
    .location-card,
    .contact-intro,
    form,
    .info-pill,
    .feature,
    .amenity {
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    }

    .overview-card:hover,
    .location-card:hover,
    form:hover {
      transform: translateY(-2px);
      box-shadow: 0 28px 78px rgba(31, 25, 20, 0.16);
    }

    .feature:hover,
    .amenity:hover,
    .info-pill:hover {
      transform: translateY(-3px);
      border-color: rgba(155, 107, 67, 0.28);
    }

    .lightbox {
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.22s ease;
    }

    .lightbox.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .lightbox-inner {
      transform: translateY(10px) scale(0.985);
      transition: transform 0.24s ease;
    }

    .lightbox.is-open .lightbox-inner {
      transform: translateY(0) scale(1);
    }

    .lightbox-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.24);
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      font-size: 38px;
      line-height: 1;
      cursor: pointer;
      z-index: 2;
      backdrop-filter: blur(10px);
      transition: background 0.18s ease, transform 0.18s ease;
    }

    .lightbox-nav:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-50%) scale(1.06);
    }

    .lightbox-prev { left: 24px; }
    .lightbox-next { right: 24px; }

    .back-to-top,
    .sticky-enquiry {
      position: fixed;
      z-index: 60;
      opacity: 0;
      pointer-events: none;
      transform: translateY(10px);
      transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .back-to-top {
      right: 20px;
      bottom: 20px;
      width: 46px;
      height: 46px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.9);
      color: var(--ink);
      font-size: 22px;
      font-weight: 900;
      cursor: pointer;
      box-shadow: 0 12px 34px rgba(25, 23, 20, 0.13);
      backdrop-filter: blur(12px);
    }

    .back-to-top.is-visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .sticky-enquiry {
      left: 50%;
      bottom: 18px;
      transform: translate(-50%, 12px);
      border-radius: 999px;
      background: var(--ink);
      color: #fff;
      padding: 13px 18px;
      box-shadow: 0 16px 46px rgba(25, 23, 20, 0.23);
      font-weight: 900;
      display: none;
    }

    .sticky-enquiry.is-visible {
      opacity: 1;
      pointer-events: auto;
      transform: translate(-50%, 0);
    }

    .toast,
    .form-status {
      display: none;
      border-radius: 16px;
      padding: 13px 14px;
      font-weight: 800;
      color: var(--accent-dark);
      background: rgba(155, 107, 67, 0.12);
      border: 1px solid rgba(155, 107, 67, 0.18);
    }

    .toast {
      position: fixed;
      left: 50%;
      bottom: 82px;
      transform: translateX(-50%);
      z-index: 90;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 14px 40px rgba(25, 23, 20, 0.15);
      max-width: min(420px, calc(100vw - 32px));
    }

    .toast.is-visible,
    .form-status.is-visible {
      display: block;
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }
    }

    @media (max-width: 980px) {
      .nav-links {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .mobile-menu.is-open {
        display: grid;
      }

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

      .hero-gallery {
        grid-template-columns: 1fr 1fr;
      }

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

      .stat:nth-child(2) {
        border-right: 0;
      }

      .stat:nth-child(1), .stat:nth-child(2) {
        border-bottom: 1px solid var(--line);
      }

      .overview-body, .location-card, .contact-grid {
        grid-template-columns: 1fr;
      }

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

    @media (max-width: 640px) {
      .section {
        padding: 58px 16px;
      }

      .nav {
        padding: 12px 16px;
      }

      .brand small {
        display: none;
      }

      .hero {
        padding-top: 28px;
      }

      .hero-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: 0;
      }

      .hero-main, .hero-thumb {
        min-height: 245px;
      }

      .hero-main {
        grid-row: auto;
      }

      .info-strip, .feature-list, .amenities, .field-grid, .gallery {
        grid-template-columns: 1fr;
      }

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

      .stat {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .stat:last-child {
        border-bottom: 0;
      }

      .overview-body, form, .contact-intro {
        padding: 22px;
      }

      .section-head {
        display: grid;
      }

      .btn {
        width: 100%;
      }

      .nav-cta {
        display: none;
      }

      .sticky-enquiry {
        display: inline-flex;
      }

      .back-to-top {
        bottom: 72px;
      }

      .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 30px;
      }

      .lightbox-prev { left: 10px; }
      .lightbox-next { right: 10px; }

      .hero-hint {
        opacity: 1;
        transform: none;
      }
    }
  