@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Barlow:wght@300;400;500;600&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

:root {
  --navy: #002366;
  --navy-light: #003080;
  --navy-dark: #001540;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #A8882C;
  --white: #FFFFFF;
  --off-white: #F5F3EE;
  --light-gray: #E8E6E0;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 0 40px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-img {
  height: 118px;
  width: auto;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-text .logo-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  color: var(--gold-dark);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

nav a {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}

nav a:hover {
  color: var(--gold-dark);
  background: rgba(201,168,76,0.06);
}

nav a.active {
  color: var(--gold-dark);
}

.btn-primary {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-dark) !important;
  background: var(--gold);
  padding: 15px 28px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  margin-left: 10px;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  color: var(--navy-dark) !important;
}

.btn-outline {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  padding: 13px 28px;
  border-radius: 3px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--navy-dark) 30%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(201,168,76,0.12) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
}

.hero-globe-img {
  position: absolute;
  right: -180px;
  bottom: -180px;
  width: 85%;
  max-width: 1100px;
  height: auto;
  object-fit: cover;
  opacity: 0.52;
  mask-image: linear-gradient(to left, transparent 0%, rgba(0,0,0,0.3) 15%, rgba(0,0,0,0.75) 40%, transparent 72%),
              linear-gradient(to top, transparent 0%, rgba(0,0,0,1) 30%);
  -webkit-mask-image: linear-gradient(to left, transparent 0%, rgba(0,0,0,0.3) 15%, rgba(0,0,0,0.75) 40%, transparent 72%);
  mask-composite: intersect;
  -webkit-mask-composite: destination-in;
  pointer-events: none;
  z-index: 1;
}

.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;
}

.hero-diagonal {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(201,168,76,0.03) 40px,
    rgba(201,168,76,0.03) 41px
  );
}

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

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-lede {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 520px;
}

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

.hero-ctas .btn-primary {
  font-size: 14px;
  padding: 16px 32px;
  margin-left: 0;
}

.hero-photo-wrap {
  position: relative;
}

.hero-photo-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.hero-photo-card img,
.hero-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  background: linear-gradient(160deg, rgba(0,35,102,0.8), rgba(0,21,64,0.95));
}

.hero-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  font-style: italic;
  min-height: 480px;
}

.hero-photo-placeholder svg {
  opacity: 0.2;
}

.photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,21,64,0.95));
  padding: 40px 20px 20px;
  color: var(--white);
}

.photo-label .name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
}

.photo-label .title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--light-gray);
  padding: 32px 40px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--light-gray);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ─── SECTIONS ─── */
.section {
  padding: 100px 40px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 22px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold-dark);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-lede {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 620px;
  font-weight: 300;
}

/* ─── SERVICE CARDS ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-6 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,35,102,0.1);
}

.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,35,102,0.06);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--navy);
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.card-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
  font-weight: 300;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-decoration: none;
  margin-top: 20px;
  transition: gap 0.2s;
}

.card-link:hover { gap: 10px; }

/* ─── DARK SECTION ─── */
.section-dark {
  background: var(--navy);
  color: var(--white);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  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: 50px 50px;
}

.section-dark .section-inner { position: relative; z-index: 1; }

.section-dark .section-eyebrow { color: var(--gold); }
.section-dark .section-eyebrow::before { background: var(--gold); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-lede { color: rgba(255,255,255,0.7); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 56px;
  border: 1px solid rgba(201,168,76,0.15);
}

.why-item {
  padding: 40px;
  border: 1px solid rgba(201,168,76,0.1);
  transition: background 0.2s;
}

.why-item:hover { background: rgba(201,168,76,0.05); }

.why-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.why-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 36px 32px;
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 24px;
  border-left: 3px solid var(--light-gray);
  padding-left: 16px;
  font-family: 'Playfair Display', serif;
}

.testimonial-author {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

.testimonial-firm {
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 4px;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--gold);
  padding: 80px 40px;
  text-align: center;
}

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.cta-band p {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 36px;
  font-weight: 300;
}

.btn-navy {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy-dark);
  padding: 16px 40px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-navy:hover {
  background: var(--navy);
  transform: translateY(-2px);
  color: var(--white);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--navy);
  padding: 230px 40px 100px;
  position: relative;
  overflow: hidden;
}

.page-hero-globe {
  position: absolute;
  right: -160px;
  bottom: -160px;
  width: 78%;
  max-width: 1000px;
  height: auto;
  opacity: 0.38;
  mask-image: linear-gradient(to left, transparent 0%, rgba(0,0,0,0.3) 15%, rgba(0,0,0,0.7) 40%, transparent 68%);
  -webkit-mask-image: linear-gradient(to left, transparent 0%, rgba(0,0,0,0.3) 15%, rgba(0,0,0,0.7) 40%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 10% 60%, rgba(201,168,76,0.1) 0%, transparent 60%),
    repeating-linear-gradient(-55deg, transparent, transparent 40px, rgba(201,168,76,0.03) 40px, rgba(201,168,76,0.03) 41px),
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px) 0 0 / 50px 50px,
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px) 0 0 / 50px 50px;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 800px;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.page-hero-lede {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  font-weight: 300;
}

/* ─── DIFFERENTIATOR CALLOUT ─── */
.callout-box {
  background: var(--navy);
  border-left: 4px solid var(--gold);
  padding: 36px 40px;
  border-radius: 0 4px 4px 0;
  margin: 48px 0;
}

.callout-box p {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
}

.callout-box p strong {
  color: var(--gold);
  font-style: normal;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

/* ─── PROCESS STEPS ─── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--light-gray);
}

.process-step {
  padding: 40px 36px;
  border-right: 1px solid var(--light-gray);
  position: relative;
}

.process-step:last-child { border-right: none; }

.process-phase {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.process-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.process-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process-list li {
  font-size: 14px;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.process-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
}

/* ─── CONTACT FORM ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group.full { grid-column: 1 / -1; }

label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
}

input, select, textarea {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 3px;
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--navy);
}

textarea { min-height: 120px; resize: vertical; }

.contact-info-card {
  background: var(--navy);
  border-radius: 4px;
  padding: 48px 40px;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.contact-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 36px;
  font-weight: 300;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: rgba(201,168,76,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-detail-text .label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-detail-text .value {
  font-size: 15px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.5;
}

.response-promise {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 3px;
  padding: 16px 20px;
  margin-top: 36px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 72px 40px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer-brand .footer-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

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

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* Tidio chat widget installed */

.chat-widget:hover .chat-label { opacity: 1; }

/* ─── RESPONSIVE ─── */

/* ─── HAMBURGER MENU ─── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 120px;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  border-bottom: 3px solid var(--gold);
  z-index: 999;
  flex-direction: column;
  padding: 12px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 16px 28px;
  border-bottom: 1px solid var(--light-gray);
  transition: background 0.15s, color 0.15s;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  background: var(--off-white);
  color: var(--gold-dark);
}

.mobile-menu a.mobile-cta {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  text-align: center;
  margin: 12px 20px;
  border-radius: 3px;
  border-bottom: none;
}

.mobile-menu a.mobile-cta:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
}

@media (max-width: 900px) {
  header { padding: 0 20px; height: 120px; }
  .logo-img { height: 90px; }
  nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; padding: 60px 20px; }
  .hero-photo-wrap { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .cards-grid, .cards-grid-6 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 60px 20px; }
  .section-dark { padding: 60px 20px; }
  .page-hero { padding: 120px 20px 70px; }
}
