/* ==========================================================
   sections.css — Page-specific styles for the Propsaura homepage.
   These styles layer on top of the base design system in styles.css.
   Every rule here is scoped to a specific section or component.
   ========================================================== */

/* Lenis smooth scroll — disable native smooth so they don't conflict */
/* overflow-x hidden on BOTH html + body kills horizontal scroll on all mobile
   browsers — body alone is not enough on iOS Safari. */
html {
  scroll-behavior: auto !important;
  overflow-x: hidden;
}
.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* ----- Hero adjustments ----- */
.hero.v2 .hero-bg {
  background-image: url("../../images/hero4.png");
  filter: brightness(.45) saturate(.9);
}
.hero.v2 .display { font-size: clamp(46px, 8vw, 132px); }

/* ----- Rotating word ----- */
.word-rotator {
  display: inline-block;
  overflow: clip;
  vertical-align: top;
  height: 1lh;
  line-height: inherit;
}
.wr-track {
  display: block;
  animation: wr-slide 8s cubic-bezier(.7,.02,.2,1) infinite;
  will-change: transform;
}
.wr-word {
  display: block;
  height: 1lh;
  line-height: inherit;
  white-space: nowrap;
  overflow: hidden;
}
@keyframes wr-slide {
  0%,    25%    { transform: translateY(0); }
  33.33%, 58.33% { transform: translateY(-25%); }
  66.66%, 91.66% { transform: translateY(-50%); }
  100%          { transform: translateY(-75%); }
}
@media (prefers-reduced-motion: reduce) {
  .wr-track { animation: none; }
}
.hero.v2 .hero-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--text-on-dark-2);
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.hero.v2 .hero-eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--orange);
}

/* ----- Section: Honest Truth (the problem) ----- */
.honest {
  background: var(--ink-2);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  position: relative;
  overflow: hidden;
}
.honest::after {
  content: ""; position: absolute;
  right: -10%; top: 10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(255,87,34,.06), transparent 60%);
  pointer-events: none;
}
.honest .section-pad {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 900px) { .honest .section-pad { grid-template-columns: 1fr; } }
.honest-head .h2 { margin: 18px 0 0; }
.honest-body {
  font-family: var(--f-serif);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.35;
  color: var(--text-on-dark);
  letter-spacing: -.005em;
  max-width: 30ch;
}
.honest-body p { margin: 0 0 18px; }
.honest-body p:last-child {
  font-style: italic;
  color: var(--orange);
  border-top: 1px solid var(--ink-line);
  padding-top: 22px;
  margin-top: 26px;
}

/* ----- Section: Who we are ----- */
.who { background: var(--ink); }
.who .section-pad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
@media (max-width: 900px) { .who .section-pad { grid-template-columns: 1fr; } }
.trust-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 36px;
}
.trust-tags .tag {
  padding: 10px 16px;
  border: 1px solid var(--ink-line);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-on-dark-2);
  display: inline-flex; align-items: center; gap: 10px;
}
.trust-tags .tag::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange);
}

/* ----- Section: 5 USPs ----- */
.usps { background: var(--ink-2); border-top: 1px solid var(--ink-line); border-bottom: 1px solid var(--ink-line); }
.usps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}
@media (max-width: 900px) { .usps-grid { grid-template-columns: 1fr; } }
.usp {
  position: relative;
  background: var(--ink);
  border: 1px solid var(--ink-line);
  border-radius: 4px;
  padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color .4s, transform .5s var(--e-out);
}
.usp:hover { border-color: rgba(255,87,34,.4); transform: translateY(-4px); }
.usp.featured {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(255,87,34,.08), transparent 50%),
    var(--ink);
  border-color: rgba(255,87,34,.3);
}
.usp .n {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--orange);
  display: flex; align-items: center; gap: 14px;
}
.usp .n::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(255,87,34,.4), transparent);
}
.usp h3 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin: 0;
}
.usp h3 em { font-style: italic; color: var(--orange); }
.usp p {
  margin: 0;
  color: var(--text-on-dark-2);
  font-size: 15px;
  line-height: 1.65;
  max-width: 52ch;
}
.usp .mcta {
  margin-top: auto;
  padding-top: 8px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  transition: color .3s, gap .3s;
  align-self: flex-start;
}
.usp .mcta svg { width: 12px; height: 12px; transition: transform .3s; }
.usp .mcta:hover { color: var(--orange); gap: 16px; }
.usp .mcta:hover svg { transform: translateX(3px); }

/* ----- Section: What We Look At ----- */
.vetting { background: var(--bone); color: var(--text-on-light); }
.vetting .section-head { margin-bottom: clamp(40px, 5vw, 64px); }
.vetting .h2 { color: var(--text-on-light); }
.vetting .h2 em { color: var(--orange); }
.vetting .intro {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--text-on-light-2);
  max-width: 40ch;
}
.vetting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(20,19,15,.12);
}
@media (max-width: 700px) { .vetting-grid { grid-template-columns: 1fr; } }
.vetting-item {
  display: grid;
  grid-template-columns: 44px 1fr 32px;
  gap: 20px;
  align-items: center;
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid rgba(20,19,15,.12);
  transition: padding .4s var(--e-out), background .3s;
}
.vetting-item:nth-child(odd) { padding-right: clamp(20px, 3vw, 48px); border-right: 1px solid rgba(20,19,15,.12); padding-left: 0; }
.vetting-item:nth-child(even) { padding-left: clamp(20px, 3vw, 48px); }
@media (max-width: 700px) {
  .vetting-item, .vetting-item:nth-child(odd), .vetting-item:nth-child(even) {
    padding: 24px 0;
    border-right: 0;
  }
}
.vetting-item:hover { background: rgba(255,87,34,.04); }
.vetting-item .ic {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(20,19,15,.18);
  display: grid; place-items: center;
  color: var(--orange);
  flex-shrink: 0;
}
.vetting-item .ic svg { width: 18px; height: 18px; }
.vetting-item h4 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.2;
  letter-spacing: -.005em;
  margin: 0;
  color: var(--text-on-light);
}
.vetting-item .num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--text-on-light-2);
}
.vetting-closing {
  margin-top: clamp(48px, 5vw, 72px);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.25;
  color: var(--text-on-light);
  max-width: 36ch;
}
.vetting-closing em { color: var(--orange); font-style: italic; }

/* ----- Section: After the Booking ----- */
.after { background: var(--ink); position: relative; overflow: hidden; }
.after::before {
  content: ""; position: absolute; top: 0; right: 5%;
  width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--ink-line) 20%, var(--ink-line) 80%, transparent);
}
.after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}
@media (max-width: 700px) { .after-grid { grid-template-columns: 1fr; } }
.stage {
  padding: clamp(24px, 2.4vw, 36px);
  border: 1px solid var(--ink-line);
  border-radius: 4px;
  background: var(--ink-2);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  transition: border-color .4s, transform .5s var(--e-out);
}
.stage:hover { border-color: rgba(255,87,34,.35); transform: translateY(-3px); }
.stage .num {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  color: var(--orange);
  min-width: 56px;
}
.stage h4 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  margin: 0 0 8px;
  line-height: 1.15;
  letter-spacing: -.005em;
}
.stage p {
  margin: 0;
  color: var(--text-on-dark-2);
  font-size: 14px;
  line-height: 1.6;
}
.after-closing {
  margin-top: clamp(48px, 5vw, 72px);
  display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--ink-line);
}
.after-closing .line {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.25;
  color: var(--text-on-dark);
  max-width: 36ch;
}
.after-closing .line em { color: var(--orange); }

