/* =========================================================
   FNJ Group Ltd — Stylesheet
   A simple guide for beginners:
   - Colours and fonts are defined once at the top (":root")
     as "variables" (--like-this). Change a value there and it
     updates everywhere on the site.
   - The file is organised top-to-bottom: base styles, layout
     helpers, header, hero, sections, footer, forms, then
     responsive (mobile) adjustments at the very bottom.
   ========================================================= */

:root {
  /* Colour palette — brand palette v2 (approx. 60% ivory, 25% navy, 10% sage, ≤5% gold) */
  --colour-bg: #F7F5F0;              /* warm ivory background */
  --colour-bg-alt: #F0ECE3;          /* slightly deeper warm ivory for alternating sections */
  --colour-surface: #FFFFFF;         /* card / panel background */
  --colour-text: #39434A;            /* soft charcoal for body copy */
  --colour-text-muted: #626D72;      /* softer supporting text */
  --colour-navy: #172A3A;            /* primary deep navy — headings, nav, primary buttons, footer */
  --colour-navy-dark: #0F1E2A;       /* hover/darker navy */
  --colour-sage: #7C8868;            /* muted sage — icons, small highlights, accents (secondary, used sparingly) */
  --colour-sage-dark: #626D51;
  --colour-sage-light: #E9EBE3;
  --colour-gold: #B99A62;            /* warm gold/tan — used very sparingly: fine lines, EST. 2021, tiny accents */
  --colour-gold-light: #F1E9D8;
  --colour-border: #E3DFD4;

  /* Typography */
  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing / shape */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-soft: 0 12px 32px rgba(23, 42, 58, 0.08);
  --shadow-card: 0 6px 20px rgba(23, 42, 58, 0.07);
  --max-width: 1180px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--colour-bg);
  color: var(--colour-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--colour-navy);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--colour-text); }

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

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

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

section { padding: 88px 0; }
.section-alt { background: var(--colour-bg-alt); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--colour-sage-dark);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-head {
  max-width: 680px;
  margin: 0 0 48px;
}
.section-head.centre { margin-left: auto; margin-right: auto; text-align: center; }

.section-head p { color: var(--colour-text-muted); font-size: 1.05rem; }

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--colour-navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 1000;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* Focus visibility for keyboard users */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--colour-gold);
  outline-offset: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
}

.btn-primary {
  background: var(--colour-navy);
  color: #fff;
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { background: var(--colour-navy-dark); }

.btn-secondary {
  background: transparent;
  color: var(--colour-navy);
  border-color: rgba(23, 42, 58, 0.25);
}
.btn-secondary:hover { border-color: var(--colour-navy); background: rgba(23, 42, 58, 0.04); }

.btn-on-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(2px);
}
.btn-on-dark:hover { background: rgba(255, 255, 255, 0.18); }

/* Light (ivory) button — used sparingly on dark navy CTA bands instead of a
   gold button, so gold stays a rare fine-detail accent rather than a
   dominant colour (see brand palette notes at the top of this file). */
.btn-light {
  background: var(--colour-bg);
  color: var(--colour-navy);
}
.btn-light:hover { background: #fff; }

.btn-block { width: 100%; }
.btn-caps { text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(247, 245, 240, 0.97);
  border-bottom: 1px solid var(--colour-border);
  /* Note: intentionally no backdrop-filter here. It's a nice frosted-glass
     effect, but it causes a well-known CSS quirk where the mobile menu
     (which is fixed-position, and lives inside this header) gets trapped
     inside the header's small box instead of covering the full screen. */
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.logo .logo-img-wrap {
  display: flex;
  align-items: center;
}
.logo .logo-img {
  height: 46px;
  width: auto;
  display: block;
}
.logo .logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--colour-gold);
  padding-left: 2px;
}
/* In the footer the logo sits on the dark navy background. The artwork's
   navy linework needs a light backing plate behind it to stay legible
   there — the header doesn't need this, since its background is already
   light. */
