/* ============================================================
   BLUE FEATHER PROJECTS — Quality is Luxury
   Design system: deep navy / brand blue / ivory / champagne gold
   ============================================================ */

:root {
  --navy: #0A1B2E;
  --navy-2: #0F2740;
  --blue: #1F6FBF;
  --ivory: #FAF6EF;
  --white: #FFFFFF;
  --gold: #C2A164;
  --gold-dark: #A98850;
  --ink: #17222E;
  --muted: #55677A;
  --line: rgba(10, 27, 46, 0.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', -apple-system, 'Segoe UI', sans-serif;
  --header-h: 76px;
  --radius: 14px;
  --shadow: 0 18px 50px -18px rgba(10, 27, 46, 0.25);
  --ease: cubic-bezier(0.22, 0.61, 0.21, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
[hidden] { display: none !important; }
a { color: var(--blue); text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; font-weight: 600; }
p { margin: 0 0 1em; }
section { scroll-margin-top: calc(var(--header-h) + 8px); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.container { width: min(1180px, 92%); margin-inline: auto; }
.section { padding: 88px 0; }
.section-ivory { background: var(--ivory); }
.section-navy { background: var(--navy); color: rgba(255,255,255,0.86); }

.section-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 14px;
}
.section-eyebrow.light { color: var(--gold); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.12; letter-spacing: 0.01em;
  color: var(--navy); margin-bottom: 18px;
}
.section-title.light { color: var(--white); }
.section-sub { color: var(--muted); max-width: 560px; font-size: 17px; }
.light-text { color: rgba(255,255,255,0.75); }
.section-cta { margin-top: 44px; text-align: center; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px;
  font-family: var(--sans); font-size: 13px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
              color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 16px 34px; font-size: 13.5px; }
.btn-block { width: 100%; }

.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 10px 26px -10px rgba(194,161,100,0.65); }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-2); box-shadow: var(--shadow); }
.btn-outline-light { border-color: rgba(255,255,255,0.55); color: var(--white); background: rgba(255,255,255,0.04); }
.btn-outline-light:hover { background: rgba(255,255,255,0.14); border-color: var(--white); }

.btn-link-light {
  display: inline-flex; align-items: center;
  color: rgba(255,255,255,0.92); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 4px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn-link-light:hover { color: var(--gold); border-color: var(--gold); }

.linklike {
  background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; color: inherit; text-decoration: underline;
  text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,0.35);
}
.linklike:hover { color: var(--gold); }

/* ---------------- Header ---------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.header-inner {
  width: min(1280px, 94%); margin-inline: auto;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand-logo {
  width: 158px; height: auto;
  background: var(--white); border-radius: 10px; padding: 5px 12px;
  transition: box-shadow 0.35s var(--ease);
}
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a:not(.btn) {
  color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.25s var(--ease);
}
.main-nav a:not(.btn):hover { color: var(--gold); }
.main-nav .nav-call { display: none; }
.header-call { padding: 11px 22px; }

.site-header.scrolled { background: rgba(255,255,255,0.97); box-shadow: 0 6px 30px -12px rgba(10,27,46,0.25); }
.site-header.scrolled .main-nav a:not(.btn) { color: var(--navy); }
.site-header.scrolled .main-nav a:not(.btn):hover { color: var(--blue); }
.site-header.scrolled .brand-logo { box-shadow: 0 2px 10px rgba(10,27,46,0.12); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 10px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--white); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background-color 0.3s var(--ease);
}
.site-header.scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 48px) 0 80px;
  color: var(--white);
}
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center 38%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7,18,32,0.88) 0%, rgba(7,18,32,0.62) 46%, rgba(7,18,32,0.28) 100%);
}
.hero-content { position: relative; width: min(1180px, 92%); margin-inline: auto; max-width: 1180px; }
.hero-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.hero-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.6rem, 6.4vw, 4.9rem);
  line-height: 1.04; letter-spacing: 0.005em; margin-bottom: 18px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem); font-weight: 600;
  letter-spacing: 0.06em; color: rgba(255,255,255,0.92); margin-bottom: 26px;
}
.hero-facts {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  padding: 16px 0; margin-bottom: 20px;
  border-top: 1px solid rgba(255,255,255,0.22);
  border-bottom: 1px solid rgba(255,255,255,0.22);
  max-width: 720px;
}
.hero-facts li { font-size: 13.5px; font-weight: 600; letter-spacing: 0.05em; color: rgba(255,255,255,0.95); }
.hero-facts strong { color: var(--gold); font-size: 15px; }
.fact-note { display: block; font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.65); letter-spacing: 0.03em; }
.hero-text { max-width: 520px; color: rgba(255,255,255,0.82); font-size: 16px; margin-bottom: 34px; }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px; margin-bottom: 30px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); margin: 0;
}
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: #46C98D; animation: pulse 2.2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(70,201,141,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(70,201,141,0); }
  100% { box-shadow: 0 0 0 0 rgba(70,201,141,0); }
}

/* ---------------- Glance ---------------- */
.glance { padding: 64px 0; border-bottom: 1px solid var(--line); }
.glance-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 28px 20px;
}
.glance-item { text-align: center; padding: 6px 4px; }
.glance-icon { width: 30px; height: 30px; margin: 0 auto 12px; color: var(--gold-dark); }
.glance-value { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--navy); margin: 0 0 3px; }
.glance-label { font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin: 0; }