/* ----- Testimonial ribbon ----- */
.voices {
  background: #f7f3ee;
  border-top: 1px solid rgba(20,19,15,.1);
  border-bottom: 1px solid rgba(20,19,15,.1);
  padding: clamp(80px, 10vw, 140px) 0 clamp(64px, 8vw, 100px);
}
.voices .v-head {
  max-width: var(--max);
  margin: 0 auto clamp(48px, 6vw, 80px);
  padding: 0 var(--pad-x);
}
.voices .v-head .eyebrow { display: inline-flex; color: var(--text-on-light-2); }
.voices .v-head .h2 { margin-top: 16px; color: var(--text-on-light); }
.voices-ribbon-outer {
  overflow: hidden;
  position: relative;
}
.voices-ribbon-outer::before,
.voices-ribbon-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(60px, 8vw, 140px);
  z-index: 2;
  pointer-events: none;
}
.voices-ribbon-outer::before { left: 0; background: linear-gradient(to right, #f7f3ee, transparent); }
.voices-ribbon-outer::after  { right: 0; background: linear-gradient(to left,  #f7f3ee, transparent); }
.voices-ribbon-track {
  display: flex;
  gap: 20px;
  padding: 12px var(--pad-x) 16px;
  width: max-content;
  animation: ribbon-scroll 42s linear infinite;
}
.voices-ribbon-track:hover { animation-play-state: paused; }
@keyframes ribbon-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.voices-hint {
  text-align: center;
  margin-top: clamp(28px, 3vw, 40px);
  padding: 0 var(--pad-x);
}
.voices-hint span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #b09880;
}
.voices-hint span::before,
.voices-hint span::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: rgba(20,19,15,.15);
}
.vcard {
  background: #fff;
  border: 1px solid #e4dbd0;
  border-radius: 16px;
  padding: clamp(24px, 2.5vw, 36px) clamp(22px, 2vw, 32px);
  width: clamp(300px, 26vw, 380px);
  flex-shrink: 0;
  display: flex; flex-direction: column; gap: 18px;
  transition: box-shadow .35s, border-color .35s, transform .35s var(--e-out);
  cursor: default;
}
.vcard:hover {
  box-shadow: 0 12px 40px rgba(255,87,34,.09), 0 2px 10px rgba(0,0,0,.05);
  border-color: rgba(255,87,34,.3);
  transform: translateY(-4px);
}
.vcard .vstars { color: var(--orange); font-size: 11px; letter-spacing: 4px; }
.vcard .vq {
  font-family: var(--f-serif);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.65;
  color: #4a3f35;
  font-style: italic;
  flex: 1;
}
.vcard .vq em { color: var(--orange); font-style: italic; }
.vcard .vwho {
  border-top: 1px solid #ede6dc;
  padding-top: 16px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
}
.vcard .vwho b { font-weight: 600; font-size: 13px; color: #1a1614; display: block; margin-bottom: 4px; }
.vcard .vwho .det { font-family: var(--f-mono); font-size: 10px; letter-spacing: .06em; color: #a09080; }

/* ----- Developer Partners section ----- */
.builders { background: var(--ink); }
.builders .section-pad {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
@media (max-width: 900px) { .builders .section-pad { grid-template-columns: 1fr; } }
.builders-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-line);
}
.builders-list .b {
  padding: 22px 0;
  border-bottom: 1px solid var(--ink-line);
  display: flex; align-items: center; justify-content: space-between;
  transition: padding .3s, color .3s;
}
.builders-list .b:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--ink-line); }
.builders-list .b:nth-child(even) { padding-left: 24px; }
.builders-list .b:hover { padding-left: 8px; }
.builders-list .b:nth-child(odd):hover { padding-left: 0; padding-right: 16px; }
.builders-list .b .name {
  font-family: var(--f-serif);
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -.01em;
  color: var(--text-on-dark);
}
.builders-list .b .meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-on-dark-3);
}

/* ----- RERA band ----- */
.rera-band {
  background: var(--ink-2);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  padding: 28px var(--pad-x);
  text-align: center;
}
.rera-band .inner {
  max-width: var(--max);
  margin: 0 auto;
  display: inline-flex; align-items: center; gap: 18px;
  flex-wrap: wrap; justify-content: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-on-dark-2);
}
.rera-band .seal {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--orange);
  border-radius: 100px;
  color: var(--orange);
  background: rgba(255,87,34,.06);
}
.rera-band .seal::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255,87,34,.5);
  animation: pulse 2.4s var(--e-out) infinite;
}
.rera-band .sep::before { content: "·"; opacity: .4; margin-right: 12px; }

/* ----- Featured properties section override ----- */
.featured-line {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--text-on-dark-2);
  margin-top: 24px;
}
.featured-line em { color: var(--orange); }

/* ----- Form aside checklist ----- */
.form-checklist { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.form-checklist li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 14px;
  color: var(--text-on-light);
  line-height: 1.5;
}
.form-checklist li::before {
  content: "";
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--orange);
  clip-path: polygon(20% 50%, 40% 70%, 80% 25%, 90% 35%, 40% 90%, 10% 60%);
}
.privacy-line {
  margin-top: 18px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-on-light-2);
  display: inline-flex; align-items: center; gap: 10px;
}
.privacy-line::before {
  content: ""; width: 16px; height: 1px; background: var(--orange);
}
.privacy-line em { font-style: italic; color: var(--orange); }

/* ----- Primary button text override ----- */
.btn-primary { color: #ffffff; }
.btn-primary .arrow { background: rgba(255,255,255,.2); color: #ffffff; }

/* =========================================================
   LIGHT ZONE — Portfolio onwards
   ========================================================= */

/* Featured Properties (ftr) — light theme, 2-col card grid */
.ftr { background: var(--bone); color: var(--text-on-light); }
.ftr .section-head .eyebrow { color: var(--text-on-light-2); }
.ftr .h2 { color: var(--text-on-light); }
.ftr-line {
  font-family: var(--f-serif);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.4;
  color: var(--text-on-light-2);
  margin: 14px 0 0;
}
.ftr-line em { font-style: italic; color: var(--orange); }
.ftr .mcta { color: var(--text-on-light) !important; }

/* Location filters */
.prop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: clamp(32px, 4vw, 52px) 0 clamp(28px, 3vw, 40px);
}
.prop-filters .f-chip {
  padding: 10px 22px;
  border: 1px solid rgba(20,19,15,.2);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-on-light);
  background: transparent;
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s;
}
.prop-filters .f-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-on-light-2);
  display: flex;
  align-items: center;
  padding-right: 6px;
  margin-right: 4px;
  border-right: 1px solid rgba(20,19,15,.15);
}
.prop-filters .f-chip:hover { border-color: var(--ink); }
.prop-filters .f-chip.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bone);
}

