/* ============================================================
   SPECIALTY ASSET APPRAISALS — Luxury Editorial Stylesheet
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Lato', 'Helvetica Neue', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.8;
  color: #403e42;
  background-color: #ffffff;
}

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

a {
  color: #8d62a9;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ad81b1;
}

/* --- CSS Variables --- */
:root {
  --lavender: #cfc3e4;
  --mauve: #ad81b1;
  --purple: #8d62a9;
  --purple-dark: #7a4f96;
  --gray: #77797b;
  --charcoal: #403e42;
  --gold: #b8961c;
  --gold-light: #d4b44a;
  --dark: #403e42;
  --dark-deep: #2d2b2f;
  --bg-white: #ffffff;
  --bg-cream: #faf8f5;
  --bg-lavender: #f5f0f8;
  --bg-purple: #8d62a9;
  --bg-charcoal: #403e42;
  --text-primary: #2d2b2f;
  --text-secondary: #77797b;
  --text-white: #ffffff;
  --section-padding: 100px;
  --transition: 0.3s ease;
}


/* --- Typography --- */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 { font-size: 56px; letter-spacing: -0.02em; line-height: 1.08; }
h2 { font-size: 42px; letter-spacing: -0.01em; }
h3 { font-size: 28px; font-weight: 500; line-height: 1.25; }
h4 { font-size: 20px; font-weight: 500; line-height: 1.4; }

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

.text-secondary {
  color: var(--text-secondary);
}

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

.text-white {
  color: var(--text-white);
}

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


/* --- Layout --- */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-padding) 0;
}

.section-lavender {
  background: var(--bg-lavender);
  position: relative;
}

.section-dark {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(141, 98, 169, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(184, 150, 28, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-white);
}

.section-dark p {
  color: rgba(207, 195, 228, 0.7);
}

.section-purple {
  background: var(--purple);
  position: relative;
  overflow: hidden;
}

.section-purple::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(184, 150, 28, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.section-charcoal {
  background-color: var(--bg-charcoal);
}


/* --- Grid --- */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

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

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

.grid-2-3 {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  align-items: center;
}

.grid-3-2 {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: center;
}


/* --- Dividers --- */

.divider-gold {
  width: 50px;
  height: 2px;
  background: var(--purple);
  border: none;
  margin: 24px 0;
}

.divider-gold-center {
  width: 50px;
  height: 2px;
  background: var(--purple);
  border: none;
  margin: 24px auto;
}

.divider-purple {
  width: 50px;
  height: 2px;
  background: var(--purple);
  border: none;
  margin: 24px 0;
}


/* --- Section Headers --- */

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-tag {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}

.section-dark .section-header .section-tag {
  color: var(--lavender);
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}


/* --- Buttons --- */

.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 18px 42px;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background: var(--purple);
  color: var(--text-white);
  border-color: var(--purple);
}

.btn-primary:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(141, 98, 169, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--charcoal);
}

