/* DESIGN SYSTEM & GLOBAL STYLES */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --brand-navy: #0b3d91;
  --brand-blue: #3e8bbf;
  --brand-silver: #c0c0c0;
  --ink: #262426;
  --muted: #66717d;
  --paper: #eef2f5;
  --soft: #f8f8f7;
  --white: #ffffff;
  --warm: #b8824f;
  --line: rgba(38, 36, 38, 0.12);
  --blue-line: rgba(62, 139, 191, 0.18);
  
  /* Fonts */
  --display-font: 'Bebas Neue', sans-serif;
  --body-font: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: clamp(60px, 8vw, 100px);
  --container-max: 1320px;
}

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

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

body {
  background: #f0f3f6;
  color: var(--ink);
  font-family: var(--body-font);
  line-height: 1.5;
  min-width: 320px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: var(--display-font);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 0.95;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* LAYOUT SYSTEM */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

/* Common Section Header */
.section-kicker {
  color: var(--brand-blue);
  font-family: var(--body-font);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  color: var(--brand-navy);
  margin-bottom: 24px;
}

.section-desc {
  max-width: 680px;
  font-size: 1.125rem;
  margin-bottom: 40px;
}

/* HEADER & NAVIGATION (Figma Centered Menu) */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 0;
}

.header .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  justify-self: start;
}

.brand-mark {
  width: 32px;
  height: 34px;
}

.brand-mark path {
  fill: none;
  stroke: var(--brand-navy);
  stroke-width: 4;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  justify-self: center;
  display: block; /* Always visible in center */
  transition: color 0.25s ease;
}

.menu-toggle:hover {
  color: var(--brand-blue);
}

.phone-link {
  text-decoration: none;
  color: var(--brand-navy);
  font-size: 1rem;
  font-weight: 800;
  border: 1.5px solid var(--brand-blue);
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.25s ease, color 0.25s ease;
  justify-self: end;
}

.phone-link:hover {
  background: var(--brand-blue);
  color: var(--white);
}

/* HERO SECTION (Figma Overlapping Card Layout) */
.hero-section-wrapper {
  background: var(--brand-navy); /* Brand dark navy background */
  padding: 60px 0;
  position: relative;
}

.hero-section-wrapper .container {
  max-width: 1560px; /* Widened container for premium panoramic look */
  padding: 0 30px;
}

.hero-outer-card {
  background: var(--white);
  border-radius: 32px;
  padding: 40px 45px 30px 45px;
  box-shadow: 0 25px 60px rgba(11, 61, 145, 0.15);
  position: relative;
  display: flex;
  flex-direction: column;
  container-type: inline-size;
  container-name: hero;
}

/* Card Header inside the outer card */
.hero-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding-bottom: 20px;
}

.hero-header .brand {
  justify-self: start;
}

.hero-header .menu-toggle {
  justify-self: center;
  display: block;
}

.hero-header .phone-link {
  justify-self: end;
}

/* Giant name & Nav menu block */
.hero-name-block {
  position: relative;
  margin-top: 15px;
  margin-bottom: 25px;
  width: 100%;
  z-index: auto;
}

.hero-giant-name {
  font-family: var(--display-font);
  font-size: clamp(3rem, 11cqw, 9.5rem); /* Taller, larger font height for the premium visual dominance */
  font-weight: 900;
  letter-spacing: -0.06em; /* Extremely dense, tight letter spacing like Figma */
  word-spacing: normal;
  text-transform: uppercase;
  color: var(--brand-navy); /* Corporate brand navy color */
  margin: 0;
  line-height: 0.8;
  white-space: nowrap; /* Prevent wrapping at all costs on desktop */
  display: block;
  transform: scaleX(var(--title-scale, 1)); /* Automatically squishes text horizontally to fit card width exactly */
  transform-origin: left center; /* Scales from the left edge */
  position: relative;
  z-index: 1;
}

