/* ============================================================
   NEOPOLIS — COMMON
   Tokens · Reset · Nav · Buttons · Modal · Footer · Utilities
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "CeraGodrejInterio";
  src: url("../fonts/CeraGodrejInterio-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CeraGodrejInterio";
  src: url("../fonts/CeraGodrejInterio-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CeraGodrejInterio";
  src: url("../fonts/CeraGodrejInterio-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap");

/* ---------- Design Tokens ---------- */
:root {
  /* black · chrome · gold accent — the only three colours */
  --jet: #000000;
  --ink: #070708;
  --ink-2: #0e0f11;
  --paper: #cfd4d8; /* chrome silver — replaces white as default 'light' */
  --chrome-bright: #eef1f3;
  --chrome: #c0c5ca;
  --chrome-dim: #878d93;
  --gold: #c6a15b;
  --gold-soft: #e2c892;
  --gold-deep: #a07f3f;

  /* chrome-tinted neutrals (tints of silver, not new hues) */
  --line: rgba(192, 197, 202, 0.22);
  --line-soft: rgba(192, 197, 202, 0.12);
  --muted: rgba(201, 206, 211, 0.6);
  --muted-2: rgba(201, 206, 211, 0.4);
  --glass: rgba(9, 10, 11, 0.55);

  /* metallic chrome gradient for premium headings */
  --metal: linear-gradient(
    165deg,
    #f4f6f7 0%,
    #cdd2d6 20%,
    #969da3 46%,
    #e7eaec 62%,
    #a6adb3 84%,
    #d2d7da 100%
  );

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "CeraGodrejInterio", "Jost", system-ui, sans-serif;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --pad: clamp(20px, 5vw, 90px);
  --maxw: 1340px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--sans);
  background: var(--jet);
  color: var(--paper);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
ul {
  list-style: none;
}
::selection {
  background: var(--gold);
  color: var(--jet);
}

/* custom scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: var(--jet);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-deep);
  border-radius: 9px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  display: inline-block;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.display {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6.4vw, 6rem);
  font-weight: 300;
  line-height: 0.98;
}
/* metallic chrome finish for premium headings */
.metal,
.section-title,
.display {
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 3.9rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.015em;
}
/* keep gold accents truly gold inside metallic headings */
.gold {
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}
.gold-italic {
  font-style: italic;
  color: var(--gold-soft);
  -webkit-text-fill-color: var(--gold-soft);
}
.lede {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  color: var(--muted);
  font-weight: 300;
  max-width: 54ch;
  line-height: 1.75;
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.65em;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.15em 2.2em;
  position: relative;
  overflow: hidden;
  color: var(--jet);
  background: var(--bg);
  border-radius: 2px;
  transition:
    color 0.5s var(--ease),
    transform 0.4s var(--ease);
  isolation: isolate;
}
.btn .arrow {
  transition: transform 0.45s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--paper);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-out);
}
.btn:hover {
  color: var(--jet);
}
.btn:hover::before {
  transform: translateY(0);
}
.btn:hover .arrow {
  transform: translateX(5px);
}
.btn:active {
  transform: scale(0.97);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line);
}
.btn-ghost::before {
  background: var(--gold);
}
.btn-ghost:hover {
  color: var(--jet);
}
.btn-ghost:hover {
  border-color: var(--gold);
}

/* text-style link with animated underline */
.link-underline {
  position: relative;
  display: inline-block;
  color: var(--gold-soft);
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out);
}
.link-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--pad);
  transition:
    background 0.5s var(--ease),
    padding 0.5s var(--ease),
    border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-soft);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 2;
}
.brand .mark {
  width: 30px;
  height: 30px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--gold);
  transition: transform 0.6s var(--ease);
}
.brand:hover .mark {
  transform: rotate(90deg);
}
.brand .word {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.36em;
  font-size: 0.9rem;
  padding-left: 0.2em;
}
.brand .word b {
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-links a {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  position: relative;
  transition: color 0.4s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 1px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.nav-links a:hover {
  color: var(--paper);
}
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.nav-enquire {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--jet);
  background: var(--gold);
  padding: 0.85em 1.6em;
  border-radius: 2px;
  transition:
    background 0.4s var(--ease),
    color 0.4s var(--ease),
    transform 0.3s var(--ease);
}
.nav-enquire:hover {
  background: var(--paper);
  transform: translateY(-1px);
}

.burger {
  display: none;
  width: 30px;
  height: 18px;
  position: relative;
  z-index: 130;
}
.burger span {
  position: absolute;
  left: 0;
  height: 1.5px;
  width: 100%;
  background: var(--paper);
  transition:
    transform 0.4s var(--ease),
    opacity 0.3s var(--ease),
    top 0.4s var(--ease);
}
.burger span:nth-child(1) {
  top: 0;
}
.burger span:nth-child(2) {
  top: 8px;
}
.burger span:nth-child(3) {
  top: 16px;
}
body.menu-open .burger span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
body.menu-open .burger span:nth-child(2) {
  opacity: 0;
}
body.menu-open .burger span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

/* mobile menu sheet */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 115;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad);
  gap: 0.2rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease-out);
  pointer-events: none;
}
body.menu-open .mobile-menu {
  clip-path: inset(0 0 0 0);
  pointer-events: auto;
}
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3.2rem);
  font-weight: 300;
  color: var(--paper);
  padding: 0.2em 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition:
    color 0.4s var(--ease),
    padding-left 0.4s var(--ease);
}
.mobile-menu a:hover {
  color: var(--gold);
  padding-left: 0.4em;
}
.mobile-menu a span {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--gold);
}

