:root {
  --navy: #0c1b2e;
  --navy-2: #102541;
  --ink: #1a2433;
  --slate: #51607a;
  --line: #e3e8f0;
  --paper: #f6f8fb;
  --white: #ffffff;
  --accent: #1f9d76;
  --accent-deep: #157a5b;
  --gold: #c8a35a;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 24px 60px rgba(12, 27, 46, 0.10);
  --shadow-sm: 0 8px 24px rgba(12, 27, 46, 0.06);
  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-name {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; }

.container {
  width: min(1160px, calc(100% - 3rem));
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.brand-name { font-size: 1.2rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a { color: var(--slate); transition: color 0.15s ease; }
.site-nav a:hover { color: var(--navy); }

.nav-cta {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white) !important;
  font-weight: 600;
}
.nav-cta:hover { background: var(--navy-2); }

/* ---------- HERO ---------- */
.hero {
  padding: 5rem 0 4.5rem;
  background:
    radial-gradient(60% 80% at 85% -10%, rgba(31, 157, 118, 0.10), transparent 60%),
    linear-gradient(180deg, var(--paper), var(--white));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  font-weight: 800;
}

.lead {
  margin: 1.4rem 0 0;
  max-width: 54ch;
  font-size: 1.1rem;
  color: var(--slate);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.hero-trust {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--slate);
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--accent-deep); color: var(--white); box-shadow: 0 10px 24px rgba(21, 122, 91, 0.25); }
.button.primary:hover { background: var(--accent); }
.button.secondary { background: var(--white); color: var(--navy); border-color: var(--line); }
.button.secondary:hover { border-color: var(--navy); }
.button.full { width: 100%; margin-top: 0.5rem; }

/* photo slots */
.hero-photo, .ba-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy);
}
.hero-photo {
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}
.hero-photo img, .ba-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-hint {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  line-height: 1.5;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}
.photo-hint code {
  font-size: 0.78rem;
  color: var(--gold);
}
.photo-missing img { display: none; }
.photo-missing .photo-hint { display: flex; }

/* ---------- METRICS ---------- */
.metrics {
  background: var(--navy);
  color: var(--white);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2.6rem 0;
}
.metric {
  text-align: center;
  padding: 0 0.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.10);
}
.metric:first-child { border-left: none; }
.metric-value {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}
.metric-value .unit {
  font-size: 0.45em;
  color: var(--accent);
  margin-left: 0.15em;
  font-weight: 700;
}
.metric-label {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.66);
}

/* ---------- SECTIONS ---------- */
.section { padding: 5.5rem 0; }
.section.about, .section.approach, .section.structure { background: var(--paper); }

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
}
.section-head p {
  margin: 1.1rem 0 0;
  color: var(--slate);
  max-width: 60ch;
}
.section-head.centered {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 720px;
}
.section-head.centered p { margin-left: auto; margin-right: auto; }

.section-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: start;
}

/* about points */
.about-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.about-points li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.about-points h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.about-points h3::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.about-points p { margin: 0; color: var(--slate); font-size: 0.98rem; }

/* capability cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card.highlight {
  background: var(--navy);
  border-color: var(--navy);
}
.card.highlight h3, .card.highlight p { color: var(--white); }
.card.highlight .ticks li { color: rgba(255,255,255,0.82); }
.card.highlight .ticks li::before { color: var(--accent); }
.card h3 { font-size: 1.35rem; margin-bottom: 0.7rem; }
.card > p { color: var(--slate); margin: 0 0 1.3rem; }

.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.ticks li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.95rem;
  color: var(--ink);
}
.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-deep);
  font-weight: 800;
}

/* process */
.process-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  counter-reset: step;
}
.process-grid li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.3rem;
  box-shadow: var(--shadow-sm);
}
.step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  margin-bottom: 1rem;
}
.process-grid h3 { font-size: 1.05rem; margin-bottom: 0.45rem; }
.process-grid p { margin: 0; color: var(--slate); font-size: 0.92rem; }

