:root {
  --ink: #2B2B2B;
  --ink-light: #5A5A5A;
  --gold: #C89B3C;
  --light-grey: #F4F4F4;
  --white: #FFFFFF;
  --border: #E2E0DC;
}
* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Header */
header { border-bottom: 1px solid var(--border); position: sticky; top: 0; background: var(--white); z-index: 10; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; }
.logo { display: flex; align-items: center; }
.logo img { max-height: 100px; width: auto; }
.nav-links { display: flex; gap: 36px; font-size: 13px; letter-spacing: 1px; color: var(--ink-light); align-items: center; }
.nav-links a:hover,
.nav-links button:hover { color: var(--gold); }
.nav-links a.active { color: var(--ink); border-bottom: 1px solid var(--gold); padding-bottom: 4px; }
.nav-cta { border: 1px solid var(--gold); padding: 10px 22px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; }
.nav-cta:hover { background: var(--gold); color: var(--white); }
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible { color: var(--gold); outline: none; }
.nav-caret { transition: transform 0.2s ease; }
.nav-dropdown:hover .nav-caret,
.nav-dropdown.is-open .nav-caret,
.nav-dropdown:focus-within .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(18, 24, 20, 0.08);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 50;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: 13px;
  color: var(--ink);
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--gold, #C89B3C);
  background: var(--light-grey);
  outline: none;
}

/* Mobile nav toggle (hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 60;
  position: relative;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay backdrop */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 24, 20, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 40;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }

/* Close button inside mobile panel (hidden on desktop) */
.nav-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 24px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  font-size: 20px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
}
.nav-close:hover { border-color: var(--gold); color: var(--gold); }

/* Mobile-only CTA duplicated inside the slide-out panel */
.nav-cta-mobile { display: none; }

/* Dropdown chevron toggle button (mobile) — hidden on desktop, caret inside trigger link is used there */
.nav-dropdown-toggle { display: none; }

#financials,
#performance,
#reports,
#media { scroll-margin-top: 100px; }

/* Page header (sub-page hero) */
.page-hero { background: var(--ink); color: var(--white); padding: 190px 0 190px; }
.page-hero .hero-eyebrow { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 48px; max-width: 700px; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 540px; margin-top: 18px; font-size: 15px; }

/* Hero (home) */
.hero { background: var(--ink); color: var(--white); padding: 180px 0 160px; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; right: -100px; top: -100px; width: 420px; height: 420px; border: 1px solid rgba(200,155,60,0.25); border-radius: 50%; }
.hero-eyebrow { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 64px; line-height: 1.08; max-width: 760px; margin-bottom: 28px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { max-width: 540px; color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 40px; }
.btn-row { display: flex; gap: 18px; }
.btn-gold { background: var(--gold); color: var(--ink); padding: 15px 32px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; display: inline-block; }
.btn-outline { border: 1px solid rgba(255,255,255,0.4); padding: 15px 32px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; display: inline-block; }
.btn-gold:hover { opacity: .88; }
.btn-outline:hover { border-color: var(--white); }

/* Section system */
.section { padding: 64px 0; border-bottom: 1px solid var(--border); }
.section:last-child { border-bottom: none; }
.section-header { display: flex; align-items: baseline; gap: 16px; margin-bottom: 48px; }
.section-num { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300; line-height: 1; color: var(--border); user-select: none; }
.section-label { font-size: 11px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: var(--ink-light); }
.section-title { font-size: 24px; font-weight: 300; color: var(--ink); margin-top: 2px; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.stat-card { background: var(--white); padding: 36px 28px; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 400; color: var(--gold); }
.stat-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-light); margin-top: 8px; }

/* Pillar / card grid */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.pillar-card { background: var(--white); padding: 36px 30px; position: relative; transition: background .15s ease; }
.pillar-card:hover { background: var(--light-grey); }
.pillar-num { font-size: 10px; color: var(--ink-light); margin-bottom: 18px; letter-spacing: 1px; }
.pillar-title { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 400; margin-bottom: 12px; color: var(--ink); }
.pillar-desc { font-size: 14px; color: var(--ink-light); }

/* Two-up grid */
.pillar-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }

/* Mission Row */
.mission-row {
  display: grid;
  grid-template-columns: 140px 220px 1fr;
  gap: 30px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 30px;
  margin-bottom: 1px;
}

.mission-row .pillar-num {
  margin-bottom: 0;
}

.mission-row .pillar-title {
  margin-bottom: 0;
}