.hero-title-line,
.hero-title-connector {
  display: inline;
}

.hero-nav-menu {
  position: absolute;
  right: clamp(24px, 2.2cqw, 36px);
  bottom: clamp(-58px, -3.6cqw, -42px);
  z-index: 6;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(20px, 2.2cqw, 34px);
  margin-top: 0;
  padding-left: 0;
}

.hero-nav-menu a {
  text-decoration: none;
  font-family: var(--body-font);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: color 0.2s ease;
}

.hero-nav-menu a:hover {
  color: var(--brand-navy);
}

/* Figma Vector Background Panel SVG */
.hero-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Blue Inner Card */
.hero-inner-card {
  background: transparent; /* Card container transparent; custom gradient & step-down applied via SVG panel */
  border-radius: 24px;
  padding: 50px 60px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  overflow: visible; /* Allows portrait image to overflow upward */
  z-index: 2; /* Renders on top of name block, so children overlap it */
}

@media (min-width: 993px) {
  .hero-inner-card {
    min-height: 480px; /* Taller inner card for premium space and dominance */
  }
}

.hero-content-left {
  grid-column: span 6;
  max-width: 500px;
  position: relative;
  z-index: 3;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-headline {
  font-family: var(--body-font);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-transform: none;
  color: var(--white);
  letter-spacing: -0.01em;
}

.hero-subtext {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 480px;
  line-height: 1.5;
}

.hero-subtext-next {
  display: block;
}

.hero-content-right {
  grid-column: span 6; /* Spans remaining columns */
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
  padding-top: 80px; /* Forces spacing for button alignment */
  position: relative;
  z-index: 3;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--warm); /* Warm gold CTA button color from Figma */
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(184, 130, 79, 0.25);
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.hero-cta:hover {
  background-color: #a4703f;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(184, 130, 79, 0.4);
}

/* Layered Portrait PNG with 3D overflow */
.hero-portrait-wrapper {
  position: absolute;
  bottom: 0;
  left: 53%; /* Centered exactly over the shifted diagonal SVG step-down */
  transform: translateX(-50%); /* Centers the portrait on the step coordinate */
  height: 126%;
  z-index: 5; /* Overlays name text */
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

.hero-photo {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* Stats Block (Inside the outer card) */
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 35px;
  margin-top: 25px;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
}

.hero-stat-item:not(:first-child) {
  border-left: 1px solid var(--line);
}

.hero-stat-number {
  font-family: var(--display-font);
  font-size: clamp(2.35rem, 3.8vw, 3.5rem);
  color: var(--brand-navy);
  line-height: 0.8;
  flex: 0 0 auto;
}

.hero-stat-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.hero-stat-label {
  font-family: var(--body-font);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
}

.hero-stat-desc {
  font-family: var(--body-font);
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.35;
}

/* SIGNALS SECTION */
.signals-section {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.signals-section .grid-12 {
  align-items: start;
}

.signals-text {
  grid-column: span 6;
}

.signals-list {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.signal-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--soft);
  border-left: 4px solid var(--brand-blue);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(11, 61, 145, 0.01);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.signal-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(11, 61, 145, 0.06);
  border-color: rgba(62, 139, 191, 0.2);
  background: var(--white);
}

.signal-icon {
  color: var(--brand-navy);
  flex-shrink: 0;
}

.signal-desc {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

/* SERVICES SECTION */
.services-section {
  padding: var(--section-padding) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 320px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(11, 61, 145, 0.03);
  border: 1px solid rgba(11, 61, 145, 0.05);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--brand-blue);
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(11, 61, 145, 0.08);
  border-color: rgba(62, 139, 191, 0.3);
}

.service-card:hover::after {
  opacity: 1;
}

.service-idx {
  font-family: var(--display-font);
  font-size: 3.5rem;
  color: rgba(62, 139, 191, 0.15);
  line-height: 0.8;
  margin-bottom: 24px;
}

.service-card h3 {
  font-family: var(--body-font);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
  text-transform: none;
  letter-spacing: 0;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.service-arrow {
  margin-top: auto;
  align-self: flex-start;
  color: var(--brand-navy);
  transition: transform 0.25s ease;
}

.service-card:hover .service-arrow {
  transform: translateX(6px);
}

/* EXPRTNESS PHOTO SPLIT */
.photo-split-section {
  padding: 0;
  background: var(--brand-navy);
  overflow: hidden;
}

.photo-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.photo-split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
}

.photo-split-content {
  padding: 80px 100px 80px 80px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.photo-split-content .section-title {
  color: var(--white);
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
}

.photo-split-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.mini-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.mini-point {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px 14px;
  min-height: 50px;
  font-size: clamp(0.82rem, 0.72vw, 0.95rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  text-align: center;
}

.mini-point svg {
  color: var(--brand-silver);
  flex: 0 0 auto;
}

/* PROCESS SECTION */
.process-section {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.process-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.process-header .section-title {
  margin-bottom: 0;
}

.process-cta {
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--brand-navy);
  border: 1.5px solid var(--brand-blue);
  padding: 14px 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
}

.process-cta:hover {
  background: var(--brand-blue);
  color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.process-card {
  background: var(--soft);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  height: 100%;
  border: 1px solid rgba(11, 61, 145, 0.02);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

/* Stagger Done transitions to safely re-enable hover transform animations */
.stagger-done .service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.stagger-done .process-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}
.stagger-done .signal-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}
.stagger-done .case-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(11, 61, 145, 0.05);
  border-color: rgba(62, 139, 191, 0.3);
  background: var(--white);
}

.process-step {
  font-family: var(--display-font);
  font-size: 3rem;
  color: var(--brand-blue);
  line-height: 0.8;
  margin-bottom: 16px;
}

.process-card h3 {
  font-family: var(--body-font);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: 0;
}

.process-card p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* PROPERTY SECTION */
.property-section {
  padding: 0;
  overflow: hidden;
  background: var(--paper); /* Unified with brand paper background variables */
  border: 1px solid rgba(11, 61, 145, 0.05);
}

.property-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.property-content {
  padding: 80px 80px 80px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.property-content .section-title {
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
}

.property-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.property-list li {
  position: relative;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.property-list li strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}

.property-list li span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
}

.property-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 14px;
  height: 2px;
  background: var(--warm);
}

.property-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
}

/* TRUST SECTION */
.trust-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, #3e8bbf 0%, #0b3d91 100%);
  color: var(--white);
}

