/* ==========================================================================
   LyeProp / Nexsgen Realty — base styles
   ========================================================================== */

:root {
  --ink: #2c1d14;
  --ink-soft: #6b5847;
  --cream: #f6eee2;
  --cream-deep: #f0e4d3;
  --sage: #6e8a6f;
  --sage-light: #a9bca6;
  --sage-hover: #86a187;
  --brass: #8b5a3c;
  --brass-light: #c89163;
  --white: #ffffff;
  --line: rgba(44, 29, 20, 0.12);

  --font-display: "DM Serif Display", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

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

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

ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 14px;
}

.eyebrow--light { color: var(--brass-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--sage);
  color: var(--white);
}
.btn-primary:hover { background: var(--sage-hover); }

.btn-ghost {
  background: rgba(247, 244, 236, 0.12);
  color: var(--white);
  border-color: rgba(247, 244, 236, 0.55);
  backdrop-filter: blur(2px);
}
.btn-ghost:hover { background: rgba(247, 244, 236, 0.22); border-color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  padding: 10px 22px;
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  background: rgba(247, 244, 236, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 3px;
}
.site-header.scrolled .brand-name { color: var(--ink); }
.site-header.scrolled .brand-sub { color: var(--sage); }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.nav a:not(.btn) { color: rgba(255,255,255,0.92); transition: color 0.2s ease; }
.nav a:not(.btn):hover { color: var(--brass-light); }
.site-header.scrolled .nav a:not(.btn) { color: var(--ink-soft); }
.site-header.scrolled .nav a:not(.btn):hover { color: var(--brass); }

.site-header.scrolled .nav-cta { border-color: var(--ink); color: var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--white);
  transition: background 0.2s ease;
}
.site-header.scrolled .nav-toggle span { background: var(--ink); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,29,20,0.55) 0%, rgba(44,29,20,0.35) 35%, rgba(44,29,20,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 160px;
  padding-bottom: 96px;
  max-width: 780px;
}
.hero .eyebrow {
  color: var(--brass-light);
}
.hero-title {
  color: var(--white);
  font-size: clamp(38px, 6vw, 66px);
  margin-bottom: 22px;
}
.hero-title span {
  display: block;
  color: var(--cream-deep);
  font-size: 0.52em;
  font-style: italic;
  font-weight: 400;
  margin-top: 10px;
}
.hero-sub {
  color: rgba(247,244,236,0.86);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  right: 40px;
  z-index: 2;
  width: 30px;
  height: 46px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 20px;
}
.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollcue 1.8s infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; transform: translateY(0); }
}

/* ==========================================================================
   About
   ========================================================================== */
.about { padding: 120px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}
.about-media { position: relative; }
.about-photo {
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  background-image: url("/assets/images/lye-mun-fai.jpg");
  background-size: cover;
  background-position: center 20%;
}
.about-badge {
  position: absolute;
  left: -20px;
  bottom: -28px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  min-width: 140px;
  box-shadow: 0 18px 40px rgba(44,29,20,0.25);
}
.about-badge strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  color: var(--brass-light);
}
.about-badge span { font-size: 12.5px; color: rgba(247,244,236,0.8); margin-top: 4px; }

.about-content h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 22px;
  max-width: 480px;
}
.about-text {
  color: var(--ink-soft);
  font-size: 15.5px;
  margin-bottom: 16px;
  max-width: 560px;
}

.stats-row {
  display: flex;
  gap: 40px;
  margin: 36px 0 40px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  color: var(--ink);
}
.stat strong small { font-size: 15px; color: var(--ink-soft); }
.stat span { font-size: 12.5px; color: var(--ink-soft); margin-top: 4px; }

.areas-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.areas { margin-bottom: 28px; }

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-list li {
  background: var(--cream-deep);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
}
.tag-list--outline li {
  background: transparent;
  border: 1px solid var(--sage-light);
  color: var(--sage);
}

/* ==========================================================================
   Listings
   ========================================================================== */
.listings { padding: 110px 0 120px; background: var(--cream-deep); }
.section-heading { max-width: 620px; margin-bottom: 56px; }
.section-heading h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 16px; }
.section-sub { color: var(--ink-soft); font-size: 15.5px; }

.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 420px));
  justify-content: center;
  gap: 32px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 0 var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(44,29,20,0.14);
}

.card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-media img { transform: scale(1.06); }