/* ---------------- Gallery ---------------- */
.gallery { margin-top: 48px; columns: 3; column-gap: 20px; }
.gallery-item {
  position: relative; margin: 0 0 20px; break-inside: avoid;
  border-radius: var(--radius); overflow: hidden; cursor: zoom-in;
  box-shadow: 0 10px 34px -16px rgba(10,27,46,0.3);
}
.gallery-item img { width: 100%; transition: transform 0.9s var(--ease); }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 18px 13px;
  background: linear-gradient(to top, rgba(7,18,32,0.72), transparent);
  color: var(--white); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
}

/* ---------------- Why ---------------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.why-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 26px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(194,161,100,0.55); }
.why-num {
  font-family: var(--serif); font-size: 15px; font-style: italic;
  color: var(--gold-dark); display: block; margin-bottom: 16px;
}
.why-card h3 {
  font-family: var(--sans); font-size: 15px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 12px;
}
.why-card p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ---------------- Specifications ---------------- */
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.spec {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.spec[open] { border-color: rgba(194,161,100,0.6); box-shadow: var(--shadow); }
.spec summary {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 20px 24px; cursor: pointer; list-style: none;
  font-size: 14px; font-weight: 800; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--navy);
}
.spec summary::-webkit-details-marker { display: none; }
.spec-chevron {
  flex: 0 0 auto; width: 10px; height: 10px;
  border-right: 2px solid var(--gold-dark); border-bottom: 2px solid var(--gold-dark);
  transform: rotate(45deg); transition: transform 0.3s var(--ease);
}
.spec[open] .spec-chevron { transform: rotate(225deg); }
.spec ul { padding: 0 24px 22px; }
.spec li {
  position: relative; padding: 7px 0 7px 22px;
  font-size: 14.5px; color: var(--muted);
  border-top: 1px dashed var(--line);
}
.spec li::before {
  content: ''; position: absolute; left: 2px; top: 15px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
}

/* ---------------- Brands strip ---------------- */
.brands { background: var(--navy); padding: 54px 0; text-align: center; }
.brands-title {
  font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--white); margin-bottom: 26px;
}
.brands-list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 0;
}
.brands-list li {
  font-size: 14px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); padding: 0 22px; position: relative;
}
.brands-list li:not(:last-child)::after {
  content: ''; position: absolute; right: -2px; top: 50%;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); transform: translateY(-50%);
}
.brands-note { font-size: 12px; color: rgba(255,255,255,0.4); margin: 22px 0 0; letter-spacing: 0.04em; }