.mission-row .pillar-desc {
  line-height: 1.7;
  max-width: 850px;
}

/* About split */
.about-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 64px; 
  align-items: center; 
}

.about-img { 
  height: 480px; /* Bumped up slightly from 380px to balance well against the long copy block */
  width: 600px;
  
  
  overflow: hidden; /* Keeps everything sharp if you use rounded corners later */
}

/* Added for responsive, non-distorted image scaling */
.about-img img {
  width: 100%;
  height: 100%;
  object-fit:cover; /* Perfectly fills the 480px height without stretching */
  display: block;
}

.about-text p { 
  color: var(--ink-light); 
  margin-bottom: 18px; 
  font-size: 15px; 
  line-height: 1.6; /* Slight bump for elegant corporate readability */
}

.about-text .lead { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 26px; 
  font-weight: 400; 
  color: var(--ink); 
  margin-bottom: 24px; 
  line-height: 1.3;
}

/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 4px; row-gap: 28px; background: var(--border); border: 1px solid var(--border); padding: 28px 24px }
.team-card { background: var(--white); padding: 28px 24px; }
.team-photo{

    position:relative;
    cursor:pointer;
    overflow:hidden;
    transition:.4s;

    width:100%;
    height:400px;

    background-image:var(--team-image);
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    border:1px solid var(--border);
    margin-bottom:18px;

}

.team-photo:hover{
    transform:scale(1.03);
}

.team-photo::after{

    content:"View Profile";

    position:absolute;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(13,35,64,.72);

    color:#fff;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;

    opacity:0;
    transition:.35s;

}

.team-photo:hover::after{
    opacity:1;
}

.team-name {
  cursor: pointer;
  transition: color 0.25s ease;
  display: inline-block;
}

.team-name:hover {
  color: var(--gold);
}

.profile-modal{

    position:fixed;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,.75);

    padding:40px;

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:9999;

}

.profile-modal.show{

    opacity:1;
    visibility:visible;

}

.profile-content{

    position:relative;

    width:1000px;
    max-width:95%;
    height:90vh;

    background:#fff;

    display:grid;
    grid-template-columns:320px 1fr;

    border-radius:12px;

    overflow:hidden;

    animation:popup .35s ease;

}

@keyframes popup{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.profile-content::-webkit-scrollbar{
    width:10px;
}

.profile-content::-webkit-scrollbar-thumb{
    background:var(--gold);
    border-radius:20px;
}

.profile-content::-webkit-scrollbar-track{
    background:#f2f2f2;
}

.profile-left{

    height:100%;

}

.profile-left img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

}

.profile-right{
   height:100%;
   min-height:0;

   padding:50px;

    overflow-y:auto;

}

.profile-right h2{

    font-family:'Cormorant Garamond',serif;

    font-size:42px;

    margin:0 0 10px;

    color:var(--navy);

}

.profile-right h4{

    margin:0 0 30px;

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:14px;

}

.profile-right p{

    font-size:16px;

    line-height:1.9;

    color:#555;

    text-align:justify;

}
.close-profile{

    position:absolute;

    top:18px;
    right:25px;

    font-size:38px;

    cursor:pointer;

    color:#333;

    z-index:20;

}

.profile-right::-webkit-scrollbar{

    width:8px;

}

.profile-right::-webkit-scrollbar-thumb{

    background:var(--gold);

    border-radius:10px;

}

.profile-right::-webkit-scrollbar-track{

    background:#f3f3f3;

}

.team-name { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 20px; 
  margin-bottom: 4px; 
}

.team-role { 
  font-size: 11px; 
  letter-spacing: 1px; 
  text-transform: uppercase; 
  color: var(--gold); 
}



/* Timeline */
.timeline { border-left: 1px solid var(--border); padding-left: 36px; position: relative; }
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -41px; top: 4px; width: 9px; height: 9px; background: var(--gold); border-radius: 50%; }
.timeline-year { font-family: 'Cormorant Garamond', serif; font-size: 35px; color: var(--ink); margin-bottom: 6px; }
.timeline-text { font-size: 14px; color: var(--ink-light); max-width: 560px; }