/* Card hide/show for filtering */
.card[data-loc].hidden { display: none; }

.ftr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 36px);
}
@media (max-width: 760px) { .ftr-grid { grid-template-columns: 1fr; } }

.card { position: relative; }
.card:not(.enquiry) .card-go {
  position: relative; z-index: 1;
}
.card:not(.enquiry)::after {
  content: ''; position: absolute; inset: 0;
  cursor: pointer; z-index: 0;
}
.card {
  display: flex; flex-direction: column;
  background: #FBF8F2;
  border: 1px solid var(--bone-3);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .6s var(--e-out), border-color .4s var(--e-out), box-shadow .5s var(--e-out);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,87,34,.45);
  box-shadow: 0 24px 60px -28px rgba(20,19,15,.28);
}
.card-media {
  position: relative; aspect-ratio: 16 / 10;
  overflow: hidden; background: var(--bone-2);
}
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--e-out);
}
.card:hover .card-media img { transform: scale(1.04); }
.pill {
  position: absolute; top: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: rgba(10,10,11,.82);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  font-family: var(--f-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--bone); white-space: nowrap;
}
.pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255,87,34,.6);
  animation: pill-pulse 2.4s var(--e-out) infinite;
}
.pill.gold .dot { background: var(--gold); animation: none; box-shadow: none; }
@keyframes pill-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,87,34,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(255,87,34,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,87,34,0); }
}
.card-body {
  display: flex; flex-direction: column; flex: 1;
  padding: clamp(22px, 1.8vw, 30px) clamp(22px, 1.8vw, 30px) clamp(20px, 1.6vw, 26px);
  background: #FBF8F2;
  transition: background .45s var(--e-out);
}
.card-title {
  font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(25px, 2.1vw, 34px);
  line-height: 1.05; letter-spacing: -.01em;
  color: var(--text-on-light); margin: 0;
  transition: color .45s var(--e-out);
}
.card-sub {
  display: flex; flex-wrap: wrap; align-items: center;
  margin-top: 12px;
  font-family: var(--f-mono); font-size: 11.5px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-on-light-2); line-height: 1.5;
  transition: color .45s var(--e-out);
}
.card-sub span:not(:first-child)::before { content: "·"; margin: 0 9px; opacity: .55; }
.card-rule {
  height: 1px; background: var(--bone-3);
  margin: clamp(18px, 1.6vw, 24px) 0 clamp(16px, 1.4vw, 20px);
  transition: background .45s var(--e-out);
}
.card-foot {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-top: auto; gap: 16px;
}
.card-from {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-on-light-2); margin-bottom: 8px;
  transition: color .45s var(--e-out);
}
.card-price {
  font-family: var(--f-serif); font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1; color: var(--text-on-light);
  display: flex; align-items: baseline; gap: .12em;
  transition: color .45s var(--e-out);
}
.card-price .cur { color: var(--orange); font-size: .82em; transition: color .45s var(--e-out); }
.card-price .amt { color: var(--orange); font-style: italic; transition: color .45s var(--e-out); }
.card-price .unit { color: var(--text-on-light); font-size: .68em; margin-left: .14em; transition: color .45s var(--e-out); }
.card-go {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--bone-3);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-on-light);
  transition: background .35s var(--e-out), border-color .35s var(--e-out), color .35s var(--e-out), transform .35s var(--e-out);
}
.card-go svg { width: 16px; height: 16px; }

/* Hover: info panel fills orange, text inverts */
.card:not(.enquiry):hover .card-body { background: var(--orange); }
.card:not(.enquiry):hover .card-title { color: #fff; }
.card:not(.enquiry):hover .card-sub { color: rgba(255,255,255,.82); }
.card:not(.enquiry):hover .card-rule { background: rgba(255,255,255,.32); }
.card:not(.enquiry):hover .card-from { color: rgba(255,255,255,.82); }
.card:not(.enquiry):hover .card-price,
.card:not(.enquiry):hover .card-price .cur,
.card:not(.enquiry):hover .card-price .amt,
.card:not(.enquiry):hover .card-price .unit { color: #fff; }
.card:not(.enquiry):hover .card-go {
  background: #fff; border-color: #fff;
  color: var(--orange); transform: translateX(2px);
}

/* 10th card — enquiry CTA */
.card.enquiry {
  position: relative; border: none;
  background: radial-gradient(130% 130% at 92% 100%, #FFD4B5 0%, var(--ember) 34%, #FF9060 72%, var(--orange-soft) 100%);
  box-shadow: 0 26px 64px -32px rgba(255,181,146,.55);
  justify-content: space-between;
  gap: clamp(28px, 3vw, 44px);
  padding: clamp(34px, 3.2vw, 52px);
  min-height: 260px; overflow: hidden;
  transition: transform .6s var(--e-out), box-shadow .5s var(--e-out);
}
.card.enquiry::after {
  content: "\201D"; position: absolute;
  top: clamp(-28px, -1vw, -10px); right: 18px;
  font-family: var(--f-serif); font-size: clamp(150px, 16vw, 230px);
  line-height: 1; color: rgba(255,255,255,.16);
  pointer-events: none; z-index: 1;
}
.card.enquiry:hover { transform: translateY(-4px); box-shadow: 0 36px 80px -34px rgba(255,181,146,.65); }
.eq-aura {
  position: absolute;
  right: clamp(-46px, -2.4vw, -24px); bottom: clamp(-46px, -2.4vw, -24px);
  width: clamp(160px, 16vw, 220px); aspect-ratio: 1; pointer-events: none;
}
.eq-aura span {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(255,241,234,.5);
  transform: scale(.35); opacity: 0;
  animation: aura 5s var(--e-out) infinite;
}
.eq-aura span:nth-child(2) { animation-delay: 1.66s; }
.eq-aura span:nth-child(3) { animation-delay: 3.33s; }
@keyframes aura {
  0%   { transform: scale(.35); opacity: 0; }
  18%  { opacity: .6; }
  100% { transform: scale(1.18); opacity: 0; }
}
.eq-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(58% 48% at 78% 12%, rgba(255,247,240,.32), transparent 62%);
  mix-blend-mode: screen;
  animation: eqDrift 10s var(--e-in-out) infinite alternate;
}
@keyframes eqDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-16px, 12px) scale(1.06); }
}
.enquiry .eq-top {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: clamp(18px, 1.8vw, 26px);
}
.enquiry .eq-eyebrow {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,241,234,.9);
  display: inline-flex; align-items: center; gap: 10px;
}
.enquiry .eq-eyebrow::before { content: ""; width: 24px; height: 1px; background: rgba(255,241,234,.75); }
.enquiry .eq-text {
  font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(26px, 2.3vw, 37px);
  line-height: 1.14; letter-spacing: -.01em;
  color: #fff; margin: 0; max-width: 20ch; text-wrap: pretty;
}
.enquiry .eq-text em { font-style: italic; color: #1a0a02; }
.enquiry .eq-link {
  position: relative; z-index: 2; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 13px 15px 13px 24px;
  background: var(--bone); color: #1a0a02; border-radius: 100px;
  font-family: var(--f-mono); font-size: 12px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; white-space: nowrap;
  box-shadow: 0 14px 34px -12px rgba(26,10,2,.55);
  transition: background .3s var(--e-out), transform .3s var(--e-out), box-shadow .3s var(--e-out);
}
.enquiry .eq-link:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 20px 48px -14px rgba(26,10,2,.6); }
.enquiry .eq-link:active { transform: translateY(0); }
.enquiry .eq-link .eq-go {
  width: 30px; height: 30px; border-radius: 50%;
  background: #1a0a02; color: var(--orange);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .3s var(--e-out);
}
.enquiry .eq-link .eq-go svg { width: 14px; height: 14px; }
.enquiry .eq-link:hover .eq-go { transform: translateX(3px); }
@media (prefers-reduced-motion: reduce) {
  .card-media img, .card, .card-go { transition: none !important; }
  .eq-aura span, .eq-glow { animation: none !important; }
  .eq-aura span:first-child { opacity: .4; transform: scale(.9); }
}

