/* ============================================================
   CONTRERAS & PARTNERS — Own Without Risk
   Editorial luxury stylesheet
   ------------------------------------------------------------
   Structure:
   1.  Design tokens
   2.  Reset & base
   3.  Utilities (container, eyebrow, buttons, reveal)
   4.  Header / navigation
   5.  Hero
   6.  CTA bands
   7.  Section scaffolding
   8.  Why Foreign Investors (editorial rows)
   9.  How We Protect You (block grid)
   10. Recent Matters (photo tiles)
   11. Our Process (horizontal track)
   12. Meet Our Attorneys
   13. FAQ (accordion)
   14. Contact / final CTA
   15. Footer
   16. Sticky call bar
   17. Responsive
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Palette */
  --bg: #F7F6F2;
  --dark: #181818;
  --ink: #222222;
  --white: #FFFFFF;
  --accent: #B89257;
  --accent-deep: #9A7742;              /* gold on light backgrounds */
  --accent-bright: #C9A46A;            /* gold on dark backgrounds  */
  --text-soft: #5A584F;                /* secondary text (light bg) */
  --line: rgba(34, 34, 34, .14);       /* hairline on light         */
  --line-dark: rgba(247, 246, 242, .16); /* hairline on dark        */

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* Scale */
  --fs-display: clamp(3.2rem, 10.8vw, 12rem);   /* "WITHOUT" ≈ 57vw, next to the collage */
  --fs-title: clamp(2.4rem, 4.8vw, 4.2rem);
  --fs-heading: clamp(1.5rem, 3vw, 2.5rem);

  /* Rhythm */
  --space-y: clamp(6rem, 11vw, 10rem);   /* vertical section rhythm  */
  --container-pad: clamp(24px, 5vw, 64px);

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;           /* offset for sticky header */
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, p, figure, blockquote, ol, ul {
  margin: 0;
}

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

a {
  color: inherit;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* scroll-padding-top on html (see base) covers all anchored targets,
   so no per-element scroll-margin is needed — combining both would
   double the landing offset. */

/* ============================================================
   3. UTILITIES
   ============================================================ */
.container {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Small uppercase label with a gold rule */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
  flex: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1.05rem 2.4rem;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background-color .4s var(--ease),
    color .4s var(--ease),
    border-color .4s var(--ease);
}

.btn-dark {
  background: var(--dark);
  color: var(--bg);
}

.btn-dark:hover {
  background: var(--accent-deep);
}

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

.btn-gold:hover {
  background: transparent;
  color: var(--accent);
}

.btn-xl {
  padding: 1.4rem 3.2rem;
  font-size: 13px;
  letter-spacing: .24em;
}

/* Text link with arrow */
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: .6rem;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}

.btn-link-arrow {
  color: var(--accent);
  transition: transform .45s var(--ease);
}

.btn-link:hover {
  color: var(--accent-deep);
  border-color: var(--accent);
}

.btn-link:hover .btn-link-arrow {
  transform: translateX(6px);
}

/* Scroll reveal — fade + slide */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .9s var(--ease),
    transform .9s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   4. HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg);
  transition: box-shadow .4s var(--ease), height .4s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
  flex: none;
}

.brand-crest {
  flex: none;
}

.brand-word {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Primary nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.6rem);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 1.9vw, 2rem);
  list-style: none;
  padding: 0;
}

.nav-list a {
  position: relative;
  display: inline-block;
  padding: .5rem 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  transition: color .3s var(--ease);
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}

.nav-list a:hover::after,
.nav-list a.is-active::after {
  transform: scaleX(1);
}

.nav-list a.is-active {
  color: var(--accent-deep);
}

.nav-call {
  padding: .85rem 1.7rem;
  flex: none;
}

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.nav-toggle-line {
  width: 20px;
  height: 1px;
  background: var(--ink);
  transition: transform .45s var(--ease);
}

.nav-toggle.is-open .nav-toggle-line:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-line:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

/* ============================================================
   5. HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
}

/* Hero is full-width so the oversized word can scale with the viewport */
.hero .container {
  max-width: none;
   position: relative; 
   z-index: 1;
}




.hero-grid {
  display: grid;
  /* 59vw text column keeps the oversized word inside its own track;
     minmax(0,…) stops min-content from blowing the columns out */
  grid-template-columns: minmax(0, 59vw) minmax(0, 1fr);
  align-items: end;
  gap: clamp(1rem, 2vw, 2rem);
  min-height: 100svh;
  padding-top: 84px;
  padding-bottom: 3.5rem;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
}

/* Copy side */
.hero-eyebrow {
  margin-bottom: clamp(2rem, 5vh, 3.25rem);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--fs-display);
  line-height: .9;
  letter-spacing: -.01em;
  color: var(--ink);
}