.btn-secondary:hover {
  background-color: var(--charcoal);
  color: var(--text-white);
  border-color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-inverted {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-inverted:hover {
  background: var(--text-white);
  color: var(--purple);
  border-color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* Gold button for hero on dark bg */
.btn-gold {
  background: var(--gold);
  color: var(--dark-deep);
  border-color: var(--gold);
  font-weight: 700;
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184, 150, 28, 0.35);
}

.link-arrow {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
}

.link-arrow::after {
  content: '\2192';
  transition: transform var(--transition);
}

.link-arrow:hover {
  color: var(--mauve);
}

.link-arrow:hover::after {
  transform: translateX(5px);
}

.link-arrow-light {
  color: var(--lavender);
}

.link-arrow-light:hover {
  color: var(--text-white);
}


/* --- Header / Navigation --- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(64, 62, 66, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(207, 195, 228, 0.1);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

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

.header-logo img {
  height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--lavender);
  border-bottom-color: var(--purple);
}

.nav-cta {
  margin-left: 12px;
}

.nav-cta .btn {
  padding: 12px 28px;
  font-size: 11px;
  background: transparent;
  color: var(--lavender);
  border-color: var(--mauve);
}

.nav-cta .btn:hover {
  background: var(--purple);
  color: var(--text-white);
  border-color: var(--purple);
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--lavender);
  margin: 6px 0;
  transition: all var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(207, 195, 228, 0.1);
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 14px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(207, 195, 228, 0.08);
}

.mobile-nav a:hover {
  color: var(--lavender);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav .btn {
  margin-top: 16px;
  display: block;
  text-align: center;
}


/* --- Hero (Dark / Editorial) --- */

.hero {
  padding: 180px 0 120px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(141, 98, 169, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(184, 150, 28, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--purple) 50%, transparent 90%);
}

.hero .grid-2 {
  align-items: center;
}

.hero-content .hero-tag {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 24px;
  position: relative;
}

.hero-content .hero-tag::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--purple);
  vertical-align: middle;
  margin-left: 16px;
}

.hero-content h1 {
  margin-bottom: 28px;
  font-size: 64px;
  line-height: 1.05;
  color: var(--text-white);
  font-weight: 400;
}

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

.hero-content p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(207, 195, 228, 0.65);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(207, 195, 228, 0.15);
}

.hero-badges img {
  height: 48px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(30%);
}

.hero-badges span {
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(207, 195, 228, 0.45);
  text-transform: uppercase;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 480px;
  margin-left: auto;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(141, 98, 169, 0.3);
  border-radius: 4px;
  z-index: -1;
  max-width: 480px;
  margin-left: auto;
}

.hero-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 30px;
  right: 30px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(141, 98, 169, 0.15) 0%, transparent 70%);
  filter: blur(15px);
  z-index: -1;
}


/* --- Hero Full-Width (Background Image) --- */

.hero-fullwidth {
  position: relative;
  padding: 200px 0 140px;
  display: flex;
  align-items: center;
}

.hero-fullwidth .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-fullwidth .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.25);
}

.hero-fullwidth .hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(64, 62, 66, 0.75) 0%, rgba(64, 62, 66, 0.4) 100%);
}

.hero-fullwidth .container {
  position: relative;
  z-index: 1;
}

.hero-fullwidth .hero-content {
  max-width: 620px;
}

.hero-fullwidth .hero-content p {
  max-width: 520px;
}

@media (max-width: 768px) {
  .hero-fullwidth {
    padding: 150px 0 80px;
  }

  .hero-fullwidth .hero-content {
    max-width: 100%;
  }
}


/* --- Full-Width Image Break --- */

.image-break {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.image-break::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(64, 62, 66, 0.3) 0%, rgba(64, 62, 66, 0.6) 100%);
  pointer-events: none;
}

.image-break-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  width: 90%;
  max-width: 700px;
}

.image-break-content blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-white);
  margin-bottom: 16px;
}

.image-break-content cite {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}


/* --- Specialties --- */

.specialty-item {
  text-align: center;
  padding: 36px 20px;
  transition: all 0.4s ease;
}

.specialty-item:hover {
  transform: translateY(-4px);
}

.specialty-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(141, 98, 169, 0.3);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.specialty-item:hover .specialty-icon {
  border-color: var(--purple);
  box-shadow: 0 0 24px rgba(141, 98, 169, 0.12);
}

.specialty-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--purple);
  fill: none;
  stroke-width: 1.5;
}

.specialty-item h4 {
  margin-bottom: 8px;
  font-size: 18px;
}

.specialty-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}


/* --- About Teaser --- */

.about-teaser .about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-teaser .about-images img {
  border-radius: 4px;
  width: 100%;
  height: 280px;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(64, 62, 66, 0.12);
  transition: all 0.5s ease;
}