/* ---------------- Location ---------------- */
.location-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.location-list { margin: 8px 0 30px; }
.location-list li {
  padding: 12px 0 12px 30px; position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 15px; color: var(--muted);
}
.location-list li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 8px; height: 8px; border-radius: 50%;
  border: 2px solid var(--gold-dark);
}
.location-map {
  aspect-ratio: 4 / 3; border-radius: var(--radius);
  background:
    linear-gradient(rgba(10,27,46,0.86), rgba(10,27,46,0.86)),
    repeating-linear-gradient(45deg, var(--navy-2) 0 12px, var(--navy) 12px 24px);
  color: rgba(255,255,255,0.9);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; padding: 30px;
}
.location-map svg { color: var(--gold); }
.location-map p { font-family: var(--serif); font-size: 24px; line-height: 1.3; margin: 0; }
.location-map span { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.location-map:has(iframe) { display: block; padding: 0; background: var(--navy); }
.location-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------------- About ---------------- */
.about-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 70px; align-items: start; }
.about-copy p { color: var(--muted); font-size: 16.5px; }
.about-copy p strong { color: var(--navy); }
.about-philosophy {
  font-family: var(--serif); font-size: 24px; font-style: italic;
  color: var(--navy) !important; margin-top: 26px;
  padding-left: 20px; border-left: 3px solid var(--gold);
}
.about-list li {
  padding: 13px 0 13px 34px; position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 15px; font-weight: 600; color: var(--ink);
}
.about-list li::before {
  content: ''; position: absolute; left: 2px; top: 19px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--gold-dark); border-bottom: 2px solid var(--gold-dark);
  transform: rotate(-45deg);
}
.about-address {
  margin-top: 30px; font-style: normal; font-size: 14.5px;
  color: var(--muted); line-height: 1.8;
  background: var(--ivory); border-radius: var(--radius); padding: 22px 26px;
}
.about-address span {
  display: block; font-size: 11px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 8px;
}

/* ---------------- Leadership ---------------- */
.leader-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; margin-top: 52px; }
.leader-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px; overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.leader-card:hover { transform: translateY(-5px); border-color: rgba(194,161,100,0.5); }
.leader-photo { aspect-ratio: 4 / 4.4; overflow: hidden; }
.leader-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.leader-body { padding: 30px 32px 36px; }
.leader-body h3 { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--white); }
.leader-role {
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin: 6px 0 18px;
}
.leader-tag {
  font-family: var(--serif); font-style: italic; font-size: 18.5px;
  color: rgba(255,255,255,0.92); line-height: 1.45; margin-bottom: 14px;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.leader-desc { font-size: 14.5px; color: rgba(255,255,255,0.62); margin: 0; }
.leader-combined {
  margin-top: 44px; text-align: center;
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 40px;
}
.leader-combined h3 {
  font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold); margin-bottom: 12px;
}
.leader-combined p { max-width: 640px; margin: 0 auto; color: rgba(255,255,255,0.7); font-size: 15.5px; }

/* ---------------- Philosophy ---------------- */
.philosophy {
  background: var(--ivory); padding: 130px 0; text-align: center;
  position: relative; overflow: hidden;
}
.philosophy::before {
  content: ''; position: absolute; left: 50%; top: 0;
  width: 1px; height: 54px; background: var(--gold);
}
.philosophy-statement {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  letter-spacing: 0.04em; color: var(--navy); line-height: 1.05;
}
.philosophy-statement span { font-style: italic; color: var(--gold-dark); }
.philosophy-statement .gold-dot { color: var(--gold); font-style: normal; }
.philosophy-text {
  max-width: 640px; margin: 30px auto 0;
  font-size: 17px; color: var(--muted);
}

/* ---------------- Brochure ---------------- */
.brochure-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.brochure .section-sub { margin-bottom: 0; }

/* ---------------- Enquire / Form ---------------- */
.enquire-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.enquire-alt { margin-top: 36px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.14); }
.enquire-alt p { color: rgba(255,255,255,0.7); font-size: 14.5px; }
.enquire-alt-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }

.enquire-form {
  background: var(--white); border-radius: 18px;
  padding: 40px 38px; box-shadow: 0 30px 70px -30px rgba(0,0,0,0.5);
}
.form-row { margin-bottom: 18px; }
.form-row-half { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.enquire-form label {
  display: block; font-size: 12px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 7px;
}
.enquire-form label span { color: #B0402F; }
.enquire-form input, .enquire-form select, .enquire-form textarea {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: var(--white);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.enquire-form input:focus, .enquire-form select:focus, .enquire-form textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31,111,191,0.14);
}
.enquire-form input.invalid, .enquire-form textarea.invalid {
  border-color: #B0402F; box-shadow: 0 0 0 3px rgba(176,64,47,0.1);
}
.form-error {
  display: none; font-size: 12.5px; color: #B0402F;
  margin-top: 5px; font-weight: 600;
}
.form-error.show { display: block; }
.form-consent .checkbox {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: 13.5px; font-weight: 500; letter-spacing: 0;
  text-transform: none; color: var(--muted); cursor: pointer; margin: 0;
}
.form-consent input { width: 17px; height: 17px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--navy); }
.form-success {
  margin: 18px 0 0; padding: 14px 18px;
  background: #EAF6EF; border: 1px solid #BFE3CC; border-radius: 10px;
  color: #1E6B41; font-weight: 700; font-size: 14.5px; text-align: center;
}