.footer-brand .logo .logo-img-wrap {
  background: var(--colour-bg);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
}
.footer-brand .logo .logo-img { height: 34px; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav .nav-cta-mobile { display: none; }
.main-nav a {
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--colour-navy);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  border-bottom-color: var(--colour-sage);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-toggle:hover { background: rgba(23, 42, 58, 0.06); }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--colour-navy);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--colour-navy);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media .photo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 26, 36, 0.72) 0%, rgba(15, 26, 36, 0.6) 45%, rgba(15, 26, 36, 0.85) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 0 90px;
  animation: fade-up 0.8s ease both;
}
.hero .eyebrow { color: var(--colour-gold-light); }
.hero h1 {
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 0.3em;
}
.hero .hero-sub {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--colour-gold-light);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero p.lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Photo placeholders (used until real photography is added) ---------- */
.photo-placeholder {
  position: relative;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #1F3244 0%, #4B4438 55%, #B99A62 100%);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  min-height: 220px;
}
.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.18) 0, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,0.12) 0, transparent 45%);
}
.photo-placeholder .ph-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  opacity: 0.55;
  width: 25%;
  min-width: 44px;
  max-width: 88px;
}
.photo-placeholder .ph-label {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 14px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(0deg, rgba(20,28,26,0.55), transparent);
}
.photo-placeholder.square { aspect-ratio: 1 / 1; }
.photo-placeholder.tall { aspect-ratio: 3 / 4; }
.photo-placeholder.wide { aspect-ratio: 16 / 10; }

/* ---------- Real generic/stock photography ----------
   Same non-stretching pattern as .property-hero-img: size the box
   with CSS (aspect-ratio + object-fit: cover), never with HTML
   width=/height= attributes on the <img> itself.
*/
.hero-media .hero-photo,
.hero-media .hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stock-photo {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.stock-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stock-photo.square { aspect-ratio: 1 / 1; }
.stock-photo.tall { aspect-ratio: 3 / 4; }
.stock-photo.wide { aspect-ratio: 16 / 10; }

/* ---------- Intro / two-column ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split .split-media { order: 2; }
.split.media-left .split-media { order: 0; }

/* ---------- Why choose us / benefit cards ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.benefit-card {
  background: var(--colour-surface);
  border: 1px solid var(--colour-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--colour-sage-light);
  color: var(--colour-sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benefit-icon svg { width: 26px; height: 26px; }
.benefit-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.benefit-card p { color: var(--colour-text-muted); font-size: 0.97rem; margin: 0; }

.owners-note {
  margin-top: 44px;
  text-align: center;
  padding: 28px 32px;
  background: var(--colour-sage-light);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--colour-navy);
}

/* A thin gold rule — used very sparingly as a fine premium accent
   (e.g. under a heading, or beside "Est. 2021") rather than large
   blocks of gold colour. */
.gold-rule {
  display: block;
  width: 44px;
  height: 2px;
  background: var(--colour-gold);
  border-radius: 2px;
  margin: 0 0 18px;
}
.gold-rule.centre { margin-left: auto; margin-right: auto; }

/* ---------- Trust bar (compact credibility strip under the hero) ---------- */
.trust-bar {
  background: var(--colour-surface);
  border-bottom: 1px solid var(--colour-border);
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 0;
  padding-top: 22px;
  padding-bottom: 22px;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--colour-navy);
  border-right: 1px solid var(--colour-border);
}
.trust-chip:last-child { border-right: none; }
.trust-chip svg {
  width: 19px;
  height: 19px;
  color: var(--colour-sage-dark);
  flex-shrink: 0;
}

/* ---------- Spotlight (Property Owners Ourselves) ---------- */
.spotlight {
  background: var(--colour-navy);
  border-radius: var(--radius-lg);
  padding: 56px;
  color: #fff;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}
.spotlight-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.spotlight-icon svg { width: 34px; height: 34px; color: var(--colour-gold); }
.spotlight h2 { color: #fff; margin-bottom: 10px; }
.spotlight p { color: rgba(255,255,255,0.82); margin: 0; max-width: 640px; font-size: 1.04rem; }

/* ---------- Reassurance band (Long-Term, Not Short-Term) ---------- */
.reassurance-band {
  background: var(--colour-sage-light);
  border-left: 4px solid var(--colour-sage);
  border-radius: var(--radius-md);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: center;
}
.reassurance-band .band-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--colour-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reassurance-band .band-icon svg { width: 28px; height: 28px; color: var(--colour-sage-dark); }
.reassurance-band h2 { font-size: 1.4rem; margin-bottom: 8px; }
.reassurance-band p { margin: 0; color: var(--colour-text); max-width: 680px; }

/* ---------- Trust points (3-badge highlights inside the trust section) ---------- */
.trust-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.trust-point {
  background: var(--colour-surface);
  border: 1px solid var(--colour-border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  text-align: center;
}
.trust-point .benefit-icon { margin: 0 auto 16px; }
.trust-point h3 { font-size: 1rem; margin-bottom: 0; }

/* ---------- How it works / timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: step;
}
.timeline-step {
  position: relative;
  background: var(--colour-surface);
  border: 1px solid var(--colour-border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
}
.timeline-step .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--colour-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 18px;
}
.timeline-step h3 { font-size: 1.02rem; margin-bottom: 8px; }
.timeline-step p { color: var(--colour-text-muted); font-size: 0.93rem; margin: 0; }
.timeline-connector {
  display: none;
}

/* ---------- Trust section ---------- */
.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  margin-top: 24px;
}
.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--colour-text);
  font-size: 0.98rem;
}
.trust-list svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--colour-sage-dark);
  margin-top: 3px;
}

