@charset "UTF-8";

/* ==========================================================================
   Law Offices of Baron J. Drexel
   Plain CSS — no framework, no build step.

   CONTENTS
   01. Design tokens
   02. Reset & base
   03. Layout helpers
   04. Buttons
   05. Header & navigation
   06. Hero
   07. Awards bar
   08. Statement
   09. Practice areas
   10. Sampling of cases
   11. Move forward / feature stats
   12. Achievements
   13. About Baron
   14. How it works
   15. Why choose us
   16. Call us today
   17. Testimonials
   18. Inquiry form
   19. Footer
   20. Toasts
   21. Responsive — 640px / 768px / 1024px

   Breakpoints are mobile-first: base rules are the phone layout, and the
   media queries at the bottom of the file layer on the wider layouts.
   ========================================================================== */
html {
  font-size: 16px;
}

@media (max-width: 1600px) {
  html {
    font-size: 15.5px;
  }
}

@media (max-width: 1440px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 1280px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  html {
    font-size: 16px;
  }
}

/* ==========================================================================
   01. Design tokens
   ========================================================================== */

:root {
  /* Brand palette */
  --navy: #142947;
  --navy-deep: #05152e;
  --navy-foreground: #fafcfe;

  /* Surfaces & text */
  --background: #f5f7fd;
  --foreground: #151411;
  --surface: #ffffff;
  --secondary: #e9edf7;
  --muted-foreground: #626975;

  /* Lines */
  --border: #d9dee8;
  --input: #d3d8e1;

  /* Translucent fills */
  --secondary-60: rgba(233, 237, 247, 0.6);
  --secondary-40: rgba(233, 237, 247, 0.4);
  --navy-20: rgba(20, 41, 71, 0.2);
  --navy-40: rgba(20, 41, 71, 0.4);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-15: rgba(255, 255, 255, 0.15);
  --white-25: rgba(255, 255, 255, 0.25);
  --white-30: rgba(255, 255, 255, 0.3);

  /* Radii */
  --radius-md: 0.625rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Elevation */
  --shadow-soft: 0 0.625rem 1.875rem -0.75rem rgba(20, 41, 71, 0.18);
  --shadow-card: 0 1.125rem 2.8125rem -1.25rem rgba(20, 41, 71, 0.35);

  /* Hairlines & pill radius — kept as tokens so the rem values stay in one place. */
  --hairline: 0.0625rem;
  --radius-pill: 62.5rem;

  /* Type */
  --font-sans: Poppins, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ==========================================================================
   02. Reset & base
   ========================================================================== */

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

* {
  margin: 0;
}

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



body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* NOTE: do NOT re-declare `html { font-size }` here.
   The rem-scaling ladder at the top of this file (16 / 15.5 / 15 / 14px, then
   back to 16px below 1024px) is what scales the whole layout down on smaller
   desktops. A later `html { font-size: 1rem }` resolves against the browser
   default and silently defeats that ladder. */


h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

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

img {
  height: auto;
}

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

ul {
  list-style: none;
  padding: 0;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

/* ==========================================================================
   03. Layout helpers
   ========================================================================== */

.container {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 600;
}

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

/* Centred intro block above a grid of cards. */
.lede {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.lede--narrow {
  max-width: 42rem;
}

.lede__title {
  font-size: 1.875rem;
  line-height: 1.375;
}

.lede__text {
  margin-top: 1.25rem;
  color: var(--muted-foreground);
}

/* ==========================================================================
   04. Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: var(--hairline) solid transparent;
  border-radius: var(--radius-md);
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn--navy {
  background-color: var(--navy);
  color: var(--navy-foreground);
  padding-inline: 2.5rem;
}

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

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

.btn--outline-navy:hover {
  background-color: var(--navy);
  color: var(--navy-foreground);
}

.btn--outline-light {
  border-color: var(--white-30);
  background-color: transparent;
  color: inherit;
  padding: 0.75rem 1.25rem;
}

.btn--outline-light:hover {
  background-color: var(--white-10);
}

.btn--glass {
  background-color: var(--white-15);
  color: var(--navy-foreground);
  padding-inline: 2.5rem;
}

.btn--glass:hover {
  background-color: var(--white-25);
}

.btn--call {
  background-color: var(--navy);
  color: var(--navy-foreground);
  box-shadow:
    var(--shadow-card),
    0 0 0 var(--hairline) rgba(255, 255, 255, 0.2);
}

.btn--call:hover {
  background-color: var(--navy-deep);
}

.btn--uppercase {
  text-transform: uppercase;
  letter-spacing: 0.025em;
  padding-inline: 2.5rem;
}

.btn__icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* ==========================================================================
   05. Header & navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-bar {
  background-color: var(--navy-deep);
  color: var(--navy-foreground);
}

.header-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.75rem;
}

.header-logo img {
  height: 2.75rem;
  width: auto;
}

/* Phone / email blocks — desktop only. */
.header-contact {
  display: none;
  align-items: center;
  gap: 2rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-link__icon {
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background-color: var(--white-10);
}

.contact-link__icon svg {
  width: 1rem;
  height: 1rem;
}

.contact-link__text {
  line-height: 1.25;
}

.contact-link__label {
  display: block;
  font-size: 0.75rem;
  opacity: 0.7;
}

.contact-link__value {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Hamburger button — assets/js/main.js toggles .is-open on .nav-mobile. */
.nav-toggle {
  display: flex;
  align-items: center;
  border: 0;
  background: none;
  padding: 0.25rem;
  color: inherit;
}

.nav-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.nav-desktop {
  display: none;
  border-top: var(--hairline) solid var(--white-10);
  background-color: var(--navy);
  color: var(--navy-foreground);
}

.nav-desktop__inner {
  display: flex;
  justify-content: flex-end;
  gap: 2.5rem;
  padding-block: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-desktop a {
  transition: opacity 0.2s ease;
}

.nav-desktop a:hover {
  opacity: 0.7;
}

.nav-mobile {
  display: none;
  background-color: var(--navy);
  color: var(--navy-foreground);
}

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

.nav-mobile__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-block: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-mobile__phone {
  font-weight: 600;
}

/* ==========================================================================
   06. Hero
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--navy-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right,
      var(--navy-deep) 0%,
      rgba(5, 21, 46, 0.8) 50%,
      rgba(5, 21, 46, 0) 100%);
}

.hero__inner {
  position: relative;
  display: grid;
  align-items: end;
  gap: 2rem;
  padding-top: 4rem;
  padding-bottom: 2.5rem;
}

.hero__content {
  color: var(--navy-foreground);
}

.hero__eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.hero__title {
  margin-top: 0.75rem;
  max-width: 36rem;
  font-size: 2.25rem;
  line-height: 1.25;
  color: var(--navy-foreground);
}

.hero__points {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
}

.hero__points svg {
  margin-top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.8);
}

.hero__cta {
  margin-top: 2rem;
}

.hero__cards {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}

.fee-card {
  border-radius: var(--radius-lg);
  background-color: rgba(245, 247, 253, 0.95);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}

.fee-card__icon {
  margin-bottom: 1rem;
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background-color: var(--navy);
  color: var(--navy-foreground);
}

.fee-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.fee-card p {
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(21, 20, 17, 0.8);
}

.hero__portrait {
  position: relative;
  display: flex;
  align-self: end;
  justify-content: center;
  /* Cancels .hero__inner's bottom padding so the portrait sits flush with the
     bottom edge of the hero section. */
  margin-bottom: -2.5rem;
}

.hero__portrait img {
  width: 100%;
  max-width: 50rem;
  display: block;
  filter: drop-shadow(0 1.5625rem 1.5625rem rgba(0, 0, 0, 0.15));
}

/* ==========================================================================
   07. Awards bar
   ========================================================================== */

.awards {
  border-bottom: var(--hairline) solid var(--border);
  background-color: var(--background);
}

.awards__grid {
  display: grid;
}

.award {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0.5rem;
}

.award+.award {
  border-top: var(--hairline) solid var(--border);
}

.award__icon {
  display: flex;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: var(--hairline) solid var(--navy-20);
  color: var(--navy);
}

.award__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.award h3 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 1.4;
}

.award p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ==========================================================================
   08. Statement
   ========================================================================== */

.statement {
  padding-bottom: 0;
}

.statement h2 {
  font-size: 1.875rem;
  line-height: 1.375;
}

/* ==========================================================================
   09. Practice areas
   ========================================================================== */

.practice__inner {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

.practice__title {
  font-size: 1.875rem;
}

.practice__subtitle {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
}

.practice__intro {
  margin-top: 1.25rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

.practice__list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-radius: var(--radius-lg);
  border-bottom: 0.25rem solid var(--navy);
  background-color: var(--surface);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.practice__list li {
  display: flex;
  gap: 0.75rem;
}

.practice__list svg {
  margin-top: 0.125rem;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--navy);
}

.practice__item-title {
  font-weight: 600;
  color: var(--navy);
}

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

.practice__media img {
  height: 100%;
  max-height: 36rem;
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

/* ==========================================================================
   10. Sampling of cases
   ========================================================================== */

.cases {
  background-color: var(--secondary-60);
}

.cases__title {
  font-size: 1.875rem;
  text-align: center;
}

.cases__grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}

.case-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border-bottom: 0.25rem solid var(--navy);
  background-color: var(--surface);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.case-card__number {
  color: var(--muted-foreground);
}

.case-card h3 {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.4;
}

.case-card__text {
  margin-top: 0.75rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

.case-card__result {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--navy);
}

/* ==========================================================================
   11. Move forward / feature stats
   ========================================================================== */

.move-forward__cta {
  margin-top: 2rem;
}

.features {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
}

.feature {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.feature img {
  height: 18rem;
  width: 100%;
  object-fit: cover;
}

.feature__stat {
  position: absolute;
  right: 0;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-radius: var(--radius-lg);
  background-color: rgba(245, 247, 253, 0.95);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.feature__stat svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--navy);
}

.feature__stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.feature__stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ==========================================================================
   12. Achievements
   ========================================================================== */

.achievements__grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

.achievement {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.achievement img {
  height: 18rem;
  width: 100%;
  object-fit: cover;
}

.achievement__scrim {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to top,
      var(--navy-deep) 0%,
      rgba(5, 21, 46, 0.7) 50%,
      rgba(5, 21, 46, 0.2) 100%);
}

.achievement__body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.75rem;
  color: var(--navy-foreground);
}

.achievement__body h3 {
  font-size: 1.5rem;
  color: var(--navy-foreground);
}

.achievement__body p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  opacity: 0.9;
}

/* ==========================================================================
   13. About Baron
   ========================================================================== */

.about {
  background-color: var(--secondary-40);
}

.about__inner {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

.about__photo {
  height: 100%;
  max-height: 42rem;
  width: 100%;
  object-fit: cover;
}

.about__body {
  padding-block: 3.5rem;
}

.about__title {
  font-size: 2.25rem;
  letter-spacing: 0.025em;
}

.about__text {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 36rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

.about__cta {
  margin-top: 2rem;
}

/* ==========================================================================
   14. How it works
   ========================================================================== */

.how__lede {
  font-size: 1.125rem;
  line-height: 1.6;
}

.how__lede strong,
.how__lede a {
  color: var(--navy);
  font-weight: 700;
}

.how__panel {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
  border-radius: var(--radius-xl);
  background-color: var(--secondary-60);
  padding: 2rem;
}

.how__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.how__item svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: var(--navy);
}

.how__item-label {
  display: block;
  font-weight: 600;
  color: var(--navy);
}

.how__item-value {
  color: var(--muted-foreground);
}

/* ==========================================================================
   15. Why choose us
   ========================================================================== */

.why__inner {
  display: grid;
  gap: 2.5rem;
}

.why__title {
  font-size: 1.875rem;
}

.why__intro p {
  margin-top: 1rem;
  color: var(--muted-foreground);
}

.why__grid {
  display: grid;
  gap: 2rem;
}

.reason svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--navy);
}

.reason h3 {
  margin-top: 1rem;
  border-left: 0.25rem solid var(--navy);
  padding-left: 0.75rem;
  font-size: 1.125rem;
}

.reason p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

/* ==========================================================================
   16. Call us today
   ========================================================================== */

.call-today {
  position: relative;
  overflow: hidden;
  background-color: var(--navy-deep);
}

.call-today__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.call-today__scrim {
  position: absolute;
  inset: 0;
  background-color: rgba(5, 21, 46, 0.7);
}

.call-today__inner {
  position: relative;
  display: grid;
  align-items: center;
  gap: 2.5rem;
  padding-block: 5rem;
}

.call-today__content {
  color: var(--navy-foreground);
}

.rule-light {
  display: block;
  margin-bottom: 1.5rem;
  height: var(--hairline);
  width: 4rem;
  background-color: rgba(255, 255, 255, 0.6);
}

.call-today__title {
  font-size: 2.25rem;
  color: var(--navy-foreground);
}

.call-today__text {
  margin-top: 1rem;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.8);
}

.call-today__cta {
  margin-top: 2rem;
}

.consult-card {
  border-radius: var(--radius-lg);
  background-color: var(--surface);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.consult-card h3 {
  font-size: 1.5rem;
}

.consult-card>p {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
}

.consult-card__phone {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.consult-card__icon {
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background-color: var(--navy);
  color: var(--navy-foreground);
}

.consult-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.consult-card__label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.consult-card__value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}

/* ==========================================================================
   17. Testimonials
   ========================================================================== */

.testimonials {
  background-color: var(--secondary-40);
}

.testimonials__top {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

.testimonials__photo {
  height: 100%;
  max-height: 26rem;
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.testimonials__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
}

.testimonials__eyebrow::before {
  content: "";
  height: var(--hairline);
  width: 2rem;
  background-color: var(--navy);
}

.testimonials__title {
  margin-top: 1rem;
  font-size: 1.875rem;
}

.quotes {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.quotes blockquote {
  border-radius: var(--radius-lg);
  background-color: var(--surface);
  padding: 1.25rem;
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.625;
  color: var(--muted-foreground);
  box-shadow: var(--shadow-soft);
}

.quotes cite {
  margin-top: 0.75rem;
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: var(--navy);
}

.testimonials__cards {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

.testimonial-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border-bottom: 0.25rem solid var(--navy);
  background-color: var(--surface);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

.testimonial-card h3 {
  font-size: 1.25rem;
  line-height: 1.375;
}

.testimonial-card__quote {
  margin-top: 1rem;
  flex: 1;
  border-left: 0.125rem solid var(--navy);
  padding-left: 1rem;
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.625;
  color: var(--muted-foreground);
}

.testimonial-card__author {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Summary of client feedback (replaces the repeated testimonial cards) */
.testimonials__summary {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  border-bottom: 0.25rem solid var(--navy);
  background-color: var(--surface);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.testimonials__summary h3 {
  font-size: 1.25rem;
  line-height: 1.375;
}

.testimonials__summary > p {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.testimonials__summary ul {
  margin: 1.25rem 0 0;
  list-style: none;
  display: grid;
  gap: 0.875rem;
}

.testimonials__summary li {
  border-left: 0.125rem solid var(--navy);
  padding-left: 1rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.testimonials__summary li strong { color: var(--foreground); }

.disclaimer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ==========================================================================
   18. Inquiry form
   ========================================================================== */

.inquiry__title {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 1.875rem;
  letter-spacing: 0.025em;
}

.rule-navy {
  display: none;
  height: var(--hairline);
  width: 4rem;
  background-color: var(--navy-40);
}

.inquiry__subtitle {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
}

.inquiry-form {
  margin: 2.5rem auto 0;
  max-width: 48rem;
}

.inquiry-form__grid {
  display: grid;
  gap: 1.5rem;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 0;
  border-bottom: var(--hairline) solid var(--input);
  border-radius: 0;
  background-color: transparent;
  padding-bottom: 0.5rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: var(--muted-foreground);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-bottom-color: var(--navy);
}

.inquiry-form__message {
  margin-top: 1.5rem;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form__actions {
  margin-top: 2.5rem;
  text-align: center;
}

/* ==========================================================================
   19. Footer
   ========================================================================== */

.site-footer {
  background-color: var(--navy-deep);
  color: var(--navy-foreground);
}

.footer__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 4rem;
}

.footer__cta h2 {
  max-width: 28rem;
  font-size: 1.875rem;
  color: var(--navy-foreground);
}

.footer__bottom {
  border-top: var(--hairline) solid var(--white-10);
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 2rem;
  font-size: 0.875rem;
}

.footer__logo {
  height: 2.25rem;
  width: auto;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0.8;
}

.footer__copy {
  opacity: 0.6;
}

/* ==========================================================================
   20. Toasts (shown by the inquiry form)
   ========================================================================== */

.toast-region {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transform: translateX(-50%);
  pointer-events: none;
}

.toast {
  max-width: min(90vw, 26rem);
  border: var(--hairline) solid;
  border-radius: var(--radius-md);
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(-0.75rem);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast--success {
  background-color: #e6fcec;
  border-color: #9ee0b4;
  color: #005e31;
}

.toast--error {
  background-color: #fdecec;
  border-color: #f3b4b4;
  color: #9b1c1c;
}

@media (prefers-reduced-motion: reduce) {
  .toast {
    transition: none;
  }
}

/* ==========================================================================
   21. Responsive
   ========================================================================== */

/* --- 640px and up (small tablets, large phones) --------------------------- */
@media (min-width: 40em) {
  .hero__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .how__item+.how__item {
    border-left: var(--hairline) solid var(--border);
  }

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

  .rule-navy {
    display: block;
  }
}

/* --- 768px and up (tablets) ---------------------------------------------- */
@media (min-width: 48em) {
  .header-logo img {
    height: 3.5rem;
  }

  .hero__inner {
    padding-top: 6rem;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__points li {
    font-size: 1.125rem;
  }

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

  .award+.award {
    border-top: 0;
    border-left: var(--hairline) solid var(--border);
  }

  .award {
    padding-inline: 1.5rem;
  }

  .lede__title,
  .statement h2,
  .practice__title,
  .cases__title,
  .why__title,
  .testimonials__title,
  .inquiry__title {
    font-size: 2.25rem;
  }

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

  .about__title,
  .call-today__title {
    font-size: 3rem;
  }

  .consult-card {
    padding: 2.5rem;
  }

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

  .footer__cta {
    flex-direction: row;
    align-items: center;
  }

  .footer__cta h2 {
    font-size: 2.25rem;
  }

  .footer__bottom-inner {
    flex-direction: row;
  }
}

/* --- 1024px and up (desktop) --------------------------------------------- */
@media (min-width: 64em) {

  /* Section rhythm stops tracking the viewport here so every desktop width
     gets identical spacing. */
  .section {
    padding-block: 6rem;
  }

  .header-contact {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-desktop {
    display: block;
  }

  /* The mobile panel stays closed on desktop even if it was left open. */
  .nav-mobile,
  .nav-mobile.is-open {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr 1.3fr;
  }

  .hero__portrait {
    justify-content: flex-end;
  }

  .practice__inner,
  .about__inner,
  .call-today__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .practice--reverse .practice__text {
    order: 2;
  }

  .practice--reverse .practice__media {
    order: 1;
  }

  .about__photo {
    margin-top: 8rem;
    align-self: start;
  }

  .about__body {
    padding-left: 1rem;
  }

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

  .why__grid {
    grid-column: span 2;
  }

  .testimonials__top {
    grid-template-columns: 0.9fr 1.1fr;
  }
}
/* ---------- Honeypot (anti-spam) — visually hidden, bots still fill it ---------- */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
