:root {
  --navy: #14243e;
  --navy-deep: #0c172b;
  --navy-soft: #1d3152;
  --gold: #c4a15a;
  --gold-bright: #ddc178;
  --paper: #f7f4ee;
  --paper-soft: #eee8dd;
  --white: #ffffff;
  --ink: #151922;
  --muted: #666d7b;
  --line: rgba(196, 161, 90, 0.32);
  --shadow: 0 28px 88px rgba(7, 15, 30, 0.28);
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: Georgia, Cambria, "Times New Roman", Times, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--paper) 0%, #ffffff 44%, var(--paper-soft) 100%);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: 100%;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 14px;
  background: rgba(12, 23, 43, 0.94);
  box-shadow: 0 14px 36px rgba(5, 10, 20, 0.26);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(300px, 27vw, 440px);
  height: auto;
  max-height: 96px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding-block: 8px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100svh;
  color: var(--white);
  background: var(--navy-deep);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 16, 31, 0.96) 0%, rgba(9, 18, 34, 0.9) 38%, rgba(9, 18, 34, 0.5) 64%, rgba(9, 18, 34, 0.72) 100%),
    linear-gradient(180deg, rgba(8, 16, 31, 0.22) 0%, rgba(8, 16, 31, 0.95) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/hero-law-office.png");
  background-position: center right;
  background-size: cover;
  transform: scale(1.02);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 164px 0 104px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(3.7rem, 9.6vw, 8.2rem);
  text-transform: uppercase;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.hero h1,
.section h2,
.about-lead,
.principle-intro strong,
.service-card h3,
.stat-toggle span,
.contact-card h2 {
  overflow-wrap: normal;
}

.hero-lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--gold);
  letter-spacing: 0.02em;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--navy-deep);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 16px 36px rgba(196, 161, 90, 0.22);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(78px, 10vw, 126px) 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.section h2 {
  color: var(--navy);
  font-size: clamp(2.25rem, 4.2vw, 4.6rem);
}

.section-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-copy p {
  margin: 0 0 18px;
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: start;
  padding: clamp(34px, 6vw, 68px);
  border: 1px solid rgba(20, 36, 62, 0.12);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(247, 244, 238, 0.86)),
    linear-gradient(135deg, rgba(196, 161, 90, 0.08), rgba(20, 36, 62, 0));
  box-shadow: 0 28px 80px rgba(20, 36, 62, 0.1);
}

.about-heading {
  position: sticky;
  top: 110px;
}

.about-heading h2 {
  max-width: 560px;
  font-size: clamp(2.55rem, 4vw, 4.2rem);
  line-height: 1.05;
}

.about-content {
  display: grid;
  gap: 28px;
  padding-top: 8px;
  color: var(--muted);
}

.about-lead {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.55vw, 1.55rem);
  line-height: 1.42;
}

.about-text {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1.01rem;
  line-height: 1.72;
}

.about-text p {
  margin: 0;
}

.about-text p:first-child {
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.66;
}

.about-toggle {
  display: none;
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(20, 36, 62, 0.14);
}

.about-columns p {
  margin: 0;
}

.about-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 8px;
  border-top: 1px solid rgba(196, 161, 90, 0.45);
  border-left: 1px solid rgba(196, 161, 90, 0.24);
}

.about-meta span {
  min-height: 86px;
  padding: 18px;
  border-right: 1px solid rgba(196, 161, 90, 0.24);
  border-bottom: 1px solid rgba(196, 161, 90, 0.24);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.principle-band {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 5vw, 70px);
  margin: clamp(44px, 7vw, 78px) 0 0;
  padding: clamp(30px, 5vw, 56px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(12, 23, 43, 0.98), rgba(20, 36, 62, 0.94)),
    url("assets/hero-law-office.png") center / cover;
  box-shadow: 0 24px 70px rgba(12, 23, 43, 0.2);
}

.principle-intro {
  display: grid;
  align-content: space-between;
  gap: 34px;
  min-height: 210px;
}

.principle-intro span {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.principle-intro strong {
  max-width: 560px;
  font-family: var(--font-heading);
  font-size: clamp(2.15rem, 3.2vw, 3.35rem);
  line-height: 1.06;
}

.principle-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(221, 193, 120, 0.42);
  border-left: 1px solid rgba(221, 193, 120, 0.22);
}

