  :root {    --navy:       #14213D;    --navy-mid:   #1a2a47;    --gold:       #C8A951;    --gold-light: #d4ba6a;    --charcoal:   #2E2E2E;    --offwhite:   #F8F9FA;    --sage:       #BFD8B8;    --white:      #FFFFFF;    --text-dark:  #14213D;    --text-body:  #4a5568;    --text-muted: #7a8898;    --border-lt:  #dde2e8;    --shadow-sm:  0 2px 12px rgba(20,33,61,0.07);    --shadow-md:  0 8px 32px rgba(20,33,61,0.11);  }   * { box-sizing: border-box; margin: 0; padding: 0; }  html { scroll-behavior: smooth; }  body {    background: var(--white);    color: rgba(255,255,255,0.75);    font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;    font-weight: 300;    overflow-x: hidden;  }   /* NAV */  nav {    position: fixed; top: 0; left: 0; right: 0; z-index: 100;    display: flex; align-items: center; justify-content: space-between;    padding: 14px 56px;    background: rgba(20,33,61,0.97);    backdrop-filter: blur(12px);    border-bottom: 1px solid rgba(200,169,81,0.15);    box-shadow: 0 1px 16px rgba(0,0,0,0.2);  }   /* HERO */  .hero {    background: var(--navy); min-height: 80vh;    display: grid; grid-template-columns: 1fr 1fr;    padding-top: 80px; position: relative; overflow: hidden;  }  .hero::before {    content: ''; position: absolute; inset: 0;    background: radial-gradient(ellipse 60% 80% at 20% 60%, rgba(200,169,81,0.07) 0%, transparent 60%);  }  .hero-left {    padding: 80px 52px 80px 56px;    display: flex; flex-direction: column; justify-content: center; position: relative;  }  .hero-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }  .hero-headline {    font-family: 'Playfair Display', Georgia, serif;    font-size: clamp(34px, 4vw, 56px); font-weight: 800;    line-height: 1.1; color: var(--white); margin-bottom: 28px;  }  .hero-headline em { font-style: italic; color: var(--gold); }   /* SHARED */  .section-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }  .section-heading {    font-family: 'Playfair Display', Georgia, serif;    font-size: clamp(28px, 3.2vw, 44px); font-weight: 800;    color: var(--text-dark); line-height: 1.1; margin-bottom: 14px;  }  .gold-rule { width: 40px; height: 2px; background: var(--gold); margin-bottom: 26px; }  .body-text { font-size: 16px; font-weight: 300; line-height: 1.9; color: var(--text-body); margin-bottom: 20px; }  .body-text:last-child { margin-bottom: 0; }   /* MISSION BAND */  .mission-band {    background: #faf7f0;    border-top: 1px solid rgba(200,169,81,0.18);    border-bottom: 1px solid rgba(200,169,81,0.18);    padding: 80px 56px; text-align: center;  }   /* OUR STORY */  .story-section { background: var(--white); padding: 100px 56px; }  .story-inner { max-width: 1000px; margin: 0 auto; }  .story-prose { max-width: 800px; margin: 0 auto; }   /* NAME BAND */  .name-band {    background: var(--navy-mid); padding: 80px 56px; text-align: center;    position: relative; overflow: hidden;  }  .name-band::before {    content: ''; position: absolute; inset: 0;    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,169,81,0.07) 0%, transparent 70%);  }  .name-band > * { position: relative; }  .name-band-word {    font-family: 'Playfair Display', Georgia, serif;    font-size: clamp(52px, 9vw, 100px); font-weight: 800; font-style: italic;    color: var(--gold); line-height: 1; margin-bottom: 18px; display: block;  }  .name-band-sub {    font-family: 'Cormorant Garamond', serif; font-style: italic;    font-size: clamp(16px, 2vw, 22px); font-weight: 300;    color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto; line-height: 1.65;  }   /* ETHOS */  .ethos-section { background: var(--offwhite); padding: 100px 56px; }  .ethos-inner { max-width: 1140px; margin: 0 auto; }  .ethos-header { text-align: center; max-width: 580px; margin: 0 auto 56px; }  .ethos-header .section-heading { margin-bottom: 12px; }  .ethos-header p { font-size: 16px; font-weight: 300; color: var(--text-body); line-height: 1.75; }  .ethos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }  .ethos-card {    background: var(--white); border: 1px solid var(--border-lt);    border-radius: 16px; padding: 36px 24px 32px; text-align: center;    transition: box-shadow 0.25s, transform 0.25s;  }  .ethos-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }  .ethos-icon {    width: 56px; height: 56px; border-radius: 50%; background: var(--navy);    margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;  }  .ethos-title { font-family: 'Playfair Display', Georgia, serif; font-size: 19px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }  .ethos-body { font-size: 13.5px; font-weight: 300; line-height: 1.72; color: var(--text-body); }   /* DIRECTORS */  .team-section { background: var(--white); padding: 100px 56px; }  .team-inner { max-width: 1140px; margin: 0 auto; }  .team-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }  .team-header .section-heading { margin-bottom: 12px; }  .team-header p { font-size: 16px; font-weight: 300; color: var(--text-body); line-height: 1.75; }  .team-card-full {    display: grid; grid-template-columns: 260px 1fr;    background: var(--offwhite); border: 1px solid var(--border-lt);    border-radius: 18px; overflow: hidden; margin-bottom: 24px;    transition: box-shadow 0.25s;  }  .team-card-full:last-child { margin-bottom: 0; }  .team-card-full:hover { box-shadow: var(--shadow-md); }  .team-photo-panel {    position: relative; overflow: hidden;    display: flex; align-items: center; justify-content: center; min-height: 260px;  }  .team-photo-panel::after {    content: ''; position: absolute; inset: 0;    background: linear-gradient(to bottom, transparent 45%, rgba(20,33,61,0.55) 100%);  }  .photo-anita { background: linear-gradient(145deg, #263a26 0%, #162216 100%); }  .photo-jamie { background: linear-gradient(145deg, #1a2a47 0%, #0f1828 100%); }  .photo-sonia { background: linear-gradient(145deg, #2e2a1a 0%, #1e1a0e 100%); }  .team-colour-bar { position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 2; }  .bar-sage { background: var(--sage); }  .bar-gold { background: var(--gold); }  .bar-navy { background: var(--navy); }  .team-initials { font-family: 'Playfair Display', Georgia, serif; font-size: 60px; font-weight: 700; color: rgba(200,169,81,0.22); position: relative; z-index: 1; }  .team-detail { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }  .team-name { font-family: 'Playfair Display', Georgia, serif; font-size: 24px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }  .team-title { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }  .team-bio { font-size: 15px; font-weight: 300; line-height: 1.82; color: var(--text-body); margin-bottom: 18px; }  .team-tag {    display: inline-block; font-size: 12px; font-weight: 400;    color: var(--text-muted); background: var(--white);    border: 1px solid var(--border-lt); border-radius: 50px;    padding: 5px 14px; margin-right: 6px; margin-bottom: 6px;  }   /* TESTIMONIALS */  .testi-section { background: var(--offwhite); padding: 100px 56px; text-align: center; }  .testi-section .section-heading { color: var(--text-dark); margin-bottom: 8px; }  .testi-rule { width: 40px; height: 2px; background: var(--gold); margin: 12px auto 48px; }  .testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1060px; margin: 0 auto; }  .testi-card {    background: var(--white); border: 1px solid var(--border-lt); border-radius: 16px;    padding: 42px; text-align: left; transition: box-shadow 0.25s, transform 0.25s;  }  .testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }  .testi-mark { font-family: 'Playfair Display', Georgia, serif; font-size: 56px; line-height: 0.6; color: var(--gold); opacity: 0.35; margin-bottom: 14px; display: block; }  .testi-quote { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-style: italic; font-weight: 400; line-height: 1.7; color: var(--text-dark); margin-bottom: 26px; }  .testi-name { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }  .testi-role { font-size: 13px; font-weight: 300; color: var(--text-muted); }   /* CTA */  .cta-section { background: var(--navy); padding: 120px 56px; text-align: center; position: relative; overflow: hidden; }  .cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,169,81,0.08) 0%, transparent 70%); }  .cta-section > * { position: relative; }  .cta-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }  .cta-heading { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(28px, 4vw, 50px); font-weight: 800; color: var(--white); line-height: 1.12; max-width: 640px; margin: 0 auto 14px; }  .cta-heading em { font-style: italic; color: var(--gold); }  .cta-sub { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.55); max-width: 420px; margin: 0 auto 42px; line-height: 1.75; }  .btn-primary {    background: var(--gold); color: var(--navy); padding: 15px 34px; border-radius: 50px;    font-family: 'Jost', sans-serif; font-size: 15px; font-weight: 600;    text-decoration: none; display: inline-block;    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;    box-shadow: 0 4px 20px rgba(200,169,81,0.3);  }  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,169,81,0.4); }   /* FOOTER */  footer { background: var(--charcoal); padding: 64px 56px 40px; }  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 52px; max-width: 1100px; margin: 0 auto 48px; }  .footer-brand-text { font-size: 13px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.4); margin: 14px 0 22px; max-width: 210px; }  .footer-socials { display: flex; gap: 10px; }  .footer-socials a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); text-decoration: none; font-size: 12px; transition: border-color 0.2s, color 0.2s; }  .footer-socials a:hover { border-color: var(--gold); color: var(--gold); }  .footer-col h4 { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }  .footer-col ul a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }  .footer-col ul a:hover { color: var(--white); }  .footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; }  .footer-bottom p { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.3); }  .footer-bottom-links { display: flex; gap: 22px; }  .footer-bottom-links a { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }  .footer-bottom-links a:hover { color: var(--white); }   /* ANIMATIONS */  .reveal { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }  .js-loaded .reveal { opacity: 0; transform: translateY(26px); }  .js-loaded .reveal.visible { opacity: 1; transform: translateY(0); }  .d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }  .d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }
/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr !important; min-height: auto !important; }
  .hero-content { padding: 60px 24px !important; }
  .hero-visual, .hero-right { padding: 40px 24px !important; }
  .ethos-section, .team-section, .testi-section, .mission-section, .values-section, .cta-section { padding: 60px 24px !important; }
  .ethos-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .team-card-full { grid-template-columns: 1fr !important; }
  .testi-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  div[style*="grid-template-columns: 260px 1fr"] { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .hero-content { padding: 40px 16px !important; }
}