.about-teaser .about-images img:hover {
  box-shadow: 0 24px 64px rgba(64, 62, 66, 0.18);
  transform: translateY(-4px);
}

.about-teaser h2 {
  margin-bottom: 8px;
}

.about-teaser .divider-gold {
  margin-bottom: 24px;
}

.about-teaser p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}


/* --- Service Cards --- */

.service-card {
  background: var(--bg-white);
  border: 1px solid rgba(207, 195, 228, 0.2);
  border-radius: 0;
  padding: 44px 36px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--purple);
  transition: height 0.4s ease;
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover {
  box-shadow: 0 20px 60px rgba(64, 62, 66, 0.08);
  border-color: rgba(141, 98, 169, 0.2);
}

.service-card h4 {
  margin-bottom: 14px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card .link-arrow {
  font-size: 11px;
}


/* --- Credentials Cards (Dark section) --- */

.credential-card {
  text-align: center;
  padding: 44px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(207, 195, 228, 0.12);
  border-radius: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.credential-card:hover {
  border-color: rgba(207, 195, 228, 0.3);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.credential-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border: 1px solid rgba(207, 195, 228, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.credential-card:hover .credential-icon {
  border-color: var(--lavender);
  box-shadow: 0 0 20px rgba(141, 98, 169, 0.12);
}

.credential-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--lavender);
  fill: none;
  stroke-width: 1.5;
}

.credential-card h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--text-white);
}

.credential-card p {
  font-size: 14px;
  color: rgba(207, 195, 228, 0.55);
  line-height: 1.6;
}


/* --- CTA Banner --- */

.cta-banner {
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.cta-banner h2 {
  color: var(--text-white);
  margin-bottom: 16px;
  font-size: 44px;
  font-weight: 400;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}


/* --- Pull Quote --- */

.pull-quote {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  color: var(--charcoal);
  border-left: 2px solid var(--purple);
  padding-left: 32px;
  margin: 56px 0;
}


/* --- Bio Section --- */

.bio-section img {
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(64, 62, 66, 0.12);
  width: 100%;
  object-fit: cover;
}

.bio-section h2 {
  margin-bottom: 8px;
}

.bio-section .credentials-list {
  margin: 20px 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.bio-section .credentials-list li {
  margin-bottom: 6px;
  list-style: none;
  padding-left: 20px;
  position: relative;
}

.bio-section .credentials-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--purple);
  border-radius: 50%;
}


/* --- Values --- */

.value-item {
  text-align: center;
  padding: 32px 20px;
}

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--purple);
  fill: none;
  stroke-width: 1.5;
}

.value-item h4 {
  margin-bottom: 8px;
  font-size: 18px;
}

.value-item p {
  font-size: 14px;
  color: var(--text-secondary);
}


/* --- Accordion (CV) --- */

.accordion-item {
  border-bottom: 1px solid rgba(207, 195, 228, 0.2);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  transition: color var(--transition);
}

.accordion-header:hover {
  color: var(--purple);
}

.accordion-icon {
  font-size: 24px;
  color: var(--purple);
  transition: transform var(--transition);
  font-style: normal;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.accordion-body-inner ul {
  list-style: none;
  padding: 0;
}

.accordion-body-inner li {
  padding: 4px 0 4px 20px;
  position: relative;
}

.accordion-body-inner li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  background-color: var(--purple);
  border-radius: 50%;
}


/* --- Services Page (stacked) --- */

.service-detail {
  padding: 80px 0;
}

.service-detail:nth-child(even) {
  background-color: var(--bg-lavender);
}

.service-detail h3 {
  margin-bottom: 8px;
}

.service-detail .divider-gold {
  margin-bottom: 20px;
}

.service-detail p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}


/* --- Process Steps --- */

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 44px;
}

.step-number {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--purple);
  color: var(--purple);
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h4 {
  margin-bottom: 6px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 16px;
}


/* --- Report Checklist --- */

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(207, 195, 228, 0.15);
}

