/* ============================================================
   SCHELL & OGLESBY — Rebuilt Design System
   Colors: Deep Crimson Red + Silver/Grey + Off-White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* --- Variables --- */
:root {
  --red:         #8B1A1A;
  --red-light:   #A52020;
  --red-dark:    #6B1414;
  --red-muted:   rgba(139, 26, 26, 0.12);

  --silver:      #9CA3AF;
  --silver-light:#E5E7EB;
  --silver-mid:  #D1D5DB;

  --off-white:   #FAF9F7;
  --white:       #FFFFFF;

  --dark:        #1C1C1E;
  --dark-mid:    #3A3A3C;
  --dark-light:  #636366;

  --gold:        #C9A84C;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', -apple-system, sans-serif;

  --nav-h:       80px;
  --max-w:       1200px;
  --radius:      4px;
  --radius-lg:   12px;

  --ease:        0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow:   0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm:   0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.16);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(139, 26, 26, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-cta {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  padding: 0.75rem 1.5rem;
  font-size: 0.8125rem;
}
.btn-cta:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  transform: translateY(-1px);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* --- Section Type --- */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--dark-light);
  line-height: 1.75;
  max-width: 560px;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header-centered .section-sub {
  margin: 0 auto;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--silver-light);
  box-shadow: var(--shadow-sm);
  transition: background var(--ease), box-shadow var(--ease);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: var(--max-w);
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.site-logo {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

.main-nav {
  flex: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  justify-content: center;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-mid);
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width var(--ease);
}
.nav-link:hover { color: var(--red); }
.nav-link:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all var(--ease);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--silver-light);
  padding: 1.5rem 2rem 2rem;
  z-index: 998;
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
  opacity: 0;
  transition: all var(--ease);
}
.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  transition: color var(--ease);
}
.mobile-menu a:hover { color: var(--red); }
.mobile-cta { display: inline-flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 82vh;
  min-height: 560px;
  max-height: 820px;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Darkens right side where text sits; scales image is naturally dark on left */
  background: linear-gradient(
    to left,
    rgba(10, 10, 15, 0.92) 0%,
    rgba(10, 10, 15, 0.78) 45%,
    rgba(10, 10, 15, 0.25) 75%,
    rgba(10, 10, 15, 0.0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.hero-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-direction: row-reverse;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--red);
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  max-width: 520px;
}

.hero-heading em {
  font-style: italic;
  color: #c9a84c;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 420px;
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 3rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-lr;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--dark);
  border-bottom: 3px solid var(--red);
}

.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 3rem;
  flex: 1;
  min-width: 160px;
}

.trust-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.trust-label {
  font-size: 0.75rem;
  color: var(--silver);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ============================================================
   INTRO / ABOUT
   ============================================================ */
.intro-section {
  padding: 6rem 0 0;
  background: var(--white);
  overflow: visible;
}

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

.intro-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.intro-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.intro-body {
  font-size: 0.9375rem;
  color: var(--dark-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.intro-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* Dark button for intro */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 4px;
  text-decoration: none;
  transition: background var(--ease), transform var(--ease);
}
.btn-dark:hover {
  background: #8b0000;
  transform: translateY(-1px);
}

/* Outline button for intro */
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--dark);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 4px;
  border: 1.5px solid var(--dark);
  text-decoration: none;
  transition: all var(--ease);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-1px);
}

.intro-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: -8rem;
  z-index: 2;
}

.intro-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.8s ease;
}

.intro-image-wrap:hover .intro-img {
  transform: scale(1.03);
}

/* ============================================================
   PRACTICE AREAS
   ============================================================ */
.practice-section {
  padding: 14rem 0 7rem;
  background: #eef1f6;
}


.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.practice-card {
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--ease-slow);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.practice-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width var(--ease-slow);
}

.practice-card:hover {
  border-color: var(--silver-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.practice-card:hover::before {
  width: 100%;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #c9a84c;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.card-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}


.practice-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.2;
}

.practice-card p {
  font-size: 0.9375rem;
  color: var(--dark-light);
  line-height: 1.75;
  flex: 1;
}

.card-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.04em;
  transition: letter-spacing var(--ease);
}

.practice-card:hover .card-link {
  letter-spacing: 0.08em;
}

/* ============================================================
   ATTORNEYS ALT — horizontal photo + info cards
   ============================================================ */
.atty-alt-section {
  padding: 7rem 0 4rem;
  background: var(--off-white);
}

.atty-alt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* Last card (5th) centered when alone on its row */
.atty-alt-card--centered {
  grid-column: 1 / -1;
  max-width: calc(50% - 0.75rem);
  margin: 0 auto;
}

.atty-alt-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}

.atty-alt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.atty-alt-photo-wrap {
  width: 160px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--silver-light);
}

.atty-alt-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(15%);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.atty-alt-card:hover .atty-alt-photo {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.atty-alt-body {
  padding: 1.75rem 1.75rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  border-left: 3px solid var(--red);
}

.atty-alt-accent {
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1rem;
  border-radius: 2px;
}

.atty-alt-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.atty-alt-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.atty-alt-areas {
  font-size: 0.875rem;
  color: var(--dark-light);
  line-height: 1.65;
}

/* ============================================================
   ATTORNEYS — 5-person photo grid
   ============================================================ */
.attorneys-section {
  padding: 7rem 0;
  background: var(--white);
}

.atty-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 2rem;
}

