/*
Theme Name: Prosper Inventory
Theme URI: https://www.prosperinventory.co.uk
Author: Prosper Inventory Ltd
Author URI: https://www.prosperinventory.co.uk
Description: Professional property inventory clerk services theme for Prosper Inventory Ltd, Elm Park, Havering.
Version: 1.0.0
License: Private
Text Domain: prosper-inventory
Tags: business, property, inventory, professional
*/

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0d1f3c;
  --navy-mid: #162d52;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f8f5f0;
  --white: #ffffff;
  --grey: #6b7280;
  --light-grey: #f1f0ee;
  --border: #e2ddd6;
  --text: #1a1a2e;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

/* ── LAYOUT HELPERS ── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section { padding: 100px 0; }

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--grey);
  font-weight: 300;
  max-width: 540px;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 15px 32px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); color: var(--navy); }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 15px 32px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); color: var(--white); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 16px 32px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-block;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-navy:hover { background: var(--gold); color: var(--navy); }

/* ── NAV ── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13, 31, 60, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  height: 72px;
}

#site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-branding {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

#primary-navigation ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#primary-navigation li {
  list-style: none;
  margin: 0;
  padding: 0;
}

#primary-navigation a {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  text-decoration: none;
  display: inline-block;
  position: relative;
  z-index: 1;
  pointer-events: all;
  cursor: pointer;
}

#primary-navigation a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 22px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Mobile toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
  padding: 80px 0 200px;
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

#hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

#hero h1 em {
  font-style: normal;
  color: var(--gold);
}

#hero .hero-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 32px 5%;
  display: flex;
  animation: fadeUp 0.9s 0.3s ease both;
  opacity: 0;
  animation-fill-mode: forwards;
}

.stat { flex: 1; padding-right: 40px; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,0.1); padding-left: 40px; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── SERVICES ── */
#services { background: var(--cream); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--border);
}

.service-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
  transition: background 0.25s;
  cursor: default;
}

.service-card:hover { background: var(--navy); }
.service-card:hover .service-icon { background: rgba(201,168,76,0.15); color: var(--gold); }
.service-card:hover .service-title { color: var(--white); }
.service-card:hover .service-desc { color: rgba(255,255,255,0.55); }
.service-card:hover .service-price { color: var(--gold); }
.service-card:hover .service-price-label { color: rgba(255,255,255,0.4); }
.service-card:hover .service-arrow { color: var(--gold); opacity: 1; }

.service-icon {
  width: 48px; height: 48px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
  transition: all 0.25s;
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  transition: color 0.25s;
}

.service-desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 24px;
  font-weight: 300;
  transition: color 0.25s;
}

.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--navy);
  font-weight: 600;
  transition: color 0.25s;
}

.service-price-label {
  font-size: 12px;
  color: var(--grey);
  display: block;
  margin-top: 4px;
  transition: color 0.25s;
}

.service-arrow {
  position: absolute; bottom: 40px; right: 36px;
  font-size: 20px;
  color: var(--border);
  opacity: 0.5;
  transition: all 0.25s;
}

/* ── PRICING ── */
#pricing { background: var(--white); }

.pricing-header { margin-bottom: 56px; }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
}

.pricing-table thead { background: var(--navy); }

.pricing-table thead th {
  padding: 18px 28px;
  text-align: left;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}

.pricing-table thead th:first-child { color: var(--gold); }

.pricing-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.pricing-table tbody tr:hover { background: var(--cream); }

.pricing-table tbody td {
  padding: 18px 28px;
  font-size: 15px;
  color: var(--text);
}

.pricing-table tbody td:first-child { font-weight: 500; color: var(--navy); }

.price-cell {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}

.furnished-cell { color: var(--gold) !important; }

.pricing-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--grey);
  padding: 16px 20px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}

/* ── ABOUT ── */
#about { background: var(--navy); }
#about .section-title { color: var(--white); }
#about .section-sub { color: rgba(255,255,255,0.55); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.feature-item {
  display: flex; gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.feature-item:first-child { padding-top: 0; }

.feature-num {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  min-width: 28px;
  margin-top: 2px;
}

.feature-text h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.6;
}

.about-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 40px;
}

.about-card-title {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 24px;
}

.checklist { display: flex; flex-direction: column; gap: 14px; }

.checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  line-height: 1.5;
}

.checklist li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  margin-top: 1px;
  flex-shrink: 0;
}

.accreditation-bar {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(201,168,76,0.2);
  display: flex; gap: 12px; flex-wrap: wrap;
}

.acc-badge {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.12);
}

/* ── CONTACT ── */
#contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 32px; }