.principle-items div {
  min-height: 210px;
  padding: 24px;
  border-right: 1px solid rgba(221, 193, 120, 0.22);
  border-bottom: 1px solid rgba(221, 193, 120, 0.22);
  background: rgba(255, 255, 255, 0.035);
}

.principle-items small {
  color: var(--gold-bright);
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.principle-items b {
  display: block;
  margin-top: 42px;
  font-size: 1.05rem;
}

.principle-items p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.section-heading h2 {
  max-width: 680px;
}

.services .section-heading h2 {
  max-width: 740px;
  font-size: clamp(2.65rem, 4vw, 4.35rem);
  line-height: 1.06;
}

.services {
  width: 100%;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(247, 244, 238, 0.55), rgba(255, 255, 255, 0)),
    var(--white);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  z-index: 1;
  background: var(--navy);
  box-shadow: 0 22px 54px rgba(12, 23, 43, 0.18);
  transform: translateY(-4px);
}

.service-card:hover h3,
.service-card:hover p {
  color: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(20, 36, 62, 0.16);
  border-left: 1px solid rgba(20, 36, 62, 0.16);
}

.service-card {
  min-height: 248px;
  padding: 24px;
  border-right: 1px solid rgba(20, 36, 62, 0.16);
  border-bottom: 1px solid rgba(20, 36, 62, 0.16);
  background: var(--white);
}

.service-card span,
.approach-list strong,
.profile-stats strong {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}

.service-card h3 {
  margin: 34px 0 12px;
  color: var(--navy);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.approach {
  width: 100%;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  background: var(--navy);
}

.approach-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 7vw, 92px);
  color: var(--white);
}

.approach-card h2 {
  max-width: 480px;
  color: var(--white);
  font-size: clamp(2.65rem, 4vw, 4.35rem);
  line-height: 1.06;
}

.approach-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.approach-list div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.approach-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 8vw, 110px);
  align-items: center;
}

.profile-signature {
  padding-left: clamp(20px, 4vw, 56px);
  border-left: 4px solid var(--gold);
}

.profile-signature p:last-child {
  max-width: 570px;
  color: var(--muted);
}

.profile-stats {
  display: grid;
  gap: 16px;
}

.stat-item {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 34px rgba(12, 23, 43, 0.12);
}

.stat-toggle {
  display: grid;
  grid-template-columns: 72px 1fr 34px;
  gap: 18px;
  align-items: center;
  width: 100%;
  min-height: 92px;
  padding: 22px 28px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.stat-toggle strong {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.45rem;
}

.stat-toggle span {
  justify-self: end;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 850;
}

.stat-toggle i {
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(221, 193, 120, 0.48);
}

.stat-toggle i::before,
.stat-toggle i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  content: "";
  background: var(--gold-bright);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.stat-toggle i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.stat-item.is-open .stat-toggle i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.stat-panel {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 28px;
  color: rgba(255, 255, 255, 0.72);
  transition: grid-template-rows 220ms ease, padding 220ms ease;
}

.stat-panel p {
  overflow: hidden;
  max-width: 720px;
  margin: 0;
}

.stat-item.is-open .stat-panel {
  grid-template-rows: 1fr;
  padding: 0 28px 26px 118px;
}

.contact {
  width: 100%;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  background: var(--white);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(430px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 5vw, 76px);
  padding: clamp(34px, 6vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(12, 23, 43, 0.98), rgba(29, 49, 82, 0.94)),
    url("assets/hero-law-office.png") center / cover;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  max-width: none;
  color: var(--white);
  font-size: clamp(2.85rem, 4vw, 4.2rem);
  line-height: 1.02;
  text-wrap: nowrap;
}

.contact-card p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
}

.contact-content {
  display: grid;
  align-content: start;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid rgba(221, 193, 120, 0.38);
}

.detail-card {
  display: grid;
  gap: 8px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(221, 193, 120, 0.24);
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
}