.card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(110,138,111,0.9);
  color: var(--cream);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.card-body { padding: 24px; }
.card-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--brass);
  margin-bottom: 6px;
}
.card-price span { font-size: 13px; color: var(--ink-soft); font-family: var(--font-body); }
.card-title { font-size: 18px; margin-bottom: 6px; }
.card-location { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 16px; }
.card-highlights { font-size: 12.5px; color: var(--ink-soft); line-height: 1.5; margin: -8px 0 16px; }

.card-specs {
  display: flex;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.card-specs li {
  font-size: 12.5px;
  color: var(--ink-soft);
  position: relative;
  padding-left: 14px;
}
.card-specs li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--sage-light);
}
.card-specs li:first-child { padding-left: 0; }
.card-specs li:first-child::before { display: none; }

.card-link {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--sage);
  transition: color 0.2s ease;
}
.card-link:hover { color: var(--brass); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { background: var(--ink); color: var(--cream); padding: 110px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-intro h2 {
  color: var(--white);
  font-size: clamp(30px, 3.6vw, 44px);
  margin-bottom: 18px;
  max-width: 420px;
}
.contact-text { color: rgba(247,244,236,0.72); font-size: 15.5px; max-width: 440px; }

.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(247,244,236,0.06);
  border: 1px solid rgba(247,244,236,0.14);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.contact-card:hover {
  background: rgba(247,244,236,0.1);
  border-color: rgba(247,244,236,0.3);
  transform: translateX(4px);
}
.contact-card strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(247,244,236,0.6);
  margin-bottom: 3px;
}
.contact-value { font-size: 17px; font-weight: 500; color: var(--white); }

.contact-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(247,244,236,0.1);
  color: var(--brass-light);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-card--whatsapp .contact-icon { background: #25D366; color: var(--white); }
.contact-card--whatsapp .contact-value { color: #7fe3a1; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); border-top: 1px solid rgba(247,244,236,0.1); padding: 32px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer .brand-name { color: var(--white); font-size: 18px; }
.site-footer .brand-sub { color: rgba(247,244,236,0.6); }
.footer-note { font-size: 12.5px; color: rgba(247,244,236,0.55); }
.footer-note--muted { color: rgba(247,244,236,0.35); }

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.float-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s ease;
}
.float-whatsapp svg { width: 28px; height: 28px; }
.float-whatsapp:hover { transform: scale(1.08); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-media { max-width: 340px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav.open { transform: translateX(0); }
  .nav a:not(.btn),
  .site-header.scrolled .nav a:not(.btn) { color: var(--cream); font-size: 18px; }
  .nav-cta,
  .site-header.scrolled .nav-cta { border-color: var(--cream); color: var(--cream); }
  .nav-toggle { display: flex; }

  .hero-content { padding-top: 130px; padding-bottom: 80px; }
  .scroll-cue { display: none; }

  .about { padding: 88px 0; }
  .about-badge { left: 0; bottom: -20px; padding: 16px 20px; }

  .listings { padding: 80px 0 90px; }
  .listing-grid { grid-template-columns: 1fr; gap: 24px; }

  .contact { padding: 80px 0; }
  .stats-row { gap: 28px; }

  .footer-inner { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}

/* ==========================================================================
   Listing detail pages
   ========================================================================== */
.project-hero {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.project-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,29,20,0.35) 0%, rgba(44,29,20,0.3) 40%, rgba(44,29,20,0.9) 100%);
}
.project-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 148px;
  padding-bottom: 52px;
  max-width: 760px;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(247,244,236,0.78);
  margin-bottom: 24px;
  transition: color 0.2s ease;
}
.breadcrumb:hover { color: var(--white); }

.project-tag {
  display: inline-block;
  background: rgba(110,138,111,0.9);
  color: var(--cream);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.project-title { color: var(--white); font-size: clamp(32px, 5vw, 52px); margin-bottom: 12px; }
.project-location { color: rgba(247,244,236,0.85); font-size: 15px; margin-bottom: 18px; }
.project-price { font-family: var(--font-display); font-size: 26px; color: var(--brass-light); margin-bottom: 22px; }

.project-quickspecs { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 30px; }
.project-quickspecs li {
  font-size: 13.5px;
  color: rgba(247,244,236,0.9);
  padding-left: 14px;
  position: relative;
}
.project-quickspecs li:first-child { padding-left: 0; }
.project-quickspecs li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(247,244,236,0.5);
}
.project-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.project-section { padding: 96px 0; }
.project-section--tint { background: var(--cream-deep); }

.overview-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; }
.check-list { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.check-list li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.check-list li::before {
  content: "";
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 1px;
  background: var(--brass);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 28px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.fact { display: flex; flex-direction: column; gap: 6px; }
.fact strong { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--ink); }
.fact span { font-size: 11.5px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}

.unit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.unit-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.unit-card img {
  width: 100%;
  aspect-ratio: 1.9 / 1;
  object-fit: contain;
  object-position: center;
  background: var(--white);
  padding: 8px;
}
.unit-card-body { padding: 22px; }
.unit-type-label { font-family: var(--font-display); font-size: 26px; font-weight: 400; color: var(--brass); margin-bottom: 4px; }
.unit-type-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--cream-deep);
  border-radius: 999px;
  padding: 3px 10px;
  margin-left: 8px;
  vertical-align: middle;
}
.unit-meta { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 14px; }
.unit-price { font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em; color: var(--sage); margin-bottom: 16px; text-transform: uppercase; }

