/* ============================================================
   Mirage Project Point Dubai — microsite
   Architectural porcelain-neutral with warm clay accent.
   ============================================================ */

:root {
  /* Palette tokens (porcelain canvas + clay) */
  --bg: #ffffff;
  --surface: #f4f2ee;
  --surface-2: #ece8e1;
  --ink: #1a1916;
  --ink-2: #2e2a24;
  --muted: #6b665e;
  --hair: #d9d3c8;
  --accent: #b07a4e;     /* warm clay */
  --accent-ink: #ffffff;
  --focus: #b07a4e;

  /* Spatial */
  --gutter: clamp(20px, 4vw, 56px);
  --max: 1440px;

  /* Type */
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

[data-accent="ochre"] {
  --accent: #c78a3f;
}
[data-accent="ink"] {
  --accent: #2e2a24;
  --accent-ink: #f4f2ee;
}
[data-accent="oxblood"] {
  --accent: #8b3a3a;
}
[data-accent="bronze"] {
  --accent: #7a5a3a;
}

[data-density="compact"] {
  --section-py: clamp(60px, 8vw, 110px);
}
[data-density="editorial"] {
  --section-py: clamp(96px, 12vw, 180px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

img { max-width: 100%; display: block; }

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

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--accent); color: var(--accent-ink); }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

/* ---------- Type utilities ---------- */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}
.label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

/* ---------- Layout ---------- */
.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hairline { height: 1px; background: var(--hair); width: 100%; }

section.block {
  padding: var(--section-py, 130px) 0;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.scrolled {
  border-bottom-color: var(--hair);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo svg {
  width: 100px;
  height: auto;
  fill: var(--ink);
}
.nav-logo .pp-tag {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: 14px;
  border-left: 1px solid var(--hair);
  line-height: 1.2;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 13.5px;
  color: var(--ink-2);
}
.nav-links a { position: relative; padding: 6px 0; }
.nav-links a:hover { color: var(--accent); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.locale {
  display: flex;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  gap: 10px;
}
.locale span { padding: 4px 2px; cursor: pointer; }
.locale span.active { color: var(--ink); border-bottom: 1px solid var(--accent); }

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

/* ---------- Button ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.btn .arr { transition: transform .25s ease; }
.btn:hover .arr { transform: translateX(4px); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
}
.btn.ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn.light {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.btn.light:hover { background: #fff; border-color: #fff; color: var(--ink); }
.btn.sm { padding: 10px 16px; font-size: 12px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: #f4f2ee;
  overflow: hidden;
  min-height: min(820px, calc(100vh - 72px));
  display: flex;
  flex-direction: column;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.30) 30%, rgba(0,0,0,0.70) 95%),
    linear-gradient(90deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.10) 60%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px 0 56px;
}
.hero-eyebrow {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: rgba(244,242,238,0.85);
}
.hero-eyebrow .pip {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.hero-h {
  font-size: clamp(40px, 6.2vw, 92px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
  max-width: 1100px;
  margin-bottom: 36px;
}
.hero-h .it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.hero-sub-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-sub {
  max-width: 480px;
  font-size: 15px;
  color: rgba(244,242,238,0.78);
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-meta-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(244,242,238,0.18);
  padding: 18px 0;
  background: rgba(26,25,22,0.55);
  backdrop-filter: blur(6px);
}
.hero-meta-bar .inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
.hero-meta-bar .cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}
.hero-meta-bar .lbl {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,242,238,0.55);
}
.hero-meta-bar .val {
  color: #f4f2ee;
}
@media (max-width: 800px) {
  .hero-meta-bar .inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ---------- Section heading ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hair);
}
.section-head h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
.section-head h2 .it {
  font-family: var(--serif);
  font-style: italic;
}
.section-head .right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section-head .right p {
  max-width: 520px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Collections ---------- */
.coll-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.chip {
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--hair);
  color: var(--ink-2);
  background: transparent;
  letter-spacing: 0.02em;
  transition: all .18s ease;
}
.chip:hover { border-color: var(--ink); }
.chip.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.coll-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px 24px;
}
.coll-card {
  grid-column: span 4;
  cursor: pointer;
}
.coll-card.feature { grid-column: span 8; }
.coll-card.half { grid-column: span 6; }
@media (max-width: 920px) {
  .coll-card, .coll-card.feature, .coll-card.half { grid-column: span 6; }
}
@media (max-width: 600px) {
  .coll-card, .coll-card.feature, .coll-card.half { grid-column: span 12; }
}
.coll-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface);
  margin-bottom: 16px;
}
.coll-card.feature .coll-img { aspect-ratio: 16/9; }
.coll-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.coll-card:hover .coll-img img { transform: scale(1.04); }
.coll-img .tag {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(244,242,238,0.94);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
}
.coll-img .arrow-cta {
  position: absolute;
  right: 14px; bottom: 14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(244,242,238,0.94);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(8px);
  opacity: 0;
  transition: all .25s ease;
}
.coll-card:hover .arrow-cta {
  transform: translateY(0);
  opacity: 1;
}
.coll-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.coll-name {
  font-size: 22px;
  letter-spacing: -0.015em;
  font-weight: 500;
}
.coll-name .it { font-family: var(--serif); font-style: italic; font-weight: 400; }
.coll-effect {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ---------- Project Point feature ---------- */
.pp-feature {
  background: var(--surface);
  color: var(--ink);
}
.pp-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 920px) {
  .pp-grid { grid-template-columns: 1fr; gap: 36px; }
}
.pp-text h2 {
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  line-height: 1.03;
}
.pp-text h2 .it { font-family: var(--serif); font-style: italic; }
.pp-text p {
  max-width: 520px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.pp-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  border-top: 1px solid var(--hair);
  padding-top: 28px;
  margin-bottom: 32px;
}
.pp-info .lbl {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.pp-info .val {
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink);
}
.pp-info .val a:hover { color: var(--accent); }