/* portfolio / transformation galleries */
.gallery-block { margin-top: 2.5rem; }
.gallery-block:first-of-type { margin-top: 0; }
.gallery-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.gallery-label p { margin: 0; color: var(--slate); font-size: 0.98rem; }
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.tag-before { background: #8a94a6; }
.tag-during { background: var(--gold); }
.tag-after  { background: var(--accent-deep); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--paper);
}
.shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.shot:hover img { transform: scale(1.04); }
.gallery-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--slate);
  font-style: italic;
}

/* testimonials */
.testimonials { background: var(--white); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.testimonial-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 2.2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.8rem;
}
.testimonial-card blockquote {
  margin: 0;
  padding: 0;
  border: none;
}
.testimonial-card blockquote::before {
  content: "\201C";
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.testimonial-card blockquote p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--slate);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  flex-shrink: 0;
  border: 2px solid var(--line);
}
.testimonial-author strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.testimonial-author span {
  display: block;
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 0.1rem;
}

/* tenants */
.tenants { background: var(--navy); color: var(--white); }
.tenants-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.tenants .section-head h2 { color: var(--white); }
.tenants .section-head p { color: rgba(255,255,255,0.72); }
.tenants .eyebrow { color: var(--accent); }
.tenant-stats { display: grid; gap: 1rem; }
.tenant-stat {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
}
.tenant-stat strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  min-width: 4.5rem;
}
.tenant-stat span { color: rgba(255,255,255,0.8); font-size: 0.98rem; }

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-details {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}
.contact-details strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.2rem;
}
.contact-details p { margin: 0; font-weight: 600; color: var(--navy); }

.enquiry-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow);
}
.enquiry-form h3 { font-size: 1.5rem; margin-bottom: 1.4rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31, 157, 118, 0.15);
}
.field textarea { resize: vertical; }
.form-success {
  display: none;
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(31, 157, 118, 0.10);
  color: var(--accent-deep);
  font-size: 0.95rem;
  font-weight: 600;
}
.form-success.show { display: block; }
.form-error {
  display: none;
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(200, 60, 60, 0.10);
  color: #b13434;
  font-size: 0.95rem;
  font-weight: 600;
}
.form-error.show { display: block; }
#submitBtn:disabled { opacity: 0.6; cursor: default; transform: none; }
.cf-turnstile { margin: 0.75rem 0 0.25rem; }

/* honeypot — hidden from humans, visible to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.js-email { color: var(--accent-deep); font-weight: 600; }
.js-email:hover { text-decoration: underline; }

/* legal / privacy page */
.legal { padding: 3.5rem 0 4rem; background: linear-gradient(180deg, var(--paper), var(--white)); }
.legal-inner { max-width: 780px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; }
.legal-updated { color: var(--slate); font-size: 0.9rem; margin: 0.6rem 0 2rem; }
.legal h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2.2rem 0 0.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.legal p, .legal li { color: var(--ink); }
.legal ul { padding-left: 1.2rem; display: grid; gap: 0.5rem; }
.legal a { color: var(--accent-deep); text-decoration: underline; }
.legal-back { margin-top: 2.5rem; font-weight: 600; }

/* footer */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 3rem 0 2.5rem; }
.footer-inner { display: grid; gap: 1rem; max-width: 760px; }
.footer-brand {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--white); font-weight: 700; font-size: 1.1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.footer-tag { margin: 0; color: rgba(255,255,255,0.78); }
.footer-creds {
  list-style: none;
  margin: 0.4rem 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.82);
}
.footer-creds li { white-space: nowrap; }
.footer-creds span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.1rem;
}
.footer-disclaimer { margin: 0; font-size: 0.82rem; line-height: 1.6; color: rgba(255,255,255,0.5); }
.footer-legal { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-legal a { color: rgba(255,255,255,0.78); text-decoration: underline; }
.footer-legal a:hover { color: var(--white); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-grid, .section-grid, .tenants-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-panel { order: -1; max-width: 460px; }
  .cards-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .metric:nth-child(odd) { border-left: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}

@media (max-width: 720px) {
  .site-nav { display: none; }
  .hero { padding: 3.2rem 0; }
  .section { padding: 4rem 0; }
  .process-grid { grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-actions { flex-direction: column; }
}

@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
}