.check-icon {
  min-width: 24px;
  color: var(--purple);
  font-size: 18px;
  padding-top: 2px;
}

.checklist-item p {
  font-size: 16px;
  margin: 0;
}


/* --- Contact Form --- */

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

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

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 300;
  padding: 16px 20px;
  border: 1px solid rgba(207, 195, 228, 0.3);
  border-radius: 0;
  color: var(--text-primary);
  background: var(--bg-white);
  transition: border-color var(--transition);
  outline: none;
}

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

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

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

.contact-info h3 {
  margin-bottom: 8px;
}

.contact-info .divider-gold {
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-info-item svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  stroke: var(--purple);
  fill: none;
  stroke-width: 1.5;
  margin-top: 3px;
}

.contact-info-item p {
  font-size: 16px;
  margin: 0;
}

.contact-info-item a {
  color: var(--text-primary);
}

.contact-info-item a:hover {
  color: var(--purple);
}

.isa-badge {
  margin-top: 32px;
}

.isa-badge img {
  height: 80px;
  width: auto;
}


/* --- Page Header (inner pages) --- */

.page-header {
  padding: 160px 0 60px;
  text-align: center;
  background: var(--charcoal);
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--purple) 50%, transparent 90%);
}

.page-header h1 {
  margin-bottom: 12px;
  color: var(--text-white);
  font-weight: 400;
}

.page-header p {
  font-size: 18px;
  color: rgba(207, 195, 228, 0.55);
  max-width: 560px;
  margin: 0 auto;
}

.page-header .divider-gold-center {
  margin-bottom: 20px;
}


/* --- Footer --- */

.site-footer {
  background: var(--charcoal);
  color: rgba(207, 195, 228, 0.7);
  padding: 72px 0 28px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--purple) 50%, transparent 90%);
}

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

.footer-brand img {
  height: 45px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(207, 195, 228, 0.45);
}

.site-footer h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 24px;
}

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

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

.footer-links a {
  font-size: 14px;
  color: rgba(207, 195, 228, 0.5);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--text-white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  stroke: var(--lavender);
  fill: none;
  stroke-width: 1.5;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(207, 195, 228, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(207, 195, 228, 0.3);
}

.footer-bottom a {
  color: rgba(207, 195, 228, 0.3);
}

.footer-bottom a:hover {
  color: var(--lavender);
}


/* --- Scroll Animations --- */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }


/* --- Responsive: Tablet --- */

@media (max-width: 1024px) {
  h1 { font-size: 44px; }
  h2 { font-size: 36px; }
  .hero-content h1 { font-size: 52px; }

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

  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}


/* --- Responsive: Mobile --- */

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

  h1 { font-size: 34px; }
  h2 { font-size: 30px; }
  h3 { font-size: 22px; }
  body { font-size: 16px; }
  .hero-content h1 { font-size: 40px; }
  .cta-banner h2 { font-size: 32px; }

  .grid-2, .grid-2-3, .grid-3-2 {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .nav-links, .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    padding: 130px 0 70px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-image {
    order: -1;
  }

  .hero-image::before {
    display: none;
  }

  .hero-image img {
    margin: 0 auto;
    max-width: 300px;
  }

  .btn {
    padding: 16px 32px;
    width: 100%;
    text-align: center;
  }

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

  .about-teaser .about-images img {
    height: 220px;
  }

  .image-break {
    height: 280px;
  }

  .image-break-content blockquote {
    font-size: 20px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .page-header {
    padding: 120px 0 44px;
  }

  .pull-quote {
    font-size: 20px;
    padding-left: 24px;
  }

  .process-step {
    gap: 20px;
  }

  .step-number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 26px; }
  .hero-content h1 { font-size: 34px; }

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

  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* --- Reduced Motion --- */

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .service-card:hover,
  .credential-card:hover,
  .specialty-item:hover {
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