/* ---------- Properties ---------- */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.property-card {
  background: var(--colour-surface);
  border: 1px solid var(--colour-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease;
}
.property-card:hover { transform: translateY(-4px); }
.property-card .photo-placeholder { border-radius: 0; }
.property-card-body { padding: 24px; }

/* Real property photographs (replace the gradient placeholders once
   photography for a listing is available).
   Note: deliberately no width/height attributes on the <img> in the HTML —
   combined with a percentage width, some browsers use the HTML attributes'
   raw pixel values instead of the CSS aspect-ratio below when sizing a
   grid-item's image, which stretched photos into the wrong shape. The
   aspect-ratio + object-fit:cover combination here is what keeps every
   photo cropped proportionally (never distorted) at a consistent size. */
.property-hero-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

/* Thumbnail strip — each thumbnail is a real <button> so it's clickable
   and tappable (and keyboard/screen-reader accessible) on both desktop
   and mobile. Clicking/tapping one swaps the main photo above (see
   js/main.js) and gets a visible "selected" highlight via .is-active. */
.property-thumb-btn {
  flex: 1;
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: none;
  display: block;
  line-height: 0;
  cursor: pointer;
  opacity: 0.72;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.property-thumb-btn:hover { opacity: 1; }
.property-thumb-btn.is-active {
  opacity: 1;
  border-color: var(--colour-sage);
}
.property-thumb-img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
  display: block;
  pointer-events: none;
}
.property-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--colour-sage-dark);
  background: var(--colour-sage-light);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.property-card h3 { margin-bottom: 4px; }
.property-location {
  color: var(--colour-text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.property-location svg { width: 16px; height: 16px; }
.property-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
/* The gallery (hero photo + thumbnail strip) sits above the padded
   property-card-body, so the thumbnail row needs its own inset padding
   to line up with the text below rather than running edge-to-edge. */
.property-gallery .property-thumbs {
  padding: 0 16px 16px;
}

.properties-note {
  margin-top: 40px;
  padding: 20px 24px;
  border: 1px dashed var(--colour-border);
  border-radius: var(--radius-md);
  color: var(--colour-text-muted);
  font-size: 0.93rem;
  background: var(--colour-bg-alt);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--colour-navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto 30px; }
.cta-band-wrap { padding: 0 24px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info-card {
  background: var(--colour-surface);
  border: 1px solid var(--colour-border);
  border-radius: var(--radius-md);
  padding: 32px;
}
.contact-info-card h3 { margin-bottom: 14px; }
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.96rem;
  color: var(--colour-text-muted);
}
.contact-info-row svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--colour-sage-dark); }
.placeholder-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #96622B;
  background: #FBEBD3;
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 6px;
}