.hero-word {
  display: block;
}

.hero-word.w2 {
  position: relative;
  padding-left: clamp(2rem, 9vw, 8rem);
}

.hero-word.w3 {
  position: relative;
  padding-left: clamp(4rem, 18vw, 16rem);
  font-style: italic;
  color: var(--accent-deep);
}

.hero-word.w2::before,
.hero-word.w3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: clamp(1.5rem, 3vw, 3rem);
  height: 1px;
  background: var(--accent);
}

.hero-sub {
  margin-top: clamp(2rem, 4vh, 3rem);
  max-width: 36ch;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  margin-top: clamp(2.2rem, 4.5vh, 3.25rem);
}

/* Editorial media collage */
.hero-media {
  display: grid;
  grid-template-columns: 60% 1fr;
  grid-template-rows: 1fr auto;
  gap: 16px;
  height: min(70vh, 620px);
}

.hero-media > * {
  min-width: 0;   /* allow children to shrink below image intrinsic width */
}

.media-tall {
  grid-column: 1;
  grid-row: 1 / 3;
  overflow: hidden;
  margin: 0;
}

.media-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-width: 0;
}

.media-stack {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.media-stack img {
  width: 100%;
  height: calc(50% - 8px);
  object-fit: cover;
  min-width: 0;
}

.media-caption {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.media-caption::before {
  display: none;
}

.media-caption-logo {
  height: 108px;
  width: auto;
  flex: none;
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  left: clamp(1.25rem, 4vw, 4rem);
  bottom: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll-label {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-soft);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 42px;
  background: var(--line);
  overflow: hidden;
  position: relative;
}

.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollPulse 2.6s var(--ease) infinite;
}

@keyframes scrollPulse {
  from { top: -100%; }
  to   { top: 100%; }
}

/* ============================================================
   6. CTA BANDS
   ============================================================ */
.cta-dark {
  background: var(--dark);
  color: var(--bg);
  text-align: center;
  padding-block: var(--space-y);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-eyebrow {
  color: var(--accent-bright);
}

.cta-title {
  margin: 1.2rem 0 2rem;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 1.05;
}

.cta-phone {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  font-weight: 300;
  color: var(--accent-bright);
  text-decoration: none;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--line-dark);
  transition: color .4s var(--ease), border-color .4s var(--ease);
}

.cta-phone:hover {
  color: var(--bg);
  border-color: var(--accent);
}

.cta-note {
  margin-top: 1.75rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(247, 246, 242, .55);
}

/* ============================================================
   7. SECTION SCAFFOLDING
   ============================================================ */
.section {
  padding-block: var(--space-y);
}

.section-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-title {
  margin-top: .9rem;
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--fs-title);
  line-height: 1.04;
}

.section-intro {
  max-width: 44ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-soft);
}

/* ============================================================
   8. WHY FOREIGN INVESTORS CHOOSE US
   ============================================================ */
.why-quote {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 1px solid var(--accent);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.25;
  color: var(--ink);
}

.why-list {
  border-top: 1px solid var(--line);
}

.why-row {
  display: grid;
  grid-template-columns: 96px 1.1fr 1.15fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  padding-block: clamp(2rem, 4vw, 3.25rem);
  border-bottom: 1px solid var(--line);
  transition: background-color .5s var(--ease);
}

.why-row:hover {
  background: rgba(184, 146, 87, .045);
}

.why-index {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--accent);
}

.why-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-heading);
  line-height: 1.1;
}

.why-text {
  max-width: 48ch;
  line-height: 1.75;
  color: var(--text-soft);
}

/* ============================================================
   9. HOW WE PROTECT YOU
   ============================================================ */
.protect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(2rem, 6vw, 6rem);
}

.protect-block {
  padding-block: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  transition: padding-left .5s var(--ease);
}

.protect-block:hover {
  padding-left: 12px;
}

.protect-num {
  display: block;
  margin-bottom: 1.1rem;
  font-family: var(--serif);
  font-size: .95rem;
  color: var(--accent);
}

.protect-title {
  margin-bottom: .85rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.15;
}

.protect-text {
  max-width: 48ch;
  line-height: 1.72;
  color: var(--text-soft);
}

/* ============================================================
   9B. GOOGLE REVIEWS (placeholder)
   ============================================================ */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.reviews-score {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--ink);
}

.reviews-stars,
.review-stars {
  display: inline-flex;
  gap: .3rem;
}

.reviews-stars svg,
.review-stars svg {
  width: 15px;
  height: 15px;
  fill: var(--accent);
}

