/* ===== CSS VARIABLES ===== */
:root {
  --navy: #2c3e50;
  --navy-dark: #1a252f;
  --navy-deeper: #0f171e;
  --gold: #c9a66b;
  --gold-light: #d4b87c;
  --gold-muted: rgba(201, 166, 107, 0.15);
  --teal: #006d77;
  --terracotta: #b25045;
  --warm-gray: #a59e8c;
  --off-white: #f6f6f4;
  --light-cream: #faf9f7;
  --near-black: #111111;
  --white: #ffffff;
  --max-width: 1200px;
  --header-height: 80px;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--near-black);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 15px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

/* ===== HEADER ===== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

#site-header.scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(201, 166, 107, 0.2);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: var(--header-height);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo {
  height: 44px;
  width: auto;
  transition: transform 0.3s ease;
}

#site-header.scrolled .logo {
  transform: scale(0.88);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1.5px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 1.3;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.logo-llc {
  font-weight: 500;
  color: var(--gold);
  font-size: 12px;
  margin-left: 3px;
}

.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  padding: 8px 0;
  position: relative;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--gold);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 4px;
  font-size: 12px !important;
  letter-spacing: 1px !important;
  transition: background 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 22px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  position: absolute;
  left: 0;
  transition: 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

/* Mobile nav */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
}

.mobile-nav-overlay.active {
  display: block;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background: var(--white);
  z-index: 1200;
  padding: 24px;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--navy);
  cursor: pointer;
  line-height: 1;
}

.mobile-nav-logo {
  width: 80px;
  margin: 0 auto 20px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  padding: 14px 0;
  border-bottom: 1px solid var(--off-white);
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: var(--gold);
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 23, 30, 0.95) 0%,
    rgba(44, 62, 80, 0.88) 40%,
    rgba(0, 109, 119, 0.4) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 140px 24px 100px;
}

.hero-logo {
  width: 160px;
  height: 160px;
  margin: 0 auto 36px;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(201, 166, 107, 0.35));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-section h1 {
  font-size: 56px;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.hero-scroll-indicator span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 14px 36px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 166, 107, 0.4);
}

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

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-full {
  width: 100%;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.section-light {
  background: var(--white);
}

.section-warm {
  background: var(--off-white);
}

.section-dark {
  color: var(--white);
}

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

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-label-light {
  color: var(--gold);
}

.section-label-center {
  text-align: center;
}

.section-title {
  text-align: center;
  font-size: 42px;
  color: var(--navy);
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* ===== ACCENT BAR ===== */
.accent-bar {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0 28px;
}

.accent-bar-center {
  margin: 16px auto 44px;
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ===== IMAGE STACK (About section) ===== */
.image-stack {
  position: relative;
  padding-bottom: 20px;
  padding-right: 20px;
}

.stack-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.stack-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  border: 4px solid var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.col-text h2 {
  font-size: 40px;
  color: var(--navy);
}

.section-dark .col-text h2 {
  color: var(--white);
}

.col-text p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #555;
}

.lead-text {
  font-size: 18px !important;
  font-weight: 500;
  color: var(--navy) !important;
  font-family: var(--font-heading);
  font-style: italic;
}

.section-dark .col-text p {
  color: rgba(255, 255, 255, 0.8);
}

/* Bio box */
.bio-box {
  background: linear-gradient(135deg, var(--gold-muted), rgba(201, 166, 107, 0.05));
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 28px 28px 20px;
  margin: 24px 0;
  overflow: hidden;
}

.bio-headshot {
  float: right;
  width: 120px;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  margin: 0 0 12px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.bio-box h4 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}

.bio-box p {
  font-size: 14px !important;
  line-height: 1.7;
  color: #555 !important;
  margin-bottom: 10px !important;
}

.bio-box p:last-child {
  margin-bottom: 0 !important;
}

.inline-link {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: rgba(0, 109, 119, 0.3);
  text-underline-offset: 2px;
  font-weight: 500;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.inline-link:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* About lanes */
.about-lanes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}

.lane {
  background: var(--off-white);
  border-radius: 6px;
  padding: 24px;
  border-top: 3px solid var(--gold);
}

.lane h4 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
}

.lane li {
  padding: 5px 0 5px 18px;
  position: relative;
  font-size: 14px;
  color: #555;
}

.lane li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ===== PARALLAX SECTIONS ===== */
.section-parallax {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.parallax-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 23, 30, 0.93) 0%,
    rgba(44, 62, 80, 0.85) 100%
  );
  z-index: 1;
}

.parallax-overlay-teal {
  background: linear-gradient(
    315deg,
    rgba(15, 23, 30, 0.95) 0%,
    rgba(0, 109, 119, 0.25) 100%
  );
}

.section-parallax .container {
  position: relative;
  z-index: 2;
}

.parallax-content {
  text-align: center;
}

.parallax-content h2 {
  font-size: 44px;
  margin-bottom: 8px;
}

/* ===== THREE COLUMN GRID ===== */
.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.diff-card {
  text-align: center;
  padding: 44px 28px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}

.diff-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.diff-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.diff-icon svg {
  width: 100%;
  height: 100%;
}

.diff-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--gold);
}