.trust-section .grid-12 {
  align-items: center;
}

.trust-card {
  grid-column: span 7;
}

.trust-card svg {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.trust-card .section-title {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
}

.trust-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 580px;
}

.trust-points {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-point {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.trust-point span {
  font-size: 1.15rem;
  font-weight: 700;
}

.trust-point svg {
  color: var(--brand-silver);
  flex-shrink: 0;
}

/* CASES SECTION */
.cases-section {
  padding: var(--section-padding) 0;
}

.case-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-card {
  background: var(--ink);
  color: var(--white);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.case-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--brand-blue);
  border-radius: 4px 0 0 4px;
}

.case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(62, 139, 191, 0.4);
  box-shadow: 0 15px 35px rgba(11, 61, 145, 0.25);
}

.case-card span {
  font-family: var(--display-font);
  font-size: 1.5rem;
  color: var(--brand-blue);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.case-card h3 {
  font-family: var(--body-font);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: 0;
}

.case-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.case-photo-wrapper {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  position: relative;
  background: var(--ink);
}

.case-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.review-rating-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 18px;
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(8, 29, 67, 0.24);
  backdrop-filter: blur(12px);
}

.review-rating-value {
  grid-row: span 2;
  font-family: var(--display-font);
  font-size: 3.2rem;
  line-height: 0.9;
  color: var(--brand-navy);
}