/* ---------------- Final CTA ---------------- */
.final-cta {
  position: relative; padding: 150px 0; text-align: center; color: var(--white);
  overflow: hidden;
}
.final-media, .final-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.final-media img { object-fit: cover; object-position: center 30%; }
.final-overlay { position: absolute; inset: 0; background: rgba(7,18,32,0.82); }
.final-content { position: relative; }
.final-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 16px;
}
.final-text { color: rgba(255,255,255,0.78); font-size: 17px; margin-bottom: 40px; }
.final-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ---------------- Footer ---------------- */
.site-footer { background: #071422; color: rgba(255,255,255,0.75); padding: 70px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 0.6fr; gap: 50px;
  padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-chip {
  display: inline-block; background: var(--white);
  border-radius: 10px; padding: 8px 16px;
}
.footer-logo-chip img { width: 170px; height: auto; }
.footer-tag {
  font-family: var(--serif); font-size: 21px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin: 20px 0 0;
}
.footer-col h3 {
  font-size: 12px; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--white); margin-bottom: 18px;
}
.footer-col p { font-size: 14.5px; margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.85); }
.footer-col a:hover { color: var(--gold); }
.footer-muted { color: rgba(255,255,255,0.45); font-size: 13.5px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14.5px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px;
  padding: 24px 0; font-size: 13px; color: rgba(255,255,255,0.45);
}
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; gap: 12px; align-items: center; }

/* ---------------- Mobile sticky CTA ---------------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 110;
  display: none; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(7,20,34,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.sticky-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; border-radius: 999px;
  font-size: 13px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  min-height: 50px;
}
.sticky-call { background: var(--gold); color: var(--navy); }
.sticky-wa { background: #1FAF54; color: var(--white); }

/* ---------------- Lightbox ---------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5,12,22,0.94);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.lightbox-figure { margin: 0; max-width: min(1100px, 92vw); text-align: center; }
.lightbox-figure img {
  max-width: 100%; max-height: 78vh; width: auto; height: auto;
  margin-inline: auto; border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-figure figcaption {
  margin-top: 14px; color: rgba(255,255,255,0.85);
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2); color: var(--white);
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 26px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.25s var(--ease);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-close { top: 22px; right: 22px; }
.lightbox-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---------------- Modals ---------------- */
.modal {
  position: fixed; inset: 0; z-index: 210;
  background: rgba(5,12,22,0.7);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.modal-card {
  position: relative; background: var(--white);
  border-radius: 18px; max-width: 620px; width: 100%;
  max-height: 82vh; overflow-y: auto;
  padding: 44px 42px;
}
.modal-card h2 { font-family: var(--serif); font-size: 30px; color: var(--navy); margin-bottom: 18px; }
.modal-card p { font-size: 14.5px; color: var(--muted); }
.modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: 0; font-size: 30px; line-height: 1;
  color: var(--muted); cursor: pointer; padding: 6px;
}
.modal-close:hover { color: var(--navy); }

/* ---------------- Reveal animations ---------------- */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .gallery-item img, .btn, .why-card, .leader-card { transition: none; }
  .pulse-dot { animation: none; }
}