/* Featured Properties — closing bar */
.ftr-closing {
  margin-top: clamp(48px, 5vw, 72px);
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap;
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid rgba(20,19,15,.12);
}
.ftr-closing-line {
  font-family: var(--f-serif); font-style: italic;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.3; color: var(--text-on-light); margin: 0;
}
.ftr-closing-line em { color: var(--orange); font-style: italic; }

/* Featured Properties — secondary CTA */
.ftr-cta-secondary {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 16px 20px 16px 32px;
  border: 1px solid var(--orange);
  border-radius: 100px;
  color: var(--orange);
  font-family: var(--f-mono); font-size: 11px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  background: transparent;
  transition: background .4s var(--e-out), color .4s var(--e-out), box-shadow .4s var(--e-out), transform .4s var(--e-out);
}
.ftr-cta-secondary:hover {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 16px 44px -14px rgba(255,87,34,.4);
  transform: translateY(-2px);
}
.ftr-cta-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,87,34,.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--orange);
  transition: background .4s var(--e-out), color .4s var(--e-out), transform .4s var(--e-out);
}
.ftr-cta-arrow svg { width: 12px; height: 12px; }
.ftr-cta-secondary:hover .ftr-cta-arrow {
  background: rgba(255,255,255,.22);
  color: #fff;
  transform: translateX(3px);
}

/* After the Booking — light theme overrides */
.after { background: var(--bone-2); }
.after::before { background: linear-gradient(180deg, transparent, rgba(20,19,15,.07) 20%, rgba(20,19,15,.07) 80%, transparent); }
.after .eyebrow { color: var(--text-on-light-2); }
.after .h2 { color: var(--text-on-light); }
.after .lede { color: var(--text-on-light-2); }
.stage { background: var(--bone); border-color: rgba(20,19,15,.1); }
.stage h4 { color: var(--text-on-light); }
.stage p { color: var(--text-on-light-2); }
.after-closing { border-top-color: rgba(20,19,15,.12); }
.after-closing .line { color: var(--text-on-light); }

/* Developer Partners — light theme overrides */
.builders { background: var(--bone-2); }
.builders .eyebrow { color: var(--text-on-light-2); }
.builders .h2 { color: var(--text-on-light); }
.builders .lede { color: var(--text-on-light-2); }
.builders-list { border-top-color: rgba(20,19,15,.12); }
.builders-list .b { border-bottom-color: rgba(20,19,15,.12); }
.builders-list .b:nth-child(odd) { border-right-color: rgba(20,19,15,.12); }
.builders-list .b .name { color: var(--text-on-light); }
.builders-list .b .meta { color: var(--text-on-light-2); }

/* RERA Band — light theme overrides */
.rera-band { background: var(--bone-3); border-top-color: rgba(20,19,15,.1); border-bottom-color: rgba(20,19,15,.1); }
.rera-band .inner { color: var(--text-on-light-2); }

/* ----- Advantage section — horizontal card rail ----- */
.advantage {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: #0d0c0a;
  position: relative;
  overflow: hidden;
}

/* Ambient left glow */
.advantage::before {
  content: "";
  position: absolute;
  left: -10%; top: 35%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(255,87,34,.055) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

/* Ghost background word removed */
.advantage::after { content: none; }

.adv-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(56px, 8vh, 104px) 0;
}

.adv-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(40px, 5.5vh, 68px);
}

.adv-head .eyebrow { margin-bottom: 20px; }

.adv-title {
  font-family: var(--f-serif);
  font-weight: 400;
  letter-spacing: -.028em;
  line-height: 0.94;
  font-size: clamp(42px, 5.2vw, 84px);
  margin: 0;
  color: #f2ede4;
}
.adv-title em { font-style: italic; color: var(--orange); }

.adv-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

.adv-hint {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.26);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.adv-hint .dash { width: 22px; height: 1px; background: rgba(255,255,255,0.13); }

.adv-arrows { display: flex; gap: 10px; }
.adv-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.11);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  background: rgba(255,255,255,0.04);
  transition: background .25s var(--e-out), border-color .25s, color .25s, transform .2s var(--e-out);
}
.adv-arrow svg { width: 16px; height: 16px; }
.adv-arrow:hover { border-color: var(--orange); background: var(--orange); color: #1a0a02; transform: scale(1.08); }
.adv-arrow:active { transform: scale(0.95); }
.adv-arrow:disabled { opacity: .22; cursor: default; }
.adv-arrow:disabled:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.11); color: rgba(255,255,255,0.55); transform: none; }

@media (max-width: 700px) { .adv-arrows { display: none; } .adv-controls { align-items: flex-start; } }

.adv-rail {
  display: flex;
  gap: clamp(14px, 1.4vw, 20px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 12px var(--pad-x) 40px;
  scroll-padding-left: var(--pad-x);
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.adv-rail::-webkit-scrollbar { display: none; }
.adv-rail.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.rail-gutter { flex: 0 0 max(0px, calc((100vw - var(--max)) / 2)); }

/* Cards */
.acard {
  flex: 0 0 clamp(300px, 25vw, 384px);
  scroll-snap-align: start;
  background: rgba(255,255,255,0.032);
  border: 1px solid rgba(255,255,255,0.065);
  border-radius: 2px;
  padding: clamp(28px, 2.2vw, 40px);
  display: flex;
  flex-direction: column;
  min-height: clamp(440px, 58vh, 560px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .5s var(--e-out), border-color .4s, background .4s;
}

/* Left accent line — slides in on hover */
.acard::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .45s var(--e-out);
  z-index: 2;
}

/* Top-right corner glow */
.acard::after {
  content: "";
  position: absolute;
  right: -24px; top: -24px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,87,34,.13), transparent 65%);
  opacity: 0;
  transition: opacity .5s var(--e-out);
  pointer-events: none;
}

.acard:hover {
  transform: translateY(-8px);
  border-color: rgba(255,87,34,.28);
  background: rgba(255,255,255,0.052);
}
.acard:hover::before { transform: scaleY(1); }
.acard:hover::after  { opacity: 1; }

