/* ============================================================
   HERSEY LAW — MASTER STYLESHEET
   Brand: #0a1a2f (navy) | #c8a45f (gold) | #f7f6f2 (off-white)
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f7f6f2;
  color: #0a1a2f;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

:root {
  --navy:       #0a1a2f;
  --navy-mid:   #0d2240;
  --navy-light: #122b52;
  --gold:       #c8a45f;
  --gold-light: #d4b47a;
  --gold-dark:  #a8843f;
  --offwhite:   #f7f6f2;
  --white:      #ffffff;
  --text-muted: #5a6a7e;
  --border:     rgba(200, 164, 95, 0.25);
  --shadow-sm:  0 2px 8px rgba(10, 26, 47, 0.08);
  --shadow-md:  0 8px 32px rgba(10, 26, 47, 0.12);
  --shadow-lg:  0 20px 60px rgba(10, 26, 47, 0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:  1200px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.gold { color: var(--gold); }

/* ---------- UTILITY ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 164, 95, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--offwhite);
  border-color: rgba(247, 246, 242, 0.5);
}
.btn-secondary:hover {
  background: rgba(247, 246, 242, 0.1);
  border-color: var(--offwhite);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--navy);
  color: var(--offwhite);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: var(--navy);
  padding: 0.8rem 0;
  box-shadow: 0 2px 20px rgba(10, 26, 47, 0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--offwhite);
  letter-spacing: 0.02em;
}

.nav-logo-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(247, 246, 242, 0.85);
  transition: color var(--transition);
  position: relative;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--offwhite);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.6rem 1.5rem;
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: 2px;
  transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 164, 95, 0.3);
}

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--offwhite);
  transition: var(--transition);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-mobile.open {
  display: flex;
  opacity: 1;
}
.nav-mobile a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--offwhite);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .nav-cta-mobile {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: 2px;
}

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(7rem, 12vw, 10rem) clamp(2rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem);
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--offwhite);
  margin-bottom: 1.5rem;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.1;
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(247, 246, 242, 0.7);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-divider {
  width: 60px; height: 2px;
  background: var(--gold);
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.hero-credentials {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-credential {
  display: flex;
  flex-direction: column;
}
.hero-credential-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 246, 242, 0.45);
  margin-bottom: 0.2rem;
}
.hero-credential-value {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--offwhite);
  font-weight: 500;
}

/* Right panel — photo */
.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%) contrast(1.05);
  display: block;
}

.hero-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    to right,
    var(--navy) 0%,
    rgba(10, 26, 47, 0.3) 30%,
    rgba(10, 26, 47, 0) 60%
  );
  z-index: 1;
}

.hero-right::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--navy) 0%, transparent 100%);
  z-index: 1;
}

/* Photo placeholder (until image is added) */
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247, 246, 242, 0.15);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(200, 164, 95, 0.2);
  border-bottom: 1px solid rgba(200, 164, 95, 0.2);
  padding: 1.25rem 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 246, 242, 0.7);
  border-right: 1px solid rgba(200, 164, 95, 0.2);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   SECTION — INTRO / ABOUT PREVIEW
   ============================================================ */
.section-intro {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--offwhite);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.intro-text .section-eyebrow { color: var(--gold); }

.intro-text h2 {
  color: var(--navy);
  margin-bottom: 1.75rem;
  max-width: 700px;
}

.intro-text p {
  color: #3a4a5e;
  font-size: 1.075rem;
  line-height: 1.85;
  margin-bottom: 1rem;
  max-width: 720px;
}

.intro-text p:last-of-type { margin-bottom: 2.5rem; }

.intro-photo-col {
  position: relative;
}

.intro-photo-frame {
  position: relative;
}

.intro-photo-frame::before {
  content: '';
  position: absolute;
  top: -16px; right: -16px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: 2px;
  z-index: 0;
  opacity: 0.4;
}

.intro-photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  filter: grayscale(15%);
}

/* ============================================================
   SECTION — PRACTICE AREAS OVERVIEW
   ============================================================ */
.section-practice {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--navy);
}

.section-practice .section-eyebrow { color: var(--gold); }

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.section-header h2 { color: var(--offwhite); }
.section-header p {
  color: rgba(247, 246, 242, 0.6);
  max-width: 560px;
  margin: 1rem auto 0;
  font-size: 1rem;
  line-height: 1.75;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
  background: rgba(200, 164, 95, 0.15);
}