.form-card {
  background: var(--colour-surface);
  border: 1px solid var(--colour-border);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--colour-navy);
  margin-bottom: 6px;
}
.form-group .optional {
  font-weight: 400;
  color: var(--colour-text-muted);
  font-size: 0.82rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--colour-border);
  background: var(--colour-bg);
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--colour-text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--colour-sage);
  outline: none;
  box-shadow: 0 0 0 3px rgba(124, 138, 110, 0.18);
}
.form-note {
  text-align: center;
  color: var(--colour-text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
}
.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}
.form-status.visible { display: block; }
.form-status.success { background: var(--colour-sage-light); color: var(--colour-sage-dark); }
.form-status.error { background: #F5E3DE; color: #9C4A34; }

/* Honeypot field — invisible to people, present in the markup for
   simple spam bots to fill in. Kept in normal document flow (not
   display:none) so it stays legitimately hidden rather than obviously
   fake, but off-screen and out of the tab order for real visitors. */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.dev-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--colour-border);
  background: var(--colour-bg-alt);
  font-size: 0.85rem;
  color: var(--colour-text-muted);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--colour-border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  color: var(--colour-navy);
}
.faq-question .faq-plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--colour-sage);
  color: var(--colour-sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
  font-size: 1.1rem;
  line-height: 1;
}
.faq-item[data-open="true"] .faq-plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner { padding: 0 4px 22px; color: var(--colour-text-muted); }

/* ---------- Info blocks (About page) ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.info-card {
  background: var(--colour-surface);
  border: 1px solid var(--colour-border);
  border-radius: var(--radius-md);
  padding: 30px;
}
.info-card h3 { display: flex; align-items: center; gap: 12px; }
.info-card .benefit-icon { margin-bottom: 0; width: 44px; height: 44px; flex-shrink: 0; }
.info-card .benefit-icon svg { width: 22px; height: 22px; }

/* ---------- Landlord page value list ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--colour-surface);
  border: 1px solid var(--colour-border);
  border-radius: var(--radius-md);
}
.value-item .benefit-icon { flex-shrink: 0; margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--colour-navy);
  color: rgba(255,255,255,0.82);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.68); max-width: 320px; margin-top: 14px; font-size: 0.93rem; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.75); font-size: 0.94rem; transition: color 0.2s ease; }
.footer-col a:hover { color: #fff; }
.footer-placeholder { color: rgba(255,255,255,0.55); font-style: italic; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* ---------- Page header banner (used on inner pages) ---------- */
.page-banner {
  background: var(--colour-navy);
  color: #fff;
  padding: 130px 0 70px;
}
.page-banner .eyebrow { color: var(--colour-gold-light); }
.page-banner h1 { color: #fff; margin-bottom: 14px; }
.page-banner p { color: rgba(255,255,255,0.82); max-width: 620px; font-size: 1.05rem; margin: 0; }

/* ---------- Legal / policy pages (privacy.html) ---------- */
.legal-content h2 {
  font-size: 1.25rem;
  color: var(--colour-navy);
  margin: 2em 0 0.6em;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content ul {
  list-style: disc;
  padding-left: 1.4em;
  margin: 0 0 1em;
}
.legal-content li {
  margin-bottom: 0.4em;
  color: var(--colour-text);
}

/* ---------- 404 ---------- */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 100px;
}
.error-page .error-code {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--colour-sage);
  margin-bottom: 0;
}

/* =========================================================
   RESPONSIVE — tablet
   ========================================================= */
@media (max-width: 960px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid,
  .value-grid,
  .trust-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .spotlight { grid-template-columns: 1fr; text-align: center; padding: 44px 36px; }
  .spotlight-icon { margin: 0 auto; }
  .reassurance-band { grid-template-columns: 1fr; text-align: center; padding: 34px 30px; }
  .reassurance-band .band-icon { margin: 0 auto; }
  .trust-points { grid-template-columns: 1fr; }
  .trust-bar .container { flex-direction: column; gap: 12px; }
  .trust-chip { border-right: none; padding: 0; }
}

/* =========================================================
   RESPONSIVE — mobile
   ========================================================= */
@media (max-width: 720px) {
  section { padding: 60px 0; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    top: 76px;
    background: var(--colour-bg);
    padding: 24px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 400;
  }
  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .main-nav a {
    display: block;
    width: 100%;
    padding: 16px 4px;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--colour-border);
  }
  .nav-right .btn-primary.nav-cta { display: none; }
  .main-nav .nav-cta-mobile { display: block; margin-top: 18px; }

  .hero { min-height: 92vh; }
  .hero-content { padding: 100px 0 70px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }

  .split { grid-template-columns: 1fr; gap: 32px; }
  .split .split-media { order: 0; }

  .benefits-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .properties-grid { grid-template-columns: 1fr; }
  .info-grid, .value-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 26px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-content { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
