/* =========================================================
   Luigi Property — shared stylesheet
   ========================================================= */

:root {
  --ink: #0e1a2f;
  --forest: #1b3057;
  --forest-2: #26416f;
  --sage: #7d8ba6;
  --sage-soft: #e9edf5;
  --paper: #fbf9f5;
  --ivory: #f4efe6;
  --line: #e3dccf;
  --line-dark: rgba(255, 255, 255, 0.14);
  --brass: #a8843c;
  --brass-deep: #8a6a2c;
  --brass-soft: #e3c98e;
  --gold: #c9a24a;
  --gold-hover: #d6b25e;
  --text: #1a1f1d;
  --muted: #5d6661;
  --white: #ffffff;
  --wa: #1c9e55;
  --wa-deep: #15823f;

  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(14, 26, 47, 0.06), 0 2px 8px rgba(14, 26, 47, 0.04);
  --shadow: 0 2px 4px rgba(14, 26, 47, 0.04), 0 12px 32px rgba(14, 26, 47, 0.08);
  --shadow-lg: 0 24px 60px rgba(14, 26, 47, 0.16);

  --container: 1200px;
  --gutter: 20px;
  --header-h: 72px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 4px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: var(--white); padding: 10px 16px; border-radius: 8px;
  text-decoration: none; transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
@media (min-width: 768px) { :root { --gutter: 32px; } }

/* ---------- Type ---------- */

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.12; letter-spacing: -0.015em; margin: 0; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 7vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.6rem); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brass-deep); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow--light { color: var(--brass-soft); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 62ch; }
.muted { color: var(--muted); }
.fine { font-size: 0.8125rem; color: var(--muted); line-height: 1.55; }
em.serif { font-family: var(--font-display); font-style: italic; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em; text-decoration: none;
  transition: transform 0.25s var(--ease), background-color 0.25s, box-shadow 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--brass); color: var(--white); box-shadow: 0 8px 24px rgba(168, 132, 60, 0.32); }
.btn--primary:hover { background: var(--brass-deep); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--forest); }
.btn--wa { background: var(--wa); color: var(--white); box-shadow: 0 8px 24px rgba(28, 158, 85, 0.25); }
.btn--wa:hover { background: var(--wa-deep); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--ghost-light { background: rgba(255, 255, 255, 0.08); color: var(--white); border-color: rgba(255, 255, 255, 0.35); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.6); }
.btn--sm { min-height: 42px; padding: 0 18px; font-size: 0.875rem; }
.btn--block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--brass); padding-bottom: 2px; }
.link-arrow:hover { color: var(--brass-deep); }

/* ---------- Transparency bar ---------- */

.notice-bar {
  background: var(--ink); color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem; line-height: 1.45; text-align: center; padding: 8px var(--gutter);
}
.notice-bar strong { color: var(--white); font-weight: 600; }
.notice-bar a { color: var(--brass-soft); }

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 249, 245, 0.86);
  backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(14, 26, 47, 0.05); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand__mark {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--brass); color: var(--brass-deep);
  font-family: var(--font-display); font-size: 1.25rem; line-height: 1;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.14em; }
.brand__sub { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.3em; color: var(--muted); margin-top: 4px; }

.nav { display: none; }
.nav a { text-decoration: none; font-size: 0.9rem; font-weight: 600; color: var(--muted); padding: 8px 2px; position: relative; transition: color 0.2s; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px; background: var(--brass); transform: scaleX(0); transition: transform 0.3s var(--ease); }
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }

.header-cta { display: none; }

.menu-toggle {
  display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--white); color: var(--ink);
}
.menu-toggle svg { width: 20px; height: 20px; }

@media (min-width: 1024px) {
  .nav { display: flex; gap: 28px; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 150; pointer-events: none; }
.drawer__backdrop { position: absolute; inset: 0; background: rgba(14, 26, 47, 0.45); opacity: 0; transition: opacity 0.3s; }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(88vw, 380px);
  background: var(--paper); padding: 20px 24px 32px; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.35s var(--ease); overflow-y: auto;
}
.drawer.is-open { pointer-events: auto; }
.drawer.is-open .drawer__backdrop { opacity: 1; }
.drawer.is-open .drawer__panel { transform: none; }
.drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.drawer nav { display: flex; flex-direction: column; }
.drawer nav a {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); text-decoration: none;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.drawer__foot { margin-top: auto; padding-top: 24px; display: grid; gap: 12px; }

/* ---------- Sections ---------- */