.practice-card {
  background: var(--navy);
  padding: 2.5rem 2rem;
  transition: background var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.practice-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.practice-card:hover {
  background: var(--navy-mid);
}
.practice-card:hover::before { width: 100%; }

.practice-card-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(200, 164, 95, 0.35);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.practice-card h3 {
  font-size: 1.1rem;
  color: var(--offwhite);
  margin-bottom: 0.75rem;
}

.practice-card p {
  font-size: 0.88rem;
  color: rgba(247, 246, 242, 0.55);
  line-height: 1.7;
}

.practice-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}
.practice-card:hover .practice-card-link { gap: 0.7rem; }

.practice-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ============================================================
   SECTION — WHY HERSEY LAW
   ============================================================ */
.section-why {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--offwhite);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3.5rem;
}

.why-item {
  position: relative;
  padding-top: 1.5rem;
}

.why-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 2px;
  background: var(--gold);
}

.why-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(10, 26, 47, 0.06);
  line-height: 1;
  margin-bottom: -0.75rem;
  display: block;
}

.why-item h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.why-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
   SECTION — CTA BAND
   ============================================================ */
.section-cta-band {
  background: var(--navy);
  padding: clamp(4rem, 8vw, 6rem) 0;
  border-top: 1px solid rgba(200, 164, 95, 0.2);
  border-bottom: 1px solid rgba(200, 164, 95, 0.2);
}

.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.cta-band-text h2 {
  color: var(--offwhite);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.cta-band-text p {
  color: rgba(247, 246, 242, 0.6);
  font-size: 1rem;
}

.cta-band-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.phone-display {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: var(--navy);
  padding: clamp(8rem, 15vw, 11rem) 0 clamp(4rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.page-header-inner { position: relative; z-index: 2; }

.page-header h1 {
  color: var(--offwhite);
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(247, 246, 242, 0.65);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.75;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.section-about-body {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--offwhite);
}

.about-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(4rem, 7vw, 8rem);
  align-items: start;
}

.about-photo-sticky {
  position: sticky;
  top: 100px;
}

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

.about-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: -12px; left: -12px;
  width: 60%; height: 60%;
  background: var(--gold);
  opacity: 0.12;
  border-radius: 2px;
  z-index: 0;
}

.about-photo-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  position: relative;
  z-index: 1;
  filter: grayscale(15%);
}

.about-credentials {
  margin-top: 2rem;
  background: var(--navy);
  border-radius: 2px;
  padding: 1.5rem;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(200, 164, 95, 0.15);
}
.credential-item:last-child { border-bottom: none; }

.credential-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.credential-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--offwhite);
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.credential-item span {
  font-size: 0.75rem;
  color: rgba(247, 246, 242, 0.5);
}

.about-content h2 {
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.about-content h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin: 2.5rem 0 1rem;
}

.about-content p {
  font-size: 1rem;
  color: #3a4a5e;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-quote {
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background: rgba(200, 164, 95, 0.06);
  border-radius: 0 2px 2px 0;
}

.about-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  font-style: italic;
  margin: 0;
  line-height: 1.65;
}

/* ============================================================
   PRACTICE AREAS PAGE
   ============================================================ */
.section-pa-body {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--offwhite);
}

.pa-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 4rem;
  align-items: start;
}

/* Sidebar nav */
.pa-sidebar {
  position: sticky;
  top: 100px;
}

.pa-sidebar-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(10, 26, 47, 0.12);
}

.pa-sidebar ul li a {
  display: block;
  padding: 0.6rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(10, 26, 47, 0.06);
  transition: color var(--transition), padding-left var(--transition);
  position: relative;
}

.pa-sidebar ul li a::before {
  content: '';
  position: absolute;
  left: -12px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.pa-sidebar ul li a:hover,
.pa-sidebar ul li a.active {
  color: var(--navy);
  padding-left: 4px;
}
.pa-sidebar ul li a:hover::before,
.pa-sidebar ul li a.active::before { width: 8px; }

/* Practice area sections */
.pa-section {
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(10, 26, 47, 0.1);
  scroll-margin-top: 100px;
}
.pa-section:last-child { border-bottom: none; }

.pa-section-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.pa-section-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.pa-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--navy);
  line-height: 1.2;
}