.contact-item { display: flex; gap: 16px; align-items: flex-start; }

.contact-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 16px;
  color: var(--navy);
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
}

.contact-form-wrap {
  background: var(--white);
  padding: 48px 44px;
  border: 1px solid var(--border);
}

.contact-form-wrap h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 32px;
}

/* WP/CF7 form overrides */
.wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wpcf7-form .form-group,
.form-group {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 20px;
}

.wpcf7-form label,
.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  font-family: 'DM Sans', sans-serif;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea,
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border);
  background: var(--cream);
  padding: 13px 16px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  width: 100%;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
}

.wpcf7-form textarea,
.form-group textarea { height: 100px; resize: vertical; }

.wpcf7-submit,
.form-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  padding: 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}

.wpcf7-submit:hover,
.form-submit:hover { background: var(--gold); color: var(--navy); }

/* ── FOOTER ── */
#colophon {
  background: #070f1e;
  padding: 48px 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo { display: flex; align-items: center; gap: 12px; }

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

.footer-links { display: flex; gap: 24px; }

.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .wpcf7-form .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
}

@media (max-width: 600px) {
  section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 60px 0 200px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat + .stat { border: none; padding-left: 0; }
  .hero-actions { flex-direction: column; }
  .menu-toggle { display: flex; }
  #primary-navigation { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy); padding: 20px 5%; }
  #primary-navigation.open { display: block; }
  #primary-navigation ul { flex-direction: column; gap: 0; }
  #primary-navigation li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  #primary-navigation a { display: block; padding: 14px 0; }
  .footer-inner { flex-direction: column; text-align: center; }
  .pricing-table { font-size: 13px; }
  .pricing-table thead th, .pricing-table tbody td { padding: 12px 14px; }
}

/* ═══════════════════════════════════════════════════════════
   INLINE LOGO — luxury SVG diamond mark + wordmark
   ═══════════════════════════════════════════════════════════ */

/* Suppress any uploaded custom logo — we use inline SVG */
.custom-logo-link,
a.custom-logo-link { display: none !important; }

/* Inline logo layout */
.logo-inline {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.logo-inline__mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  filter: drop-shadow(0 2px 8px rgba(201,168,76,0.25));
  transition: filter 0.25s;
}
.site-branding:hover .logo-inline__mark {
  filter: drop-shadow(0 3px 14px rgba(201,168,76,0.45));
}

.logo-inline__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.logo-inline__name {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

.logo-inline__tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.8;
}

/* Footer version */
.footer-logo-inline {
  display: inline-flex;
  text-decoration: none;
  margin-bottom: 16px;
}
.logo-inline--footer .logo-inline__name { font-size: 15px; }
.logo-inline--footer .logo-inline__tag  { font-size: 9px; }

/* ═══════════════════════════════════════════════════════════
   SOCIAL LINKS
   ═══════════════════════════════════════════════════════════ */
.social-links { display: flex; align-items: center; gap: 6px; }

/* Header social icons — compact, subtle */
.social-links--header .social-link {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.social-links--header .social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* Footer social icons — slightly larger, gold accent */
.social-links--footer { margin-top: 16px; }
.social-links--footer .social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.social-links--footer .social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
}

