/* ================================================================
   G Rock Consulting — Design System
   Brand colours from logo: Navy #0D1B2E · Gold #C9A84C
   Loyalty · Integrity · Trust
   ================================================================ */

:root {
  --navy:       #0D1B2E;
  --navy-dark:  #080F1A;
  --navy-mid:   #152340;
  --navy-light: #1e3358;
  --gold:       #C9A84C;
  --gold-light: #DFC06E;
  --gold-pale:  #F5EDD6;
  --cream:      #F8F5EF;
  --cream-dark: #EDEAD9;
  --white:      #ffffff;
  --text:       #0F1A14;
  --text-light: #5A6478;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --max-w:   1200px;
  --radius:  4px;
  --radius-lg: 8px;
  --shadow:  0 4px 24px rgba(8,15,26,0.10);
  --shadow-lg: 0 16px 56px rgba(8,15,26,0.18);
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
p { margin-bottom: 1rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }

/* ---- Typography ----------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  color: var(--navy-dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.55rem); }

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

/* ---- Buttons -------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; cursor: pointer; border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-gold  { background: var(--gold); color: var(--navy-dark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.38); }
.btn-navy  { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy-dark); }
.btn-lg { padding: 15px 36px; font-size: 0.88rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- Section helpers ------------------------------------ */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 14px;
}
.section-eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--gold); }
.section-center { text-align: center; }
.section-center .section-eyebrow { justify-content: center; }

/* ---- Navigation ----------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: background 0.35s var(--ease), padding 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(8,15,26,0.97);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

/* Logo */
.logo-link { display: flex; align-items: center; gap: 11px; }
.logo-img {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,168,76,0.45);
  transition: border-color 0.3s;
}
.logo-link:hover .logo-img { border-color: var(--gold); }
.logo-wordmark { display: flex; flex-direction: column; gap: 1px; }
.logo-name    { font-family: var(--font-display); font-size: 1.22rem; font-weight: 700; letter-spacing: 0.14em; color: var(--white); line-height: 1; }
.logo-tagline { font-size: 0.52rem; letter-spacing: 0.24em; color: var(--gold); text-transform: uppercase; font-weight: 500; }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.09em; text-transform: uppercase;
  font-weight: 500; color: rgba(255,255,255,0.75);
  transition: color 0.25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: -14px;
  min-width: 220px; background: var(--navy-dark);
  border: 1px solid rgba(201,168,76,0.14); border-radius: var(--radius-lg);
  padding: 6px 0; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.25s var(--ease);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: 10px 18px; font-size: 0.78rem;
  color: rgba(255,255,255,0.65); letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: rgba(201,168,76,0.08); color: var(--gold); }

.nav-cta { margin-left: 6px; padding: 9px 20px; border: 1.5px solid var(--gold); color: var(--gold); border-radius: var(--radius); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; transition: all 0.25s; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold); color: var(--navy-dark) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ----------------------------------------------- */
.hero {
  position: relative; min-height: 85vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--navy-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(8,15,26,0.88) 0%, rgba(13,27,46,0.70) 100%),
    url('/assets/images/hero-bg.png') center / cover no-repeat;
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(201,168,76,0.07) 0%, transparent 65%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero h1 {
  color: var(--white); font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: -0.01em; margin-bottom: 8px;
  opacity: 0; animation: fadeUp 0.8s 0.35s forwards;
}
.hero-sub {
  font-size: 0.74rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 22px;
  opacity: 0; animation: fadeUp 0.8s 0.45s forwards;
}
.hero-desc {
  font-size: 1.13rem; color: rgba(255,255,255,0.8);
  max-width: 600px; margin-bottom: 44px;
  opacity: 0; animation: fadeUp 0.8s 0.55s forwards;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
}
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); z-index: 2; animation: bounce 2.5s 2s infinite;
}
.hero-scroll::after { content: '↓'; font-size: 0.85rem; color: var(--gold); }

/* ---- Stats Bar ------------------------------------------ */
.stats-bar { background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,0.05); }
.stats-bar .container { padding-top: 52px; padding-bottom: 52px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 16px 8px; border-right: 1px solid rgba(255,255,255,0.06); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 7px; }