/* ============================================================
   MODAL  (lead capture)
   ============================================================ */
.modal-root {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(14px, 4vw, 40px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s var(--ease),
    visibility 0.5s var(--ease);
}
.modal-root.open {
  opacity: 1;
  visibility: visible;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 4, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.modal-card {
  position: relative;
  z-index: 2;
  width: min(500px, 100%);
  max-height: 92vh;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 50px 120px -30px rgba(0, 0, 0, 0.85);
  transform: translateY(28px) scale(0.98);
  opacity: 0;
  transition:
    transform 0.6s var(--ease-out) 0.05s,
    opacity 0.6s var(--ease) 0.05s;
}
.modal-root.open .modal-card {
  transform: none;
  opacity: 1;
}
.modal-body {
  padding: 1.4rem 1.6rem 1.4rem;
  overflow-y: auto;
  max-height: 92vh;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition:
    transform 0.4s var(--ease),
    color 0.3s,
    border-color 0.3s,
    background 0.3s;
}
.modal-close:hover {
  transform: rotate(90deg);
  color: var(--jet);
  background: var(--gold);
  border-color: var(--gold);
}
.modal-body h2 {
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1rem;
  padding-right: 2.5rem;
  text-align: center;
}

/* ---------- Modal form compact overrides ---------- */
#modalForm .field {
  margin-bottom: 0.6rem;
}
#modalForm .field label {
  margin-bottom: 0.25rem;
}
#modalForm .field input,
#modalForm .field textarea {
  padding: 0.45rem 0.1rem;
  font-size: 0.9rem;
}
#modalForm .field textarea {
  min-height: 48px;
}
#modalForm .captcha-wrap {
  margin-top: 0.6rem;
  transform-origin: left top;
  transform: scale(0.88);
  margin-bottom: -10px;
}
#modalForm .form-actions {
  margin-top: 0.8rem;
}

/* ---------- Forms (shared modal + section 5) ---------- */
.field {
  margin-bottom: 1.05rem;
  position: relative;
}
.field label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.field label .req {
  color: var(--gold);
}
.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-soft);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 300;
  padding: 0.7rem 0.1rem;
  transition: border-color 0.4s var(--ease);
}
.field textarea {
  resize: none;
  min-height: 74px;
  line-height: 1.6;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-2);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field.error input,
.field.error textarea {
  border-bottom-color: #c2553f;
}
.field .err-msg {
  font-size: 0.68rem;
  color: #d9755f;
  margin-top: 0.4rem;
  letter-spacing: 0.04em;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    opacity 0.3s,
    height 0.3s;
}
.field.error .err-msg {
  height: auto;
  opacity: 1;
}

/* phone row with country selector */
.phone-row {
  display: flex;
  gap: 0.7rem;
  align-items: flex-end;
}
.phone-row .field {
  flex: 1;
  margin-bottom: 0;
}