/* Ghost number — top-left */
.acard-ghost {
  display: block;
  font-family: var(--f-serif);
  font-size: clamp(80px, 8.5vw, 130px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -.05em;
  user-select: none;
  position: relative;
  z-index: 1;
  margin-bottom: clamp(16px, 2vh, 24px);
  background: linear-gradient(135deg, rgba(255,87,34,0.55) 0%, rgba(255,87,34,0.12) 60%, rgba(255,255,255,0.06) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background .45s var(--e-out), opacity .45s var(--e-out);
}
.acard:hover .acard-ghost {
  background: linear-gradient(135deg, rgba(255,87,34,0.85) 0%, rgba(255,87,34,0.3) 55%, rgba(255,255,255,0.1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.acard-title {
  font-family: var(--f-serif);
  font-weight: 400;
  letter-spacing: -.018em;
  line-height: 1.06;
  font-size: clamp(26px, 2vw, 34px);
  color: #f0ece4;
  margin: clamp(28px, 3.8vh, 46px) 0 0;
  text-wrap: pretty;
  position: relative;
  z-index: 1;
}
.acard-title em { font-style: italic; color: var(--orange); }

.acard-desc {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: clamp(13.5px, 0.95vw, 15px);
  line-height: 1.68;
  color: rgba(255,255,255,0.38);
  margin: 14px 0 0;
  position: relative;
  z-index: 1;
}

.acard-spacer { flex: 1 1 auto; min-height: 24px; }

.acard-foot {
  border-top: 1px solid rgba(255,255,255,0.065);
  padding-top: clamp(18px, 2.2vh, 26px);
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.foot-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.foot-row .mk {
  width: 20px; height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid; place-items: center;
}

.foot-row.offer { color: #f0ece4; }
.foot-row.offer .mk { background: var(--orange); color: #1a0a02; }
.foot-row.offer .mk svg { width: 9px; height: 9px; }
.foot-row.reject { color: rgba(255,255,255,0.2); }
.foot-row.reject .mk { border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.2); }
.foot-row.reject .mk svg { width: 8px; height: 8px; }
.foot-row.reject .txt { text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.16); }

/* Progress bar */
.adv-progress {
  max-width: var(--max);
  margin: 8px auto 0;
  padding: 0 var(--pad-x);
}
.adv-progress-track {
  height: 1px;
  background: rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.adv-progress-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 30%;
  background: var(--orange);
  border-radius: 2px;
  transition: transform .15s linear, width .2s var(--e-out);
  transform-origin: left;
}

@keyframes acardIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.advantage.js.lit .acard { animation: acardIn .9s var(--e-out) forwards; }
.advantage.js.lit .acard:nth-child(2) { animation-delay: .05s; }
.advantage.js.lit .acard:nth-child(3) { animation-delay: .13s; }
.advantage.js.lit .acard:nth-child(4) { animation-delay: .21s; }
.advantage.js.lit .acard:nth-child(5) { animation-delay: .29s; }
.advantage.js.lit .acard:nth-child(6) { animation-delay: .37s; }
@media (prefers-reduced-motion: reduce) {
  .advantage.js.lit .acard { animation: none; }
  .adv-rail { scroll-behavior: auto; }
}
@media (max-height: 720px) and (min-width: 901px) {
  .acard { min-height: clamp(380px, 52vh, 480px); }
  .acard-title { font-size: clamp(24px, 1.8vw, 30px); }
}

/* ----- Property enquiry modal ----- */
.pmodal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(20,19,15,.6);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--e-out);
}
.pmodal-overlay.open {
  opacity: 1; pointer-events: all;
}
.pmodal-box {
  background: var(--bone);
  border-radius: 4px;
  width: 100%; max-width: 680px;
  max-height: 90vh; overflow-y: auto;
  padding: clamp(28px, 5vw, 52px);
  position: relative;
  transform: translateY(24px);
  transition: transform .4s var(--e-out);
}
.pmodal-overlay.open .pmodal-box {
  transform: translateY(0);
}
.pmodal-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(20,19,15,.18);
  background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-on-light); transition: background .2s, border-color .2s;
}
.pmodal-close:hover { background: rgba(20,19,15,.08); border-color: rgba(20,19,15,.35); }
.pmodal-close svg { width: 14px; height: 14px; }
.pmodal-header { margin-bottom: 32px; }
.pmodal-header .eyebrow { color: var(--orange); }
.pmodal-title { font-family: var(--f-serif); font-size: clamp(22px, 3vw, 32px); margin: 10px 0 8px; color: var(--text-on-light); line-height: 1.2; }
.pmodal-title em { color: var(--orange); font-style: italic; }
.pmodal-sub { font-family: var(--f-sans); font-size: 14px; color: var(--text-on-light-2); margin: 0; }
.pmodal-form { display: grid; gap: 18px; }
.pmodal-form .field input,
.pmodal-form .field select,
.pmodal-form .field textarea { color: var(--text-on-light); }


/* ==========================================================
   ABOUT US PAGE — Design-taste-frontend redesign
   DESIGN_VARIANCE: 8 | MOTION_INTENSITY: 6 | VISUAL_DENSITY: 4
   All styles scoped to .abt-* to avoid conflict with homepage.
   ========================================================== */

/* Active nav link on about page */
.nav-active {
  color: var(--orange) !important;
}

/* ----- Hero — editorial single column with background watermark ----- */
.abt-hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--bone);
  position: relative;
  overflow: hidden;
}
.abt-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 100% 60%, rgba(255,87,34,.045), transparent),
    radial-gradient(ellipse 40% 50% at 5% 90%, rgba(255,87,34,.03), transparent);
  pointer-events: none;
}
/* "8" as large background watermark — present but textural, never competing */
.abt-hero::after {
  content: "8";
  position: absolute;
  right: -4%;
  bottom: -8%;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(320px, 45vw, 680px);
  font-weight: 400;
  line-height: 1;
  color: rgba(20,19,15,0.038);
  letter-spacing: -.06em;
  pointer-events: none;
  user-select: none;
}

.abt-hero-inner {
  position: relative;
  z-index: 1;
  /* Wide enough for "The foundation isn't." at 8vw to sit on one line */
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100dvh;
}

.abt-hero-title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(52px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -.03em;
  color: var(--ink);
  margin: 14px 0 0;
}
.abt-hero-title em { font-style: italic; color: var(--orange); }
.abt-hero-sub {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.68;
  color: var(--text-on-light-2);
  /* Sub-text stays narrow for readability even though container is wide */
  max-width: 58ch;
  margin: clamp(14px, 1.8vh, 22px) 0 clamp(16px, 2vh, 26px);
}

/* Bottom row: CTA + inline "8 years" badge */
.abt-hero-foot {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
}
.abt-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(20,19,15,.14);
  border-radius: 100px;
}
.abt-hero-tag-n {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  line-height: 1;
}
.abt-hero-tag-l {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-on-light-2);
  white-space: nowrap;
}