/* ---- Service Cards -------------------------------------- */
.services-section { background: var(--navy); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(252px,1fr)); gap: 18px; margin-top: 48px; }
.service-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.12);
  padding: 32px 26px; border-radius: var(--radius); transition: all 0.3s var(--ease);
}
.service-card:hover { background: rgba(201,168,76,0.06); border-color: rgba(201,168,76,0.3); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon-wrap { width: 48px; height: 48px; background: rgba(201,168,76,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 18px; }
.service-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { color: rgba(255,255,255,0.52); font-size: 0.87rem; margin-bottom: 14px; }
.service-card ul { margin: 12px 0 16px; }
.service-card ul li { font-size: 0.82rem; color: rgba(255,255,255,0.45); padding: 4px 0; display: flex; align-items: center; gap: 7px; }
.service-card ul li::before { content: '✓'; color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }
.btn-ghost-gold { background: none; color: var(--gold); border: none; padding: 0; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.btn-ghost-gold:hover { gap: 9px; }

/* ---- Values Grid ---------------------------------------- */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.value-card { padding: 36px 28px; border-top: 3px solid var(--gold); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.value-card h3 { font-family: var(--font-display); font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
.value-card p { font-size: 0.93rem; }

/* ---- Story / Split grid --------------------------------- */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split-image-wrap { position: relative; }
.split-image-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); }
.split-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--gold); color: var(--navy-dark);
  padding: 16px 20px; font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700; line-height: 1; border-radius: var(--radius);
}
.split-badge span { display: block; font-family: var(--font-body); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }

/* ---- Image Cards (showcase) ----------------------------- */
.img-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.img-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; }
.img-card img { width:100%; height:100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.img-card:hover img { transform: scale(1.04); }
.img-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,15,26,0.93) 0%, rgba(8,15,26,0.12) 55%, transparent 100%); }
.img-card-body { position: absolute; bottom: 0; left: 0; padding: 22px 24px; }
.img-card-cat { display: block; font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.img-card-title { font-family: var(--font-display); font-size: 1.05rem; color: var(--white); margin-bottom: 7px; }
.img-card-link { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.img-card:hover .img-card-link { color: var(--gold); }

/* ---- Page Hero (inner pages) ---------------------------- */
.page-hero { position: relative; overflow: hidden; }
.page-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,15,26,0.97) 0%, rgba(8,15,26,0.60) 50%, rgba(8,15,26,0.25) 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 148px 0 64px; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.68); max-width: 520px; font-size: 1.06rem; }

/* ---- Offering cards ------------------------------------- */
.offering-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius); padding: 32px;
  transition: border-color 0.3s, background 0.3s;
}
.offering-card:hover { border-color: rgba(201,168,76,0.28); background: rgba(201,168,76,0.04); }
.offering-icon { width: 52px; height: 52px; background: rgba(201,168,76,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.offering-title { color: var(--white); font-size: 1.18rem; margin-bottom: 9px; }
.offering-desc  { color: rgba(255,255,255,0.52); font-size: 0.9rem; margin-bottom: 16px; }
.benefit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.benefit-item { display: flex; gap: 7px; align-items: flex-start; font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.benefit-item::before { content: '→'; color: var(--gold); flex-shrink: 0; font-weight: 700; }

/* ---- Process Steps -------------------------------------- */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.process-step-num { width: 62px; height: 62px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; margin: 0 auto 18px; }
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--navy-dark); }

/* ---- Impact stat cards ---------------------------------- */
.impact-card { background: var(--white); padding: 24px 26px; border-radius: var(--radius); border-left: 3px solid var(--gold); box-shadow: var(--shadow); }
.impact-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.impact-label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); margin: 4px 0 10px; }
.impact-title { font-size: 0.96rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }

/* ---- Country Card --------------------------------------- */
.country-card { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--cream-dark); }
.country-card:last-child { border-bottom: none; }
.country-flag { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.country-name { font-weight: 600; color: var(--navy); font-size: 0.96rem; margin-bottom: 2px; }
.country-desc { font-size: 0.84rem; color: var(--text-light); }

/* ---- Sector cards --------------------------------------- */
.sector-card { background: var(--white); padding: 22px 20px; border-radius: var(--radius); border-top: 3px solid var(--gold); box-shadow: var(--shadow); }
.sector-card h3 { font-size: 0.98rem; margin-bottom: 6px; color: var(--navy); }
.sector-card p  { font-size: 0.84rem; }

/* ---- Blog / Insights ------------------------------------ */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; margin-top: 48px; }
.post-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.post-thumb { aspect-ratio: 16/9; overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.post-card:hover .post-thumb img { transform: scale(1.05); }
.post-body { padding: 24px; }
.post-meta { display: flex; gap: 10px; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 9px; }
.post-cat  { color: var(--gold); font-weight: 600; }
.post-date { color: var(--text-light); }
.post-body h3 { font-size: 1.05rem; color: var(--navy-dark); margin-bottom: 7px; }
.post-body p  { font-size: 0.86rem; }
.post-link { display: inline-flex; align-items: center; gap: 5px; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gold); margin-top: 12px; transition: gap 0.2s; }
.post-link:hover { gap: 9px; }