/* Contact page social links */
.social-links--contact { margin-top: 16px; gap: 8px; }
.social-links--contact .social-link {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13px; font-weight: 500;
  color: var(--navy2);
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.social-links--contact .social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   UPDATED FOOTER — 4-column layout
   ═══════════════════════════════════════════════════════════ */
footer#colophon {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 60px 0 0;
  margin-top: 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-col--brand .footer-logo-img img {
  max-height: 44px;
  width: auto;
  display: block;
  /* If logo is dark (navy) — invert so it's light on dark footer.
     The sepia + saturate warm it toward gold so it doesn't look
     pure cold white. Remove this rule if you upload a pre-made
     light/white version of the logo instead. */
  filter: invert(1) sepia(0.18) saturate(1.4) brightness(1.1);
  opacity: 0.92;
}
.footer-tagline {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  line-height: 1.65;
  margin: 14px 0 0;
  max-width: 260px;
}
.footer-heading {
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-nav {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-contact-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 13px; line-height: 1.4;
}
.footer-contact-list svg { flex-shrink: 0; margin-top: 2px; opacity: 0.5; }
.footer-contact-list a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-contact-list a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
.footer-copy { color: rgba(255,255,255,0.25); font-size: 12px; margin: 0; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.3); font-size: 12px; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   INNER PAGES — shared styles
   ═══════════════════════════════════════════════════════════ */
.inner-page { padding-top: 72px; } /* offset for fixed header */

.inner-hero {
  background: var(--navy);
  padding: 72px 0 64px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.inner-hero .section-tag { margin-bottom: 14px; }
.inner-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 auto 18px;
  max-width: 720px;
}
.inner-hero__sub {
  color: rgba(255,255,255,0.55);
  font-size: 17px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* CTA strip */
.cta-strip {
  background: var(--gold);
  padding: 56px 0;
}
.cta-strip__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--navy);
  margin: 0 0 8px;
}
.cta-strip p { color: rgba(13,31,60,0.7); font-size: 15px; margin: 0; }
.cta-strip__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-outline--light {
  border-color: var(--navy) !important;
  color: var(--navy) !important;
}
.btn-outline--light:hover { background: var(--navy); color: var(--gold) !important; }

/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════════════════════ */
.service-section { padding: 80px 0; }
.service-section--alt { background: #faf9f7; }

.service-section__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.service-section__grid--reverse { direction: rtl; }
.service-section__grid--reverse > * { direction: ltr; }

.service-section__icon { font-size: 40px; margin-bottom: 8px; line-height: 1; }
.service-section__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.service-section__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--navy);
  margin: 0 0 20px;
  line-height: 1.2;
}
.service-section__content p {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 16px;
}
.service-list {
  list-style: none; margin: 16px 0 24px; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.service-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: #374151; line-height: 1.5;
}
.service-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-section__price-box {
  background: var(--navy);
  border-radius: 8px;
  padding: 20px 22px;
  margin-top: 8px;
}
.spb-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
}
.spb-row:last-child { border-bottom: none; }
.spb-row span { color: rgba(255,255,255,0.55); }
.spb-row strong { color: #fff; font-size: 16px; }
.spb-row--gold strong { color: var(--gold); }

.service-visual-card {
  background: var(--cream);
  border: 1.5px solid #e5e0d8;
  border-radius: 8px;
  padding: 28px;
  position: sticky;
  top: 90px;
}
.svc-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 600;
}
.svc-card-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.svc-card-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: #374151; line-height: 1.5;
}
.svc-tick {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .service-section__grid { grid-template-columns: 1fr; gap: 32px; }
  .service-section__grid--reverse { direction: ltr; }
  .service-visual-card { position: static; }
}

/* ═══════════════════════════════════════════════════════════
   PRICING PAGE
   ═══════════════════════════════════════════════════════════ */