/* ---------------- Walkthrough videos ---------------- */
.walkthrough { margin-top: 60px; }
.walkthrough-title {
  font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--navy); text-align: center; margin-bottom: 28px;
}
.walkthrough-strip {
  display: grid; grid-template-columns: 1.35fr 0.85fr 1.35fr;
  gap: 20px; align-items: center;
}
.walk-item {
  position: relative; margin: 0;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 14px 40px -16px rgba(10,27,46,0.35);
  background: var(--navy);
}
.walk-item video { width: 100%; display: block; object-fit: cover; aspect-ratio: 16 / 10; }
.walk-item.portrait video { aspect-ratio: 3 / 4; }
.walk-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 16px 12px;
  background: linear-gradient(to top, rgba(7,18,32,0.75), transparent);
  color: var(--white); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  pointer-events: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .main-nav { gap: 20px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .glance-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed; top: var(--header-h); right: 0; left: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white);
    box-shadow: 0 24px 40px -20px rgba(10,27,46,0.35);
    padding: 10px 6% 22px;
    transform: translateY(-115%);
    transition: transform 0.4s var(--ease);
    z-index: -1;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a:not(.btn) {
    color: var(--navy); padding: 15px 4px;
    border-bottom: 1px solid var(--line); font-size: 14px;
  }
  .main-nav .nav-call { display: inline-flex; margin-top: 16px; justify-content: center; }
  .header-call { display: none; }
  .nav-toggle { display: flex; }

  .specs-grid { grid-template-columns: 1fr; }
  .about-grid, .location-grid, .enquire-grid { grid-template-columns: 1fr; gap: 44px; }
  .gallery { columns: 2; }
  .leader-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  body { padding-bottom: 72px; font-size: 15px; }
  .section { padding: 64px 0; }
  .sticky-cta { display: grid; }

  .hero { min-height: auto; padding: calc(var(--header-h) + 64px) 0 72px; align-items: flex-end; }
  .hero-overlay { background: linear-gradient(to top, rgba(7,18,32,0.94) 22%, rgba(7,18,32,0.55) 65%, rgba(7,18,32,0.35)); }
  .hero-media img { object-position: center; }
  .hero-facts { gap: 8px 18px; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .hero-ctas .btn-link-light { margin-inline: auto; }

  .glance { padding: 46px 0; }
  .glance-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }

  /* gallery: touch swipe strip */
  .gallery {
    columns: 1; display: flex; gap: 14px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-left: -4%; margin-right: -4%; padding: 4px 4% 14px;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery-item { flex: 0 0 80%; scroll-snap-align: center; margin: 0; }
  .gallery-item img { aspect-ratio: 4 / 3; object-fit: cover; }

  .walkthrough { margin-top: 44px; }
  .walkthrough-strip {
    display: flex; gap: 14px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 14px;
    align-items: stretch;
  }
  .walkthrough-strip::-webkit-scrollbar { display: none; }
  .walk-item { flex: 0 0 72%; scroll-snap-align: center; }
  .walk-item video, .walk-item.portrait video { aspect-ratio: 3 / 4; height: 100%; }

  .why-grid { grid-template-columns: 1fr; }
  .brands-list li { padding: 0 14px; font-size: 12px; }
  .location-map { aspect-ratio: 4 / 3.4; }
  .philosophy { padding: 90px 0; }
  .desktop-br { display: none; }
  .brochure-inner { flex-direction: column; align-items: flex-start; }
  .enquire-form { padding: 30px 22px; }
  .form-row-half { grid-template-columns: 1fr; }
  .final-cta { padding: 100px 0; }
  .final-btns .btn { flex: 1 1 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { padding-bottom: 28px; }
  .leader-photo { aspect-ratio: 4 / 4.6; }
  .lightbox-prev, .lightbox-next { display: none; }
}

@media (max-width: 380px) {
  .brand-logo { width: 132px; }
  .glance-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1440px) {
  .container { width: min(1280px, 90%); }
}

/* ============================================================
   SIGNATURE MOTION LAYER
   ============================================================ */

/* Masked line-by-line hero reveal (on load) */
.hl { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hl-in {
  display: block; transform: translateY(115%);
  animation: hlUp 1.15s var(--ease) 0.3s forwards;
  will-change: transform;
}
.hl-delay { animation-delay: 0.48s; }
@keyframes hlUp { to { transform: translateY(0); } }

/* Hero supporting elements: staged fade-up on load */
.hero-load { opacity: 0; transform: translateY(24px); animation: heroFade 0.9s var(--ease) forwards; }
.hero-load[data-delay="2"] { animation-delay: 0.7s; }
.hero-load[data-delay="3"] { animation-delay: 0.86s; }
.hero-load[data-delay="4"] { animation-delay: 1.02s; }
.hero-load[data-delay="5"] { animation-delay: 1.18s; }
.hero-load[data-delay="6"] { animation-delay: 1.34s; }
p.hero-eyebrow.hero-load { animation-delay: 0.15s; }
@keyframes heroFade { to { opacity: 1; transform: none; } }

/* Hero parallax base (JS drives translateY) */
.hero-media { overflow: hidden; }
.hero-media img { transform: scale(1.12); will-change: transform; }

/* Slow editorial marquee */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex; flex-wrap: nowrap; width: max-content;
  animation: marquee 44s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track li { padding: 0 38px; white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .hl-in, .hero-load { animation: none; opacity: 1; transform: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
  .hero-media img { transform: none; }
}

/* ============================================================
   MAP BAND + LAYOUT OVERRIDES (v2)
   ============================================================ */

/* Location section: single column now (map moved to bottom band) */
.location-grid { grid-template-columns: 1fr; }
.location-copy { max-width: 680px; }

/* Bottom map band */
.map-band { background: var(--ivory); padding: 88px 0; }
.map-frame {
  position: relative; height: 440px; margin-top: 36px;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: var(--navy);
}
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 1; }
.map-fallback {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  color: rgba(255,255,255,0.85); text-align: center; padding: 20px;
}
.map-fallback svg { color: var(--gold); }
.map-fallback p { font-family: var(--serif); font-size: 22px; margin: 0; }
.map-open-chip {
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  background: var(--white); color: var(--navy);
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 11px 18px; border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.28);
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease);
}
.map-open-chip:hover { transform: translateY(-2px); background: var(--gold); }