.diff-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ===== SERVICES SHOWCASE ===== */
.services-showcase {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.service-block-reverse {
  direction: rtl;
}

.service-block-reverse > * {
  direction: ltr;
}

.service-block-image {
  overflow: hidden;
  position: relative;
}

.service-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-block:hover .service-block-image img {
  transform: scale(1.05);
}

.service-block-content {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.service-block:nth-child(even) .service-block-content {
  background: var(--light-cream);
}

.service-category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
}

.service-category-header svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}

.service-category-header h3 {
  font-size: 28px;
  color: var(--navy);
}

.service-block-content li {
  padding: 9px 0 9px 22px;
  position: relative;
  font-size: 14px;
  color: #555;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.service-block-content li:last-child {
  border-bottom: none;
}

.service-block-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 17px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ===== SAMPLE LINKS (inline in services) ===== */
.sample-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  color: var(--white);
  background: var(--gold);
  padding: 2px 10px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s ease;
}

.sample-link:hover {
  background: var(--teal);
}

/* ===== WORK SAMPLES SECTION ===== */
.samples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sample-card {
  display: flex;
  flex-direction: column;
  background: var(--off-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  border-bottom: 3px solid transparent;
}

.sample-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--gold);
}

.sample-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.sample-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sample-card:hover .sample-card-img img {
  transform: scale(1.08);
}

.sample-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sample-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}

.sample-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.sample-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

/* ===== FOR ATTORNEYS ===== */
.lead-quote {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--gold) !important;
  margin-bottom: 24px !important;
  font-style: italic;
  font-weight: 500;
}

.check-list {
  margin-bottom: 32px;
}

.check-list li {
  padding: 8px 0 8px 30px;
  position: relative;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
}

.sub-heading {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-quote {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--gold);
  padding: 14px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  border-radius: 3px;
}

/* Feature cards */
.feature-card-dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 36px;
  margin-bottom: 24px;
}

.feature-card-dark h3 {
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 24px;
}

.engagement-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.engagement-label {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 18px;
  font-weight: 600;
}

.feature-card-dark hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.attorney-img-card {
  border-radius: 8px;
  overflow: hidden;
}

.attorney-img-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

/* ===== TARGET MARKET ===== */
.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.target-card {
  text-align: center;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.target-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.target-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.target-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.target-card:hover .target-card-img img {
  transform: scale(1.06);
}

.target-card h3 {
  font-size: 24px;
  color: var(--navy);
  margin: 24px 24px 10px;
}

.target-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  padding: 0 24px 28px;
}

/* ===== FAQ / ACCORDION ===== */
.faq-layout {
  grid-template-columns: 38% 1fr;
  gap: 56px;
}

.faq-layout h2 {
  font-size: 38px;
  color: var(--navy);
}

.faq-layout .col-narrow p {
  color: #666;
  font-size: 15px;
  margin-bottom: 24px;
}

.faq-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 8px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.accordion-item {
  border-radius: 6px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(224, 224, 218, 0.4);
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background 0.2s ease;
}

.accordion-header:hover {
  background: rgba(224, 224, 218, 0.65);
}

.accordion-arrow {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  position: relative;
}

.accordion-arrow::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
  position: relative;
  top: -2px;
}

.accordion-header[aria-expanded="true"] .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--white);
}

.accordion-body p {
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.accordion-item.active .accordion-body {
  max-height: 300px;
}

/* ===== CTA / CONTACT ===== */
.section-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 100px 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 23, 30, 0.95) 0%,
    rgba(178, 80, 69, 0.15) 100%
  );
  z-index: 1;
}

.section-cta .container {
  position: relative;
  z-index: 2;
}

.section-cta h2 {
  font-size: 44px;
  margin-bottom: 8px;
}

.cta-lead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 16px;
}

.section-cta p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.cta-contact-info {
  margin-top: 28px;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.cta-info-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 40px;
}

.contact-card-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-card-email {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-top: 16px;
}

.email-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 15px !important;
  padding: 18px 36px !important;
}

.contact-card h3 {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  margin-top: 4px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

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

.footer-logo {
  width: 70px;
  margin-bottom: 16px;
  border-radius: 50%;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .section {
    padding: 72px 0;
  }

  .hero-section h1 {
    font-size: 42px;
  }

  .three-col-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-block {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-block-reverse {
    direction: ltr;
  }

  .service-block-image {
    height: 280px;
  }

  .target-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .main-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .logo-text {
    font-size: 18px;
  }

  .hero-content {
    padding: 100px 20px 60px;
  }

  .hero-logo {
    width: 120px;
    height: 120px;
  }

  .hero-section h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .two-col,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .image-stack {
    padding-bottom: 0;
    padding-right: 0;
  }

  .stack-img-main {
    height: 280px;
  }

  .stack-img-accent {
    display: none;
  }

  .about-lanes {
    grid-template-columns: 1fr;
  }

  .col-text h2,
  .section-title,
  .faq-layout h2 {
    font-size: 30px;
  }

  .parallax-content h2,
  .section-cta h2 {
    font-size: 32px;
  }

  .lead-quote {
    font-size: 24px;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .samples-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 16px;
  }

  .section {
    padding: 56px 0;
  }

  .logo {
    height: 44px;
  }

  .faq-image {
    display: none;
  }

  .service-block-content {
    padding: 32px 24px;
  }
}