.pricing-section { padding: 72px 0; }
.pricing-section--alt { background: #faf9f7; }
.pricing-section__title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--navy);
  margin: 0 0 8px;
}
.pricing-section__sub { color: #6b7280; font-size: 15px; margin: 0 0 32px; }
.pricing-table-wrap { overflow-x: auto; }

.pricing-tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.pricing-tier {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 24px 20px;
}
.pricing-tier--featured {
  border-color: var(--gold);
  background: var(--navy);
  color: #fff;
}
.pricing-tier--featured p { color: rgba(255,255,255,0.6) !important; }
.pt-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 4px;
}
.pricing-tier--featured .pt-label { color: var(--gold); }
.pt-range { font-size: 12px; color: #9ca3af; margin-bottom: 12px; }
.pt-disc {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.pt-disc--gold { color: var(--gold); }
.pricing-tier p { font-size: 13px; color: #6b7280; line-height: 1.6; margin: 0; }

@media (max-width: 860px) {
  .pricing-tier-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .pricing-tier-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════ */
.about-section { padding: 80px 0; }
.about-section--alt { background: #faf9f7; }
.about-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--navy);
  margin: 0 0 20px;
  line-height: 1.25;
}
.about-section p { color: #4b5563; font-size: 15px; line-height: 1.75; margin: 0 0 16px; }

.about-two-col {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.about-credentials {
  background: var(--cream);
  border: 1.5px solid #e5e0d8;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cred-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.cred-icon { font-size: 22px; flex-shrink: 0; }
.cred-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.cred-item span { font-size: 12px; color: #6b7280; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-step {
  padding: 28px 20px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  border-top: 3px solid var(--gold);
}
.process-step__num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}
.process-step h3 { font-size: 16px; color: var(--navy); margin: 0 0 10px; }
.process-step p { font-size: 13px; color: #6b7280; line-height: 1.65; margin: 0; }

.about-stat-box {
  background: var(--navy);
  border-radius: 8px;
  overflow: hidden;
}
.stat-box-item {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stat-box-item:last-child { border-bottom: none; }
.stat-box-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box-label { font-size: 13px; color: rgba(255,255,255,0.5); }

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.coverage-area {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}
.coverage-area--primary { border-color: var(--gold); }
.coverage-area h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--border);
}
.coverage-area--primary h3 { color: var(--gold); border-color: var(--gold); }
.coverage-area ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.coverage-area li { font-size: 13px; color: #4b5563; }

@media (max-width: 900px) {
  .about-two-col { grid-template-columns: 1fr; gap: 32px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .process-steps { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */
.contact-page-section { padding: 72px 0; }
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
}
.contact-page-form h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--navy);
  margin: 0 0 24px;
}
.contact-info-card {
  background: var(--cream);
  border: 1.5px solid #e5e0d8;
  border-radius: 8px;
  padding: 24px 26px;
}
.contact-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid #e5e0d8;
}
.contact-info-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.contact-info-list li { display: flex; align-items: flex-start; gap: 14px; }
.ci-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-info-list strong {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--navy); text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 3px;
}
.contact-info-list a { color: var(--navy); font-size: 14px; text-decoration: none; }
.contact-info-list a:hover { color: var(--gold); }
.contact-info-list span { display: block; font-size: 13px; color: #6b7280; }

.coverage-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.coverage-tag {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 12px;
  color: #374151;
}

@media (max-width: 860px) {
  .contact-page-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   HERO SLIDESHOW
   ═══════════════════════════════════════════════════════════ */

/* The existing #hero section already has position:relative set
   in the original CSS — we're adding layers on top of it */
#hero { position: relative; overflow: hidden; }

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  /* Ken Burns: slow zoom outward while waiting, zoom in while active */
  animation: kenBurns 22s ease-in-out infinite;
  transition: opacity 1.6s ease-in-out;
  will-change: transform, opacity;
}

.hero-slide.active {
  opacity: 1;
}

/* Stagger the Ken Burns start so each slide zooms differently */
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: -4.4s; }
.hero-slide:nth-child(3) { animation-delay: -8.8s; }
.hero-slide:nth-child(4) { animation-delay: -13.2s; }
.hero-slide:nth-child(5) { animation-delay: -17.6s; }

@keyframes kenBurns {
  0%   { transform: scale(1.08) translate(0%, 0%); }
  25%  { transform: scale(1.04) translate(-1%, 0.5%); }
  50%  { transform: scale(1.00) translate(-0.5%, -0.5%); }
  75%  { transform: scale(1.04) translate(0.5%, -0.5%); }
  100% { transform: scale(1.08) translate(0%, 0%); }
}

/* Darken overlay — sits above slides, below text */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(8,18,30,0.78) 0%,
    rgba(8,18,30,0.62) 50%,
    rgba(8,18,30,0.50) 100%
  );
}

/* Grid texture — sits above overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Hero content — sits above everything */
#hero .container { position: relative; z-index: 3; }
.hero-stats       { position: relative; z-index: 3; }

/* ═══════════════════════════════════════════════════════════
   SCROLL-REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease calc(var(--delay, 0s)),
    transform 0.7s ease calc(var(--delay, 0s));
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   PHOTO TICKER STRIP
   ═══════════════════════════════════════════════════════════ */
.photo-ticker {
  width: 100%;
  overflow: hidden;
  background: var(--navy);
  padding: 0;
  line-height: 0;
  /* small gold border top and bottom */
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.photo-ticker__track {
  display: flex;
  gap: 3px;
  animation: tickerScroll 40s linear infinite;
  width: max-content;
}

.photo-ticker__track--reverse {
  animation: tickerScrollReverse 35s linear infinite;
}

.photo-ticker--slow .photo-ticker__track {
  animation-duration: 55s;
}

.photo-ticker__item {
  flex-shrink: 0;
  width: 280px;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.photo-ticker__item--sm {
  width: 220px;
  height: 140px;
}

.photo-ticker__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.82) saturate(0.9);
}

.photo-ticker__item:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}

/* Pause on hover */
.photo-ticker:hover .photo-ticker__track {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* -50% because content is doubled */
}

@keyframes tickerScrollReverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ═══════════════════════════════════════════════════════════
   PARALLAX DIVIDER
   ═══════════════════════════════════════════════════════════ */
.parallax-divider {
  position: relative;
  height: 420px;
  background-size: cover;
  background-position: center 50%;
  background-attachment: scroll; /* JS handles parallax, not CSS */
  overflow: hidden;
}

.parallax-divider__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,18,30,0.65);
  z-index: 1;
}

.parallax-divider__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.parallax-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  border-left: none;
  padding: 0;
}

.parallax-quote::before {
  content: '\201C';
  font-size: 1.3em;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.25em;
  margin-right: 4px;
}

