/* ============================================================
   LAURI J. GOLDSTEIN, PLLC — homepage
   Leaders Marketing | Ricky design system
   Palette: #255696 / #EFBC00
   ============================================================ */

:root {
  --navy-900: #0b1e38;
  --navy-800: #12294a;
  --navy-700: #1b3a63;
  --brand: #255696;
  --brand-lt: #3d74bc;
  --gold: #efbc00;
  --gold-dp: #c99b00;
  --ink: #16202e;
  --ink-60: #4a5768;
  --line: #dce3ec;
  --cool: #f3f6fa;
  --cool-2: #e8eef6;
  --white: #fff;
  --container-max: 1320px;
  --pad: 45px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 136px;
  --serif: "Bodoni Moda", "Times New Roman", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

body.has-nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1.15em;
}

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

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

.container {
  width: 95%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.eyebrow--light {
  color: var(--gold);
}

.eyebrow--center {
  justify-content: center;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  padding: 19px 38px;
  border-radius: 999px;
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  max-width: 100%;
  transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.22s;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy-900);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-dp);
  border-color: var(--gold-dp);
}

.hero .btn--primary:hover {
  background: var(--white);
  border-color: var(--white);
}

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

.btn--ghost:hover {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
}

.btn--navy {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.btn--navy:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
}

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

.btn--outline:hover {
  border-color: var(--brand);
  background: var(--cool);
}

.btn--sm {
  font-size: 16px;
  padding: 14px 28px;
}

.btn:active {
  transform: translateY(1px);
}

/* ============================ TOP BAR ============================ */
.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
  letter-spacing: 0.06em;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 44px;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 26px;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  font-weight: 400;
}

.topbar__item svg {
  flex: none;
  stroke: var(--gold);
}

.topbar__right a:hover {
  color: var(--gold);
}

/* ============================ HEADER ============================ */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 40;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 92px;
}

.header__logo {
  flex-shrink: 0;
  width: 123px;
  max-width: none;
}

.header__logo img {
  width: 100%;
  height: auto;
  max-width: none;
}

.header__toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
  color: var(--navy-800);
  position: relative;
  z-index: 70;
}

.header__toggle-icon {
  display: block;
  width: 24px;
  height: 18px;
  position: relative;
}

.header__toggle-icon span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transition: transform 0.28s ease, opacity 0.2s ease, top 0.28s ease;
}

.header__toggle-icon span:nth-child(1) {
  top: 0;
}

.header__toggle-icon span:nth-child(2) {
  top: 8px;
}

.header__toggle-icon span:nth-child(3) {
  top: 16px;
}

.header__toggle.is-active .header__toggle-icon span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.header__toggle.is-active .header__toggle-icon span:nth-child(2) {
  opacity: 0;
}

.header__toggle.is-active .header__toggle-icon span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.header__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 30, 56, 0.55);
  z-index: 45;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.header__overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.header__nav {
  margin-left: auto;
}

.header__nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.header__nav-item {
  flex-shrink: 0;
}

.header__nav-link {
  flex-shrink: 0;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 500;
  color: var(--navy-800);
  letter-spacing: 0.01em;
  padding: 8px 0;
  position: relative;
  display: inline-block;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: right 0.28s ease;
}

.header__nav-link:hover::after,
.header__nav-link[aria-current]::after {
  right: 0;
}

.header__nav-extras {
  display: none;
}