/* ----- Legacy (Destifine) ----- */
.abt-legacy {
  background: var(--bone);
  padding: clamp(80px, 10vh, 130px) 0;
}
.abt-legacy-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* Stats — editorial grid, no card box */
.abt-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: clamp(64px, 9vh, 100px);
  border-top: 1px solid rgba(20,19,15,.1);
  padding-top: clamp(32px, 4vh, 48px);
}
.abt-stat {
  padding: 0 clamp(16px, 2.5vw, 40px);
  border-right: 1px solid rgba(20,19,15,.1);
}
.abt-stat:first-child { padding-left: 0; }
.abt-stat:last-child  { border-right: none; }

@media (max-width: 680px) {
  .abt-stats {
    grid-template-columns: 1fr 1fr;
    padding-top: 24px;
    margin-bottom: 52px;
  }
  /* Strip desktop borders; rebuild with a single cross of dividers */
  .abt-stat {
    padding: 0 0 clamp(28px, 6vw, 40px) 0 !important;
    border-right: none !important;
  }
  /* Single vertical divider — right-column items only */
  .abt-stat:nth-child(even) {
    padding-left: clamp(20px, 5vw, 32px) !important;
    border-left: 1px solid rgba(20,19,15,.1);
  }
  /* Single horizontal divider — second row only */
  .abt-stat:nth-child(n+3) {
    border-top: 1px solid rgba(20,19,15,.1);
    padding-top: clamp(28px, 6vw, 40px) !important;
  }
  /* Larger numbers on small screens */
  .abt-stat-n { font-size: clamp(38px, 10vw, 52px); }
}
/* Hide old flex dividers — grid handles separation */
.abt-stat-div { display: none; }

/* Featured stat — highlighted with orange number */
.abt-stat--featured .abt-stat-n { color: var(--orange); }

.abt-stat-n {
  display: block;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(30px, 3.2vw, 50px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1;
}
.abt-stat-l {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-on-light-2);
  margin-top: 14px;
  line-height: 1.65;
}
.abt-stat-sub {
  display: block;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-on-light-2);
  opacity: 0.7;
  margin-top: 2px;
}

/* Founder block */
.abt-founder {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 860px) { .abt-founder { grid-template-columns: 1fr; } }

.abt-founder-img {
  position: sticky;
  top: 100px;
}
.abt-founder-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 2px;
}
.abt-founder-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--bone-2) 0%, var(--bone-3) 100%);
  border: 1px solid rgba(20,19,15,.08);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-mono);
  position: relative;
  overflow: hidden;
}
/* Decorative ghost letter in placeholder */
.abt-founder-placeholder::before {
  content: "S";
  position: absolute;
  bottom: -8%;
  right: -4%;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(120px, 16vw, 200px);
  color: rgba(20,19,15,.055);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.abt-founder-placeholder span {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-on-light-3);
  position: relative; z-index: 1;
}
.abt-founder-placeholder em {
  font-style: normal;
  font-family: var(--f-serif);
  font-size: 18px;
  color: var(--text-on-light-2);
  position: relative; z-index: 1;
}
.abt-founder-text { padding-top: 8px; }
.abt-founder-text .eyebrow { margin-bottom: 20px; }
.abt-founder-text h2 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 clamp(20px, 2.5vh, 32px);
}
.abt-founder-text p {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: clamp(15px, 1vw, 16.5px);
  line-height: 1.72;
  color: var(--text-on-light-2);
  margin: 0 0 18px;
  max-width: 58ch;
}

/* ----- New Chapter — with editorial opening mark ----- */
.abt-chapter {
  background: #fff;
  padding: clamp(80px, 10vh, 130px) 0;
  border-top: 1px solid rgba(20,19,15,.07);
  border-bottom: 1px solid rgba(20,19,15,.07);
  position: relative;
  overflow: hidden;
}
/* Large ghost opening quote mark */
.abt-chapter::before {
  content: "\201C";
  position: absolute;
  left: calc(var(--pad-x) - 16px);
  top: clamp(20px, 4vh, 48px);
  font-family: var(--f-serif);
  font-size: clamp(120px, 18vw, 240px);
  line-height: 1;
  color: rgba(255,87,34,.07);
  pointer-events: none;
  user-select: none;
}
.abt-chapter-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 1;
}
.abt-chapter-inner .eyebrow { margin-bottom: 20px; }
.abt-chapter-title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(32px, 3.8vw, 60px);
  line-height: 1.04;
  letter-spacing: -.025em;
  color: var(--ink);
  margin: 0 0 clamp(36px, 5vh, 60px);
}
.abt-chapter-title em { font-style: italic; color: var(--orange); }
.abt-chapter-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  max-width: 1000px;
}
@media (max-width: 700px) { .abt-chapter-cols { grid-template-columns: 1fr; } }
.abt-chapter-cols p {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: clamp(15px, 1vw, 16.5px);
  line-height: 1.75;
  color: var(--text-on-light-2);
  margin: 0;
}

/* ----- How We Work — Vertical process list (no equal card grid) ----- */
.abt-how {
  background: var(--bone);
  padding: clamp(80px, 10vh, 130px) 0;
}
.abt-how-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.abt-how-inner .eyebrow { margin-bottom: 20px; }
.abt-how-inner > h2 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--ink);
  margin: 0 0 clamp(40px, 6vh, 72px);
}
.abt-how-inner > h2 em { font-style: italic; color: var(--orange); }

/* Vertical numbered list */
.abt-process-list {
  border-top: 1px solid rgba(20,19,15,.1);
}
.abt-process-row {
  display: grid;
  grid-template-columns: clamp(64px, 8vw, 110px) 1fr;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(36px, 5vh, 60px) 0;
  border-bottom: 1px solid rgba(20,19,15,.1);
  align-items: start;
  transition: padding-left .45s var(--e-out);
}
.abt-process-row:hover { padding-left: clamp(8px, 1vw, 16px); }
@media (max-width: 600px) {
  .abt-process-row { grid-template-columns: 1fr; gap: 16px; }
}
.abt-process-n {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--orange);
  opacity: 0.55;
  padding-top: 2px;
  transition: opacity .4s var(--e-out);
  user-select: none;
}
.abt-process-row:hover .abt-process-n { opacity: 1; }
.abt-process-content h3 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 16px;
}
.abt-process-content p {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: clamp(14.5px, 1vw, 16px);
  line-height: 1.72;
  color: var(--text-on-light-2);
  margin: 0;
  max-width: 62ch;
}

/* ----- Video ----- */
.abt-video {
  background: var(--bone);
  padding: clamp(80px, 10vh, 120px) 0;
  border-top: 1px solid rgba(20,19,15,.07);
}
.abt-video-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.abt-video-inner .eyebrow { margin-bottom: 20px; }
.abt-video-inner > h2 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.06;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 clamp(36px, 5vh, 56px);
}
.abt-video-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 2px;
  overflow: hidden;
  background: var(--bone-2);
  border: 1px solid rgba(20,19,15,.1);
  position: relative;
}
.abt-video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.abt-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 320px;
  position: relative;
}
/* Decorative ghost play mark */
.abt-video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,87,34,.04), transparent);
  pointer-events: none;
}
.abt-play-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(20,19,15,.15);
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--text-on-light-2);
  position: relative; z-index: 1;
  transition: border-color .35s var(--e-out), color .35s, transform .4s var(--e-out), box-shadow .4s;
  cursor: default;
}
.abt-play-icon:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: scale(1.08);
  box-shadow: 0 16px 40px -10px rgba(255,87,34,.18);
}
.abt-play-icon svg { width: 28px; height: 28px; }
.abt-video-placeholder p {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-on-light-3);
  margin: 0;
  position: relative; z-index: 1;
}