/* Parallax stats layout (about page) */
.parallax-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.pstat {
  text-align: center;
  padding: 0 56px;
}
.pstat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.pstat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  max-width: 140px;
  margin: 0 auto;
}
.pstat-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .parallax-stats { flex-direction: column; gap: 24px; }
  .pstat-divider { width: 60px; height: 1px; }
  .pstat { padding: 0 16px; }
}

/* ═══════════════════════════════════════════════════════════
   INTERIOR MOSAIC GRID (services page)
   ═══════════════════════════════════════════════════════════ */
.interior-mosaic {
  padding: 0 0 8px;
  background: var(--navy);
  overflow: hidden;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 3px;
}

/* Tall items span 2 rows */
.mosaic-item--tall {
  grid-row: span 2;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) saturate(0.85);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.6s ease;
  will-change: transform;
}

.mosaic-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.9) saturate(1.1);
}

.mosaic-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(transparent, rgba(8,18,30,0.85));
  color: rgba(255,255,255,0.75);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.mosaic-item:hover .mosaic-label {
  transform: translateY(0);
}

/* Reveal: items start invisible, slide up when .revealed added */
.mosaic-item.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition:
    opacity 0.7s ease calc(var(--delay, 0s)),
    transform 0.7s ease calc(var(--delay, 0s));
}
.mosaic-item.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mosaic-caption {
  text-align: center;
  padding: 20px 0 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 860px) {
  .mosaic-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 180px 180px;
  }
  .mosaic-item--tall { grid-row: span 1; }
}
@media (max-width: 560px) {
  .mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 140px 140px 140px;
  }
}

/* ═══════════════════════════════════════════════════════════
   HEADER: scrolled state (shrinks slightly)
   ═══════════════════════════════════════════════════════════ */
#site-header {
  transition: height 0.3s ease, box-shadow 0.3s ease;
}
#site-header.scrolled {
  height: 58px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
#site-header.scrolled .site-branding .custom-logo-link img,
#site-header.scrolled .site-branding img.custom-logo,
#site-header.scrolled .site-branding .custom-logo {
  max-height: 32px !important;
  height: 32px !important;
  transition: max-height 0.3s ease, height 0.3s ease;
}

/* ═══════════════════════════════════════════════════════════
   INNER PAGE HERO — subtle animated gradient background
   ═══════════════════════════════════════════════════════════ */
.inner-hero {
  position: relative;
  overflow: hidden;
}

/* Animated radial glow that slowly drifts */
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 30%, rgba(201,168,76,0.05) 0%, transparent 60%);
  animation: innerHeroGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes innerHeroGlow {
  0%   { opacity: 0.6; transform: scale(1) translateX(0); }
  100% { opacity: 1;   transform: scale(1.05) translateX(2%); }
}

/* Gold hairline bottom border animated width */
.inner-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  width: 0;
  animation: borderGrow 1s 0.3s ease forwards;
}
@keyframes borderGrow {
  to { width: 100%; }
}


/* ═══════════════════════════════════════════════════════════
   WHITESPACE — generous breathing room for luxury feel
   ═══════════════════════════════════════════════════════════ */

/* Base section padding — taller than before */
section { padding: 120px 0; }

/* Hero gets more vertical room */
.hero-content { padding: 100px 0 220px; }

/* Services section */
#services { padding: 130px 0; }
.services-header { margin-bottom: 72px; }
.services-grid  { gap: 28px; }

/* Service cards — more internal padding */
.service-card { padding: 44px 36px 40px; }

/* About section */
#about { padding: 130px 0; }
.about-grid { gap: 72px; margin-top: 64px; }
.feature-item { padding: 28px 0; gap: 28px; }

/* Contact section */
#contact { padding: 130px 0; }
.contact-grid { gap: 72px; margin-top: 56px; }

/* Pricing teaser section */
#pricing { padding: 130px 0; }

/* Inner page heroes — more vertical room */
.inner-hero { padding: 96px 0 88px; }

/* Inner page sections */
.service-section  { padding: 100px 0; }
.about-section    { padding: 100px 0; }
.pricing-guide-section { padding: 100px 0; }
.contact-page-section  { padding: 100px 0; }

/* Inner page about/services two-col grid gap */
.service-section__grid { gap: 80px; }
.about-two-col         { gap: 80px; }

/* Section title spacing */
.section-title { margin-top: 10px; margin-bottom: 20px; line-height: 1.18; }
.section-sub   { margin-top: 16px; }

/* Section tag more breathing room */
.section-tag { margin-bottom: 16px; display: block; }

/* Section header centred variant */
.section-header-centred {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 72px;
}
.section-header-centred .section-title { font-size: clamp(28px, 3.5vw, 42px); }
.section-header-centred .section-sub { color: var(--grey); font-size: 17px; line-height: 1.75; }