.pp-img-stack {
  position: relative;
  aspect-ratio: 4/5;
}
.pp-img-stack .main {
  position: absolute;
  inset: 0 40px 40px 0;
  overflow: hidden;
  background: var(--ink);
}
.pp-img-stack .main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.pp-img-stack .inset {
  position: absolute;
  right: 0; bottom: 0;
  width: 55%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ink);
  border: 6px solid var(--surface);
}
.pp-img-stack .inset img { width: 100%; height: 100%; object-fit: cover; }
.pp-img-stack .badge {
  position: absolute;
  top: 0; left: 0;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 12px 18px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}

/* ---------- Applications strip ---------- */
.app-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.app-cell {
  padding: 36px 24px;
  border-right: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: background .2s ease;
}
.app-cell:last-child { border-right: 0; }
.app-cell:hover { background: var(--surface); }
.app-cell .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.app-cell .name {
  font-size: 22px;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin-top: 24px;
}
.app-cell .desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 4px;
}
@media (max-width: 920px) {
  .app-strip { grid-template-columns: repeat(2, 1fr); }
  .app-cell { border-bottom: 1px solid var(--hair); }
  .app-cell:nth-child(even) { border-right: 0; }
}
@media (max-width: 540px) {
  .app-strip { grid-template-columns: 1fr; }
  .app-cell { border-right: 0; }
}

/* ---------- Showroom gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  grid-auto-flow: dense;
}
.gallery-grid .g {
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
}
.gallery-grid .g img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.2,1), filter .3s ease;
}
.gallery-grid .g:hover img { transform: scale(1.05); }
.gallery-grid .g.x2 { grid-column: span 6; }
.gallery-grid .g.x1 { grid-column: span 3; }
.gallery-grid .g.x3 { grid-column: span 4; }
.gallery-grid .g.x4 { grid-column: span 5; aspect-ratio: 4/5; }
.gallery-grid .g.tall { aspect-ratio: 3/4; }
.gallery-grid .g .gid {
  position: absolute;
  bottom: 10px; right: 12px;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.06em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
@media (max-width: 920px) {
  .gallery-grid .g.x1, .gallery-grid .g.x2, .gallery-grid .g.x3, .gallery-grid .g.x4 {
    grid-column: span 6;
    aspect-ratio: 4/3;
  }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15,14,12,0.92);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 30px;
}
.lightbox .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  margin-bottom: 16px;
}
.lightbox .stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 0;
}
.lightbox .stage img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.lightbox .navbtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s ease;
}
.lightbox .navbtn:hover { background: rgba(255,255,255,0.2); }
.lightbox .navbtn.prev { left: 30px; }
.lightbox .navbtn.next { right: 30px; }
.lightbox .closebtn {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Why specify (stats) ---------- */
.why {
  background: var(--ink);
  color: #f4f2ee;
}
.why .section-head { border-color: rgba(244,242,238,0.18); }
.why .section-head .right p { color: rgba(244,242,238,0.7); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.why-cell {
  padding: 44px 28px 36px 0;
  border-right: 1px solid rgba(244,242,238,0.14);
}
.why-cell:last-child { border-right: 0; padding-right: 0; }
.why-cell .num {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.why-cell .num .pl { color: var(--accent); font-size: 0.5em; }
.why-cell .lbl { font-size: 13px; color: rgba(244,242,238,0.8); line-height: 1.45; max-width: 240px; }
@media (max-width: 920px) { .why-grid { grid-template-columns: repeat(2, 1fr); } .why-cell:nth-child(2) { border-right: 0; } .why-cell:nth-child(1), .why-cell:nth-child(2) { border-bottom: 1px solid rgba(244,242,238,0.14); padding-bottom: 36px; } .why-cell:nth-child(3), .why-cell:nth-child(4) { padding-top: 36px; padding-right: 0; } }

.why-context {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid rgba(244,242,238,0.14);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.why-context .label { color: rgba(244,242,238,0.55); }
.why-context p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(244,242,238,0.82);
}
.why-context p em {
  font-family: var(--serif);
  font-style: italic;
  color: #fff;
}
@media (max-width: 800px) { .why-context { grid-template-columns: 1fr; gap: 16px; } }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 720px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: start;
  background: var(--surface);
  padding: 28px;
}
@media (max-width: 540px) { .team-card { grid-template-columns: 1fr; } }
.team-card .ph {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface-2);
  border-radius: 50%;
  width: 160px;
}
.team-card .ph img { width: 100%; height: 100%; object-fit: cover; }
.team-card .info h4 {
  font-size: 22px;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin-bottom: 4px;
}
.team-card .info .role {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.team-card .info p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 20px;
}
.team-card .info .row {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-2);
}
.team-card .info .row a { padding: 6px 10px; border: 1px solid var(--hair); border-radius: 999px; transition: all .18s ease; }
.team-card .info .row a:hover { border-color: var(--ink); }