.reviews-count {
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.reviews-grid {
  display: block;
  width: 100%;
}

/* Elfsight Google Reviews widget integration */
.reviews-grid .elfsight-app-605cbeb9-c613-446f-8c22-2412aaa05f22 {
  width: 100%;
  --widget-preview-color: var(--accent, #b89257);
}

/* Hide the third-party branding (free plan) */
.reviews-grid .elfsight-app-605cbeb9-c613-446f-8c22-2412aaa05f22 .eapps-google-reviews-powered-by,
.reviews-grid .elfsight-app-605cbeb9-c613-446f-8c22-2412aaa05f22 a[href*="elfsight"] {
  display: none !important;
}

/* ============================================================
   10. RECENT MATTERS
   ============================================================ */
.matters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.matter-media {
  margin: 0;
  overflow: hidden;
}

.matter-media img {
  width: 100%;
  aspect-ratio: 3 / 3.6;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.matter:hover .matter-media img {
  transform: scale(1.045);
}

.matter-body {
  margin-top: 1.4rem;
}

.matter-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.matter-title {
  margin: .8rem 0 .6rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  line-height: 1.2;
}

.matter-text {
  max-width: 40ch;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text-soft);
}

/* ============================================================
   11. OUR PROCESS
   ============================================================ */
.process-track {
  position: relative;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

/* Continuous hairline that connects the steps */
.process-track::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

.process-step {
  position: relative;
  padding-top: clamp(2rem, 3.5vw, 3rem);
}

.process-num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: var(--bg);
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--accent-deep);
}

.process-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}

.process-text {
  margin-top: .6rem;
  max-width: 30ch;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.process-arrow {
  display: none;   /* shown on stacked / mobile layout */
  margin-top: 1.2rem;
  font-family: var(--serif);
  color: var(--accent);
}

/* ============================================================
   12. MEET OUR ATTORNEYS
   ============================================================ */
.attorneys-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
}

.attorney-media {
  margin: 0;
  overflow: hidden;
}

.attorney-media img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.attorney:hover .attorney-media img {
  transform: scale(1.035);
}

.attorney-role {
  margin-top: 1.6rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.attorney-name {
  margin: .6rem 0 1.2rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.attorney-meta {
  list-style: none;
  padding: 0;
}

.attorney-meta li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  padding-block: .6rem;
  border-top: 1px solid var(--line);
  font-size: .92rem;
}

.attorney-meta li:last-child {
  border-bottom: 1px solid var(--line);
}

.attorney-meta span {
  padding-top: .1rem;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

/* ============================================================
   13. FAQ
   ============================================================ */
.faq-list {
  max-width: 900px;
  border-top: 1px solid var(--line);
}

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

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.4rem, 3vw, 2.2rem) 0;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.25;
  text-align: left;
  color: var(--ink);
  transition: color .35s var(--ease);
}

.faq-btn:hover {
  color: var(--accent-deep);
}

/* Plus / minus marker */
.faq-icon {
  position: relative;
  flex: none;
  width: 20px;
  height: 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  transition: transform .45s var(--ease);
}

.faq-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
}

.faq-icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}

.faq-item.is-open .faq-icon::after {
  transform: translateX(-50%) scaleY(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .6s var(--ease);
}

.faq-answer p {
  padding-bottom: clamp(1.4rem, 3vw, 2rem);
  max-width: 64ch;
  line-height: 1.75;
  color: var(--text-soft);
}

/* ============================================================
   14. CONTACT / FINAL CTA
   ============================================================ */
.contact {
  position: relative;
  background: var(--dark);
  color: var(--bg);
  text-align: center;
  padding-block: clamp(6rem, 12vw, 10rem);
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(24, 24, 24, .8), rgba(24, 24, 24, .86)),
    url("assets/IMG_4724.png")
    center top / 100% auto no-repeat;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
}

.contact-eyebrow {
  color: var(--accent-bright);
}

.contact-title {
  margin: 1.2rem 0 1rem;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: .98;
}

.contact-lead {
  margin-bottom: 2.75rem;
  font-size: 1.05rem;
  color: rgba(247, 246, 242, .75);
}

.contact-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
}

.contact-meta-item {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .9rem;
}

.contact-meta-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.contact-meta-item a {
  color: var(--bg);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .35s var(--ease);
}

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

/* ============================================================
   15. FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(247, 246, 242, .8);
  padding-top: clamp(4rem, 8vw, 7rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-crest {
  filter: invert(1);   /* monochrome crest → white on dark */
  flex: none;
}

.brand-word--light {
  color: var(--bg);
}

.footer-tagline {
  margin: 1.6rem 0 .8rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--accent-bright);
}

.footer-desc {
  max-width: 32ch;
  font-size: .92rem;
  line-height: 1.7;
  color: rgba(247, 246, 242, .55);
}

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(247, 246, 242, .18);
  border-radius: 50%;
  color: rgba(247, 246, 242, .72);
  transition: color .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}