/* ----- Team ----- */
.abt-team {
  background: var(--bone);
  padding: clamp(80px, 10vh, 130px) 0;
  border-top: 1px solid rgba(20,19,15,.07);
}
.abt-team-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.abt-team-inner .eyebrow { margin-bottom: 20px; }
.abt-team-inner > h2 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--ink);
  margin: 0 0 16px;
}
.abt-team-inner > h2 em { font-style: italic; color: var(--orange); }
.abt-team-sub {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: clamp(15px, 1vw, 16.5px);
  line-height: 1.7;
  color: var(--text-on-light-2);
  max-width: 60ch;
  margin: 0 0 clamp(48px, 7vh, 72px);
}
/* ── Team grid: flexbox so row-2's 3 cards self-centre ── */
.abt-team-grid {
  --_gap: clamp(10px, 1.2vw, 16px);
  display: flex;
  flex-wrap: wrap;
  gap: var(--_gap);
  justify-content: center;
}

/* Each card = exactly 1/4 of the row; 4 fill row-1, 3 centre in row-2 */
.abt-person {
  flex: 0 0 calc((100% - var(--_gap) * 3) / 4);
  min-width: 0;
}

/* ── Card frame: clips zoom, hosts pseudo-elements ── */
.abt-person-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: default;
}

/* Orange accent line draws in from left on hover */
.abt-person-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}
.abt-person:hover .abt-person-frame::before { transform: scaleX(1); }

/* Permanent gradient — name always readable, deepens visually on hover */
.abt-person-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,13,9,.82) 0%,
    rgba(14,13,9,.28) 44%,
    transparent 68%
  );
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.abt-person:hover .abt-person-frame::after { opacity: 1.15; }

/* Photo */
.abt-person-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.abt-person:hover .abt-person-img { transform: scale(1.05); }

/* Name sits inside the frame, above the gradient */
.abt-person-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(14px, 1.8vw, 22px);
  z-index: 2;
}
.abt-person-name {
  display: block;
  font-family: var(--f-sans);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 500;
  letter-spacing: .01em;
  color: rgba(255,255,255,.88);
  transform: translateY(4px);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s ease;
}
.abt-person:hover .abt-person-name {
  transform: translateY(0);
  color: #fff;
}

/* ── Placeholder card (no photo yet) ── */
.abt-person-frame--empty {
  aspect-ratio: 3/4;
  background: var(--bone-2);
  border: 1px solid rgba(20,19,15,.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.abt-person-frame--empty::after  { display: none; }
.abt-person-frame--empty::before { background: rgba(20,19,15,.15); }
.abt-person-frame--empty .abt-person-name {
  color: rgba(20,19,15,.55);
  transform: none;
}
.abt-person:hover .abt-person-frame--empty .abt-person-name {
  color: var(--ink);
  transform: none;
}

/* Large italic initial as decorative background letter */
.abt-person-initial {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(72px, 8vw, 116px);
  font-weight: 400;
  color: rgba(20,19,15,.09);
  line-height: 1;
  letter-spacing: -.04em;
  user-select: none;
  pointer-events: none;
}

/* ── Responsive ── */
@media (max-width: 680px) {
  .abt-team-grid { --_gap: 10px; }
  .abt-person { flex: 0 0 calc(50% - 5px); }
}
@media (max-width: 380px) {
  .abt-person { flex: 0 0 100%; }
}

/* ----- Join Us (reserved for future use) ----- */
/* ── Open Positions ── */
.abt-careers {
  background: var(--bone);
  padding: clamp(80px, 10vh, 130px) 0;
  border-top: 1px solid rgba(20,19,15,.07);
}
.abt-careers-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}
.abt-careers-head {
  position: sticky;
  top: 120px;
}
.abt-careers-head .eyebrow { margin-bottom: 20px; }
.abt-careers-head h2 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--ink);
  margin: 0 0 clamp(20px, 3vh, 32px);
}
.abt-careers-head h2 em { font-style: italic; color: var(--orange); }
.abt-careers-head p {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: clamp(14.5px, 1vw, 16px);
  line-height: 1.72;
  color: var(--text-on-light-2);
  margin: 0;
  max-width: 38ch;
}
.abt-careers-email {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  margin-top: clamp(24px, 3vh, 36px);
  padding: clamp(16px, 2vw, 22px) clamp(20px, 2.5vw, 28px);
  background: var(--ink);
  border-radius: 2px;
  text-decoration: none;
  transition: background .3s ease, transform .4s var(--e-out);
}
.abt-careers-email:hover {
  background: var(--orange);
  transform: translateY(-2px);
}
.abt-careers-email-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.abt-careers-email-address {
  font-family: var(--f-sans);
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 500;
  letter-spacing: -.01em;
  color: #fff;
}

.abt-careers-list {
  border-top: 1px solid rgba(20,19,15,.1);
}
.abt-role-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(18px, 2.5vh, 28px) 0;
  border-bottom: 1px solid rgba(20,19,15,.1);
  text-decoration: none;
  transition: padding-left .45s var(--e-out);
}
.abt-role-row:hover { padding-left: clamp(8px, 1vw, 14px); }
.abt-role-name {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 38px);
  letter-spacing: -.02em;
  color: var(--ink);
  transition: color .3s ease;
  line-height: 1;
}
.abt-role-row:hover .abt-role-name { color: var(--orange); }
.abt-role-arrow {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(20,19,15,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  transition: transform .4s var(--e-out),
              border-color .3s ease,
              color .3s ease;
}
.abt-role-row:hover .abt-role-arrow {
  transform: translateX(5px);
  border-color: var(--orange);
  color: var(--orange);
}

@media (max-width: 768px) {
  .abt-careers-inner {
    grid-template-columns: 1fr;
    gap: clamp(36px, 5vh, 52px);
  }
  .abt-careers-head { position: static; }
  .abt-careers-head p { max-width: 100%; }
}

/* ── (reserved) ── */
.abt-join {
  background: #fff;
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--orange);
}
.abt-join::before {
  content: "";
  position: absolute;
  right: -5%; top: 10%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(255,87,34,.04) 0%, transparent 65%);
  pointer-events: none;
}
.abt-join-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 1;
}
.abt-join-inner .eyebrow { margin-bottom: 20px; }
.abt-join-title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 80px);
  line-height: 0.97;
  letter-spacing: -.03em;
  color: var(--ink);
  margin: 0 0 clamp(40px, 6vh, 64px);
}
.abt-join-title em { font-style: italic; color: var(--orange); }
.abt-join-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}
@media (max-width: 800px) { .abt-join-cols { grid-template-columns: 1fr; } }
.abt-join-text p {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: clamp(15px, 1vw, 16.5px);
  line-height: 1.75;
  color: var(--text-on-light-2);
  margin: 0 0 20px;
}
.abt-join-text .btn { margin-top: 12px; }
.abt-join-reasons {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 6px;
}
.abt-reason {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--bone);
  border: 1px solid rgba(20,19,15,.07);
  border-radius: 2px;
  transition: border-color .3s, transform .3s var(--e-out);
}
.abt-reason:hover { border-color: rgba(255,87,34,.25); transform: translateX(4px); }
.abt-reason-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,87,34,.08);
  border: 1px solid rgba(255,87,34,.2);
  display: grid;
  place-items: center;
  color: var(--orange);
  margin-top: 2px;
}
.abt-reason-icon svg { width: 15px; height: 15px; }
.abt-reason strong {
  display: block;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 4px;
}
.abt-reason p {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 13.5px;
  line-height: 1.62;
  color: var(--text-on-light-2);
  margin: 0;
}