.review-rating-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.review-rating-copy strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.review-rating-copy span {
  color: var(--muted);
  font-size: 0.8rem;
}

.review-source-link {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(11, 61, 145, 0.14);
  color: var(--brand-navy);
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.25s ease;
}

.review-source-link:hover {
  color: var(--brand-blue);
}

.review-source-link svg {
  transition: transform 0.25s ease;
}

.review-source-link:hover svg {
  transform: translate(3px, -3px);
}

.footer-req-text a {
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: none;
}

/* EXPERT SECTION */
.expert-section {
  padding: 0;
  background: var(--brand-navy);
  overflow: hidden;
}

.expert-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: stretch;
}

.expert-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
  object-position: top center;
}

.expert-content {
  padding: 80px 100px 80px 80px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.expert-content .section-title {
  color: var(--white);
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
}

.expert-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 600px;
}

.expert-lead {
  margin-bottom: 30px !important;
}

.expert-details-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 680px;
  margin-top: 10px;
}

.expert-detail-item {
  border-left: 2px solid var(--brand-blue);
  padding-left: 20px;
}

.expert-detail-item h4 {
  font-family: var(--body-font);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.expert-detail-item p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7) !important;
  margin: 0;
}

/* FAQ SECTION */
.faq-section {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.faq-header {
  margin-bottom: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: stretch;
}

.faq-aside {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.faq-aside img {
  width: 100%;
  flex-grow: 1;
  object-fit: cover;
  min-height: 350px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--soft);
  border: 1px solid rgba(11, 61, 145, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(62, 139, 191, 0.4);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(11, 61, 145, 0.04);
}

.faq-item summary {
  list-style: none;
  padding: 24px 30px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--body-font);
  font-size: 1.6rem;
  color: var(--brand-blue);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 30px 24px 30px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  border-top: 1px solid rgba(11, 61, 145, 0.04);
  margin-top: 0;
}

/* COLLAPSIBLE TAG CLOUD SECTION */
.tags-section {
  padding: 60px 0;
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tags-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tags-title {
  font-family: var(--body-font);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 30px;
  text-transform: none;
  letter-spacing: 0;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 960px;
  margin-bottom: 24px;
}

.tag-link {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-navy);
  background: var(--white);
  border: 1px solid rgba(11, 61, 145, 0.12);
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.25s ease;
}

.tag-link:hover {
  background: var(--brand-navy);
  color: var(--white);
  border-color: var(--brand-navy);
  transform: translateY(-2px);
}

.tag-cloud-drawer {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.tag-cloud-drawer.active {
  display: flex;
  animation: tagFadeIn 0.4s ease forwards;
}

.tag-toggle-btn {
  background: none;
  border: 1.5px solid var(--brand-blue);
  color: var(--brand-navy);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
}

.tag-toggle-btn:hover {
  background: var(--brand-blue);
  color: var(--white);
}

.tag-toggle-btn svg {
  transition: transform 0.3s ease;
}

.tag-toggle-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

@keyframes tagFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CONTACTS SECTION */
.contacts-section {
  padding: var(--section-padding) 0;
  background: var(--brand-navy);
  color: var(--white);
}

.contacts-section .grid-12 {
  align-items: center;
}

.contacts-info {
  grid-column: span 6;
}

.contacts-info .section-title {
  color: var(--white);
}

.contacts-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.contact-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-action-btn {
  text-decoration: none;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  overflow-wrap: anywhere;
  transition: all 0.25s ease;
}

.contact-action-btn:hover {
  background: var(--white);
  color: var(--brand-navy);
}

.contact-form-wrapper {
  grid-column: span 6;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--soft);
  border: 1px solid rgba(11, 61, 145, 0.1);
  border-radius: 8px;
  font-family: var(--body-font);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brand-blue);
  background: var(--white);
}

.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-color: #b42318;
  background: #fff7f6;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  cursor: pointer;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex: 0 0 auto;
  accent-color: var(--brand-navy);
}