/* ---------- Booking ---------- */
.book {
  background: var(--surface);
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
}
@media (max-width: 920px) { .book-grid { grid-template-columns: 1fr; gap: 40px; } }
.book h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.02;
}
.book h2 .it { font-family: var(--serif); font-style: italic; }
.book .lead {
  font-size: 16px;
  color: var(--ink-2);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 460px;
}
.book-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-top: 1px solid var(--hair);
  padding-top: 28px;
}
.book-info .row { display: grid; grid-template-columns: 140px 1fr; gap: 24px; align-items: start; }
.book-info .row .l { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); padding-top: 4px; }
.book-info .row .r { font-size: 16px; line-height: 1.5; color: var(--ink); }
.book-info .row .r a:hover { color: var(--accent); }
.book-info .row .r .small { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* Form */
.form-card {
  background: var(--bg);
  padding: 40px;
  border: 1px solid var(--hair);
}
.form-card .pretitle {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.form-card h3 {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.solo { grid-template-columns: 1fr; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.field { position: relative; }
.field label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--hair);
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 8px 0 12px;
  outline: none;
  transition: border-color .2s ease;
  border-radius: 0;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ink); }
.field textarea { resize: vertical; min-height: 90px; }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path d='M1 3l4 4 4-4' stroke='%231a1916' stroke-width='1' fill='none'/></svg>"); background-repeat: no-repeat; background-position: right 4px center; }

.enquiry-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.enquiry-type {
  border: 1px solid var(--hair);
  padding: 14px 12px;
  font-size: 13px;
  text-align: center;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: all .18s ease;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
.enquiry-type.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.enquiry-type:hover { border-color: var(--ink); }
@media (max-width: 540px) { .enquiry-types { grid-template-columns: 1fr; } }

.form-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 16px;
}
.form-foot .privacy {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 280px;
  line-height: 1.4;
}
.form-foot .privacy input { margin-top: 3px; }

.form-success {
  padding: 24px;
  background: var(--accent);
  color: var(--accent-ink);
  text-align: center;
  margin-top: 16px;
}

/* ---------- Footer ---------- */
.foot {
  background: var(--ink);
  color: rgba(244,242,238,0.78);
  padding: 80px 0 28px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}
@media (max-width: 920px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot-top { grid-template-columns: 1fr; } }

.foot svg.logo { fill: #f4f2ee; width: 120px; height: auto; margin-bottom: 20px; }
.foot .col h5 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,242,238,0.5);
  margin-bottom: 18px;
  font-weight: 500;
}
.foot .col a { display: block; padding: 4px 0; font-size: 14px; }
.foot .col a:hover { color: var(--accent); }
.foot .blurb { font-size: 13px; line-height: 1.6; color: rgba(244,242,238,0.7); max-width: 360px; }
.foot-bottom {
  border-top: 1px solid rgba(244,242,238,0.18);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(244,242,238,0.5);
  letter-spacing: 0.04em;
}

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  position: fixed;
  bottom: 16px;
  left: 16px; right: 16px;
  z-index: 40;
  display: none;
}
@media (max-width: 720px) {
  .mobile-cta { display: flex; }
  .mobile-cta .btn { flex: 1; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
}

/* ---------- Marker tile ---------- */
.marker {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--hair);
  padding: 36px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
}
.marker .corner {
  position: absolute;
  top: 12px; right: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ---------- Helpers ---------- */
.flex-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.spacer-l { height: 80px; }

/* RTL preview */
[dir="rtl"] .nav-logo .pp-tag { border-left: 0; border-right: 1px solid var(--hair); padding-left: 0; padding-right: 14px; }
[dir="rtl"] .arr { transform: scaleX(-1); }
[dir="rtl"] .btn:hover .arr { transform: scaleX(-1) translateX(4px); }