/* Mobile: recomposed hero (framed photo on top, content below) + touch-safe map */
@media (max-width: 767px) {
  .hero {
    display: block; background: var(--navy);
    padding: calc(var(--header-h) + 22px) 0 66px;
  }
  .hero-media {
    position: relative; inset: auto;
    width: 92%; height: auto; aspect-ratio: 4 / 3.1;
    margin: 0 auto 36px;
    border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 24px 50px -22px rgba(0,0,0,0.65);
  }
  .hero-media img {
    position: absolute; inset: 0;
    object-fit: cover; object-position: center 30%;
    transform: none !important;
  }
  .hero-overlay { display: none; }
  .hero-eyebrow { margin-top: 4px; }
  .map-band { padding: 64px 0; }
  .map-frame { height: 300px; }
  .map-frame iframe { pointer-events: none; }

  /* comfortable side gutters everywhere on mobile */
  .container, .hero-content { width: calc(100% - 44px); }

  /* long spec names must never touch the screen edge */
  .glance-item { min-width: 0; padding-inline: 6px; }
  .glance-value { font-size: 19px; overflow-wrap: break-word; hyphens: auto; }
  .glance-label { overflow-wrap: break-word; }
}

/* ============================================================
   HOME PAGE (builder site)
   ============================================================ */

.home-hero {
  background: var(--navy); color: var(--white);
  padding: calc(var(--header-h) + 70px) 0 90px;
  position: relative; overflow: hidden;
}
.home-hero::after {
  content: ''; position: absolute; right: -140px; top: -140px;
  width: 420px; height: 420px; border-radius: 50%;
  border: 1px solid rgba(194,161,100,0.25); pointer-events: none;
}
.home-hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 64px; align-items: center; position: relative; z-index: 1;
}
.home-hero .hero-title { color: var(--white); }
.home-hero-img {
  position: relative; display: block;
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 30px 70px -26px rgba(0,0,0,0.65);
  transition: transform 0.4s var(--ease);
}
.home-hero-img:hover { transform: translateY(-5px); }
.home-hero-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.home-hero-img-tag {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(7,20,34,0.88); color: var(--gold);
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 999px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}

.glance-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------------- Projects gallery (full-bleed swipe strip, dxora-style) ---------------- */
.projects-strip {
  display: flex; gap: 22px; align-items: center;
  margin-top: 48px; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  padding: 26px max(22px, calc(50vw - 590px)) 34px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.projects-strip::-webkit-scrollbar { display: none; }

.project-card {
  position: relative; flex: 0 0 262px; height: 372px;
  scroll-snap-align: center;
  border: 0; padding: 0; cursor: pointer; text-align: left;
  border-radius: 18px; overflow: hidden;
  background: var(--navy); font-family: var(--sans);
  box-shadow: 0 16px 40px -18px rgba(10,27,46,0.4);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), filter 0.35s var(--ease);
  filter: saturate(0.82);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); filter: saturate(1); }