@media (max-width: 980px) {
  .overview-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .project-hero-content { padding-top: 120px; padding-bottom: 44px; }
  .project-section { padding: 72px 0; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; padding: 22px; }
}

/* ==========================================================================
   Legal / plain content pages
   ========================================================================== */
.legal-hero { padding: 160px 0 56px; max-width: 720px; }
.legal-hero h1 { font-size: clamp(32px, 4.4vw, 46px); margin-bottom: 14px; }
.legal-hero p { color: var(--ink-soft); font-size: 15px; }

.legal-body { max-width: 720px; }
.legal-body h2 {
  font-size: 20px;
  font-weight: 400;
  margin: 40px 0 12px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; margin-bottom: 12px; }

.footer-note a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer-note a:hover { color: var(--cream); }

@media (max-width: 720px) {
  .legal-hero { padding: 128px 0 40px; }
}

.pdpa-badge {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(247,244,236,0.14);
}
.pdpa-badge-label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 6px;
}
.pdpa-badge-text {
  font-size: 13px;
  color: rgba(247,244,236,0.65);
  line-height: 1.5;
  max-width: 380px;
}

/* ==========================================================================
   Project section nav
   ========================================================================== */
.project-subnav {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.project-subnav-inner {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 16px 0;
  scrollbar-width: none;
}
.project-subnav-inner::-webkit-scrollbar { display: none; }
.project-subnav-inner a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.project-subnav-inner a:hover { color: var(--brass); }

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.location-category h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 16px;
}
.location-category ul { display: flex; flex-direction: column; gap: 10px; }
.location-category li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.location-category li span:first-child { color: var(--ink); }
.location-category li span:last-child { color: var(--ink-soft); text-align: right; white-space: nowrap; }

.section-image {
  margin-bottom: 36px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.section-image img { width: 100%; display: block; }

/* ==========================================================================
   Contact form
   ========================================================================== */
.contact-form-wrap {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid rgba(247,244,236,0.14);
  max-width: 640px;
}
.contact-form-wrap h2 {
  color: var(--white);
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 10px;
}
.contact-form-wrap .contact-text { margin-bottom: 28px; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(247,244,236,0.6);
}
.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--white);
  background: rgba(247,244,236,0.06);
  border: 1px solid rgba(247,244,236,0.18);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f7f4ec' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.form-field select option { background: var(--ink); color: var(--white); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(247,244,236,0.35); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--brass-light);
  background-color: rgba(247,244,236,0.1);
}
.form-field textarea { resize: vertical; min-height: 100px; font-family: var(--font-body); }
.form-optional { font-weight: 400; color: rgba(247,244,236,0.4); text-transform: none; letter-spacing: 0; }

.contact-form .btn-primary { align-self: flex-start; }

.form-honeypot { position: absolute; left: -9999px; top: -9999px; }

.launch-strip {
  background: var(--brass);
  color: var(--white);
  text-align: center;
  padding: 11px 16px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-status {
  font-size: 13.5px;
  color: var(--sage-light);
  min-height: 1.2em;
}
.form-status[data-state="error"] { color: #e8a06b; }

@media (max-width: 720px) {
  .project-subnav-inner { gap: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { margin-top: 56px; padding-top: 44px; }
}