.form-consent a {
  color: var(--brand-navy);
  font-weight: 700;
}

.form-status {
  min-height: 20px;
  margin-top: -8px;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--muted);
}

.form-status.is-error {
  color: #b42318;
}

.form-status.is-success {
  color: #237a3b;
}

.submit-btn {
  background: var(--brand-navy);
  color: var(--white);
  border: none;
  padding: 18px;
  border-radius: 8px;
  font-family: var(--body-font);
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background: var(--brand-blue);
  transform: translateY(-2px);
}

.submit-btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(11, 61, 145, 0.42);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lead-modal.is-visible {
  opacity: 1;
}

.lead-modal__dialog {
  width: min(100%, 460px);
  padding: 38px;
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.lead-modal__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #eef7ee;
  color: #237a3b;
  font-size: 2rem;
  font-weight: 900;
}

.lead-modal__title {
  margin-bottom: 10px;
  font-family: var(--body-font);
  font-size: 1.45rem;
  font-weight: 800;
  text-transform: none;
}

.lead-modal__text {
  margin-bottom: 24px;
  color: var(--muted);
}

.lead-modal__close {
  min-width: 150px;
  padding: 12px 24px;
  border: 0;
  border-radius: 8px;
  background: var(--brand-navy);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

/* RICH INFORMATIVE FOOTER */
.footer {
  padding: 80px 0 40px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col {
  grid-column: span 3;
}

.footer-col-brand {
  grid-column: span 3;
}

.footer-brand-text {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 20px;
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--brand-blue);
}

.footer-req-text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-contact-text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-contact-text a {
  overflow-wrap: anywhere;
}

.footer-phone {
  font-weight: 800;
  color: var(--brand-navy);
  text-decoration: none;
}

.footer-messenger {
  font-weight: 700;
  color: var(--brand-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-messenger:hover {
  color: var(--brand-navy);
}

.footer-hours {
  display: block;
  margin-top: 12px;
  font-size: 0.825rem;
  color: var(--muted);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.footer-copy {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.footer-disclaimer {
  font-size: 0.775rem;
  color: var(--muted);
  max-width: 980px;
  line-height: 1.6;
}

.footer-privacy {
  font-size: 0.825rem;
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 700;
}

.privacy-page {
  min-height: 100vh;
  padding: 48px 20px;
  background: var(--paper);
}

.privacy-main {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(11, 61, 145, 0.1);
}

.privacy-main h1 {
  margin: 8px 0 10px;
  color: var(--brand-navy);
  font-family: var(--body-font);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  text-transform: none;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.privacy-main section {
  margin-top: 34px;
}

.privacy-main h2 {
  margin-bottom: 10px;
  color: var(--brand-navy);
  font-family: var(--body-font);
  font-size: 1.25rem;
  text-transform: none;
}

.privacy-main p {
  color: var(--muted);
  line-height: 1.7;
}

.privacy-main a {
  color: var(--brand-blue);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.privacy-back {
  display: inline-flex;
  margin-bottom: 34px;
  text-decoration: none;
}

.privacy-updated {
  font-size: 0.9rem;
}

@media (max-width: 480px) {
  .privacy-page {
    padding: 20px 12px;
  }

  .privacy-main h1 {
    font-size: 1.55rem;
    line-height: 1.12;
  }
}

/* LAWYER MAX FLOATING WIDGET */
.max-float {
  position: fixed;
  right: 30px;
  bottom: 30px;
  padding: 14px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
  color: var(--white);
  text-decoration: none;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(26, 115, 232, 0.4);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  letter-spacing: 0.02em;
}

.max-float:hover {
  box-shadow: 0 12px 35px rgba(26, 115, 232, 0.55);
}

.max-float img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 4px;
}

.max-float span {
  display: inline-block;
}

/* Pulse animation around the button for micro-interaction */
.max-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(26, 115, 232, 0.5);
  border-radius: 50px;
  opacity: 0;
  pointer-events: none;
  animation: maxFloatPulse 2.5s infinite;
}

@keyframes maxFloatPulse {
  0% { transform: scale(0.98); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 0.3; }
  100% { transform: scale(1.18); opacity: 0; }
}

@media (max-width: 1500px) and (min-width: 993px) {
  .mini-points {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .mini-point {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

@media (min-width: 1101px) and (max-width: 1350px) {
  .hero-content-left {
    max-width: 360px;
  }

  .hero-headline {
    font-size: 2.1rem;
  }

  .hero-subtext {
    max-width: 360px;
  }
}

@media (min-width: 993px) and (max-width: 1100px) {
  .hero-nav-menu {
    display: none;
  }

  .hero-content-left {
    max-width: 275px;
  }

  .hero-headline {
    font-size: 1.8rem;
  }

  .hero-subtext {
    max-width: 275px;
    font-size: 0.95rem;
  }

  .hero-portrait-wrapper {
    height: 112%;
    left: 54%;
  }
}

@media (min-width: 1101px) and (max-width: 1350px) {
  .hero-content-left {
    max-width: 360px;
  }

  .hero-headline {
    font-size: 2.1rem;
  }

  .hero-subtext {
    max-width: 360px;
  }
}

@media (min-width: 993px) and (max-width: 1100px) {
  .hero-nav-menu {
    display: none;
  }

  .hero-content-left {
    max-width: 275px;
  }

  .hero-headline {
    font-size: 1.8rem;
  }

  .hero-subtext {
    max-width: 275px;
    font-size: 0.95rem;
  }

  .hero-portrait-wrapper {
    height: 112%;
    left: 54%;
  }
}

/* MOBILE RESPONSIVE ADAPTATIONS */
@media (max-width: 1200px) {
  .hero-outer-card {
    padding: 35px 35px 25px 35px;
  }
  
  .hero-inner-card {
    padding: 45px 40px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .photo-split-content {
    padding: 60px;
  }
  
  .property-content {
    padding: 60px;
  }
  
  .expert-content {
    padding: 60px;
  }
}

@media (max-width: 992px) {
  .brand {
    font-size: clamp(1.2rem, 5vw, 1.45rem);
  }
  
  .brand span {
    line-height: 0.95;
  }

  .hero-header .brand span {
    display: none !important;
  }

  .hero-header {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  
  .hero-header .phone-link {
    display: none; /* Accessible inside mobile menu */
  }
  
  .hero-header .menu-toggle {
    justify-self: end;
  }
  
  .hero-name-block {
    text-align: left;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  
  .hero-giant-name {
    font-size: inherit;
    text-align: left;
    line-height: 0.78;
    letter-spacing: 0;
    white-space: normal; /* Allow text wrapping on mobile devices */
    transform: none !important; /* Prevent horizontal fit scaling on mobile */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .hero-title-line {
    display: block;
    width: max-content;
    max-width: none;
    font-family: var(--display-font);
    font-size: clamp(2.85rem, 15.1cqw, 4.1rem);
    font-weight: 900;
    line-height: 0.82;
    letter-spacing: -0.07em;
    color: var(--brand-navy);
    transform: scaleX(var(--title-line-scale, 1.85));
    transform-origin: left center;
  }

  .hero-title-connector {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: clamp(17px, 5.5cqw, 23px);
    height: clamp(16px, 5cqw, 21px);
    margin: clamp(1px, 0.6cqw, 3px) 0 clamp(2px, 0.8cqw, 5px);
    border-radius: 4px;
    background: var(--brand-navy);
    color: var(--white);
    font-family: var(--display-font);
    font-size: clamp(0.82rem, 3.6cqw, 1.1rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
  }
  
  .hero-nav-menu {
    display: none; /* Handled by mobile toggle drawer */
  }
  
  .hero-panel {
    display: none; /* Hide SVG panel on mobile stack */
  }

  .hero-inner-card {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-navy) 100%) !important; /* Unified solid brand gradient background on mobile */
  }
  
  .hero-inner-card::before,
  .hero-inner-card::after {
    display: none !important; /* Disable step-down backgrounds on mobile */
  }
  
  .hero-content-left {
    grid-column: span 12;
    text-align: center;
    max-width: none; /* Reset max-width on mobile */
  }
  
  .hero-subtext {
    margin: 0 auto;
  }
  
  .hero-content-right {
    grid-column: span 12;
    justify-content: center;
    padding-top: 30px;
  }
  
  .hero-portrait-wrapper {
    position: static;
    height: 350px;
    transform: none;
    margin: 12px auto -40px auto;
    display: flex;
    justify-content: center;
  }
  
  .hero-photo {
    height: 100%;
    width: auto;
  }
  
  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
  }
  
  .hero-stat-item {
    border-left: none !important;
    border-top: 1px solid var(--line);
    padding: 16px 0 0 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .hero-stat-details {
    align-items: center;
  }
  
  .hero-stat-item:first-child {
    border-top: none;
    padding-top: 0;
  }
  
  .signals-text {
    grid-column: span 12;
  }
  
  .signals-list {
    grid-column: span 12;
  }
  
  .photo-split-grid {
    grid-template-columns: 1fr;
  }
  
  .photo-split-img {
    height: 340px;
    min-height: 0;
  }
  
  .property-grid {
    grid-template-columns: 1fr;
  }
  
  .property-img {
    height: 340px;
    min-height: 0;
    grid-row: 1;
  }
  
  .trust-card {
    grid-column: span 12;
    text-align: center;
  }
  
  .trust-card p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .trust-points {
    grid-column: span 12;
  }
  
  .case-layout {
    grid-template-columns: 1fr;
  }
  
  .case-photo {
    min-height: 300px;
  }
  
  .expert-grid {
    grid-template-columns: 1fr;
  }
  
  .expert-img {
    height: 360px;
    min-height: 0;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-aside img {
    max-height: 300px;
    object-fit: cover;
  }
  
  .contacts-info {
    grid-column: span 12;
    text-align: center;
  }
  
  .contact-actions {
    justify-content: center;
  }
  
  .contact-form-wrapper {
    grid-column: span 12;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-col {
    grid-column: span 1;
  }
  
  .footer-col-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 50px;
  }

  .photo-split-content,
  .property-content,
  .expert-content {
    padding: 40px 24px;
  }
  
  .hero-outer-card {
    padding: 24px 20px 20px 20px;
    border-radius: 24px;
  }
  
  .hero-inner-card {
    padding: 30px 20px;
    border-radius: 16px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .process-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .process-cta {
    align-self: center;
  }

  .mini-points {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .mini-point {
    width: 100%;
    justify-content: flex-start;
    min-height: 48px;
    box-sizing: border-box;
  }

  .contact-actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-action-btn {
    width: min(100%, 320px);
    height: 50px;
    justify-content: center;
    box-sizing: border-box;
  }

  .contact-action-btn[href^="mailto:"] {
    font-size: 0.875rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-col {
    grid-column: span 1;
  }
  
  .footer-col-brand {
    grid-column: span 1;
  }
  
  .footer .container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-portrait-wrapper {
    height: 310px;
    margin-top: 4px;
    margin-bottom: -30px;
  }
  
  .hero-outer-card {
    padding: 20px 16px 16px 16px;
  }
  
  .contact-form {
    padding: 24px;
  }
  
  .max-float {
    bottom: 20px;
    right: 20px;
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .hero-cta {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    font-size: clamp(0.9rem, 4cqw, 1rem);
  }
}

/* MOBILE DRAWER MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--brand-navy);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  color: var(--white);
  font-family: var(--display-font);
  font-size: 2.5rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.25s ease;
}

.mobile-menu a:hover {
  color: var(--brand-blue);
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}