.project-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.project-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,18,32,0.88) 0%, rgba(7,18,32,0.12) 52%, transparent);
  pointer-events: none;
}

/* ONGOING project — big, centered, highlighted */
.project-featured {
  flex-basis: 430px; height: 500px;
  border: 3px solid var(--gold); filter: none;
  animation: glowPulse 2.8s var(--ease) infinite;
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(194,161,100,0.45), 0 26px 60px -20px rgba(10,27,46,0.55); }
  50% { box-shadow: 0 0 0 12px rgba(194,161,100,0), 0 26px 60px -20px rgba(10,27,46,0.55); }
}
.project-featured .project-name { font-size: 32px; }
.project-featured .project-view {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  background: var(--gold); color: var(--navy);
  padding: 11px 20px; border-radius: 999px; margin-top: 14px;
  border: 0; font-size: 12px;
}

.project-pattern {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(10,27,46,0.94), rgba(10,27,46,0.94)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(194,161,100,0.22) 18px 19px),
    repeating-linear-gradient(-45deg, transparent 0 18px, rgba(194,161,100,0.12) 18px 19px);
}
.badge-live, .badge-done {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
}
.badge-live { background: var(--gold); color: var(--navy); }
.badge-done { background: rgba(255,255,255,0.14); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.28); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.project-featured .badge-live {
  font-size: 11.5px; padding: 10px 18px;
  box-shadow: 0 6px 18px rgba(194,161,100,0.5);
}

.project-card-body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 24px 22px; display: flex; flex-direction: column; gap: 5px;
}
.project-name {
  font-family: var(--serif); font-size: 25px; font-weight: 600; color: var(--white);
}
.project-loc {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
}
.project-facts { font-size: 12.5px; color: rgba(255,255,255,0.75); margin-top: 4px; }
.project-more {
  margin-top: 10px; font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid rgba(194,161,100,0.4); align-self: flex-start; padding-bottom: 3px;
}
.project-view {
  margin-top: 12px; font-size: 12px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  transition: letter-spacing 0.3s var(--ease);
}
.project-featured:hover .project-view { letter-spacing: 0.06em; }

@media (max-width: 900px) {
  .home-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .home-hero { padding: calc(var(--header-h) + 40px) 0 64px; }
  .glance-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .projects-strip { padding-left: 22px; padding-right: 22px; gap: 16px; }
  .project-card { flex-basis: 62%; height: 360px; }
  .project-featured { flex-basis: 84%; height: 470px; }
  .project-featured .project-name { font-size: 27px; }
}

@media (prefers-reduced-motion: reduce) {
  .project-featured { animation: none; }
  .hero-carousel img { transition: none; }
}

/* ---------------- Home hero carousel ---------------- */
.home-hero-img { aspect-ratio: 4 / 3; }
.hero-carousel img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0;
  transition: opacity 1.15s var(--ease);
}
.hero-carousel img.active { opacity: 1; }

/* Single-button sticky bar (call only) */
.sticky-cta { grid-template-columns: 1fr; }

/* ---------------- Projects strip: center-overlay arrows + mobile badge fix ---------------- */
.projects-wrap { position: relative; }
.strip-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 52px; height: 52px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,0.94);
  color: var(--navy); font-size: 24px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(10,27,46,0.45);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.strip-arrow:hover { background: var(--navy); color: var(--gold); }
.strip-arrow:active { transform: translateY(-50%) scale(0.92); }
.strip-prev { left: 20px; }
.strip-next { right: 20px; }

@media (max-width: 767px) {
  .strip-arrow { width: 44px; height: 44px; font-size: 20px; }
  .strip-prev { left: 10px; }
  .strip-next { right: 10px; }
  .badge-live, .badge-done {
    top: 12px; left: 12px;
    font-size: 9px; letter-spacing: 0.1em;
    padding: 7px 11px; white-space: nowrap;
  }
  .project-featured .badge-live { font-size: 9px; padding: 8px 12px; }
}

/* Non-clickable showcase card (e.g. under-finishing project) */
.project-new { cursor: default; }
.project-new:hover { transform: none; filter: saturate(1); }