.footer-social-link:hover {
  color: var(--dark);
  background: var(--accent);
  border-color: var(--accent);
}

.footer-col-title {
  margin-bottom: 1.5rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  margin-bottom: 1.15rem;
  font-size: .92rem;
  line-height: 1.7;
}

.footer-list a {
  display: block;
  color: rgba(247, 246, 242, .72);
  text-decoration: none;
  transition: color .3s var(--ease);
}

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

.footer-name {
  display: block;
  margin-bottom: .25rem;
  font-weight: 500;
  color: var(--bg);
}

/* Open 24 */
.footer-24 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(4rem, 4vw, 4rem);
  line-height: .9;
  color: var(--accent);
}

.footer-open-sub {
  margin: .5rem 0 1.6rem;
  font-size: .9rem;
  letter-spacing: .03em;
  color: rgba(247, 246, 242, .7);
}

.footer-call {
  padding: .95rem 2rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1.75rem;
  border-top: 1px solid var(--line-dark);
  font-size: .8rem;
  color: rgba(247, 246, 242, .4);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}

.footer-legal a {
  color: rgba(247, 246, 242, .4);
  text-decoration: none;
  transition: color .3s var(--ease);
}

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

/* ============================================================
   16. STICKY CALL BAR (MOBILE)
   ============================================================ */
.callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: none;      /* enabled on mobile */
  align-items: center;
  gap: .8rem;
  padding: .7rem 1rem;
  background: var(--dark);
  color: var(--bg);
  border-top: 1px solid var(--line-dark);
  visibility: hidden;
  transform: translateY(100%);
  transition: transform .5s var(--ease), visibility .5s;
}

.callbar.is-visible {
  transform: translateY(0);
  visibility: visible;
}

.callbar-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}

.callbar-cta {
  padding: .8rem 1.4rem;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--accent);
  color: var(--white);
}

.callbar-phone {
  margin-left: auto;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--bg);
  text-decoration: none;
}

/* ============================================================
   17. RESPONSIVE
   ============================================================ */

/* ---- Tablet / smaller laptop ---- */
@media (max-width: 1080px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    min-height: 0;
    padding-top: 130px;
    padding-bottom: 4rem;
  }

  .hero-media {
    height: clamp(420px, 62vw, 600px);
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .why-row {
    grid-template-columns: 72px 1fr;
  }

  .why-text {
    grid-column: 2;
  }

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

/* ---- Mobile navigation / tablet portrait ---- */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 90;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2.5rem;
    padding: 120px var(--container-pad) 3rem;
    background: var(--bg);
    visibility: hidden;
    transform: translateY(-100%);
    transition: transform .6s var(--ease), visibility .6s;
    overflow-y: auto;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-list a {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 2.1rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .nav-call {
    margin-top: 1rem;
    padding: 1.15rem 2.75rem;
  }

  /* Call bar visible on mobile; give the footer room above it */
  .site-footer {
    padding-bottom: 4.5rem;
  }

  .callbar {
    display: flex;   /* kept off-screen until .is-visible */
  }
}

body.nav-open {
  overflow: hidden;
}

/* ---- Small tablets ---- */
@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .process-track::before {
    top: 22px;
    bottom: 22px;
    left: 22px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .process-step {
    padding-top: 0;
    padding-left: 60px;
  }

  .process-num {
    position: absolute;
    left: 0;
    top: 0;
    margin-bottom: 0;
  }

  .process-arrow {
    display: block;
  }

  .process-step:last-child .process-arrow {
    display: none;
  }

  .hero-scroll {
    display: none;
  }
}

/* ---- Mobile ---- */
@media (max-width: 640px) {
  .header-inner {
    height: 68px;
  }

  .hero-grid {
    padding-top: 110px;
  }

  .brand-word {
    font-size: 1rem;
  }

  .hero-media {
    grid-template-columns: 54% 1fr;
    height: clamp(380px, 108vw, 520px);
    gap: 10px;
  }

  .media-stack {
    gap: 10px;
  }

  .media-stack img {
    height: calc(50% - 5px);
  }

  .media-caption {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    margin-top: .1rem;
  }

  .media-caption::before {
    display: none;
  }

  .media-caption-logo {
    height: 500px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
  }

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

  .why-text {
    grid-column: 1;
  }

  .why-index {
    margin-bottom: .5rem;
  }

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

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

  .reviews-grid {
    display: block;
    width: 100%;
  }

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

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-scroll-line::after,
  .matter-media img,
  .attorney-media img,
  .btn-link-arrow {
    animation: none;
    transition: none;
  }
}
