/* ============================================================
   TRAPP & GELLER — homepage
   Leaders Marketing · "Ricky-style" build · Row 151
   ============================================================ */

:root {
  --navy: #003b6a;
  --navy-deep: #041f38;
  --navy-mid: #0b2e4f;
  --gold: #fec526;
  --gold-deep: #b8860b;
  --gold-warm: #e0a800;
  --paper: #eef1f4;
  --paper-2: #e3e8ed;
  --ink: #14202b;
  --ink-soft: #4a5a69;
  --line: #d3dbe2;

  --ff-display: "Newsreader", Georgia, "Times New Roman", serif;
  --ff-body: "Barlow", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --ff-label: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;

  --container-max: 1600px;
  --container-pad: 45px;
  --container-width: 95%;
  --site-chrome-height: 156px;
  --nav-breakpoint: 1200px;
}

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

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

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

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

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

.eyebrow {
  font-family: var(--ff-label);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: none;
}

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

h1,
h2,
h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  letter-spacing: -0.012em;
  margin: 0;
}

.heading--lg {
  font-size: clamp(30px, 2.9vw, 44px);
  line-height: 1.14;
}

.heading--light {
  color: #fff;
}

.lede {
  font-size: 18px;
  color: var(--ink-soft);
}

.rule {
  width: 64px;
  height: 3px;
  background: var(--gold);
  border: 0;
  margin: 22px 0;
}

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

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

.btn--gold:hover {
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

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

.btn--navy:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  transform: translateY(-2px);
}

.btn--sm {
  font-size: clamp(15px, 1.35vw, 20px);
  padding: 14px 26px;
}

/* Utility bar */
.utility {
  background: var(--navy-deep);
  color: #c6d3df;
  font-size: 14.5px;
}

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

.utility__left,
.utility__right {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.utility__diamond {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  display: inline-block;
  flex: none;
}

.utility__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.utility strong {
  color: #fff;
  font-weight: 600;
}

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

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 112px;
}

.header__brand {
  flex-shrink: 0;
}

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

.header__right {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  min-width: 0;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-link {
  display: block;
  flex-shrink: 0;
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 500;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--navy-deep);
  white-space: nowrap;
  padding: 6px 0;
  position: relative;
}

.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-link[aria-current] {
  color: var(--navy);
}

.header__cta {
  flex-shrink: 0;
}

.header__nav-extras {
  display: none;
}

.header__burger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
}

.header__burger-line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy-deep);
  margin: 5px 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.header__overlay {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px) 0;
  overflow: hidden;
  background: var(--navy-deep);
  height: calc(100vh - var(--site-chrome-height));
  height: calc(100dvh - var(--site-chrome-height));
  height: calc(100svh - var(--site-chrome-height));
}

.hero__texture {
  position: absolute;
  inset: 0;
  background: url("../assets/images/bg-hero.webp") center / cover no-repeat;
  opacity: 0.16;
}

.hero__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    94deg,
    var(--navy-deep) 0%,
    var(--navy-deep) 42%,
    rgba(11, 46, 79, 0.86) 51%,
    rgba(174, 188, 201, 0.86) 63%,
    #e4e9ee 73%,
    var(--paper) 100%
  );
}

.hero__diamond {
  position: absolute;
  top: 50%;
  right: 11%;
  width: 520px;
  height: 520px;
  transform: translateY(-50%) rotate(45deg);
  border: 2px solid rgba(184, 134, 11, 0.34);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: clamp(0px, 1vw, 8px);
  padding-right: clamp(0px, 1vw, 8px);
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: min(100%, 640px);
  width: min(100%, 48%);
  padding-right: clamp(12px, 2vw, 28px);
}

.hero__title {
  color: #fff;
  font-size: clamp(40px, 4.3vw, 64px);
  line-height: 1.04;
  font-weight: 500;
}

.hero__stat {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 22px 0 0;
  font-family: var(--ff-display);
  font-size: clamp(20px, 1.55vw, 25px);
  color: var(--gold);
  font-weight: 600;
}