.pa-section p {
  font-size: 0.97rem;
  color: #3a4a5e;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.pa-section h4 {
  color: var(--navy);
  margin: 1.75rem 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.consequence-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.consequence-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: #3a4a5e;
  line-height: 1.55;
}

.consequence-list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.pa-cta-box {
  background: var(--navy);
  border-radius: 2px;
  padding: 1.75rem 2rem;
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.pa-cta-box p {
  color: rgba(247, 246, 242, 0.75);
  font-size: 0.9rem;
  margin: 0;
}

.pa-cta-box strong {
  display: block;
  color: var(--offwhite);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.section-contact {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--offwhite);
}

.contact-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.contact-info h2 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.contact-info p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-detail-text span,
.contact-detail-text a {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
  transition: color var(--transition);
}
.contact-detail-text a:hover { color: var(--gold); }

.urgency-note {
  background: var(--navy);
  border-radius: 2px;
  padding: 1.5rem;
  margin-top: 2.5rem;
  border-left: 3px solid var(--gold);
}

.urgency-note p {
  font-size: 0.88rem;
  color: rgba(247, 246, 242, 0.75);
  margin: 0;
  line-height: 1.7;
}

.urgency-note strong {
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 4px;
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(10, 26, 47, 0.08);
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--offwhite);
  border: 1.5px solid rgba(10, 26, 47, 0.15);
  border-radius: 2px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 164, 95, 0.15);
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230a1a2f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 1rem;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: var(--navy);
  color: var(--offwhite);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.form-submit:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.form-submit:hover::before { width: 100%; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060e1a;
  padding: clamp(4rem, 7vw, 6rem) 0 2rem;
  border-top: 1px solid rgba(200, 164, 95, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .nav-logo-name { font-size: 1.5rem; }

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(247, 246, 242, 0.45);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 300px;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(247, 246, 242, 0.55);
  transition: color var(--transition);
  line-height: 1.4;
}
.footer-links a:hover { color: var(--offwhite); }

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}
.footer-contact-item span:first-child {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 246, 242, 0.35);
}
.footer-contact-item span:last-child,
.footer-contact-item a {
  font-size: 0.88rem;
  color: rgba(247, 246, 242, 0.7);
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(247, 246, 242, 0.07);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(247, 246, 242, 0.3);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer-legal-links a {
  font-size: 0.78rem;
  color: rgba(247, 246, 242, 0.3);
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: rgba(247, 246, 242, 0.6); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .intro-grid { gap: 3rem; }
  .pa-layout { grid-template-columns: 1fr; }
  .pa-sidebar { position: static; margin-bottom: 2.5rem; }
  .pa-sidebar ul { display: flex; flex-wrap: wrap; gap: 0.5rem; }
  .pa-sidebar ul li a {
    padding: 0.4rem 1rem;
    background: rgba(10, 26, 47, 0.06);
    border-radius: 20px;
    border: none;
    font-size: 0.82rem;
  }
  .pa-sidebar ul li a::before { display: none; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: 100svh; }
  .hero-right {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
  }
  .hero-right::before {
    background: linear-gradient(
      to bottom,
      rgba(10, 26, 47, 0.85) 0%,
      rgba(10, 26, 47, 0.6) 50%,
      rgba(10, 26, 47, 0.9) 100%
    );
  }
  .hero-left {
    position: relative;
    z-index: 2;
    padding: 7rem 2rem 5rem;
    justify-content: flex-end;
    min-height: 100svh;
  }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-photo-col { order: -1; }
  .about-layout { grid-template-columns: 1fr; }
  .about-photo-sticky { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .cta-band-inner { grid-template-columns: 1fr; }
  .cta-band-actions { align-items: flex-start; }
  .trust-item { padding: 0.4rem 1.25rem; font-size: 0.72rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-credentials { gap: 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .trust-bar-inner { gap: 0; }
  .trust-item {
    width: 50%;
    border-right: none;
    border-bottom: 1px solid rgba(200, 164, 95, 0.2);
    justify-content: center;
    font-size: 0.68rem;
    padding: 0.65rem 0.5rem;
  }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(200, 164, 95, 0.2); }
  .pa-cta-box { flex-direction: column; }
}