/* Table */
table { width: 100%; border-collapse: collapse; }
th { text-align: left; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-light); padding: 14px 0; border-bottom: 1px solid var(--ink); font-weight: 500; }
td { padding: 20px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.sector-tag { display: inline-block; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 4px 10px; }
.up { color: #2E7D32; } .down { color: #B3261E; }

/* Media / press grid */
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 1px; }
  .media-card { background: var(--white); padding: 30px 26px; display: flex; flex-direction: column; transition: background .15s ease; cursor: pointer; position: relative; }
  .media-card:hover { background: var(--light-grey); }
  .media-card-content { display: flex; flex-direction: column; flex-grow: 1; }
  .media-preview-wrap { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; margin-bottom: 20px; background: #12181d; }
  .media-preview { width: 100%; height: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; background: var(--light-grey); transition: transform .35s ease; }
  .media-card:hover .media-preview { transform: scale(1.04); }
  .media-play-badge { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(18, 24, 20, 0.28); transition: background .25s ease; }
  .media-card:hover .media-play-badge { background: rgba(18, 24, 20, 0.12); }
  .media-play-icon { width: 50px; height: 50px; border-radius: 50%; background: rgba(18, 24, 20, 0.82); border: 1px solid var(--gold); color: var(--gold); display: flex; align-items: center; justify-content: center; transition: transform .25s ease, background .25s ease, color .25s ease; }
  .media-card:hover .media-play-icon { transform: scale(1.1); background: var(--gold); color: #12181d; }
  .media-date { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
  .media-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; margin-bottom: 10px; line-height: 1.25; }
  .media-desc { color: var(--ink-light); font-size: 13px; line-height: 1.6; margin: 0 0 16px; }
  .media-cta-wrap { margin-top: auto; padding-top: 8px; }

/* ============================================
   ARTICLE MODAL
   Matches the editorial system: Cormorant Garamond /
   Inter, sharp corners, hairline borders, gold accent.
   ============================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 24, 20, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg, #fff);
  width: 100%;
  max-width: 800px;
  max-height: 85vh;
  border: 1px solid rgba(18, 24, 20, 0.12);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  transform: scale(0.96) translateY(12px);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.28s ease;
}

.modal-overlay.is-open .modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0;
  background: rgba(18, 24, 20, 0.45);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.modal-close:hover,
.modal-close:focus-visible {
  background: var(--gold, #C89B3C);
  border-color: var(--gold, #C89B3C);
  color: #12181d;
  outline: none;
}

/* Scrollable content column — image stays put, only this scrolls */
.modal-scroll {
  overflow-y: auto;
  overscroll-behavior: contain;
}

.modal-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 480px;
  overflow: hidden;
  flex-shrink: 0;
  background: #0d1215;
}

.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 28px 40px 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(18, 24, 20, 0.55);
}

.article-divider {
  width: 20px;
  height: 1px;
  background: var(--gold, #C89B3C);
}

.modal-author strong {
  color: #12181d;
  font-weight: 500;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.2;
  padding: 14px 40px 0;
  color: #12181d;
}

.modal-body {
  padding: 20px 40px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(18, 24, 20, 0.78);
}

.modal-body p {
  margin: 0 0 18px;
}

.modal-body p.lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  color: #12181d;
}

/* Media trigger — plain text, not a button */
.media-link {
  background: none;
  border: none;
  padding: 0;
  margin-top: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #12181d;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, gap 0.2s ease;
}

.media-card:hover .media-link,
.media-link:hover,
.media-link:focus-visible {
  color: var(--gold, #C89B3C);
  gap: 10px;
  outline: none;
}

/* Tablet */
@media (max-width: 900px) {
  .modal { max-width: 90%; }
  .modal-media { height: auto; max-height: 380px; }
  .article-meta,
  .modal-title,
  .modal-body { padding-left: 28px; padding-right: 28px; }
}

/* Mobile — near full-screen */
@media (max-width: 560px) {
  .modal-overlay { padding: 12px; }
  .modal { max-width: 100%; max-height: 94vh; }
  .modal-media { height: auto; max-height: 260px; }
  .article-meta { padding: 20px 20px 0; flex-wrap: wrap; }
  .modal-title { padding: 12px 20px 0; font-size: 24px; }
  .modal-body { padding: 16px 20px 32px; font-size: 14.5px; }
  .modal-close { top: 10px; right: 10px; width: 32px; height: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .modal-overlay,
  .modal { transition: none; }
}
/* Download / report list */
.doc-list { display: flex; flex-direction: column; }
.doc-row { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; border-bottom: 1px solid var(--border); }
.doc-row:last-child { border-bottom: none; }
.doc-name { font-size: 15px; }
.doc-meta { font-size: 12px; color: var(--ink-light); margin-top: 4px; }
.doc-dl { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 8px 18px; }
.doc-dl:hover { background: var(--gold); color: var(--white); }

/* CTA band */
.cta-band {
  position: relative;
  background: url('../assets/image-bank/pexels-judi-jutras-3137906-36756053.jpg') center center / cover no-repeat;
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-band p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
}

/* Footer */
footer { background: var(--light-grey); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { margin-bottom: 14px; }

.footer-logo img { max-height: 120px; width: auto; }
.footer-col h4 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-light); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: var(--ink-light); margin-bottom: 10px; }
.footer-col a:hover { color: var(--gold); }
.footer-policy-link { display: inline; color: inherit; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 3px; transition: color 0.2s ease, text-decoration-color 0.2s ease; }
.footer-policy-link:hover,
.footer-policy-link:focus-visible { color: var(--gold); text-decoration-color: var(--gold); outline: none; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-light); }
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(214, 179, 112, 0.35);
  border-radius: 50%;

  color: var(--ink-light);
  text-decoration: none;

  transition: all 0.3s ease;
}