/* Feature items in about section */
.feature-text h3 { margin-bottom: 10px; }
.feature-text p   { line-height: 1.75; }

/* Contact info items */
.contact-item { margin-bottom: 28px; gap: 18px; }
.contact-item h4 { margin-bottom: 4px; }

/* Process steps on about page */
.process-steps { gap: 24px; margin-top: 56px; }
.process-step   { padding: 36px 28px; }

/* CTA strip */
.cta-strip { padding: 80px 0; }

/* Parallax divider */
.parallax-divider { height: 460px; }

/* Footer */
footer#colophon { padding: 80px 0 0; }
.footer-inner   { padding-bottom: 64px; gap: 56px; }
.footer-bottom  { padding: 28px 0; }

/* Responsive loosening */
@media (max-width: 1024px) {
  section              { padding: 90px 0; }
  .inner-hero          { padding: 72px 0 68px; }
  .service-section     { padding: 80px 0; }
  .about-section       { padding: 80px 0; }
  .pricing-guide-section { padding: 80px 0; }
}
@media (max-width: 768px) {
  section              { padding: 72px 0; }
  .hero-content        { padding: 72px 0 180px; }
  .services-header     { margin-bottom: 48px; }
  .section-header-centred { margin-bottom: 48px; }
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE PRICING TEASER
   ═══════════════════════════════════════════════════════════ */
.pricing-teaser-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 56px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.pricing-teaser-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 44px 28px;
  border-right: 1.5px solid var(--border);
  background: #fff;
  transition: background 0.25s;
}
.pricing-teaser-item:last-child { border-right: none; }
.pricing-teaser-item:hover { background: var(--cream); }
.pricing-teaser-sep { display: none; } /* hidden — border handles separation */

.pti-icon    { font-size: 28px; margin-bottom: 12px; }
.pti-service {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.4;
}
.pti-from {
  font-size: 13px;
  color: var(--grey);
}
.pti-from strong {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--gold);
  display: block;
  margin-top: 4px;
  font-weight: 600;
}

.pricing-teaser-cta {
  text-align: center;
  padding: 0 0 8px;
}
.pricing-teaser-cta p {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 28px;
}

@media (max-width: 760px) {
  .pricing-teaser-row { flex-direction: column; border-radius: 8px; }
  .pricing-teaser-item { border-right: none; border-bottom: 1.5px solid var(--border); width: 100%; }
  .pricing-teaser-item:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════════════════════════
   PRICING GUIDE PAGE CARDS
   ═══════════════════════════════════════════════════════════ */
.pricing-guide-intro {
  max-width: 640px;
  margin: 0 auto 72px;
  text-align: center;
}
.pricing-guide-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--navy);
  margin: 10px 0 18px;
  line-height: 1.2;
}
.pricing-guide-intro p {
  color: var(--grey);
  font-size: 16px;
  line-height: 1.8;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-guide-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.pricing-guide-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(13,31,60,0.08);
  transform: translateY(-3px);
}
.pgc-icon { font-size: 32px; margin-bottom: 18px; }
.pricing-guide-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  margin: 0 0 14px;
}
.pricing-guide-card p {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.75;
  flex: 1;
  margin: 0 0 28px;
}
.pgc-from {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1.5px solid var(--border);
}
.pgc-from-label { font-size: 11px; color: var(--grey); text-transform: uppercase; letter-spacing: 0.08em; }
.pgc-from-price {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
}
.pgc-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.pgc-cta:hover { color: var(--gold); }

.pricing-guide-section--cream { background: var(--cream); }

.pricing-included-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}
.pricing-included-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--navy);
  margin: 10px 0 20px;
  line-height: 1.2;
}
.pricing-included-text p { color: var(--grey); font-size: 15px; line-height: 1.8; }

.pricing-included-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 20px;
}
.pricing-included-list li {
  display: flex; align-items: flex-start; gap: 16px;
}
.pil-tick {
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-included-list strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}
.pricing-included-list span {
  font-size: 13px;
  color: var(--grey);
}