.atty-row-bottom { margin-bottom: 3rem; }

.atty-card {
  display: flex;
  flex-direction: column;
  background: var(--off-white);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 280px;
  flex-shrink: 0;
  transition: transform var(--ease), box-shadow var(--ease);
  cursor: default;
}

.atty-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.atty-card--featured {
  width: 280px;
}
.atty-card--featured .atty-card-photo-wrap {
  height: 300px;
}

.atty-card-photo-wrap {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: var(--silver-light);
}


.atty-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.atty-card:hover .atty-card-photo {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.atty-card-info {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 3px solid var(--red);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.atty-card-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.atty-card-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.625rem;
}

.atty-card-areas {
  font-size: 0.8125rem;
  color: var(--dark-light);
  line-height: 1.55;
  margin: 0;
}

.atty-cta {
  text-align: center;
  margin-top: 1rem;
}



/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--red);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '"';
  position: absolute;
  top: -1rem;
  right: 4rem;
  font-family: var(--font-serif);
  font-size: 16rem;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  pointer-events: none;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-strip-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.cta-strip-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
}

.cta-strip-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cta-strip .btn-primary {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.cta-strip .btn-primary:hover {
  background: var(--off-white);
  border-color: var(--off-white);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 7rem 0;
  background: var(--off-white);
}

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

.contact-desc {
  font-size: 1.0625rem;
  color: var(--dark-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--silver-light);
}
.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-item-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.contact-item-value {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.6;
  transition: color var(--ease);
}

a.contact-item-value:hover { color: var(--red); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 440px;
  border: 1px solid var(--silver-light);
  box-shadow: var(--shadow-md);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  border-top: 3px solid var(--red);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.25fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--silver);
  line-height: 1.75;
  max-width: 260px;
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.25rem;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links-col a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--ease);
}
.footer-links-col a:hover { color: var(--white); }

.footer-contact-col address {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-col p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.footer-contact-col a {
  color: rgba(255,255,255,0.5);
  transition: color var(--ease);
}
.footer-contact-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.back-to-top {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--ease);
}
.back-to-top:hover { color: var(--white); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .intro-grid { gap: 3rem; }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }

  .atty-card,
  .atty-card--featured { width: 220px; }
  .atty-card-photo-wrap,
  .atty-card--featured .atty-card-photo-wrap { height: 270px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  /* Nav */
  .nav-list, .btn-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero — center on mobile */
  .hero { min-height: 100svh; max-height: none; }
  .hero-content {
    align-items: center;
    text-align: center;
    padding-bottom: 4rem;
  }
  .hero-eyebrow { flex-direction: row; justify-content: center; }
  .hero-eyebrow::before { display: none; }
  .hero-heading { max-width: 100%; }
  .hero-sub { max-width: 100%; }
  .hero-scroll-hint { display: none; }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Intro — disable overlap on mobile, stack vertically */
  .intro-section { padding: 4rem 0; overflow: hidden; }
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-image-wrap {
    margin-bottom: 0;
    order: -1;
  }
  .intro-img { height: 300px; }
  .intro-actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .intro-actions .btn-dark,
  .intro-actions .btn-outline-dark {
    text-align: center;
    justify-content: center;
  }

  /* Alt attorney cards — stack to single column */
  .atty-alt-grid { grid-template-columns: 1fr; }
  .atty-alt-card--centered { grid-column: auto; max-width: 100%; }
  .atty-alt-photo-wrap { width: 130px; }

  /* Practice — reduce top padding since no overlap */
  .practice-section { padding: 4rem 0 5rem; }
  .practice-grid { grid-template-columns: 1fr; }

  /* Attorneys — 2 per row */
  .atty-row { flex-wrap: wrap; gap: 1.25rem; }
  .atty-card,
  .atty-card--featured { width: calc(50% - 0.75rem); }
  .atty-card-photo-wrap,
  .atty-card--featured .atty-card-photo-wrap { height: 240px; }

  /* CTA Strip */
  .cta-strip { padding: 3.5rem 0; }
  .cta-strip-inner { flex-direction: column; align-items: stretch; gap: 1.5rem; }
  .cta-strip-actions { flex-direction: column; gap: 0.75rem; }
  .cta-strip-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-map { height: 300px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  /* Trust bar */
  .trust-inner { justify-content: center; flex-wrap: wrap; gap: 1.5rem; }
  .trust-item { padding: 1.25rem 1.25rem; }
  .trust-divider { display: none; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }

  /* Hero */
  .hero-heading { font-size: 2rem; }
  .hero-sub { font-size: 0.9rem; }

  /* Intro */
  .intro-heading { font-size: 1.5rem; }
  .intro-img { height: 240px; }

  /* Practice */
  .practice-section { padding: 3rem 0 4rem; }
  .practice-card { padding: 2rem 1.5rem; }

  /* Attorneys — single column on phones */
  .atty-card,
  .atty-card--featured { width: 100%; max-width: 360px; }
  .atty-card-photo-wrap,
  .atty-card--featured .atty-card-photo-wrap { height: 280px; }
  .atty-row { flex-direction: column; align-items: center; }

  /* Trust bar */
  .trust-inner { flex-direction: column; align-items: center; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; }
  .footer-logo { height: 44px; }

  /* Buttons — comfortable tap targets */
  .btn {
    padding: 1rem 1.75rem;
    font-size: 0.875rem;
    min-height: 48px;
  }
}