.section { padding: 80px 0; }
@media (min-width: 900px) { .section { padding: 120px 0; } }
.section--ivory { background: var(--ivory); }
.section--dark { background: var(--ink); color: rgba(255, 255, 255, 0.82); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .lead { color: rgba(255, 255, 255, 0.7); }

.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow::after { content: ""; width: 28px; height: 1px; background: currentColor; }
.section-head .lead { margin-top: 18px; }
.section-head--center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Hero ---------- */

.hero { position: relative; color: var(--white); background: var(--ink); overflow: hidden; isolation: isolate; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: heroZoom 18s ease-out both; }
.hero__media {
  position: absolute; inset: 0; z-index: -2;
  background:
    url("../img/hero-illustration.svg") center bottom / cover no-repeat,
    radial-gradient(120% 80% at 80% 10%, #2a4a80 0%, transparent 60%),
    linear-gradient(160deg, #1b3057 0%, #0e1a2f 70%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 18, 34, 0.55) 0%, rgba(10, 18, 34, 0.25) 35%, rgba(10, 18, 34, 0.85) 100%),
    linear-gradient(90deg, rgba(10, 18, 34, 0.55) 0%, rgba(10, 18, 34, 0) 60%);
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

.hero__inner { min-height: min(92svh, 860px); display: flex; flex-direction: column; justify-content: flex-end; padding-top: 72px; padding-bottom: 32px; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 10px; align-self: flex-start;
  padding: 7px 14px; border-radius: 999px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); margin-bottom: 24px;
}
.hero__tag span { width: 6px; height: 6px; border-radius: 50%; background: var(--brass-soft); }
.hero h1 { color: var(--white); max-width: 14ch; }
.hero h1 em { font-style: italic; color: var(--brass-soft); }
.hero__sub { font-family: var(--font-display); font-size: clamp(1.25rem, 2.6vw, 1.8rem); color: rgba(255, 255, 255, 0.92); margin: 16px 0 14px; }
.hero__copy { font-size: 1.05rem; color: rgba(255, 255, 255, 0.78); max-width: 48ch; margin-bottom: 30px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__ctas .btn { flex: 1 1 auto; }
@media (min-width: 560px) { .hero__ctas .btn { flex: 0 0 auto; } }

.hero__facts { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 28px 0 0; padding: 0; list-style: none; font-size: 0.875rem; color: rgba(255, 255, 255, 0.8); }
.hero__facts li { display: inline-flex; align-items: center; gap: 8px; }
.hero__facts svg { width: 16px; height: 16px; color: var(--brass-soft); }

.hero__grid { display: grid; gap: 32px; align-items: end; }
@media (min-width: 1024px) { .hero__grid { grid-template-columns: 1.35fr 1fr; gap: 48px; } }

.id-card {
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg); padding: 22px 22px 20px;
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  color: rgba(255, 255, 255, 0.85);
}
.id-card__top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.id-card__avatar {
  width: 52px; height: 52px; border-radius: 50%; flex: none; overflow: hidden;
  display: grid; place-items: center; background: var(--brass); color: var(--white);
  font-family: var(--font-display); font-size: 1.4rem;
}
.id-card__avatar { position: relative; }
.id-card__avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.id-card__name { font-family: var(--font-display); font-size: 1.25rem; color: var(--white); line-height: 1.2; }
.id-card__role { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.72); }
.id-card dl { margin: 0; display: grid; gap: 8px; font-size: 0.8125rem; border-top: 1px solid rgba(255, 255, 255, 0.14); padding-top: 14px; }
.id-card dl div { display: flex; justify-content: space-between; gap: 16px; }
.id-card dt { color: rgba(255, 255, 255, 0.6); }
.id-card dd { margin: 0; color: var(--white); font-weight: 600; text-align: right; }
.id-card__note { margin-top: 14px; font-size: 0.72rem; color: rgba(255, 255, 255, 0.58); line-height: 1.5; }

.scroll-cue { display: none; }
@media (min-width: 1024px) {
  .scroll-cue { display: flex; align-items: center; gap: 10px; margin-top: 40px; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); }
  .scroll-cue::before { content: ""; width: 1px; height: 36px; background: linear-gradient(var(--brass-soft), transparent); }
}

/* ---------- Intro / facts ---------- */

.intro-grid { display: grid; gap: 48px; }
@media (min-width: 960px) { .intro-grid { grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; } }

.intro-media { position: relative; }
.intro-media .media { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); }
.intro-media__badge {
  position: absolute; left: -12px; bottom: 28px; background: var(--white); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow); max-width: 240px;
}
@media (max-width: 600px) { .intro-media__badge { left: 12px; } }
.intro-media__badge strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.6rem; color: var(--ink); line-height: 1.1; }
.intro-media__badge span { font-size: 0.8rem; color: var(--muted); }

