/* ============================================================
   ALEXANDER MANAGEMENT PARTNERS — MAIN STYLESHEET
   Design: Luxury/Refined Consulting Aesthetic
   ============================================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&display=swap');

/* ── CSS Variables ──────────────────────────────────── */
:root {
  --navy:      #1A2744;
  --navy-dark: #0E1829;
  --navy-mid:  #253459;
  --gold:      #B8965A;
  --gold-light:#D4AF7A;
  --gold-dark: #8A6E3E;
  --cream:     #F7F4EE;
  --white:     #FFFFFF;
  --text:      #2C3347;
  --text-light:#6B7395;
  --border:    #E2DBD0;
  --shadow:    rgba(26,39,68,0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Raleway', sans-serif;

  --max-width: 1200px;
  --section-pad: 100px;
  --radius: 2px;

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 400; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.3rem; }

p { margin-bottom: 1.2em; color: var(--text); }
p:last-child { margin-bottom: 0; }

.lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-light);
}

/* ── Layout Helpers ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: var(--section-pad) 0; }
.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

.text-center { text-align: center; }
.text-right  { text-align: right; }

/* ── Gold Divider Line ──────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.section-label span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-label::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-label--center {
  justify-content: center;
}
.section-label--center::before { display: none; }
.section-label--center::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: currentColor;
  transition: width var(--transition);
}

.btn:hover::after { width: 100%; }

.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: var(--gold-dark); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

.btn-arrow::after { display: none; }
.btn-arrow svg { transition: transform var(--transition); }
.btn-arrow:hover svg { transform: translateX(5px); }

/* ── NAVIGATION ─────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
}

#site-header.scrolled {
  background: rgba(14, 24, 41, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(184,150,90,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav-logo .logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.nav-logo .logo-tagline {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.nav-logo .logo-divider {
  width: 100%;
  height: 1px;
  background: var(--gold);
  margin: 4px 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-menu a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  transition: color var(--transition);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-menu a:hover,
.nav-menu a.current-menu-item { color: var(--white); }
.nav-menu a:hover::after,
.nav-menu a.current-menu-item::after { width: 100%; }

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 11px 26px;
  background: transparent;
  color: var(--gold) !important;
  border: 1.5px solid var(--gold);
  transition: all var(--transition);
  border-radius: var(--radius);
}

.nav-cta:hover { background: var(--gold); color: var(--white) !important; }
.nav-cta::after { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,39,68,0.96) 0%, rgba(14,24,41,0.98) 60%, rgba(26,39,68,0.92) 100%);
  z-index: 1;
}

/* Geometric decoration */
.hero-bg::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 600px; height: 600px;
  border: 1px solid rgba(184,150,90,0.12);
  border-radius: 50%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 800px; height: 800px;
  border: 1px solid rgba(184,150,90,0.06);
  border-radius: 50%;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,150,90,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,150,90,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 780px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  animation: fadeUp 0.8s ease both;
}

.hero-eyebrow span {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 30px;
  animation: fadeUp 0.8s 0.15s ease both;
}

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

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 50px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── STATS BAR ──────────────────────────────────────── */
.stats-bar {
  background: var(--gold);
  padding: 30px 0;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid rgba(255,255,255,0.25);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
}

/* ── ABOUT INTRO ─────────────────────────────────────── */
.about-intro .section-label { margin-bottom: 16px; }
.about-intro h2 { margin-bottom: 28px; }

.about-intro .highlight-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 36px 0;
  font-style: italic;
}

.about-visual {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-dark) 100%);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(184,150,90,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(184,150,90,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.about-img-main .img-inner-text {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
}

.about-img-main .img-inner-text .quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 30px;
  display: block;
}

.about-img-main .img-inner-text p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
}

.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 130px; height: 130px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 50px rgba(184,150,90,0.35);
}

.about-badge .badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.about-badge .badge-text {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  max-width: 70px;
  text-align: center;
  margin-top: 4px;
}

/* ── SERVICES ────────────────────────────────────────── */
.services-grid { margin-top: 60px; }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 44px 40px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height var(--transition);
}

.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px var(--shadow); }
.service-card:hover::before { height: 100%; }

.service-icon {
  width: 54px; height: 54px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  transition: color var(--transition);
}

.service-card:hover h3 { color: var(--gold-dark); }

.service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
}

.service-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  transition: color var(--transition);
}

.service-card:hover .service-num { color: rgba(184,150,90,0.12); }

/* ── APPROACH / PROCESS ──────────────────────────────── */
.process-steps { margin-top: 60px; }

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: all var(--transition);
}

.process-step:first-child { border-top: 1px solid var(--border); }
.process-step:hover { padding-left: 16px; }

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  opacity: 0.7;
}

.step-content h3 { margin-bottom: 10px; }
.step-content p { color: var(--text-light); font-size: 0.95rem; margin: 0; }

/* ── INDUSTRIES ──────────────────────────────────────── */
.industry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 50px;
}

.industry-pill {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  border-radius: 100px;
  transition: all var(--transition);
}

.industry-pill:hover {
  border-color: var(--gold);
  color: var(--white);
  background: rgba(184,150,90,0.1);
}

/* ── TEAM ───────────────────────────────────────────── */
.team-card {
  position: relative;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 40%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,39,68,0.6) 0%, transparent 50%);
}