/* ==========================================================
   MOBILE & DESKTOP OPTIMISATIONS  —  added 2026-06-14
   ========================================================== */

/* ----- Hero: dynamic viewport height (fixes iOS Safari address-bar clip) ----- */
.hero {
  min-height: 88vh;   /* fallback for older browsers */
  min-height: 88dvh;
}

/* ----- Topbar: hide hours text on small screens ----- */
@media (max-width: 600px) {
  .topbar-hours { display: none; }
}

/* ----- Nav: hamburger button ----- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 60;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-on-dark);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .38s var(--e-out), opacity .25s var(--e-out), width .35s var(--e-out);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-desktop-cta { display: none; }   /* hide the desktop nav CTA on mobile */
}

/* ----- Mobile Nav Drawer ----- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;   /* clips the off-screen panel so it can't widen the document */
  transition: visibility 0s .45s;
}
.mobile-nav.open {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s;
}
.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,11,.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .4s var(--e-out);
}
.mobile-nav.open .mobile-nav-backdrop { opacity: 1; }

.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 88vw);
  background: var(--ink);
  border-left: 1px solid var(--ink-line);
  display: flex;
  flex-direction: column;
  padding: clamp(72px, 10vh, 90px) clamp(28px, 6vw, 44px) max(32px, env(safe-area-inset-bottom, 32px));
  transform: translateX(100%);
  transition: transform .45s var(--e-out);
  overflow-y: auto;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }

.mobile-nav-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ink-line);
  background: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-on-dark-2);
  transition: border-color .25s, color .25s;
}
.mobile-nav-close:hover { border-color: var(--orange); color: var(--orange); }
.mobile-nav-close svg { width: 14px; height: 14px; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mobile-nav-links a {
  font-family: var(--f-serif);
  font-size: clamp(26px, 7vw, 34px);
  line-height: 1;
  color: var(--text-on-dark-3);
  letter-spacing: -.01em;
  padding: 16px 0;
  border-bottom: 1px solid var(--ink-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color .25s var(--e-out), padding-left .3s var(--e-out);
}
.mobile-nav-links a:hover { color: var(--text-on-dark); padding-left: 6px; }
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-nav-links a svg {
  width: 16px; height: 16px;
  color: var(--orange);
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .25s, transform .3s var(--e-out);
}
.mobile-nav-links a:hover svg { opacity: 1; transform: translateX(0); }

/* Staggered link entrance */
.mobile-nav.open .mobile-nav-links a {
  animation: mnavLinkIn .45s var(--e-out) both;
}
.mobile-nav.open .mobile-nav-links a:nth-child(1) { animation-delay: .08s; }
.mobile-nav.open .mobile-nav-links a:nth-child(2) { animation-delay: .13s; }
.mobile-nav.open .mobile-nav-links a:nth-child(3) { animation-delay: .18s; }
.mobile-nav.open .mobile-nav-links a:nth-child(4) { animation-delay: .23s; }
.mobile-nav.open .mobile-nav-links a:nth-child(5) { animation-delay: .28s; }
@keyframes mnavLinkIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-nav.open .mobile-nav-links a { animation: none; }
}

.mobile-nav-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-line);
}
.mobile-nav-footer a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-on-dark-2);
  transition: color .25s;
}
.mobile-nav-footer a:hover { color: var(--orange); }
.mobile-nav-footer svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ----- Touch targets: 44×44px minimum ----- */
.pmodal-close {
  width: 44px;
  height: 44px;
}
.footer-bottom .socials a {
  width: 44px;
  height: 44px;
}

/* ----- Floating CTA — mobile only ----- */
.float-cta { display: none; }

@media (max-width: 900px) {
  .float-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    bottom: max(24px, calc(env(safe-area-inset-bottom, 0px) + 12px));
    right: 20px;
    z-index: 45;
    background: var(--orange);
    color: #1a0a02;
    font-family: var(--f-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    padding: 14px 22px;
    border-radius: 100px;
    box-shadow: 0 8px 28px rgba(255,87,34,.45), 0 2px 8px rgba(0,0,0,.18);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity .4s var(--e-out), transform .4s var(--e-out), box-shadow .3s;
    text-decoration: none;
  }
  .float-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .float-cta:hover {
    box-shadow: 0 12px 36px rgba(255,87,34,.55), 0 4px 12px rgba(0,0,0,.2);
  }
  .float-cta svg { width: 15px; height: 15px; flex-shrink: 0; }
}

/* ----- Word rotator: fallback for iOS < 16.4 that lacks 1lh unit ----- */
.word-rotator {
  height: 1em;   /* safe fallback */
  height: 1lh;   /* modern browsers override */
}

/* ----- Budget chips: more compact on very narrow screens ----- */
@media (max-width: 400px) {
  .chip {
    padding: 8px 10px;
    font-size: 11px;
    letter-spacing: .02em;
  }
}

/* ----- Testimonial ribbon: touch-device pause ----- */
.voices-ribbon-track.paused { animation-play-state: paused; }

/* ----- Property enquiry modal: bottom sheet on mobile ----- */
@media (max-width: 680px) {
  .pmodal-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .pmodal-box {
    border-radius: 20px 20px 0 0;
    max-height: 92dvh;
    max-width: 100%;
    width: 100%;
    transform: translateY(100%);
    padding: 0 clamp(20px, 5vw, 32px) calc(24px + env(safe-area-inset-bottom, 0px));
  }
  .pmodal-overlay.open .pmodal-box { transform: translateY(0); }
  /* Drag handle indicator */
  .pmodal-box::before {
    content: '';
    display: block;
    width: 40px; height: 4px;
    border-radius: 2px;
    background: rgba(20,19,15,.15);
    margin: 16px auto 20px;
  }
  .pmodal-close {
    top: 16px; right: 16px;
  }
}

/* ----- Focus styles for keyboard navigation ----- */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible,
.chip:focus-visible,
.nav-hamburger:focus-visible,
.mobile-nav-close:focus-visible,
.float-cta:focus-visible,
.pmodal-close:focus-visible {
  outline-offset: 4px;
  border-radius: 100px;
}
