/* ============================================================
   SPECIALTY ASSET APPRAISALS — Option 2
   Editorial / Sotheby's-Inspired Design System
   ============================================================
   Typography: Cormorant Garamond (headings) + Inter (body)
   Palette: Charcoal foundation, purple accent, gold sparingly
   ============================================================ */

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

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

/* --- Variables --- */
:root {
  /* Palette */
  --lavender: #cfc3e4;
  --lavender-light: #ece7f3;
  --lavender-wash: #f7f5fa;
  --mauve: #ad81b1;
  --purple: #8d62a9;
  --purple-dark: #7a4f96;
  --gray: #77797b;
  --gray-light: #b0b2b4;
  --charcoal: #403e42;
  --charcoal-deep: #2d2b2f;
  --gold: #b8961c;

  /* Semantic */
  --bg: #ffffff;
  --bg-alt: #fafafa;
  --bg-tint: var(--lavender-wash);
  --text: var(--charcoal);
  --text-light: var(--gray);
  --text-muted: var(--gray-light);
  --accent: var(--purple);
  --accent-hover: var(--mauve);
  --border: #e8e6ea;
  --border-light: #f0eef2;

  /* Spacing scale (8px base) */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-6: 48px;
  --sp-7: 64px;
  --sp-8: 80px;
  --sp-9: 100px;
  --sp-10: 120px;

  /* Layout */
  --max-w: 1240px;
  --max-w-narrow: 720px;
  --section-pad: var(--sp-10);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur: 0.4s;
}


/* --- Typography --- */

body {
  font-family: 'Inter', -apple-system, 'Helvetica Neue', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Italiana', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.0;
}

h2 {
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
}

h3 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
}

h4 {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
}

p {
  margin-bottom: 1em;
}

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

/* Utility type */
.overline {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
}

.caption {
  font-size: 14px;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

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

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

.serif-accent {
  font-family: 'Italiana', serif;
  font-style: italic;
  font-weight: 400;
}


/* --- Links --- */

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

a:hover {
  color: var(--accent-hover);
}


/* --- Layout --- */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

.container-narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

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

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


/* --- Sections --- */

.bg-white { background: var(--bg); }
.bg-alt { background: var(--bg-alt); }
.bg-tint { background: var(--bg-tint); }

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

.bg-charcoal h2,
.bg-charcoal h3,
.bg-charcoal h4 {
  color: #fff;
}

.bg-charcoal p,
.bg-charcoal .caption {
  color: rgba(207, 195, 228, 0.7);
}

.bg-charcoal .overline {
  color: var(--lavender);
}


/* --- Dividers --- */

.divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  border: none;
  margin: var(--sp-3) 0;
}

.divider-center {
  width: 40px;
  height: 1px;
  background: var(--accent);
  border: none;
  margin: var(--sp-3) auto;
}


/* --- Buttons --- */

.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  text-decoration: none;
  text-align: center;
}

/* Key icon inside buttons */
.btn .key-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  vertical-align: -1px;
}

.btn .key-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}

.btn-primary:hover {
  background: var(--charcoal-deep);
  border-color: var(--charcoal-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(64, 62, 66, 0.2);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--border);
}

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

.btn-white {
  background: #fff;
  color: var(--charcoal);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--lavender-wash);
  border-color: var(--lavender-wash);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
  color: var(--charcoal);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  border-color: #fff;
  color: #fff;
}

.link-arrow {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--dur) var(--ease);
}

.link-arrow::after {
  content: '\2192';
  transition: transform var(--dur) var(--ease);
  font-size: 16px;
}

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

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


/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--dur) var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(64, 62, 66, 0.06);
}

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

.header-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  list-style: none;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--text-light);
  text-decoration: none;
  padding: 4px 0;
  transition: color var(--dur) var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--charcoal);
}

.nav-cta .btn {
  padding: 10px 28px;
  font-size: 12px;
}

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

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: all var(--dur) var(--ease);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: 0 12px 40px rgba(64, 62, 66, 0.08);
}

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

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-light);
}

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

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

.mobile-nav .btn {
  margin-top: var(--sp-2);
  display: block;
  text-align: center;
}


/* ============================================================
   HERO — Editorial Split Layout
   ============================================================ */

.hero {
  padding: 160px 0 var(--sp-10);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}

.hero-text {
  max-width: 520px;
}

.hero-text .overline {
  margin-bottom: var(--sp-3);
}

.hero-text h1 {
  margin-bottom: var(--sp-4);
}

.hero-text h1 .serif-accent {
  color: var(--accent);
}

.hero-text p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: var(--sp-5);
  max-width: 440px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-7);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
}

.hero-trust img {
  height: 40px;
  width: auto;
  opacity: 0.6;
}

.hero-trust span {
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

/* Hero gallery — curated art objects */
.hero-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--sp-2);
  height: 540px;
}

.hero-gallery .gallery-item {
  overflow: hidden;
  position: relative;
}

.hero-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0%);
  transition: transform 6s var(--ease), filter 0.6s var(--ease);
}