.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin: 32px 0 20px; }
.facts div { background: var(--paper); padding: 18px 18px 16px; }
.facts dt { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.facts dd { margin: 0; font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); line-height: 1.3; }
.facts dd small { display: block; font-family: var(--font-body); font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

/* ---------- Media placeholder system ---------- */

.media {
  position: relative; overflow: hidden; background-color: var(--forest);
  background-image:
    url("../img/pattern-lines.svg"),
    radial-gradient(120% 90% at 85% 0%, rgba(227, 201, 142, 0.28) 0%, transparent 55%),
    linear-gradient(155deg, var(--forest-2) 0%, var(--ink) 100%);
  background-size: 360px auto, cover, cover;
}
.media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.media__label {
  position: absolute; left: 14px; bottom: 14px; z-index: 1;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 999px; background: rgba(14, 26, 47, 0.55); color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.media__fallback-title {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 24px;
  font-family: var(--font-display); font-style: italic; font-size: 1.35rem; color: rgba(255, 255, 255, 0.55);
}

/* ---------- Property cards ---------- */

.cards { display: grid; gap: 24px; }
@media (min-width: 720px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .cards { grid-template-columns: repeat(3, 1fr); } }

.p-card {
  display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.p-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.p-card:hover .media img { transform: scale(1.04); }
.p-card .media { aspect-ratio: 16 / 10; }
.p-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.p-card__kicker { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-deep); margin-bottom: 8px; }
.p-card h3 { margin-bottom: 4px; }
.p-card__type { color: var(--muted); font-size: 0.925rem; margin-bottom: 18px; }
.p-card__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 0 0 18px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.p-card__specs dt { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.p-card__specs dd { margin: 2px 0 0; font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.p-card__features { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 8px; font-size: 0.925rem; }
.p-card__features li { display: flex; gap: 10px; align-items: flex-start; }
.p-card__features li::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--brass); margin-top: 0.62em; }
.p-card__foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.price-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.price { font-family: var(--font-display); font-size: 1.6rem; color: var(--ink); line-height: 1.15; }
.price--tbc { font-size: 1.2rem; color: var(--muted); font-style: italic; }
.price-note { display: block; font-size: 0.72rem; color: var(--muted); }

.source-note {
  margin-top: 28px; display: flex; gap: 12px; align-items: flex-start;
  padding: 16px 18px; border-radius: var(--radius); background: var(--sage-soft); color: #34405a; font-size: 0.85rem; line-height: 1.55;
}
.source-note svg { flex: none; width: 18px; height: 18px; margin-top: 2px; color: var(--forest); }

/* ---------- Highlights ---------- */

.highlights { display: grid; gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); overflow: hidden; }
@media (min-width: 640px) { .highlights { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .highlights { grid-template-columns: repeat(3, 1fr); } }
.hl { background: var(--ink); padding: 32px 28px; transition: background-color 0.35s; }
.hl:hover { background: #13223d; }
.hl__icon {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(227, 201, 142, 0.45); color: var(--brass-soft); margin-bottom: 22px;
}
.hl__icon svg { width: 24px; height: 24px; }
.hl h3 { font-size: 1.35rem; margin-bottom: 10px; }
.hl p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.66); }

/* ---------- Location ---------- */

.loc-grid { display: grid; gap: 32px; }
.loc-grid > *, .hero__grid > *, .intro-grid > *, .about > *, .enquiry > *, .faq-wrap > * { min-width: 0; }
@media (min-width: 1024px) { .loc-grid { grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: start; } }

.map-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--sage-soft); aspect-ratio: 4 / 3.4; box-shadow: var(--shadow-sm); }
@media (min-width: 1024px) { .map-frame { position: sticky; top: calc(var(--header-h) + 24px); aspect-ratio: 4 / 4.2; } }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.35) contrast(1.02); }
.map-frame__load {
  position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; text-align: center; gap: 14px; padding: 24px;
  background:
    url("../img/pattern-map.svg") center / cover no-repeat,
    var(--sage-soft);
}
.map-frame__load p { max-width: 32ch; font-size: 0.875rem; color: var(--muted); }
.map-caption { margin-top: 12px; }

.loc-tabs { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; margin-bottom: 20px; padding-bottom: 4px; }
.loc-tabs::-webkit-scrollbar { display: none; }
.chip {
  flex: none; min-height: 42px; padding: 0 18px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--white); color: var(--muted); font-weight: 600; font-size: 0.875rem; transition: all 0.2s;
}
.chip:hover { color: var(--ink); border-color: var(--sage); }
.chip[aria-selected="true"] { background: var(--ink); border-color: var(--ink); color: var(--white); }