/* ---- Contact -------------------------------------------- */
.contact-info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-icon { width: 42px; height: 42px; border-radius: 50%; background: rgba(13,27,46,0.08); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--navy); flex-shrink: 0; }
.contact-info-row strong { display: block; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 2px; }
.contact-info-row a, .contact-info-row span { color: var(--text-light); font-size: 0.92rem; display: block; }
.contact-info-row a:hover { color: var(--gold); }

.contact-form-card { background: var(--white); padding: 42px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; font-family: var(--font-body); font-size: 0.92rem;
  color: var(--text); background: var(--cream); border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius); outline: none; transition: border-color 0.25s, box-shadow 0.25s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); background: var(--white); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230D1B2E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-feedback { display: none; padding: 12px 15px; border-radius: var(--radius); font-size: 0.86rem; margin-bottom: 18px; }
.form-feedback.success { background: #e8f5e9; color: #2e7d32; border-left: 3px solid #4caf50; }
.form-feedback.error   { background: #fde8e8; color: #c62828; border-left: 3px solid #ef5350; }
.hours-table { width: 100%; }
.hours-table tr td { padding: 6px 0; font-size: 0.88rem; color: var(--text-light); border-bottom: 1px solid var(--cream-dark); }
.hours-table tr:last-of-type td { border-bottom: none; }
.hours-table tr td:last-child { text-align: right; font-weight: 600; color: var(--navy); }

/* ---- CTA bands ------------------------------------------ */
.cta-band { text-align: center; padding: 80px 0; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p  { max-width: 520px; margin: 0 auto 32px; font-size: 1.02rem; }

/* ---- Team ----------------------------------------------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 28px; margin-top: 48px; }
.team-card { text-align: center; }
.team-photo { width: 148px; height: 148px; border-radius: 50%; margin: 0 auto 16px; overflow: hidden; border: 3px solid var(--cream-dark); transition: border-color 0.3s; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card:hover .team-photo { border-color: var(--gold); }
.team-card h3 { font-size: 1.1rem; color: var(--navy-dark); }
.team-card .team-role { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin: 3px 0 10px; }
.team-card p  { font-size: 0.86rem; }

/* ---- Footer --------------------------------------------- */
.site-footer { background: var(--navy-dark); color: var(--white); padding-top: 68px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo-row { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.footer-logo-img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(201,168,76,0.3); }
.footer-logo-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; letter-spacing: 0.12em; color: var(--white); display: block; }
.footer-logo-tagline { font-size: 0.5rem; letter-spacing: 0.24em; color: var(--gold); display: block; text-transform: uppercase; }
.footer-brand-strap { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-brand p { font-size: 0.84rem; color: rgba(255,255,255,0.4); line-height: 1.65; }
.social-links { display: flex; gap: 8px; margin-top: 18px; }
.social-links a { width: 34px; height: 34px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.45); transition: all 0.25s; }
.social-links a:hover { background: var(--gold); color: var(--navy-dark); }
.footer-col h4 { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: 0.82rem; color: rgba(255,255,255,0.42); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-col a { font-size: 0.82rem; color: rgba(255,255,255,0.42); display: block; margin-bottom: 6px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 0.82rem; color: rgba(255,255,255,0.42); }
.footer-bottom { padding: 16px 0; }
.footer-bottom p { font-size: 0.74rem; color: rgba(255,255,255,0.22); }

/* ---- Check List ----------------------------------------- */
.check-list { list-style: none; padding: 0; margin: 18px 0; }
.check-list li { display: flex; gap: 9px; align-items: flex-start; padding: 8px 0; border-bottom: 1px solid var(--cream-dark); font-size: 0.9rem; color: var(--text-light); }
.check-list li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ---- Reveal animation ----------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- Keyframes ------------------------------------------ */
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
@keyframes bounce { 0%,100% { transform:translateX(-50%) translateY(0); } 50% { transform:translateX(-50%) translateY(7px); } }

/* ---- Responsive ----------------------------------------- */
@media (max-width: 1024px) {
  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid  { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .img-cards-grid { grid-template-columns: 1fr 1fr; }
  .benefit-list { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; inset: 0; background: var(--navy-dark); flex-direction: column; justify-content: center; align-items: center; gap: 24px; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: flex; }
  .nav-dropdown-menu { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .img-cards-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}