.hero-gallery .gallery-item:hover img {
  transform: scale(1.04);
  filter: grayscale(100%);
}

.hero-gallery .gallery-item:first-child {
  grid-row: 1 / 3;
}

.hero-gallery .gallery-item .gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-2) var(--sp-3);
  background: linear-gradient(transparent, rgba(64, 62, 66, 0.7));
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}


/* ============================================================
   TRUST / CREDENTIALS BAR
   ============================================================ */

.trust-bar {
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--border-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  text-align: center;
}

.trust-item {
  padding: var(--sp-3) var(--sp-2);
}

.trust-item h4 {
  font-family: 'Italiana', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.trust-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}


/* ============================================================
   WHAT WE APPRAISE — Gallery Grid
   ============================================================ */

.appraise-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-3);
}

.appraise-card {
  text-align: center;
  padding: var(--sp-5) var(--sp-3);
  border: 1px solid var(--border-light);
  transition: all var(--dur) var(--ease);
  position: relative;
}

.appraise-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--dur) var(--ease);
}

.appraise-card:hover::after {
  width: 40px;
}

.appraise-card:hover {
  border-color: var(--lavender);
}

.appraise-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto var(--sp-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.appraise-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.2;
}

.appraise-card h4 {
  font-family: 'Italiana', serif;
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 6px;
}

.appraise-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}


/* ============================================================
   SECTION HEADER
   ============================================================ */

.section-header {
  margin-bottom: var(--sp-7);
}

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

.section-header .overline {
  margin-bottom: var(--sp-2);
}

.section-header h2 {
  margin-bottom: var(--sp-2);
}

.section-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 520px;
  line-height: 1.7;
}

.section-header.center p {
  margin-left: auto;
  margin-right: auto;
}


/* ============================================================
   EDITORIAL SPLIT (text + image)
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}

.split-wide {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: var(--sp-8);
  align-items: center;
}

.split-narrow {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: var(--sp-8);
  align-items: center;
}

.split-image img {
  width: 100%;
  object-fit: cover;
}

.split-text .overline {
  margin-bottom: var(--sp-2);
}

.split-text h2 {
  margin-bottom: var(--sp-2);
}

.split-text .divider {
  margin-bottom: var(--sp-3);
}

.split-text p {
  color: var(--text-light);
  margin-bottom: var(--sp-3);
}

.split-text .link-arrow {
  margin-top: var(--sp-2);
}


/* ============================================================
   PROCESS STEPS
   ============================================================ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.process-step {
  padding: var(--sp-5) var(--sp-4);
  border: 1px solid var(--border-light);
  position: relative;
  transition: all var(--dur) var(--ease);
}

.process-step:hover {
  border-color: var(--lavender);
}

.process-number {
  font-family: 'Italiana', serif;
  font-size: 56px;
  font-weight: 400;
  color: var(--lavender);
  line-height: 1;
  margin-bottom: var(--sp-3);
}

.process-step h4 {
  margin-bottom: var(--sp-1);
}

.process-step p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}


/* ============================================================
   FOR ATTORNEYS
   ============================================================ */

.attorney-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.attorney-card {
  padding: var(--sp-4) var(--sp-3);
  border-left: 1px solid var(--lavender);
  transition: all var(--dur) var(--ease);
}

.attorney-card:hover {
  border-left-color: var(--accent);
}

.attorney-card h4 {
  font-family: 'Italiana', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: var(--sp-1);
}

.attorney-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}


/* ============================================================
   SERVICE CARDS
   ============================================================ */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.service-card {
  padding: var(--sp-5) var(--sp-4);
  border: 1px solid var(--border-light);
  transition: all var(--dur) var(--ease);
  position: relative;
}

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

.service-card:hover::before {
  width: 40px;
}

.service-card:hover {
  border-color: var(--lavender);
  box-shadow: 0 8px 32px rgba(64, 62, 66, 0.04);
}

.service-card h4 {
  margin-bottom: var(--sp-1);
}

.service-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--sp-3);
}


/* ============================================================
   FEATURED OBJECTS — Curated Gallery
   ============================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 4s var(--ease);
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card-info {
  padding: var(--sp-3) 0 0;
}

.gallery-card-info h4 {
  font-family: 'Italiana', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 4px;
}

.gallery-card-info p {
  font-size: 14px;
  color: var(--text-light);
}


/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  padding: var(--sp-10) 0;
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: var(--sp-2);
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: var(--sp-5);
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.bg-charcoal.cta-banner p {
  color: rgba(207, 195, 228, 0.65);
}

/* Parallax CTA with background image */
.cta-parallax {
  position: relative;
  background-image: url('../images/magnifying-glass-3492305_1920.jpg');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 140px 0;
}

.cta-parallax::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 43, 47, 0.82);
  pointer-events: none;
}

.cta-parallax .container {
  position: relative;
  z-index: 1;
}

.cta-parallax h2 {
  color: #fff;
}