.loc-panel[hidden] { display: none; }
.loc-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.loc-list li { display: flex; align-items: center; gap: 16px; padding: 18px 2px; border-bottom: 1px solid var(--line); }
.loc-list__icon { width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--white); border: 1px solid var(--line); color: var(--forest); }
.loc-list__icon svg { width: 20px; height: 20px; }
.loc-list strong { display: block; font-weight: 700; color: var(--ink); }
.loc-list span { font-size: 0.875rem; color: var(--muted); }
.loc-list__meta { margin-left: auto; font-size: 0.8125rem; font-weight: 700; color: var(--brass-deep); white-space: nowrap; }

/* ---------- Why ---------- */

.why-grid { display: grid; gap: 20px; }
@media (min-width: 720px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.why:hover { border-color: var(--brass-soft); box-shadow: var(--shadow-sm); }
.why__num { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--brass-deep); margin-bottom: 14px; display: block; }
.why h3 { font-size: 1.25rem; margin-bottom: 10px; }
.why p { font-size: 0.925rem; color: var(--muted); }

/* ---------- Gallery ---------- */

.gallery { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
.gallery .g-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery .g-item:last-child { grid-column: span 2; }
@media (min-width: 768px) {
  .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 16px; }
  .gallery .g-item:nth-child(4), .gallery .g-item:nth-child(5), .gallery .g-item:nth-child(6) { grid-column: span 2; }
}
.g-item { position: relative; border-radius: var(--radius); overflow: hidden; border: 0; padding: 0; background: none; text-align: left; }
.g-item .media { position: absolute; inset: 0; }
.g-item:hover .media img { transform: scale(1.05); }
.g-item .media__fallback-title { font-size: 1.05rem; }
.g-item:first-child .media__fallback-title { font-size: 1.6rem; }

.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(8, 14, 12, 0.94); display: none; align-items: center; justify-content: center; padding: 60px 16px; }
.lightbox.is-open { display: flex; }
.lightbox figure { margin: 0; max-width: 1100px; width: 100%; }
.lightbox .media { aspect-ratio: 16 / 10; border-radius: var(--radius); }
.lightbox figcaption { color: rgba(255, 255, 255, 0.75); font-size: 0.875rem; margin-top: 14px; text-align: center; }
.lightbox__btn { position: absolute; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.06); color: var(--white); display: grid; place-items: center; }
.lightbox__btn svg { width: 20px; height: 20px; }
.lightbox__close { top: 16px; right: 16px; }
.lightbox__prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 16px; top: 50%; transform: translateY(-50%); }
@media (max-width: 700px) { .lightbox__prev, .lightbox__next { top: auto; bottom: 16px; transform: none; } }

/* ---------- Floor plans ---------- */

.fp { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.fp__tabs { display: flex; overflow-x: auto; border-bottom: 1px solid var(--line); scrollbar-width: none; }
.fp__tabs::-webkit-scrollbar { display: none; }
.fp__tab {
  flex: 1 0 auto; min-height: 60px; padding: 0 24px; border: 0; background: transparent; color: var(--muted);
  font-weight: 700; font-size: 0.9rem; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.fp__tab[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--brass); }
.fp__panel { display: grid; gap: 0; }
.fp__panel[hidden] { display: none; }
@media (min-width: 900px) { .fp__panel { grid-template-columns: 1.2fr 1fr; } }
.fp__plan { position: relative; min-height: 340px; background: #f1ede5; display: grid; place-items: center; overflow: hidden; }
.fp__plan img { width: 100%; height: 100%; object-fit: contain; position: absolute; inset: 0; padding: 24px; }
.fp__plan-sketch { width: 78%; max-width: 440px; opacity: 0.55; filter: blur(2.5px); }
.fp__overlay {
  position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 14px; text-align: center; padding: 24px;
  background: linear-gradient(180deg, rgba(241, 237, 229, 0.2), rgba(241, 237, 229, 0.75));
}
.fp__overlay p { font-size: 0.875rem; color: var(--muted); max-width: 30ch; margin: 0; }
.fp__overlay strong { font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; color: var(--ink); }
.fp__info { padding: 32px 28px; }
.fp__info h3 { margin-bottom: 6px; }
.fp__table { width: 100%; border-collapse: collapse; margin: 20px 0 24px; font-size: 0.925rem; }
.fp__table th, .fp__table td { text-align: left; padding: 12px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.fp__table th { font-weight: 600; color: var(--muted); width: 44%; }
.fp__table td { font-weight: 600; color: var(--ink); }

/* ---------- About ---------- */

.about { display: grid; gap: 40px; }
@media (min-width: 960px) { .about { grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: center; } }
.about__photo { position: relative; }
.about__photo .media { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); }
.about__photo .media__fallback-title { font-size: 5rem; font-style: normal; color: rgba(227, 201, 142, 0.5); }
.about__quote { font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.35; color: var(--ink); margin: 24px 0 20px; }
.about__quote em { color: var(--brass-deep); }
.credentials { margin: 28px 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.credentials div { display: grid; grid-template-columns: 1fr; gap: 2px; padding: 14px 20px; border-bottom: 1px solid var(--line); }
@media (min-width: 560px) { .credentials div { grid-template-columns: 200px 1fr; gap: 16px; align-items: baseline; } }
.credentials div:last-child { border-bottom: 0; }
.credentials dt { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.credentials dd { margin: 0; font-weight: 600; color: var(--ink); }
.status-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 600; background: var(--sage-soft); color: var(--forest); padding: 6px 12px; border-radius: 999px; }
.status-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--forest); }
.service-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; padding: 0; list-style: none; }
.service-list li { font-size: 0.85rem; font-weight: 600; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); }