.hero__stat::before {
  content: "";
  width: 44px;
  height: 2px;
  background: var(--gold);
  transform: translateY(-7px);
}

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

.hero__phone {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero__phone svg {
  flex: none;
}

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

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

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

.hero__base {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: var(--gold);
  z-index: 4;
}

/* Accolades */
.accolades {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.accolades__inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 30px 0;
  flex-wrap: wrap;
}

.accolades__heading {
  font-family: var(--ff-label);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  padding-right: 38px;
  flex: none;
  max-width: 190px;
  line-height: 1.4;
  margin: 0;
}

.accolades__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  flex: 1 1 480px;
  min-width: 0;
}

.accolades__slot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  position: relative;
  min-width: 0;
}

.accolades__slot + .accolades__slot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: var(--line);
}

.accolades__image {
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.accolades__image--tall {
  height: 84px;
}

.accolades__image--medium {
  height: 66px;
}

.accolades__image--short {
  height: 42px;
}

.accolades__image--mid {
  height: 56px;
}

/* Sections */
.section {
  padding: 104px 0;
}

.section--navy {
  background: var(--navy-deep);
  color: #fff;
}

.section--paper {
  background: var(--paper);
}

.section__head {
  max-width: 760px;
  margin: 0 0 54px;
}

.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

/* About */
.about {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 74px;
  align-items: start;
}

.about__figure {
  position: relative;
  padding: 0 0 22px 22px;
  margin: 0;
}

.about__image {
  width: 100%;
  position: relative;
  z-index: 2;
}

.about__figure::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 66%;
  height: 74%;
  border: 2px solid var(--gold);
  z-index: 1;
}

.about__body p {
  margin: 0 0 20px;
}

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

.about__callout {
  margin-top: 32px;
  padding: 26px 30px;
  background: #fff;
  border-left: 5px solid var(--gold);
  box-shadow: 0 12px 30px rgba(4, 31, 56, 0.07);
  font-size: 17.5px;
  color: var(--ink);
}

.about__callout a {
  color: var(--navy);
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
}

/* Practice areas */
.practice {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.practice__card {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.practice__card:hover {
  transform: translateY(-6px);
  border-color: rgba(254, 197, 38, 0.55);
}

.practice__thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.practice__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.practice__card:hover .practice__image {
  transform: scale(1.06);
}

.practice__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 31, 56, 0.1), rgba(4, 31, 56, 0.62));
}

.practice__num {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 44px;
  background: var(--gold);
  z-index: 2;
  clip-path: polygon(0 100%, 100% 100%, 0 0);
}

.practice__body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.practice__title {
  font-size: 23px;
  color: #fff;
  line-height: 1.22;
}

.practice__body p {
  font-size: 15.5px;
  color: #aec0d0;
  margin: 12px 0 22px;
  line-height: 1.6;
}

.practice__more {
  margin-top: auto;
  font-family: var(--ff-label);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: gap 0.3s ease;
}

.practice__card:hover .practice__more {
  gap: 15px;
}

/* Results */
.results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.results__item {
  padding: 44px 34px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.results__item + .results__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24%;
  bottom: 24%;
  width: 1px;
  background: var(--line);
}

.results__amount {
  font-family: var(--ff-display);
  font-size: clamp(38px, 3.5vw, 52px);
  line-height: 1;
  color: var(--navy);
  font-weight: 600;
  margin: 0;
}

.results__amount small {
  font-size: 0.5em;
  font-weight: 500;
  color: var(--gold-deep);
  display: block;
  margin-top: 10px;
  letter-spacing: 0.01em;
}

.results__type {
  font-family: var(--ff-label);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 16px;
}

/* Values */
.values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.values__item {
  padding: 44px 52px;
  border-top: 1px solid var(--line);
}

.values__item:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.values__title {
  font-size: 26px;
  color: var(--navy);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.values__title::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: none;
  margin-top: 12px;
}

.values__item p {
  margin: 14px 0 0 28px;
  color: var(--ink-soft);
  font-size: 16.5px;
}