/* country selector */
.cc-select {
  position: relative;
  min-width: 128px;
}
.cc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-soft);
  padding: 0.7rem 0.1rem;
  color: var(--paper);
  font-size: 0.95rem;
  transition: border-color 0.4s var(--ease);
}
.cc-trigger:hover,
.cc-select.open .cc-trigger {
  border-bottom-color: var(--gold);
}
.cc-trigger .flag {
  font-size: 1.15rem;
  line-height: 1;
}
.cc-trigger .dial {
  font-weight: 300;
}
.cc-trigger .chev {
  margin-left: auto;
  color: var(--muted);
  transition: transform 0.4s var(--ease);
  font-size: 0.7rem;
}
.cc-select.open .cc-trigger .chev {
  transform: rotate(180deg);
}
.cc-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 30;
  width: 340px;
  max-width: 78vw;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease),
    visibility 0.35s;
  overflow: hidden;
}
.cc-select.open .cc-panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.cc-search {
  padding: 0.85rem;
  border-bottom: 1px solid var(--line-soft);
}
.cc-search input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-soft);
  border-radius: 3px;
  padding: 0.6rem 0.8rem;
  color: var(--paper);
  font-size: 0.85rem;
  font-family: var(--sans);
}
.cc-search input:focus {
  outline: none;
  border-color: var(--gold);
}
.cc-list {
  max-height: 248px;
  overflow-y: auto;
}
.cc-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.95rem;
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
  transition:
    background 0.25s,
    color 0.25s;
}
.cc-item:hover,
.cc-item.active {
  background: rgba(198, 161, 91, 0.1);
  color: var(--paper);
}
.cc-item .flag {
  font-size: 1.15rem;
}
.cc-item .nm {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cc-item .dl {
  color: var(--gold);
  font-size: 0.78rem;
}
.cc-item.pin {
  border-left: 2px solid var(--gold);
}
.cc-divider {
  padding: 0.45rem 0.95rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  background: rgba(255, 255, 255, 0.02);
}

/* ---------- reCAPTCHA ---------- */
.captcha-wrap {
  margin-top: 1.2rem;
}
.captcha-wrap .g-recaptcha {
  transform-origin: left top;
}
@media (max-width: 340px) {
  .captcha-wrap .g-recaptcha {
    transform: scale(0.88);
    margin-bottom: -0.5rem;
  }
}
.captcha-err {
  font-size: 0.68rem;
  color: #d9755f;
  letter-spacing: 0.03em;
  margin-top: 0.4rem;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition:
    opacity 0.25s,
    height 0.25s;
}
.captcha-err.visible {
  opacity: 1;
  height: auto;
}

.form-actions {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.form-note {
  font-size: 0.7rem;
  color: var(--muted-2);
  letter-spacing: 0.04em;
  max-width: 30ch;
  line-height: 1.5;
}

/* success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
}
.form-success.show {
  display: flex;
  animation: fadeUp 0.7s var(--ease-out);
}
.form-success .tick {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
}
.form-success h3 {
  font-size: 1.8rem;
  font-weight: 300;
}
.form-success p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 36ch;
}
.is-submitting {
  opacity: 0.55;
  pointer-events: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--line-soft);
  padding: clamp(3.5rem, 7vw, 6rem) 0 2.2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: end;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-soft);
}
.footer-brand .mark {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
}
.footer-brand .word {
  font-family: var(--sans);
  letter-spacing: 0.4em;
  font-size: 1.05rem;
  margin-top: 0.6rem;
  font-weight: 500;
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 1.2rem;
  max-width: 46ch;
  line-height: 1.75;
}
.footer-cta {
  justify-self: end;
  text-align: right;
}
.footer-cta .small {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 1rem;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.8rem;
  flex-wrap: wrap;
}
.footer-bottom .copy {
  font-size: 0.76rem;
  color: var(--muted-2);
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex;
  gap: 1.8rem;
}
.footer-links a {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--gold);
}

/* ============================================================
   SCROLL REVEAL  (used everywhere)
   ============================================================ */
/* visible end-state is the BASE so static/print/paused renders show content;
   the hidden->visible motion plays only when .in-view is added in a live browser */
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.in-view {
  animation: revUp 0.95s var(--ease-out) both;
}
.reveal-d1.in-view {
  animation-delay: 0.12s;
}
.reveal-d2.in-view {
  animation-delay: 0.24s;
}
.reveal-d3.in-view {
  animation-delay: 0.36s;
}
.reveal-d4.in-view {
  animation-delay: 0.48s;
}
@keyframes revUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* line draw */
.rule {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ease-out);
}
.rule.in-view {
  transform: scaleX(1);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes kenburns {
  0% {
    transform: scale(1.08) translate(0, 0);
  }
  100% {
    transform: scale(1.2) translate(-1.5%, -2%);
  }
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* scroll cue */
.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.scroll-cue .word {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-cue .bar {
  width: 1px;
  height: 54px;
  background: var(--line-soft);
  position: relative;
  overflow: hidden;
}
.scroll-cue .bar::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue {
  0% {
    top: -50%;
  }
  60%,
  100% {
    top: 100%;
  }
}

/* ---------- Responsive (shared) ---------- */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .nav-enquire {
    display: none;
  }
  .burger {
    display: block;
  }
  .modal-card {
    width: 100%;
    max-height: 94vh;
    border-radius: 4px 4px 0 0;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-cta {
    justify-self: start;
    text-align: left;
  }
}
@media (max-width: 560px) {
  .phone-row {
    flex-direction: column;
    align-items: stretch;
    gap: 1.05rem;
  }
  .cc-select {
    min-width: 0;
  }
  .cc-panel {
    width: min(340px, 86vw);
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
