/* ============================================
   IDENTITY WITNESS LLC — Main Stylesheet
   Aesthetic: Refined Legal · Navy + Champagne Gold
   ============================================ */

:root {
  --navy: #0d1b2a;
  --navy-mid: #1a2e44;
  --navy-light: #243d57;
  --gold: #c8a96e;
  --gold-light: #e0c99a;
  --gold-pale: #f5edd8;
  --cream: #faf8f4;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-mid: #445566;
  --text-light: #7a8fa0;
  --border: rgba(200, 169, 110, 0.25);
  
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  
  --radius: 4px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

/* ---- UTILITY ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

em { font-style: italic; font-family: var(--font-display); font-weight: 400; }

/* ---- HEADER / NAV ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold) 0%, #a8883a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.logo-mark.small { width: 28px; height: 28px; font-size: 0.7rem; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.logo-text em { font-size: 0.9em; color: var(--gold-light); }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 500 !important;
  padding: 0.45rem 1.1rem !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

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

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 5rem 2rem;
  flex: 1;
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-left: calc((100vw - 1160px) / 2);
  margin-left: max(2rem, calc((100vw - 1160px) / 2));
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}
.hero-headline em {
  color: var(--gold-light);
  font-size: 1em;
}

.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ---- HERO SEAL ---- */
.hero-seal {
  position: absolute;
  right: max(2rem, calc((100vw - 1160px) / 2));
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  animation: gentle-rotate 40s linear infinite;
}

@keyframes gentle-rotate {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.seal-ring {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.seal-ring::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px dashed rgba(200,169,110,0.2);
}
.seal-ring::after {
  content: '· MARYLAND · NOTARY · PUBLIC · COMMISSIONED ·';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: rgba(200,169,110,0.45);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}

.seal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: gentle-rotate 40s linear infinite reverse;
}

.seal-abbr {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: rgba(200,169,110,0.6);
  line-height: 1;
  letter-spacing: 0.1em;
}
.seal-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.4);
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 1.1rem 2rem;
  border-bottom: 1px solid rgba(200,169,110,0.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  padding: 0.3rem 1.5rem;
}

.trust-icon { color: var(--gold); font-size: 0.65rem; }
.trust-divider { width: 1px; height: 20px; background: rgba(200,169,110,0.25); }

/* ---- INTRO SECTION ---- */
.intro-section { padding: 7rem 0; background: var(--cream); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.intro-text p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  font-weight: 300;
}

.inline-link {
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 0.75rem;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.inline-link:hover { border-color: var(--gold); }

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(200,169,110,0.1);
}

.feature-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ---- MOBILE SECTION ---- */
.mobile-section {
  padding: 7rem 0;
  background: var(--navy);
  overflow: hidden;
}

.mobile-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,169,110,0.35);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.mobile-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.mobile-text p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2rem;
}

.location-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.location-list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ---- AREA MAP ---- */
.mobile-area-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 380px;
}

.area-header {
  position: absolute;
  top: 0;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.area-center {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  z-index: 5;
  position: relative;
  text-align: center;
}

.area-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.2);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-out infinite;
}
.area-ring-1 { width: 90px; height: 90px; animation-delay: 0s; }
.area-ring-2 { width: 180px; height: 180px; animation-delay: 0.8s; }
.area-ring-3 { width: 300px; height: 300px; animation-delay: 1.6s; }

@keyframes pulse {
  0% { opacity: 0.8; }
  50% { opacity: 0.2; }
  100% { opacity: 0.8; }
}

.area-note {
  position: absolute;
  bottom: 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--gold-pale);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: var(--text-mid);
  font-size: 1rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.cta-contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-contact-item {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  transition: color var(--transition);
}
.cta-contact-item:hover { color: #8a5e1e; }

.cta-sep {
  color: var(--text-light);
  font-size: 1.5rem;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy);
  padding: 3rem 0;
  border-top: 1px solid rgba(200,169,110,0.15);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
}

.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.3rem 0.75rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-copy a {
  color: rgba(200,169,110,0.6);
  text-decoration: none;
}
.footer-copy a:hover { color: var(--gold); }

/* ---- PAGE HEADER (inner pages) ---- */
.page-hero {
  background: var(--navy);
  padding: 8rem 0 4rem;
  border-bottom: 1px solid rgba(200,169,110,0.2);
}

.page-hero-inner { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

.page-hero p.breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}

/* ---- SERVICES PAGE ---- */
.services-section { padding: 6rem 0; }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-img-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 12px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200,169,110,0.2);
}

.service-icon-large {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(200,169,110,0.4);
  line-height: 1;
}

.service-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1rem;
}

.service-content p {
  color: var(--text-mid);
  line-height: 1.75;
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.service-content h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.service-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-content ul li {
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}
.service-content ul li::before {
  content: '·';
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1.3;
  flex-shrink: 0;
}

/* ---- FAQ PAGE ---- */
.faq-section { padding: 6rem 0; }
.faq-grid { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }

.faq-chevron {
  font-size: 1rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding-bottom: 1.75rem;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
}

.faq-answer-inner ul {
  list-style: none;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.faq-answer-inner ul li::before {
  content: '· ';
  color: var(--gold);
}

/* ---- ABOUT PAGE ---- */
.about-section { padding: 6rem 0; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}

.about-portrait {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 12px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200,169,110,0.2);
  position: sticky;
  top: 100px;
}

.portrait-initials {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(200,169,110,0.5);
  letter-spacing: 0.1em;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.about-content p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.about-values {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.value-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-text h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.value-text p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ---- CONTACT PAGE ---- */
.contact-section { padding: 6rem 0; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.contact-methods { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-method:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(200,169,110,0.1);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-method-text .label {
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.contact-method-text .value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
}

.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.contact-form-card p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

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

.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 0.9rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-submit:hover { background: var(--navy-light); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .two-col,
  .mobile-inner,
  .service-block,
  .about-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }

  .service-block.reverse { direction: ltr; }
  
  .hero-seal { display: none; }
  .hero-content { margin-left: 2rem; max-width: 100%; }

  .intro-features { grid-template-columns: 1fr 1fr; }

  .about-portrait { aspect-ratio: 16/7; position: static; }

  .mobile-area-box { height: 260px; }
}

@media (max-width: 600px) {
  .nav-links { 
    display: none; 
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--navy);
    padding: 1rem;
    border-top: 1px solid rgba(200,169,110,0.15);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.75rem 1rem; width: 100%; }
  .nav-toggle { display: block; }

  .trust-bar { gap: 0.5rem; }
  .trust-divider { display: none; }
  .trust-item { padding: 0.3rem 0.75rem; }

  .intro-features { grid-template-columns: 1fr; }

  .contact-form-card { padding: 1.5rem; }
}