/* ---------- Enquiry ---------- */

.enquiry { display: grid; gap: 40px; }
@media (min-width: 1024px) { .enquiry { grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: start; } }
.benefits { list-style: none; padding: 0; margin: 28px 0 32px; display: grid; gap: 14px; }
@media (min-width: 560px) { .benefits { grid-template-columns: 1fr 1fr; } }
.benefits li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255, 255, 255, 0.86); }
.benefits svg { flex: none; width: 22px; height: 22px; color: var(--brass-soft); margin-top: 1px; }
.enquiry__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.form-card { background: var(--paper); color: var(--text); border-radius: var(--radius-lg); padding: 28px 22px; box-shadow: var(--shadow-lg); }
@media (min-width: 600px) { .form-card { padding: 40px 36px; } }
.form-card h3 { margin-bottom: 6px; }
.form-grid { display: grid; gap: 16px; margin-top: 24px; }
@media (min-width: 600px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .span-2 { grid-column: span 2; } }
.field label { display: block; font-size: 0.8125rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.field label .opt { font-weight: 500; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 12px 16px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--white); color: var(--text); font: inherit; font-size: 16px; transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%235d6661' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 4px rgba(168, 132, 60, 0.14); }
.field.has-error input, .field.has-error select { border-color: #b4462f; }
.field__error { display: none; font-size: 0.78rem; color: #b4462f; margin-top: 6px; }
.field.has-error .field__error { display: block; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 0.8125rem; color: var(--muted); line-height: 1.5; }
.consent input { width: 20px; height: 20px; margin: 1px 0 0; flex: none; accent-color: var(--forest); }
.consent a { color: var(--ink); }
.form-success { display: none; text-align: center; padding: 24px 8px; }
.form-success.is-visible { display: block; }
.form-success__icon { width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 18px; background: var(--sage-soft); color: var(--forest); }
.form-success__icon svg { width: 28px; height: 28px; }

/* ---------- FAQ ---------- */

.faq-wrap { display: grid; gap: 40px; }
@media (min-width: 1024px) { .faq-wrap { grid-template-columns: 0.8fr 1.2fr; gap: 72px; align-items: start; } .faq-wrap .section-head { position: sticky; top: calc(var(--header-h) + 32px); } }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 2px; font-weight: 700; color: var(--ink); font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 1v10M1 6h10' stroke='%230e1a2f' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center no-repeat;
  transition: transform 0.3s var(--ease), background-color 0.3s;
}
.faq details[open] summary::after { transform: rotate(45deg); background-color: var(--ivory); }
.faq__a { padding: 0 2px 24px; color: var(--muted); max-width: 68ch; }
.faq__a a { color: var(--ink); }

/* ---------- Disclaimer block ---------- */

.disclaimer-box { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); padding: 32px 24px; }
@media (min-width: 768px) { .disclaimer-box { padding: 44px 48px; } }
.disclaimer-box h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 18px; }
.disclaimer-box p { color: var(--muted); font-size: 0.95rem; }
.disclaimer-box .links { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 20px; font-size: 0.9rem; font-weight: 700; }
.disclaimer-box .links a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--brass); }

/* ---------- Footer ---------- */