@media (max-width: 900px) {
  .pricing-cards-grid { grid-template-columns: 1fr 1fr; }
  .pricing-included-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .pricing-cards-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   SOCIAL LINKS — ensure always visible
   ═══════════════════════════════════════════════════════════ */

/* Override the earlier rules to ensure icons always show */
.social-links { display: flex !important; align-items: center; gap: 8px; }

/* Header — slightly more prominent */
.social-links--header { margin-left: 16px; }
.social-links--header .social-link {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  color: rgba(255,255,255,0.65) !important;
  border: 1px solid rgba(201,168,76,0.35) !important;
  background: rgba(201,168,76,0.06);
  transition: all 0.2s;
  text-decoration: none;
}
.social-links--header .social-link:hover {
  color: var(--gold) !important;
  border-color: var(--gold) !important;
  background: rgba(201,168,76,0.14) !important;
}
.social-links--header .social-link svg { display: block !important; }

/* Footer — warm gold tinted */
.social-links--footer .social-link {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  color: rgba(255,255,255,0.6) !important;
  border: 1px solid rgba(201,168,76,0.3) !important;
  background: rgba(201,168,76,0.06);
  transition: all 0.2s;
  text-decoration: none;
}
.social-links--footer .social-link:hover {
  color: var(--gold) !important;
  border-color: var(--gold) !important;
  background: rgba(201,168,76,0.16) !important;
}
.social-links--footer .social-link svg { display: block !important; }


/* ═══════════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ═══════════════════════════════════════════════════════════ */

.prosper-wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 10px;

  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 13px 20px 13px 16px;
  box-shadow:
    0 4px 20px rgba(37,211,102,0.45),
    0 2px 8px rgba(0,0,0,0.18);

  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;

  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    padding 0.3s ease;

  overflow: hidden;
}

/* Label collapses on small screens, expands on hover on desktop */
.prosper-wa-btn__label {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width 0.35s ease, opacity 0.3s ease;
  white-space: nowrap;
}

/* Expand label on hover — desktop */
@media (min-width: 640px) {
  .prosper-wa-btn:hover .prosper-wa-btn__label {
    max-width: 160px;
    opacity: 1;
  }
}

/* Mobile: always show label, pill shape */
@media (max-width: 639px) {
  .prosper-wa-btn {
    bottom: 18px;
    right: 18px;
    padding: 12px 16px 12px 14px;
    border-radius: 50%;
    padding: 14px;
  }
  .prosper-wa-btn__label { display: none; }
}

.prosper-wa-btn:hover {
  background: #1da851;
  box-shadow:
    0 6px 28px rgba(37,211,102,0.55),
    0 3px 12px rgba(0,0,0,0.22);
  transform: translateY(-2px);
}

.prosper-wa-btn__icon {
  flex-shrink: 0;
  display: block;
}

/* Pulsing ring — draws attention subtly */
.prosper-wa-btn__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: transparent;
  border: 2px solid rgba(37,211,102,0.6);
  animation: waPulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(1.22); opacity: 0; }
  100% { transform: scale(1.22); opacity: 0; }
}

/* Entrance animation — slides up from bottom on page load */
.prosper-wa-btn {
  animation: waEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s both;
}

@keyframes waEntrance {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ── WhatsApp inline contact items ────────────────────────── */

/* Homepage contact section */
.contact-item--whatsapp .contact-icon--wa,
.contact-item--whatsapp .contact-icon {
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Contact page */
.ci-whatsapp .ci-icon--wa {
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Shared inline link style */
.wa-inline-link {
  color: #128C7E;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.wa-inline-link:hover { color: #25D366; }

/* ═══════════════════════════════════════════════════════════
   EMAIL CAPTURE — POPUP
   ═══════════════════════════════════════════════════════════ */

.pe-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pe-popup--visible {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}

.pe-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 30, 0.72);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pe-popup__card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(8, 18, 30, 0.35);
  overflow: hidden;
  transform: translateY(32px) scale(0.97);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.35s ease;
}

/* Gold accent bar at top */
.pe-popup__card::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}

.pe-popup[hidden] { display: none !important; pointer-events: none !important; }
.pe-popup--visible .pe-popup__backdrop { opacity: 1; }
.pe-popup--visible .pe-popup__card     { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }

.pe-popup__inner { padding: 40px 44px 44px; }

.pe-popup__close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  color: #9ca3af;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.pe-popup__close:hover { color: var(--navy); background: #f3f4f6; }

.pe-popup__icon {
  width: 60px; height: 60px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.pe-popup__inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.2;
}

.pe-popup__inner p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 24px;
}

/* ── Shared form elements ── */
.pe-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
@media (max-width: 480px) {
  .pe-form__row { grid-template-columns: 1fr; }
  .pe-popup__inner { padding: 32px 24px 36px; }
}