.detail-card small {
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-card strong {
  overflow-wrap: anywhere;
  font-size: 0.98rem;
  line-height: 1.35;
}

.detail-address {
  grid-column: 1 / -1;
  min-height: 110px;
  background: linear-gradient(135deg, rgba(196, 161, 90, 0.14), rgba(255, 255, 255, 0.04));
}

.contact-map {
  grid-column: 1 / -1;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(221, 193, 120, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  filter: saturate(0.72) contrast(1.04);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(221, 193, 120, 0.38);
  border-radius: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-form input {
  min-height: 52px;
  padding: 0 14px;
}

.contact-form input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.contact-form input[data-phone-mask] {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(196, 161, 90, 0.14);
}

.email-field,
.message-field,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form button {
  justify-self: start;
  min-width: 180px;
  cursor: pointer;
}

.form-status {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--gold-bright);
  color: var(--white);
  background: rgba(221, 193, 120, 0.14);
  font-weight: 800;
}

.form-status[hidden] {
  display: none;
}

.form-status[data-type="error"] {
  border-left-color: #d98c8c;
  background: rgba(217, 140, 140, 0.14);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-deep);
}

.site-footer span {
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(12, 23, 43, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    visibility: hidden;
    opacity: 0;
    transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
  }

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

  .main-nav a {
    padding: 14px;
  }

  .hero-inner,
  .section-grid,
  .about-panel,
  .principle-band,
  .approach-card,
  .profile,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-inner {
    min-height: 82svh;
    align-items: center;
    padding: 142px 0 78px;
  }

  .about-heading {
    position: static;
  }

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


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

  .service-card {
    min-height: 220px;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: center;
    padding: 14px 16px;
  }

  .brand-logo {
    width: min(72vw, 280px);
    height: auto;
    max-height: 74px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(8, 16, 31, 0.94) 0%, rgba(8, 16, 31, 0.78) 42%, rgba(8, 16, 31, 0.38) 70%, rgba(8, 16, 31, 0.5) 100%),
      linear-gradient(180deg, rgba(8, 16, 31, 0.02) 0%, rgba(8, 16, 31, 0.62) 100%);
  }

  .hero-media {
    opacity: 1;
    background-position: 76% center;
  }

  .hero-inner {
    width: min(100% - 32px, 1180px);
    min-height: 82svh;
    align-items: center;
    padding: 132px 0 70px;
  }

  .hero-content {
    padding-top: 48px;
  }

  .intro.section {
    padding-top: 44px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.76rem;
    letter-spacing: 0.2em;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12.4vw, 4.45rem);
    line-height: 1.03;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 0.98rem;
  }

  .hero-actions {
    margin-top: 30px;
  }

  .section h2,
  .about-heading h2,
  .contact-card h2 {
    font-size: clamp(2.05rem, 10.5vw, 3.2rem);
    line-height: 1.06;
  }

  .about-lead,
  .principle-intro strong {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    width: min(100% - 32px, 1180px);
    padding: 52px 0;
  }

  .section-heading {
    display: block;
  }

  .about-panel {
    gap: 20px;
    padding: 26px 18px;
  }

  .about-content {
    gap: 18px;
    padding-top: 0;
  }

  .about-text {
    gap: 14px;
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .about-text p:first-child {
    font-size: 1rem;
    line-height: 1.58;
  }

  .about-text:not(.is-open) p:nth-child(n + 2) {
    display: none;
  }

  .about-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(196, 161, 90, 0.48);
    color: var(--navy);
    background: rgba(196, 161, 90, 0.08);
    font: inherit;
    font-size: 0.88rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .about-lead {
    font-size: clamp(1.18rem, 5.8vw, 1.62rem);
    line-height: 1.28;
  }

  .about-columns {
    gap: 12px;
    padding-top: 18px;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .about-meta span {
    min-height: auto;
    padding: 14px;
    font-size: 0.72rem;
  }

  .stat-toggle {
    grid-template-columns: 48px 1fr 30px;
    min-height: 78px;
    padding: 20px;
  }

  .stat-toggle span {
    justify-self: start;
  }

  .stat-item.is-open .stat-panel {
    padding: 0 20px 22px 20px;
  }

  .about-columns,
  .about-meta,
  .principle-items,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .principle-intro {
    min-height: auto;
  }

  .principle-items div {
    min-height: auto;
    padding: 20px;
  }

  .principle-items b {
    margin-top: 22px;
  }

  .service-card {
    min-height: auto;
    padding: 20px;
  }

  .service-card h3 {
    margin-top: 24px;
  }

  .approach {
    width: 100%;
    padding-inline: 16px;
  }

  .approach.section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .approach-card {
    gap: 24px;
    min-width: 0;
  }

  .approach-card h2 {
    max-width: 100%;
    font-size: clamp(1.95rem, 9.2vw, 2.8rem);
    overflow-wrap: normal;
  }

  .approach-list {
    min-width: 0;
  }

  .approach-list div {
    grid-template-columns: 1fr;
    gap: 8px;
    min-width: 0;
    padding: 20px 0;
  }

  .approach-list p {
    min-width: 0;
    max-width: 100%;
    font-size: 0.94rem;
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  .contact {
    width: 100%;
    padding: 0 16px;
    background: var(--navy-deep);
  }

  .contact.section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .contact-card {
    overflow: hidden;
    width: 100%;
    min-width: 0;
    padding: 30px 20px;
    box-shadow: none;
  }

  .contact-card h2 {
    max-width: 100%;
    text-wrap: balance;
    overflow-wrap: normal;
  }

  .contact-card p,
  .contact-content,
  .contact-form,
  .contact-form label {
    min-width: 0;
  }

  .contact-details {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .detail-card,
  .detail-address {
    min-height: auto;
  }

}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 680ms ease, transform 680ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal="from-left"] {
  transform: translate3d(-26px, 0, 0);
}

[data-reveal="from-right"] {
  transform: translate3d(26px, 0, 0);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 920px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body,
  main,
  .site-header,
  .hero,
  .services,
  .approach,
  .contact,
  .site-footer {
    max-width: 100%;
  }

  .hero,
  .services,
  .approach,
  .contact {
    overflow: hidden;
  }

  .hero-inner,
  .section {
    width: min(100% - 32px, 1180px);
    max-width: 100%;
  }

  .about-panel,
  .about-content,
  .about-columns,
  .about-meta,
  .principle-band,
  .principle-items,
  .service-grid,
  .service-card,
  .approach-card,
  .approach-list,
  .approach-list div,
  .profile,
  .profile-signature,
  .profile-stats,
  .contact-card,
  .contact-content,
  .contact-details,
  .detail-card,
  .contact-form,
  .contact-form label {
    min-width: 0;
    max-width: 100%;
  }

  .section h2,
  .about-heading h2,
  .about-lead,
  .principle-intro strong,
  .services .section-heading h2,
  .approach-card h2,
  .profile-signature h2,
  .contact-card h2,
  .service-card h3,
  .detail-card strong,
  .approach-list p,
  .service-card p,
  .contact-card p {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    text-wrap: balance;
  }

  .detail-card strong,
  .service-card p,
  .approach-list p,
  .contact-card p {
    display: block;
    white-space: normal;
  }

  .contact-card h2 {
    text-wrap: balance;
  }

  [data-reveal="from-left"],
  [data-reveal="from-right"] {
    transform: translate3d(0, 24px, 0);
  }
}

@media (max-width: 760px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section h2,
  .about-heading h2,
  .services .section-heading h2,
  .approach-card h2,
  .profile-signature h2,
  .contact-card h2 {
    font-size: clamp(1.9rem, 9.4vw, 3rem);
    line-height: 1.08;
  }

  .principle-intro strong {
    font-size: clamp(1.75rem, 8.2vw, 2.55rem);
    line-height: 1.1;
  }

  .about-lead {
    font-size: clamp(1.08rem, 5.2vw, 1.42rem);
    line-height: 1.36;
  }

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

  .site-header {
    gap: 12px;
  }

  .brand {
    flex: 1 1 auto;
  }

  .brand-logo {
    width: min(100%, 280px);
  }

  .menu-toggle {
    flex: 0 0 44px;
  }

  .button,
  .contact-form button {
    max-width: 100%;
  }
}

/* About read-more control */
.about-toggle {
  display: none !important;
}

@media (max-width: 620px) {
  .about-text:not(.is-open) p:nth-child(n + 2) {
    display: none;
  }

  .about-toggle {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    min-height: 48px;
    justify-self: start;
    padding: 0 18px;
    border: 1px solid rgba(196, 161, 90, 0.52);
    color: var(--navy);
    background:
      linear-gradient(135deg, rgba(221, 193, 120, 0.18), rgba(255, 255, 255, 0.68));
    box-shadow: 0 14px 32px rgba(20, 36, 62, 0.08);
    font: inherit;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  }

  .about-toggle::after {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "";
    transform: translateY(-2px) rotate(45deg);
    transition: transform 180ms ease;
  }

  .about-toggle[aria-expanded="true"]::after {
    transform: translateY(2px) rotate(225deg);
  }

  .about-toggle:hover {
    border-color: rgba(196, 161, 90, 0.78);
    background:
      linear-gradient(135deg, rgba(221, 193, 120, 0.26), rgba(255, 255, 255, 0.78));
    transform: translateY(-1px);
  }
}