.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.7); padding: 72px 0 120px; font-size: 0.925rem; }
@media (min-width: 1024px) { .site-footer { padding-bottom: 40px; } }
.footer-grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 56px; } }
.site-footer .brand { color: var(--white); }
.site-footer .brand__sub { color: rgba(255, 255, 255, 0.55); }
.site-footer .brand__mark { color: var(--brass-soft); border-color: var(--brass-soft); }
.footer-id { margin-top: 24px; display: grid; gap: 4px; line-height: 1.55; }
.footer-id strong { color: var(--white); font-weight: 600; }
.site-footer h4 { font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-soft); margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a { text-decoration: none; color: rgba(255, 255, 255, 0.72); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line-dark); font-size: 0.78rem; line-height: 1.6; color: rgba(255, 255, 255, 0.5); display: grid; gap: 10px; }

/* ---------- Mobile sticky CTA ---------- */

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(251, 249, 245, 0.94); border-top: 1px solid var(--line);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transform: translateY(110%); transition: transform 0.35s var(--ease);
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta .btn { min-height: 50px; }
.sticky-cta .btn--wa { flex: 1; }
.sticky-cta .btn--ghost { flex: 0 0 auto; padding: 0 18px; background: var(--white); }
@media (min-width: 1024px) { .sticky-cta { display: none; } }

/* Desktop floating WhatsApp */
.float-wa {
  display: none; position: fixed; right: 28px; bottom: 28px; z-index: 90;
  align-items: center; gap: 10px; padding: 0 20px 0 16px; height: 54px; border-radius: 999px;
  background: var(--wa); color: var(--white); text-decoration: none; font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 12px 30px rgba(28, 158, 85, 0.35); opacity: 0; transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s var(--ease), background-color 0.2s;
}
.float-wa svg { width: 22px; height: 22px; }
.float-wa:hover { background: var(--wa-deep); }
.float-wa.is-visible { opacity: 1; transform: none; }
@media (min-width: 1024px) { .float-wa { display: inline-flex; } }

/* ---------- Reveal animation ---------- */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.no-js .reveal { opacity: 1; transform: none; }

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

/* ---------- Legal pages ---------- */

.legal-hero { background: var(--ivory); padding: 64px 0 48px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 12px; }
.legal-body { padding: 56px 0 96px; }
.legal-body .container { max-width: 820px; }
.legal-body h2 { font-size: clamp(1.4rem, 2.6vw, 1.75rem); margin: 44px 0 14px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: #3b4440; }
.legal-body ul { padding-left: 1.2em; margin: 0 0 1em; }
.legal-body li { margin-bottom: 6px; }
.legal-body .callout { background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--brass); border-radius: var(--radius-sm); padding: 18px 20px; margin: 20px 0; }
.legal-body .id-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 0.95rem; }
.legal-body .id-table th, .legal-body .id-table td { text-align: left; padding: 12px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.legal-body .id-table th { width: 42%; color: var(--muted); font-weight: 600; }
.legal-body .id-table td { font-weight: 600; color: var(--ink); }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.875rem; text-decoration: none; color: var(--muted); margin-bottom: 20px; }
.back-link:hover { color: var(--ink); }

/* ---------- Projects hub ---------- */

.proj-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
.proj-filters { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; max-width: 100%; padding-bottom: 2px; }
.proj-filters::-webkit-scrollbar { display: none; }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--white); }
.proj-count { font-size: 0.875rem; color: var(--muted); font-weight: 600; }

.p-card[hidden] { display: none; }
.p-card .media { position: relative; }
.status-badge {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 999px; background: rgba(251, 249, 245, 0.92); color: var(--ink);
}
.status-badge--done { background: var(--sage-soft); color: var(--forest); }
.p-card__area { display: inline-flex; align-items: center; gap: 6px; }
.p-card__area svg { width: 14px; height: 14px; }
.p-card__foot .btns { display: flex; gap: 8px; flex-wrap: wrap; }

.feature {
  display: grid; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); margin-bottom: 56px;
}
@media (min-width: 960px) { .feature { grid-template-columns: 1.15fr 1fr; } }
.feature > * { min-width: 0; }
.feature .media { min-height: 280px; }
@media (min-width: 960px) { .feature .media { min-height: 100%; } }
.feature__body { padding: 32px 24px; }
@media (min-width: 600px) { .feature__body { padding: 44px 40px; } }
.feature__body h3 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin: 6px 0 10px; }
.feature__tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); background: var(--brass); padding: 6px 12px; border-radius: 999px; margin-bottom: 14px; }
.feature .facts { margin: 24px 0 26px; }
.feature__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.steps { display: grid; gap: 20px; counter-reset: step; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { border-top: 1px solid var(--line); padding-top: 22px; }
.step__num { font-family: var(--font-display); font-style: italic; color: var(--brass-deep); font-size: 1.05rem; }
.step h3 { font-size: 1.3rem; margin: 8px 0 8px; }
.step p { color: var(--muted); font-size: 0.95rem; }

.band { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 24px; display: grid; gap: 20px; align-items: center; }
@media (min-width: 860px) { .band { grid-template-columns: 1fr auto; padding: 40px 44px; } }
.band h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }

/* Luigi portrait */
.about__photo .media img { object-position: center top; }
.about__badge { left: auto; right: -12px; max-width: 260px; }
@media (max-width: 600px) { .about__badge { right: 12px; left: 12px; max-width: none; } }
.about__badge strong { font-size: 1.4rem; }
.id-card__avatar img { object-position: center top; }
/* Real images sit above the designed placeholder; labels sit above images */
.media img { z-index: 1; }
.media__label, .status-badge { z-index: 2; }
@media (min-width: 720px) { .cards--2x2 { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (min-width: 1100px) { .cards--2x2 { grid-template-columns: repeat(2, 1fr); } }

/* Featured project header (hub) */
.featured-head { display: grid; gap: 24px; margin-bottom: 40px; align-items: end; }
@media (min-width: 960px) { .featured-head { grid-template-columns: 1fr auto; gap: 48px; } }
.featured-head > * { min-width: 0; }
.featured-head__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Compact About / credentials ---------- */
.about { gap: 28px; }
@media (min-width: 960px) { .about { grid-template-columns: 320px 1fr; gap: 56px; align-items: start; } }
.about__photo { max-width: 260px; }
@media (min-width: 960px) { .about__photo { max-width: none; position: sticky; top: calc(var(--header-h) + 24px); } }
.about__photo .media { aspect-ratio: 1 / 1; border-radius: var(--radius); }
@media (min-width: 960px) { .about__photo .media { aspect-ratio: 4 / 5; } }
.about__badge { display: none; }
.about__quote { font-size: clamp(1.2rem, 2vw, 1.45rem); margin: 14px 0 12px; }
.about .service-list { margin-bottom: 20px; }

.credentials {
  margin: 20px 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line); font-size: 0.875rem;
}
.credentials div { display: block; padding: 10px 14px; background: var(--white); border: 0; }
.credentials div:last-child:nth-child(odd) { grid-column: span 2; }
.credentials dt { font-size: 0.68rem; margin-bottom: 2px; }
.credentials dd { font-size: 0.9rem; line-height: 1.35; }
.credentials dd .fine { display: block; font-size: 0.72rem; font-weight: 500; margin-top: 2px; }

/* Deep-linked project card (e.g. /#austin-legacy) gets a soft highlight */
.p-card:target { border-color: var(--brass); box-shadow: 0 0 0 3px rgba(168, 132, 60, 0.28), var(--shadow); opacity: 1; transform: none; }

/* Site map page */
.sitemap-list { list-style: none; padding: 0; margin: 0 0 8px; border-top: 1px solid var(--line); }
.sitemap-list li { padding: 12px 0; border-bottom: 1px solid var(--line); margin: 0; }
.sitemap-list a { font-weight: 700; color: var(--ink); text-decoration: none; }
.sitemap-list a:hover { color: var(--brass-deep); text-decoration: underline; }

/* ---------- Johor Property Hub logo ---------- */
.brand { flex: none; }
.brand__logo { display: block; height: 44px; width: auto; max-width: 100%; }
@media (max-width: 420px) { .brand__logo { height: 38px; } }
@media (max-width: 350px) { .brand__logo { height: 32px; } }
.drawer__head .brand__logo { height: 36px; }
.site-footer .brand__logo { height: 52px; }

/* Header breakpoint raised for the wider logo: full nav only when it fits on one line */
@media (min-width: 1024px) and (max-width: 1199px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: inline-grid; }
}
.nav a { white-space: nowrap; }
@media (min-width: 1200px) { .nav { gap: 26px; } }
/* Small phones: header WhatsApp button (legal pages) becomes icon-only */
@media (max-width: 420px) {
  .site-header .container > .btn { font-size: 0; gap: 0; width: 44px; min-height: 44px; padding: 0; }
}

/* Brand gold buttons: navy on logo gold (7.2:1 contrast), mirroring the logo */
.btn--primary { background: var(--gold); color: var(--ink); box-shadow: 0 8px 24px rgba(201, 162, 74, 0.35); }
.btn--primary:hover { background: var(--gold-hover); color: var(--ink); }
.feature__tag { background: var(--gold); color: var(--ink); }