.cta-parallax p {
  color: rgba(207, 195, 228, 0.75);
}

@supports (-webkit-touch-callout: none) {
  .cta-parallax {
    background-attachment: scroll;
  }
}


/* ============================================================
   PULL QUOTE
   ============================================================ */

.pull-quote {
  font-family: 'Italiana', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.5;
  color: var(--charcoal);
  border-left: 1px solid var(--accent);
  padding-left: var(--sp-4);
  max-width: 600px;
}


/* ============================================================
   BIO SECTION
   ============================================================ */

.bio-image img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(64, 62, 66, 0.08);
}

.bio-text .overline {
  margin-bottom: var(--sp-2);
}

.bio-text h2 {
  margin-bottom: 4px;
}

.bio-text .bio-title {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: var(--sp-2);
}

.bio-text p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
}

.bio-text .credentials-list {
  list-style: none;
  margin: var(--sp-3) 0;
  font-size: 15px;
  color: var(--text-light);
}

.bio-text .credentials-list li {
  padding: 4px 0 4px 16px;
  position: relative;
}

.bio-text .credentials-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}


/* ============================================================
   ACCORDION
   ============================================================ */

.accordion-item {
  border-bottom: 1px solid var(--border-light);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Italiana', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  transition: color var(--dur) var(--ease);
}

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

.accordion-icon {
  font-size: 22px;
  color: var(--accent);
  transition: transform var(--dur) var(--ease);
  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 var(--sp-3);
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

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

.accordion-body-inner li {
  padding: 3px 0 3px 16px;
  position: relative;
}

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


/* ============================================================
   CHECKLIST
   ============================================================ */

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--border-light);
}

.check-icon {
  min-width: 20px;
  color: var(--accent);
  font-size: 16px;
  padding-top: 2px;
}

.checklist-item p {
  font-size: 16px;
  margin: 0;
  color: var(--text-light);
}


/* ============================================================
   PROCESS STEPS (Vertical / What to Expect)
   ============================================================ */

.process-step-v {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}

.step-num {
  font-family: 'Italiana', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--lavender);
  line-height: 1;
  min-width: 48px;
}

.step-body h4 {
  margin-bottom: 4px;
}

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


/* ============================================================
   CONTACT FORM
   ============================================================ */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

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

.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  color: var(--text);
  background: #fff;
  transition: border-color var(--dur) var(--ease);
  outline: none;
}

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

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

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

.contact-info .divider {
  margin-bottom: var(--sp-3);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: var(--sp-3);
}

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

.contact-info-item a {
  color: var(--text);
  font-size: 16px;
}

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

.contact-info-item span {
  font-size: 16px;
}


/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */

.page-header {
  padding: 148px 0 var(--sp-7);
  border-bottom: 1px solid var(--border-light);
}

.page-header .overline {
  margin-bottom: var(--sp-2);
}

.page-header h1 {
  margin-bottom: var(--sp-2);
}

.page-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 520px;
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--charcoal);
  color: rgba(207, 195, 228, 0.7);
  padding: var(--sp-8) 0 var(--sp-4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-7);
}

.footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: var(--sp-3);
  filter: brightness(0) invert(1);
}

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

.site-footer h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: var(--sp-3);
}

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

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

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

.footer-links a:hover {
  color: #fff;
}

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

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  min-width: 14px;
  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: var(--sp-3);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(207, 195, 228, 0.3);
}

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

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


/* ============================================================
   ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.08s; }
.stagger > *:nth-child(3) { transition-delay: 0.16s; }
.stagger > *:nth-child(4) { transition-delay: 0.24s; }
.stagger > *:nth-child(5) { transition-delay: 0.32s; }
.stagger > *:nth-child(6) { transition-delay: 0.4s; }


/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1024px) {
  .hero-grid {
    gap: var(--sp-6);
  }

  .hero-gallery {
    height: 420px;
  }

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

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

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

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

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
  }
}


/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 768px) {
  :root {
    --section-pad: 72px;
  }

  .hero {
    padding: 120px 0 var(--sp-7);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }

  .hero-gallery {
    height: 300px;
    order: -1;
  }

  .hero-text {
    max-width: 100%;
  }

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

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .split,
  .split-wide,
  .split-narrow {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2);
  }

  .appraise-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2);
  }

  .process-grid,
  .attorney-features,
  .service-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2);
  }

  .gallery-card img {
    height: 200px;
  }

  .cta-parallax {
    background-attachment: scroll;
  }

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

  .mobile-toggle {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

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

  .page-header {
    padding: 110px 0 var(--sp-5);
  }

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

@media (max-width: 480px) {
  .appraise-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-gallery {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero-gallery .gallery-item:first-child {
    grid-row: auto;
  }

  .hero-gallery .gallery-item img {
    height: 200px;
  }

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


/* ============================================================
   REDUCED MOTION
   ============================================================ */

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

  html {
    scroll-behavior: auto;
  }

  .hero-gallery .gallery-item img,
  .gallery-card img {
    transition: none;
    filter: none;
  }
}