/* Review */
.review {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
}

.review__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 0;
  align-items: stretch;
}

.review__copy {
  padding: 96px 74px 96px 0;
}

.review__mark {
  font-family: var(--ff-display);
  font-size: 96px;
  line-height: 0.7;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.review__lead {
  font-family: var(--ff-display);
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.28;
  color: #fff;
  margin: 0 0 22px;
}

.review__body {
  color: #bdcbd9;
  font-size: 17.5px;
  margin: 0;
}

.review__by {
  margin-top: 30px;
  font-family: var(--ff-label);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.review__stars {
  display: flex;
  gap: 6px;
  margin-bottom: 26px;
}

.review__figure {
  position: relative;
  min-height: 440px;
  margin: 0;
}

.review__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.review__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--navy-deep) 0%,
    rgba(4, 31, 56, 0.35) 45%,
    rgba(4, 31, 56, 0.12) 100%
  );
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 70px;
  align-items: start;
}

.contact__list {
  margin: 26px 0 0;
  display: grid;
  gap: 22px;
}

.contact__term {
  font-family: var(--ff-label);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 5px;
}

.contact__detail {
  margin: 0;
  font-size: 17.5px;
  color: var(--ink);
  line-height: 1.55;
}

.contact__detail a {
  border-bottom: 2px solid var(--gold);
}

.contact__tel {
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
}

.form {
  background: #fff;
  padding: 44px;
  box-shadow: 0 18px 44px rgba(4, 31, 56, 0.09);
  border-top: 4px solid var(--gold);
}

.form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form__field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

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

.form__label {
  font-family: var(--ff-label);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.form__input {
  font-family: var(--ff-body);
  font-size: 16.5px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fafbfc;
  border-radius: 2px;
  padding: 0 15px;
  width: 100%;
  height: 40px;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.form__textarea {
  height: 120px;
  padding: 12px 15px;
  resize: vertical;
  line-height: 1.55;
}

.form__select {
  appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy) 50%),
    linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 17px,
    calc(100% - 14px) 17px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form__input:focus {
  border-color: var(--gold);
  background: #fff;
  outline: none;
}

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

.form__note {
  font-size: 13.5px;
  color: var(--ink-soft);
  max-width: 330px;
  line-height: 1.5;
  margin: 0;
}

/* Footer */
.footer {
  background: var(--navy-deep);
  color: #a9bbcb;
  padding: 74px 0 0;
  font-size: 16px;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.72fr) minmax(0, 0.72fr);
  gap: 56px;
  padding-bottom: 56px;
}

.footer__logo {
  width: 330px;
  max-width: 100%;
  margin-bottom: 24px;
}

.footer__heading {
  font-family: var(--ff-label);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}

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

.footer__link:hover,
.footer a:hover {
  color: var(--gold);
}

.footer__tel {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #7e93a6;
}

/* Responsive — progressive header scaling before hamburger */
@media (max-width: 1439px) {
  .hero__actions {
    gap: 18px;
  }

  .hero__actions .btn {
    padding: 18px 26px;
  }

  .header__nav-link {
    font-size: clamp(12px, 1.05vw, 15px);
  }
}

/* Mobile nav at 1200px */
@media (max-width: 1200px) {
  :root {
    --container-pad: 32px;
  }

  .header__burger {
    display: block;
    position: relative;
    z-index: 60;
  }

  .header__cta {
    display: none;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    background: #fff;
    z-index: 55;
    padding: calc(var(--site-chrome-height) + 12px) 28px 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-shadow: -18px 0 40px rgba(4, 31, 56, 0.18);
    overflow-y: auto;
  }

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

  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .header__nav-link {
    font-size: 18px;
    padding: 12px 0;
  }

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }

  .header__nav-phone {
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
  }

  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(4, 31, 56, 0.55);
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  body.is-nav-open .header__overlay {
    opacity: 1;
    visibility: visible;
  }

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

  body.is-nav-open .header__burger-line:nth-child(2) {
    opacity: 0;
  }

  body.is-nav-open .header__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero__diamond {
    width: 420px;
    height: 420px;
    right: 6%;
  }

  .hero__content {
    width: min(100%, 55%);
  }

  .hero__visual {
    width: 48%;
  }

  .about {
    gap: 46px;
  }

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

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

  .results__item:nth-child(odd)::before {
    display: none;
  }

  .results__item:nth-child(even)::before {
    left: 0;
  }

  .contact {
    gap: 44px;
  }
}