.pe-form__row input,
.pe-inline__fields input,
.pe-footer__input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--navy);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.pe-form__row input:focus,
.pe-inline__fields input:focus,
.pe-footer__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.pe-form__gdpr,
.pe-inline__gdpr,
.pe-footer__gdpr {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 14px;
}
.pe-form__gdpr input[type="checkbox"],
.pe-inline__gdpr input[type="checkbox"],
.pe-footer__gdpr input[type="checkbox"] {
  width: 15px; height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.pe-form__gdpr span,
.pe-inline__gdpr span,
.pe-footer__gdpr span {
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.5;
}
.pe-form__gdpr a,
.pe-inline__gdpr a,
.pe-footer__gdpr a {
  color: var(--navy);
  text-decoration: underline;
}

.pe-form__btn {
  width: 100%;
  padding: 13px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 14px;
}
.pe-form__btn:hover:not(:disabled) { background: var(--gold); color: var(--navy); }
.pe-form__btn:disabled { opacity: 0.6; cursor: default; }

/* Message states */
.pe-form__msg, .pe-inline__msg, .pe-footer__msg {
  font-size: 13px;
  min-height: 18px;
  border-radius: 4px;
  padding: 0;
  transition: all 0.3s;
}
.pe-msg--success { color: #16a34a; font-weight: 500; }
.pe-msg--error   { color: #dc2626; font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   EMAIL CAPTURE — HOMEPAGE INLINE STRIP
   ═══════════════════════════════════════════════════════════ */

.email-capture-section {
  background: var(--navy);
  padding: 80px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.ec-strip {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.ec-strip__text .section-tag { color: var(--gold); }

.ec-strip__text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  color: #fff;
  margin: 10px 0 14px;
  line-height: 1.2;
}

.ec-strip__text p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 1.7;
  max-width: 380px;
}

.pe-inline__fields {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  margin-bottom: 12px;
}

.pe-inline__fields input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.pe-inline__fields input::placeholder { color: rgba(255, 255, 255, 0.35); }
.pe-inline__fields input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
}

.pe-inline__btn {
  padding: 11px 22px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.pe-inline__btn:hover:not(:disabled) { background: var(--gold-light); }
.pe-inline__btn:disabled { opacity: 0.6; cursor: default; }

.pe-inline__gdpr span { color: rgba(255, 255, 255, 0.35); }
.pe-inline__gdpr a    { color: rgba(255, 255, 255, 0.55); }

@media (max-width: 860px) {
  .ec-strip { grid-template-columns: 1fr; gap: 36px; }
  .pe-inline__fields { grid-template-columns: 1fr 1fr; }
  .pe-inline__btn    { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .pe-inline__fields { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   EMAIL CAPTURE — FOOTER FORM
   ═══════════════════════════════════════════════════════════ */

.pe-footer__row {
  display: flex;
  gap: 0;
  margin-bottom: 10px;
}

.pe-footer__input {
  flex: 1;
  border-radius: 6px 0 0 6px;
  border-right: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 13px;
  padding: 10px 12px;
}
.pe-footer__input::placeholder { color: rgba(255, 255, 255, 0.3); }
.pe-footer__input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  box-shadow: none;
}

.pe-footer__btn {
  padding: 10px 16px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 0 6px 6px 0;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.pe-footer__btn:hover { background: var(--gold-light); }

.pe-footer__gdpr { margin-bottom: 8px; }
.pe-footer__gdpr span { color: rgba(255, 255, 255, 0.28); font-size: 10px; }
.pe-footer__gdpr a    { color: rgba(255, 255, 255, 0.4); }

.pe-footer__msg { font-size: 12px; }

/* =============================================================
   LEGAL PAGES (Privacy, T&Cs, Cookies)
============================================================= */
.inner-hero {
  background: var(--navy);
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.inner-hero .section-tag { display: block; margin-bottom: 12px; }
.inner-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--cream);
  margin: 0 0 12px;
}
.inner-hero__sub { color: rgba(244,241,236,0.5); font-size: 14px; margin: 0; }

.legal-page { padding: 72px 0 96px; background: var(--navy); }

.legal-body {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(244,241,236,0.8);
  line-height: 1.85;
  font-size: 15px;
}
.legal-intro {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 48px;
}
.legal-intro p { margin: 0 0 10px; }
.legal-intro p:last-child { margin: 0; }

.legal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--cream);
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p  { margin: 0 0 16px; }
.legal-body ul { margin: 0 0 16px; padding-left: 24px; }
.legal-body ul li { margin-bottom: 8px; }
.legal-body a  { color: var(--gold); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }
.legal-body strong { color: var(--cream); }
.legal-body code {
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 13px;
  font-family: monospace;
  color: var(--gold);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 24px;
  font-size: 13px;
}
.legal-table th {
  text-align: left;
  padding: 10px 14px;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.legal-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  vertical-align: top;
}
.legal-table tr:last-child td { border-bottom: none; }