.footer-socials a:hover {
  color: var(--white);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-socials i {
  font-size: 16px;
}

/* Privacy policy modal */
.privacy-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(18, 24, 20, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.privacy-overlay.is-open { opacity: 1; visibility: visible; }
.privacy-modal {
  width: min(760px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  padding: 30px 42px 34px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 24px 70px rgba(18, 24, 20, 0.25);
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.privacy-overlay.is-open .privacy-modal { transform: translateY(0); opacity: 1; }
.privacy-modal > :not(.privacy-close):not(.privacy-embed):not(.privacy-download) { display: none; }
.privacy-embed { display: block; width: 100%; height: 66vh; min-height: 420px; border: 0; background: var(--white); }
.privacy-document-header { padding-bottom: 18px; border-bottom: 1px solid var(--ink); text-align: center; }
.privacy-brand { width: 154px; height: auto; margin: 0 auto 14px; display: block; }
.privacy-company { margin: 0 0 5px; color: var(--ink); font-size: 10px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; }
.privacy-modal h2 { margin: 0 0 7px; font-family: 'Cormorant Garamond', serif; font-size: 25px; font-weight: 700; line-height: 1.1; color: var(--ink); text-transform: uppercase; }
.privacy-modal .privacy-effective { margin: 0 0 5px; color: var(--ink); font-size: 10px; letter-spacing: 0; text-transform: none; }
.privacy-note { margin: 0 !important; color: var(--ink-light) !important; font-size: 9px !important; font-style: italic; line-height: 1.4 !important; }
.privacy-modal h3 { margin: 20px 0 7px; padding-bottom: 5px; border-bottom: 1px solid var(--gold); color: var(--ink); font-size: 12px; font-weight: 700; line-height: 1.2; text-transform: uppercase; }
.privacy-modal p, .privacy-modal li { color: var(--ink); font-size: 12px; line-height: 1.55; }
.privacy-modal p { margin: 0 0 10px; }
.privacy-modal ul { margin: 0 0 12px; padding-left: 20px; }
.privacy-modal a { color: var(--gold); }
.privacy-modal .privacy-download { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 11px 18px; border: 1px solid var(--gold); background: var(--gold); color: var(--white); font: inherit; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; text-decoration: none; }
.privacy-download:hover, .privacy-download:focus-visible { background: var(--ink); border-color: var(--ink); outline: none; }
.privacy-close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border: 1px solid var(--border); background: transparent; color: var(--ink); font-size: 22px; line-height: 1; cursor: pointer; }
.privacy-close:hover, .privacy-close:focus-visible { border-color: var(--gold); background: var(--gold); color: var(--white); outline: none; }

@media (max-width: 600px) {
  .privacy-overlay { padding: 12px; }
  .privacy-modal { max-height: 92vh; padding: 26px 22px 28px; }
  .privacy-embed { height: 72vh; min-height: 360px; }
  .privacy-modal h2 { font-size: 22px; }
  .privacy-company { font-size: 9px; }
  .privacy-modal p, .privacy-modal li { font-size: 11.5px; }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .nav-links { gap: 20px; font-size: 12px; }
  .nav-cta { padding: 8px 14px; font-size: 11px; }
}

@media (max-width: 900px) {
  .hero h1 { font-size: 42px; }
  .page-hero h1 { font-size: 34px; }
  .stats-grid, .pillar-grid, .pillar-grid-2, .team-grid, .media-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .doc-row { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Show hamburger, hide the inline desktop CTA */
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  /* Off-canvas slide-in panel */
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 84vw);
    background: var(--white);
    padding: 90px 30px 40px;
    box-shadow: -24px 0 60px rgba(18, 24, 20, 0.18);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 50;
    overflow-y: auto;
  }
  .nav-links.is-open { transform: translateX(0); }

  .nav-close { display: flex; }

  .nav-links a,
  .nav-links button.nav-dropdown-trigger {
    padding: 16px 2px;
    width: 100%;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    letter-spacing: 1.2px;
    color: var(--ink-light);
    text-align: left;
  }
  .nav-links a:hover,
  .nav-links button.nav-dropdown-trigger:hover {
    color: var(--ink);
  }
  .nav-links a.active { color: var(--ink); border-bottom: 1px solid var(--border); }

  .nav-dropdown { position: relative; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: none !important;
    padding-bottom: 16px;
    padding-top: 16px;
    margin-bottom: 0;
  }
  .nav-dropdown-trigger .nav-caret { display: none; }

  .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 44px;
    height: 51px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .nav-dropdown-toggle .nav-caret { transition: transform 0.25s ease; color: var(--ink-light); }
  .nav-dropdown.is-open .nav-dropdown-toggle .nav-caret { transform: rotate(180deg); }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    box-shadow: none;
    padding: 0 0 8px 14px;
    display: none;
    background: var(--light-grey);
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown.is-open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a {
    padding: 12px 10px;
    font-size: 13px;
    border-bottom: none;
    color: var(--ink-light);
    white-space: normal;
  }
  .nav-dropdown-menu a:hover { color: var(--gold); background: none; }

  .nav-cta-mobile {
    display: block;
    text-align: center;
    margin-top: 28px;
    border: 1px solid var(--gold);
    padding: 14px 22px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  .nav-cta-mobile:hover { background: var(--gold); color: var(--white); }
}

body.nav-open { overflow: hidden; }

/* Services page */
.service-list { display: flex; flex-direction: column; }
.service-row { display: grid; grid-template-columns: 100px 1fr 1.4fr; gap: 32px; padding: 36px 0; border-bottom: 1px solid var(--border); }
.service-row:last-child { border-bottom: none; }
.service-num-lg { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: var(--gold); }
.service-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; }
.service-desc { color: var(--ink-light); font-size: 14px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.process-card { background: var(--white); padding: 32px 26px; }
.process-step { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.process-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; margin-bottom: 10px; }
.process-desc { font-size: 13px; color: var(--ink-light); }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info-block { margin-bottom: 32px; }
.contact-info-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-light); margin-bottom: 8px; }
.contact-info-value { font-size: 18px; font-family: 'Cormorant Garamond', serif; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-light); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1px solid var(--border); background: var(--white); padding: 13px 14px;
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--ink);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.btn-submit { background: var(--ink); color: var(--white); border: none; padding: 15px 36px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; cursor: pointer; }
.btn-submit:hover { background: var(--gold); color: var(--ink); }
.office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.office-card { background: var(--white); padding: 30px 26px; }
.office-city { font-family: 'Cormorant Garamond', serif; font-size: 22px; margin-bottom: 10px; }
.office-addr { font-size: 13px; color: var(--ink-light); line-height: 1.7; }
.map-container {
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  margin-top: 2rem;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
}

@media (max-width: 768px) {
  .map-container iframe {
    height: 350px;
  }
}
@media (max-width: 900px) {
  .service-row { grid-template-columns: 1fr; gap: 10px; }
  .process-grid, .office-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width:768px){

  #executive-assistant .team-grid{
    width:100%;
  }

    .profile-content{

        grid-template-columns:1fr;

        max-height:95vh;

    }

    .profile-left{

        height:320px;

    }

    .profile-right{

        padding:30px;

    }

}

/* Contact Form Enhancements */
.form-messages {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
}

.form-messages.success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.form-messages.error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(200, 155, 60, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #dc3545;
  background-color: #fff5f5;
}

.field-error {
  display: none;
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
}

.character-count {
  text-align: right;
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.4;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.btn-submit {
  background: var(--gold);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-submit:hover {
  background: #b8872e;
}

.btn-submit:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.btn-loading {
  display: none;
  align-items: center;
  gap: 8px;
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px;
  }
  
  .btn-submit {
    width: 100%;
    justify-content: center;
  }
}