@media (max-width: 980px) {
  .btn {
    white-space: normal;
    text-align: center;
  }

  .hero__actions {
    flex-wrap: wrap;
    gap: 18px;
  }

  .hero__actions .btn {
    font-size: 18px;
    padding: 16px 24px;
  }
}

@media (max-width: 1023px) {
  .about {
    grid-template-columns: minmax(0, 1fr);
  }

  .about__figure {
    max-width: 520px;
  }

  .values {
    grid-template-columns: minmax(0, 1fr);
  }

  .values__item {
    padding: 34px 0;
  }

  .values__item:nth-child(odd) {
    border-right: 0;
  }

  .review__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .review__copy {
    padding: 74px 0 64px;
  }

  .review__figure {
    min-height: 280px;
    order: -1;
  }

  .review__figure::after {
    background: linear-gradient(0deg, var(--navy-deep) 0%, rgba(4, 31, 56, 0.25) 70%);
  }

  .contact {
    grid-template-columns: minmax(0, 1fr);
  }

  .accolades__heading {
    max-width: none;
    padding: 0 0 20px;
    flex: 1 1 100%;
  }

  .accolades__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 0;
  }

  .section {
    padding: 76px 0;
  }
}

/* Hero stacks on mobile */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: calc(100vh - var(--site-chrome-height));
    min-height: calc(100dvh - var(--site-chrome-height));
    min-height: calc(100svh - var(--site-chrome-height));
    padding: clamp(28px, 5vw, 40px) clamp(16px, 4vw, 28px) 0;
  }

  .hero__wash {
    background: linear-gradient(
      170deg,
      var(--navy-deep) 0%,
      var(--navy-deep) 46%,
      rgba(11, 46, 79, 0.9) 56%,
      #c9d3dc 74%,
      var(--paper) 100%
    );
  }

  .hero__inner {
    height: auto;
    align-items: flex-start;
  }

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

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

  .hero__image {
    height: auto;
    width: min(560px, 100%);
    max-width: 100%;
    margin: 0 auto;
    object-fit: contain;
    object-position: bottom center;
  }

  .hero__diamond {
    top: auto;
    bottom: 6%;
    right: 50%;
    transform: translateX(50%) rotate(45deg);
    width: 280px;
    height: 280px;
  }

  .hero__title {
    font-size: 34px;
  }
}

@media (max-width: 719px) {
  :root {
    --container-pad: 20px;
    --container-width: 100%;
  }

  body {
    font-size: 16.5px;
  }

  .utility__inner {
    justify-content: center;
    text-align: center;
    padding: 10px 0;
  }

  .header__inner {
    min-height: 84px;
  }

  .header__logo {
    width: 200px;
  }

  .hero__phone {
    font-size: 22px;
    justify-content: center;
  }

  .btn {
    font-size: 18px;
    padding: 16px 26px;
  }

  .practice {
    grid-template-columns: minmax(0, 1fr);
  }

  .results {
    grid-template-columns: minmax(0, 1fr);
  }

  .results__item {
    padding: 32px 0;
  }

  .results__item::before {
    display: none !important;
  }

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

  .accolades__slot {
    padding: 6px 10px;
  }

  .accolades__slot + .accolades__slot::before {
    display: none;
  }

  .form {
    padding: 28px 22px;
  }

  .form__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .section {
    padding: 60px 0;
  }

  .review__copy {
    padding: 56px 0 48px;
  }
}

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

  .hero__actions .btn {
    width: 100%;
  }
}

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