/* ---------- Hero: single column + compact Luigi profile under the CTAs ---------- */
.hero__grid--single { grid-template-columns: 1fr; }
.hero__grid--single > div { max-width: 680px; }
.hero-profile {
  display: flex; align-items: center; gap: 14px;
  margin-top: 26px; padding-top: 18px; max-width: 520px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-profile__photo {
  width: 48px; height: 48px; flex: none; border-radius: 50%; object-fit: cover; object-position: center top;
  border: 1px solid rgba(227, 201, 142, 0.55); background: var(--forest);
}
.hero-profile__text { display: flex; flex-direction: column; line-height: 1.4; font-size: 0.8125rem; color: rgba(255, 255, 255, 0.68); min-width: 0; }
.hero-profile__text strong { font-size: 0.95rem; font-weight: 600; color: var(--white); }
.hero-profile + .hero__facts { margin-top: 18px; }
@media (max-width: 480px) {
  .hero-profile { gap: 12px; margin-top: 20px; padding-top: 16px; }
  .hero-profile__photo { width: 42px; height: 42px; }
  .hero-profile__text { font-size: 0.75rem; }
  .hero-profile__text strong { font-size: 0.875rem; }
}
/* Phones: tighter hero rhythm so the CTAs (and the compact profile) sit higher */
@media (max-width: 600px) {
  .hero__inner { padding-top: 36px; padding-bottom: 28px; }
  .hero__tag { margin-bottom: 16px; }
  .hero__sub { margin: 12px 0 10px; }
  .hero__copy { margin-bottom: 22px; }
}
@media (max-width: 600px) {
  .hero__inner { min-height: 0; justify-content: flex-start; }
}

/* ---------- Premium listings page ---------- */
.hero--compact .hero__inner { min-height: min(78svh, 700px); }
.pl-toolbar { display: grid; gap: 12px; margin-bottom: 14px; }
@media (min-width: 900px) { .pl-toolbar { grid-template-columns: minmax(240px, 1fr) 260px; } .pl-toolbar .pl-chips { grid-column: 1 / -1; } }
.pl-search, .pl-select { position: relative; display: block; }
.pl-search svg { position: absolute; left: 16px; top: 50%; width: 18px; height: 18px; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.pl-search input, .pl-select select {
  width: 100%; min-height: 50px; border: 1px solid var(--line); border-radius: 999px; background: var(--white);
  font: inherit; font-size: 16px; color: var(--text); padding: 0 18px; -webkit-appearance: none; appearance: none;
}
.pl-search input { padding-left: 44px; }
.pl-select select {
  padding-right: 40px; cursor: pointer;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%235d6661' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 18px center;
}
.pl-search input:focus, .pl-select select:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 4px rgba(168, 132, 60, 0.14); }
.pl-chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.pl-chips::-webkit-scrollbar { display: none; }
.chip--toggle[aria-pressed="true"] { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.pl-status { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px; margin: 4px 0 26px; font-size: 0.875rem; color: var(--muted); font-weight: 600; }
.pl-link { display: inline-flex; align-items: center; gap: 6px; border: 0; background: none; padding: 4px 0; color: var(--ink); font-weight: 700; font-size: 0.85rem; border-bottom: 1px solid var(--brass); }
.pl-link svg { width: 15px; height: 15px; }
.pl-link[hidden] { display: none; }
.pl-empty { text-align: center; padding: 48px 16px; border: 1px dashed var(--line); border-radius: var(--radius-lg); }
.pl-empty[hidden] { display: none; }
.pl-empty p { color: var(--muted); margin-bottom: 16px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 18px; }
.tag-row:empty { display: none; }
.tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; background: var(--ink); color: var(--white); }
.tag--soft { background: var(--sage-soft); color: var(--forest); }
.status-badge--gold { background: var(--gold); color: var(--ink); }
.pl-card .p-card__foot { align-items: center; }
.pl-card .btns { display: flex; align-items: center; gap: 8px; }
.share-btn {
  width: 42px; height: 42px; flex: none; border-radius: 50%; border: 1px solid var(--line); background: var(--white); color: var(--ink);
  display: inline-grid; place-items: center; transition: border-color 0.2s, background-color 0.2s;
}
.share-btn:hover { border-color: var(--ink); }
.share-btn svg { width: 17px; height: 17px; }
.faq__group { font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-deep); margin: 28px 0 4px; }
.faq__group:first-child { margin-top: 0; }
.toast {
  position: fixed; left: 50%; bottom: 90px; z-index: 400; transform: translate(-50%, 20px); opacity: 0; pointer-events: none;
  background: var(--ink); color: var(--white); padding: 10px 18px; border-radius: 999px; font-size: 0.875rem; font-weight: 600;
  transition: opacity 0.25s, transform 0.25s var(--ease);
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.band__ctas { display: flex; flex-wrap: wrap; gap: 10px; }
.hero h1 + .hero__copy { margin-top: 20px; }