.header__cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__tel {
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.header__tel:hover {
  color: var(--gold-dp);
}

.header__cta .btn {
  font-size: clamp(13px, 1.1vw, 16px);
  padding: clamp(10px, 0.9vw, 14px) clamp(16px, 1.6vw, 28px);
  white-space: nowrap;
}

/* ============================ HERO ============================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px) 0;
  height: calc(100vh - var(--site-chrome-height));
  height: calc(100dvh - var(--site-chrome-height));
  height: calc(100svh - var(--site-chrome-height));
  background: var(--navy-900) center / cover no-repeat;
  background-image:
    linear-gradient(
      90deg,
      rgba(9, 22, 42, 0.94) 0%,
      rgba(9, 22, 42, 0.82) 42%,
      rgba(9, 22, 42, 0.35) 72%,
      rgba(9, 22, 42, 0.18) 100%
    ),
    url("../assets/images/bg-hero.jpg");
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--gold-dp) 46%,
    rgba(239, 188, 0, 0) 100%
  );
  z-index: 4;
}

.hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(100%, 640px);
  max-width: 55%;
  padding: clamp(16px, 2.5vw, 26px) clamp(0px, 1vw, 12px) 0 0;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(38px, 3.5vw, 54px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero__eyebrow {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 20px;
  line-height: 1.4;
}

.hero__text {
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.72;
  margin: 24px 0 0;
  max-width: 560px;
}

.hero__text-link {
  color: var(--gold);
  border-bottom: 1px solid rgba(239, 188, 0, 0.5);
}

.hero__text-link:hover {
  border-bottom-color: var(--gold);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero__tel {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__tel-label {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero__tel-num {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}

.hero__tel-num:hover {
  color: var(--gold);
}

.hero__stage {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 56%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      58% 74% at 62% 62%,
      rgba(61, 116, 188, 0.42) 0%,
      rgba(11, 30, 56, 0) 70%
    ),
    radial-gradient(
      40% 52% at 58% 96%,
      rgba(239, 188, 0, 0.2) 0%,
      rgba(239, 188, 0, 0) 72%
    );
}

.hero__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}

.hero__image {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
}

/* ======================== ACCOLADES STRIP ======================== */
.accolades {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.accolades__head {
  text-align: center;
  padding: 44px 0 6px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.accolades__head-label {
  position: relative;
  padding: 0 22px;
}

.accolades__head-label::before,
.accolades__head-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.accolades__head-label::before {
  left: -16px;
}

.accolades__head-label::after {
  right: -16px;
}

.accolades__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.accolades__item {
  padding: 40px 30px;
  border-left: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}

.accolades__item:first-child {
  border-left: 0;
}

.accolades__item img {
  width: auto;
  flex: none;
  opacity: 0.9;
  transition: opacity 0.25s ease;
}

.accolades__item:hover img {
  opacity: 1;
}

/* ========================= INTRO ========================= */
.intro {
  padding: 104px 0 100px;
  background: var(--white);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  gap: 74px;
  align-items: start;
}

.intro__media {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.intro__media img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  flex: 1;
}

.intro__media::before {
  content: "";
  position: absolute;
  left: -20px;
  top: -20px;
  width: 150px;
  height: 150px;
  border-top: 5px solid var(--gold);
  border-left: 5px solid var(--gold);
}

.intro__badge {
  position: absolute;
  right: -1px;
  bottom: -1px;
  background: var(--brand);
  color: var(--white);
  padding: 26px 32px;
  max-width: 290px;
}

.intro__badge-phone {
  display: block;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.intro__badge-label {
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.intro__title {
  font-family: var(--serif);
  font-size: clamp(30px, 2.5vw, 40px);
  color: var(--navy-800);
}

.intro__subtitle {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 16px 0 0;
  line-height: 1.5;
}

.intro__body {
  margin-top: 28px;
  color: var(--ink-60);
}

.intro__body p {
  font-size: 16.5px;
}

.intro__special {
  margin-top: 30px;
  padding: 24px 28px;
  background: var(--cool);
  border-left: 4px solid var(--gold);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--navy-800);
  line-height: 1.5;
}

.intro__cta {
  margin-top: 34px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ======================== PRACTICE AREAS ======================== */
.practice {
  padding: 100px 0 106px;
  background: var(--cool);
}

.practice__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}

.practice__title {
  font-family: var(--serif);
  font-size: clamp(30px, 2.6vw, 42px);
  color: var(--navy-800);
}

.practice__lede {
  margin-top: 16px;
  font-size: 19px;
  color: var(--ink-60);
}

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

.practice-card {
  background: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(11, 30, 56, 0.16);
}

.practice-card__media {
  position: relative;
  height: 206px;
  overflow: hidden;
  background: var(--navy-800);
}

.practice-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.practice-card:hover .practice-card__media img {
  transform: scale(1.06);
}

.practice-card__icon {
  position: absolute;
  left: 24px;
  top: 179px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.practice-card__icon svg {
  stroke: var(--navy-900);
}

.practice-card__body {
  padding: 44px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.practice-card__title {
  font-family: var(--serif);
  font-size: 23px;
  color: var(--navy-800);
  line-height: 1.2;
}

.practice-card__text {
  margin-top: 12px;
  font-size: 15.5px;
  color: var(--ink-60);
  line-height: 1.7;
}

.practice-card__more {
  margin-top: auto;
  padding-top: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.practice-card__more svg {
  stroke: var(--gold);
  transition: transform 0.25s ease;
}

.practice-card:hover .practice-card__more svg {
  transform: translateX(5px);
}

/* ========================= CASE RESULTS ========================= */
.results {
  padding: 104px 0;
  background: var(--navy-900) center / cover;
  color: var(--white);
  background-image:
    linear-gradient(rgba(8, 20, 38, 0.9), rgba(8, 20, 38, 0.94)),
    url("../assets/images/bg-results.jpg");
}

.results__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.results__title {
  font-family: var(--serif);
  font-size: clamp(30px, 2.6vw, 42px);
  color: var(--white);
}

.results__lede {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  font-size: 16.5px;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.result-card {
  background: rgba(8, 20, 38, 0.55);
  padding: 40px 30px 34px;
  display: flex;
  flex-direction: column;
  min-height: 250px;
}

.result-card__amount {
  font-family: var(--serif);
  font-size: clamp(32px, 2.7vw, 42px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.result-card__rule {
  width: 44px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border: 0;
  margin: 20px 0 18px;
}

.result-card__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.result-card__more {
  margin-top: auto;
  padding-top: 24px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.result-card__more svg {
  stroke: var(--gold);
  transition: transform 0.25s ease;
}

.result-card__more:hover {
  color: var(--gold);
}

.result-card__more:hover svg {
  transform: translateX(5px);
}

.results__note {
  margin-top: 26px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 900px;
}

/* =========================== VALUES =========================== */
.values {
  padding: 100px 0 104px;
  background: var(--white);
}

.values__head {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.values__title {
  font-family: var(--serif);
  font-size: clamp(30px, 2.6vw, 42px);
  color: var(--navy-800);
}

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

.value-card {
  padding: 8px 34px 0;
  border-left: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
}

.value-card:first-child {
  border-left: 0;
  padding-left: 0;
}

.value-card:last-child {
  padding-right: 0;
}

.value-card__num {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--gold-dp);
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 16px;
}

.value-card__title {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--navy-800);
  line-height: 1.22;
}

.value-card__text {
  margin-top: 14px;
  font-size: 15.5px;
  color: var(--ink-60);
  line-height: 1.72;
}

.value-card__more {
  margin-top: auto;
  padding-top: 18px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.value-card__more svg {
  stroke: var(--gold);
}

.value-card__more:hover {
  color: var(--gold-dp);
}

/* ========================= TESTIMONIAL ========================= */
.testimonial {
  padding: 96px 0;
  color: var(--white);
  background: var(--navy-800) center / cover;
  background-image:
    linear-gradient(rgba(18, 41, 74, 0.92), rgba(11, 30, 56, 0.95)),
    url("../assets/images/bg-results.jpg");
  text-align: center;
}

.testimonial__inner {
  max-width: 940px;
  margin: 0 auto;
}

.testimonial__title {
  font-family: var(--serif);
  font-size: clamp(28px, 2.3vw, 36px);
  color: var(--white);
  margin-bottom: 34px;
}

.testimonial__quote {
  font-family: var(--serif);
  font-size: clamp(21px, 1.85vw, 29px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  letter-spacing: -0.005em;
  margin: 0;
}

.testimonial__mark {
  font-family: var(--serif);
  font-size: 86px;
  line-height: 0.4;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.testimonial__name {
  margin-top: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial__stars {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 22px;
}

.testimonial__stars svg {
  fill: var(--gold);
}

/* =========================== CONTACT =========================== */
.contact {
  padding: 104px 0;
  background: var(--cool);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 70px;
  align-items: start;
}

.contact__title {
  font-family: var(--serif);
  font-size: clamp(30px, 2.5vw, 40px);
  color: var(--navy-800);
}

.contact__lede {
  margin-top: 18px;
  font-size: 17px;
  color: var(--ink-60);
  max-width: 470px;
}

.contact-info {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info__row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-info__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info__icon svg {
  stroke: var(--gold);
}

.contact-info__label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.contact-info__value {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.45;
  margin-top: 3px;
}

.contact-info__value a:hover {
  color: var(--brand);
}

.contact-form {
  background: var(--white);
  padding: 44px;
  box-shadow: 0 20px 50px rgba(11, 30, 56, 0.09);
  border-top: 5px solid var(--gold);
}

.contact-form__title {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--navy-800);
}

.contact-form__note {
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--ink-60);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.field__input,
.field__select,
.field__textarea {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 0;
  padding: 0 14px;
  height: 40px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field__textarea {
  height: 120px;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.6;
}

.field__select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23255696' stroke-width='1.8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(37, 86, 150, 0.12);
  outline: none;
}

.contact-form .btn {
  width: 100%;
  margin-top: 24px;
}

.contact-form__fine {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--ink-60);
  line-height: 1.6;
}

/* ============================ FOOTER ============================ */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.72);
  padding: 76px 0 0;
  font-size: 15.5px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.95fr;
  gap: 60px;
  padding-bottom: 56px;
}

.footer__logo {
  background: var(--white);
  padding: 20px 24px;
  display: inline-block;
  width: 439px;
  max-width: 100%;
}

.footer__logo img {
  width: 100%;
  height: auto;
}

.footer__blurb {
  margin-top: 26px;
  max-width: 420px;
  line-height: 1.75;
}

.footer__heading {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__list a:hover {
  color: var(--gold);
}

.footer__address {
  font-style: normal;
  line-height: 1.75;
}

.footer__tel {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  display: inline-block;
  margin-top: 6px;
}

.footer__tel:hover {
  color: var(--gold);
}

.footer__cell {
  margin-top: 16px;
  font-size: 14.5px;
}

.footer__cell strong {
  color: var(--white);
  font-weight: 500;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 26px 0 34px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom-inner {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer__disclaimer {
  max-width: 900px;
  line-height: 1.72;
}

/* ============================ MOTION ============================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

/* Progressive header scaling before hamburger */
@media (max-width: 1400px) {
  .header__nav-list {
    gap: 22px;
  }

  .header__inner {
    gap: 22px;
  }
}

@media (max-width: 1300px) {
  .header__nav-list {
    gap: 16px;
  }

  .header__inner {
    gap: 18px;
  }

  .intro__grid {
    gap: 48px;
  }

  .practice__grid {
    gap: 20px;
  }
}

/* Nav hamburger at 1200px */
@media (max-width: 1200px) {
  :root {
    --pad: 32px;
  }

  .header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 70;
  }

  .header__cta {
    display: none;
  }

  .header__overlay {
    display: block;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    margin: 0;
    background: var(--white);
    z-index: 50;
    transform: translateX(100%);
    transition: transform 0.32s ease;
    display: flex;
    flex-direction: column;
    padding: 88px 28px 40px;
    box-shadow: -18px 0 40px rgba(11, 30, 56, 0.18);
    overflow-y: auto;
  }

  .header__nav.is-open {
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    white-space: normal;
  }

  .header__nav-link {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .header__nav-link::after {
    display: none;
  }

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
    padding-top: 8px;
  }

  .header__nav-extras .header__tel {
    font-size: 22px;
  }

  .header__nav-extras .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .accolades__item {
    padding: 30px 22px 36px;
  }

  .intro__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .intro__media img {
    height: 460px;
    min-height: 0;
  }

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

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

  .values__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 44px;
  }

  .value-card:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .value-card:nth-child(2),
  .value-card:nth-child(4) {
    padding-right: 0;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
}

@media (max-width: 980px) {
  .btn {
    white-space: normal;
    font-size: 18px;
    padding: 16px 28px;
  }
}

@media (max-width: 860px) {
  .hero {
    height: auto;
    min-height: 0;
    padding: clamp(36px, 6vw, 60px) clamp(16px, 4vw, 28px) 0;
    background-image:
      linear-gradient(rgba(9, 22, 42, 0.9), rgba(9, 22, 42, 0.86)),
      url("../assets/images/bg-hero.jpg");
  }

  .hero__inner {
    flex-direction: column;
    align-items: stretch;
    height: auto;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: 0 0 24px;
  }

  .hero__stage {
    display: none;
  }

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    justify-content: center;
  }

  .hero__image {
    height: 430px;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero__text {
    max-width: none;
  }

  .topbar__left {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .results__head {
    margin-bottom: 36px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: clamp(40px, 7vw, 56px) clamp(18px, 5vw, 28px) 0;
  }

  .hero__content {
    max-width: 100%;
    padding-right: clamp(4px, 2vw, 12px);
    padding-left: clamp(4px, 2vw, 12px);
  }

  .hero__image {
    height: 380px;
  }
}

@media (max-width: 720px) {
  :root {
    --pad: 22px;
  }

  .container {
    width: 100%;
  }

  body {
    font-size: 16px;
  }

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

  .accolades__head {
    padding-top: 34px;
  }

  .accolades__item {
    min-height: 118px;
    padding: 26px 14px 30px;
  }

  .accolades__item:nth-child(odd) {
    border-left: 0;
  }

  .accolades__item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .accolades__item img {
    max-width: 100%;
  }

  .practice__grid,
  .results__grid,
  .values__grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    border-left: 0;
    padding: 0;
  }

  .value-card + .value-card {
    padding-top: 34px;
    border-top: 1px solid var(--line);
  }

  .intro,
  .practice,
  .results,
  .values,
  .testimonial,
  .contact {
    padding-top: 66px;
    padding-bottom: 70px;
  }

  .intro__media img {
    height: 340px;
  }

  .intro__badge {
    position: static;
    max-width: none;
    margin-top: 0;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .header__inner {
    min-height: 78px;
    gap: 14px;
  }

  .hero__actions {
    gap: 20px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer__logo {
    width: 300px;
  }

  .hero__image {
    height: 340px;
  }
}

@media (max-width: 640px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn,
  .intro__cta .btn,
  .results__head .btn {
    width: 100%;
  }
}