.team-photo .photo-initials {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

.team-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.team-card .team-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.team-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

.team-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.team-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.team-social a:hover { border-color: var(--gold); background: var(--gold); }
.team-social a:hover svg { stroke: var(--white); }
.team-social svg { width: 14px; height: 14px; stroke: var(--text-light); fill: none; stroke-width: 2; }

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testimonials-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--white);
  padding: 44px;
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 7rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 10px; left: 30px;
  line-height: 1;
}

.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--navy);
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.testimonial-author { display: flex; align-items: center; gap: 16px; }

.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.author-info .name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.author-info .title {
  font-size: 0.75rem;
  color: var(--text-light);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.stars svg { width: 14px; height: 14px; fill: var(--gold); }

/* ── CTA BAND ─────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  border: 1px solid rgba(184,150,90,0.1);
  border-radius: 50%;
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -250px; left: -100px;
  width: 700px; height: 700px;
  border: 1px solid rgba(184,150,90,0.06);
  border-radius: 50%;
}

.cta-band .container { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 20px; }
.cta-band p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 44px; font-family: var(--font-display); font-size: 1.15rem; font-weight: 300; }
.cta-band .btn-group { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ── WHY US ─────────────────────────────────────────── */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 60px;
}

.why-item {
  background: var(--white);
  padding: 44px;
  transition: background var(--transition);
}

.why-item:hover { background: var(--cream); }

.why-item .why-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.why-item .why-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.why-item h3 { font-size: 1.25rem; margin-bottom: 12px; }
.why-item p { font-size: 0.92rem; color: var(--text-light); margin: 0; line-height: 1.75; }

/* ── CONTACT ─────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 20px; }
.contact-info .lead { margin-bottom: 40px; }

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

.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-detail-text .label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-detail-text .value { font-weight: 600; color: var(--navy); font-size: 0.95rem; }

/* Contact Form */
.contact-form-wrap { background: var(--cream); padding: 52px; }
.contact-form-wrap h3 { margin-bottom: 30px; }

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

.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group textarea { min-height: 130px; resize: vertical; }

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

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }

/* ── PAGE HERO (Inner Pages) ─────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 170px 0 90px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(184,150,90,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(184,150,90,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-label { margin-bottom: 20px; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 620px; font-family: var(--font-display); font-size: 1.2rem; font-weight: 300; margin: 0; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }
.breadcrumb .current { color: var(--gold); }

/* ── VALUES ─────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 60px;
}

.value-item {
  background: var(--white);
  padding: 50px 40px;
  text-align: center;
  transition: background var(--transition);
}

.value-item:hover { background: var(--navy); }
.value-item:hover h3 { color: var(--white); }
.value-item:hover p { color: rgba(255,255,255,0.65); }
.value-item:hover .value-icon { background: rgba(184,150,90,0.15); }
.value-item:hover .value-icon svg { stroke: var(--gold-light); }

.value-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all var(--transition);
}

.value-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.5; transition: stroke var(--transition); }
.value-item h3 { margin-bottom: 14px; font-size: 1.2rem; transition: color var(--transition); }
.value-item p { font-size: 0.9rem; color: var(--text-light); margin: 0; line-height: 1.75; transition: color var(--transition); }

/* ── FOOTER ─────────────────────────────────────────── */
#site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.footer-brand .logo-divider {
  width: 50px; height: 1px;
  background: var(--gold);
  margin: 8px 0 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 28px;
}

.footer-social { display: flex; gap: 12px; }

.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover { border-color: var(--gold); background: var(--gold); }
.footer-social a:hover svg { stroke: var(--white); }
.footer-social svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 2; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

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

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a { color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }
.footer-links { display: flex; gap: 24px; }

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.7); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ── ALERTS / SUCCESS ───────────────────────────────── */
.form-success {
  display: none;
  padding: 18px 24px;
  background: rgba(184,150,90,0.1);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 0.9rem;
  border-radius: var(--radius);
  margin-top: 16px;
  text-align: center;
}

/* ── MOBILE / RESPONSIVE ────────────────────────────── */
@media (max-width: 1100px) {
  :root { --section-pad: 80px; }
  .container { padding: 0 30px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --section-pad: 70px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-wrapper { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 50px; }
  .why-us-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.25); }
  .form-row { grid-template-columns: 1fr; }
  .about-badge { bottom: -16px; right: -16px; width: 110px; height: 110px; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 84px; left: 0; right: 0; background: var(--navy-dark); padding: 20px 30px 30px; gap: 20px; border-top: 1px solid rgba(184,150,90,0.2); }
  .nav-menu.open { display: flex; }
  .nav-menu a { font-size: 0.9rem; padding: 8px 0; }
  .nav-cta { display: inline-flex; margin-top: 10px; }
  .hamburger { display: flex; }
  .hero-actions { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 36px 28px; }
  .grid-4 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-content { padding-top: 100px; }
  .page-hero { padding: 140px 0 70px; }
}

/* ── WORDPRESS SPECIFIC ─────────────────────────────── */
.wp-block { max-width: none; }
.alignwide { max-width: none; }
.screen-reader-text { position: absolute; clip: rect(1px,1px,1px,1px); overflow: hidden; height: 1px; width: 1px; }
