/* ============================================
   Medico Legal Consultants
   Refined editorial corporate aesthetic
   ============================================ */

:root {
  /* Color */
  --navy: #0B1F3A;
  --navy-deep: #061229;
  --navy-soft: #16345C;
  --charcoal: #1F2329;
  --slate: #4A5567;
  --slate-soft: #7A8390;
  --teal: #1E8B8E;
  --teal-bright: #2FB4B7;
  --teal-dark: #14686A;
  --cream: #F4EFE5;
  --bone: #FBF9F3;
  --white: #FFFFFF;
  --hairline: #E2DCCD;
  --hairline-dark: rgba(11, 31, 58, 0.14);

  /* Typography */
  --font-serif: "Fraunces", "Times New Roman", serif;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(1.25rem, 3vw, 2rem);
  --section: clamp(4rem, 9vw, 7.5rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--bone);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
button { font: inherit; border: 0; background: transparent; cursor: pointer; color: inherit; }

::selection { background: var(--navy); color: var(--cream); }

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

/* ===== Type system ===== */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--teal-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--teal);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); line-height: 1.08; }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); line-height: 1.2; }

em { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--teal-dark); }

p { max-width: 62ch; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid transparent;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--navy);
  color: var(--bone);
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--hairline-dark);
}
.btn--ghost:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--bone);
}
.btn--teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}
.btn .arrow {
  display: inline-block;
  transition: transform .3s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ===== Top utility bar ===== */
.util-bar {
  background: var(--navy-deep);
  color: rgba(251, 249, 243, 0.7);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  padding: 0.65rem 0;
}
.util-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.util-bar a:hover { color: var(--teal-bright); }
.util-bar__location { display: inline-flex; align-items: center; gap: 0.5rem; }
.util-bar__location::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--teal-bright);
  border-radius: 50%;
  display: inline-block;
}
.util-bar__contacts { display: flex; gap: 1.5rem; }

/* ===== Header ===== */
.header {
  background: var(--navy);
  color: var(--bone);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--bone);
}
.logo__mark {
  width: 38px; height: 38px;
  color: var(--teal-bright);
  flex-shrink: 0;
}
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo__primary {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-variation-settings: "opsz" 144;
}
.logo__secondary {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-top: 0.35rem;
  color: rgba(251, 249, 243, 0.55);
}

.nav {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
.nav a {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(251, 249, 243, 0.78);
  position: relative;
  padding: 0.25rem 0;
}
.nav a:hover, .nav a.is-active {
  color: var(--bone);
}
.nav a.is-active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--teal-bright);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--bone);
  transition: all .3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  background: var(--bone);
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--hairline-dark) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  opacity: 0.35;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
}

.hero__content > .eyebrow { margin-bottom: 1.75rem; }

.hero__title {
  margin-bottom: 1.75rem;
}
.hero__title em {
  display: inline-block;
}

.hero__lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--slate);
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline-dark);
  max-width: 40rem;
}
.hero__meta-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.hero__meta-item span {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--slate);
  line-height: 1.4;
  display: block;
}

/* Hero visual — balance scale + medical glyph */
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 8% 12%;
  background: var(--cream);
  border: 1px solid var(--hairline);
  z-index: 0;
}
.hero__visual::after {
  content: "";
  position: absolute;
  inset: 16% 4% 4% 20%;
  background: var(--navy);
  z-index: 1;
}
.hero__visual svg {
  position: relative;
  z-index: 2;
  width: 75%;
  height: 75%;
  color: var(--cream);
}
.hero__visual-caption {
  position: absolute;
  bottom: 6%;
  left: 22%;
  z-index: 3;
  color: var(--cream);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  opacity: 0.7;
}

/* ===== Section base ===== */
.section {
  padding: var(--section) 0;
}
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: var(--bone); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--bone); }
.section--navy em { color: var(--teal-bright); }
.section--navy p { color: rgba(251, 249, 243, 0.78); }

.section__head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  align-items: end;
}
.section__head-side .eyebrow { margin-bottom: 1.25rem; }
.section__head-side h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); }
.section__head-main {
  font-size: clamp(1.1rem, 1.4vw, 1.2rem);
  color: var(--slate);
  line-height: 1.6;
}

/* ===== About section ===== */
.about {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.about__visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--navy);
  overflow: hidden;
}
.about__visual::before {
  content: "01";
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--teal-bright);
  letter-spacing: 0.1em;
  z-index: 2;
}
.about__visual-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 14px, rgba(47, 180, 183, 0.06) 14px, rgba(47, 180, 183, 0.06) 15px);
}
.about__visual svg {
  position: absolute;
  inset: 25% 20%;
  color: var(--teal-bright);
  opacity: 0.85;
}
.about__visual-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: var(--bone);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.4;
}
.about__visual-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--teal-bright);
  margin-bottom: 0.85rem;
}

.about__content h2 { margin-bottom: 1.5rem; }
.about__content .eyebrow { margin-bottom: 1.5rem; }
.about__content p {
  margin-bottom: 1.25rem;
  font-size: 1.04rem;
  color: var(--slate);
}
.about__content p:first-of-type {
  font-size: 1.2rem;
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 1.75rem;
  font-variation-settings: "opsz" 144;
}
.about__list {
  list-style: none;
  margin-top: 2rem;
  border-top: 1px solid var(--hairline-dark);
}
.about__list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--hairline-dark);
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.95rem;
}
.about__list li::before {
  content: "—";
  color: var(--teal);
  font-weight: 500;
  flex-shrink: 0;
}

/* ===== Services grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--hairline-dark);
  border-left: 1px solid var(--hairline-dark);
}
.service-card {
  padding: clamp(2rem, 3.5vw, 3rem);
  border-right: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
  background: var(--bone);
  position: relative;
  transition: background .3s ease;
}
.service-card:hover {
  background: var(--cream);
}
.service-card:hover .service-card__icon {
  color: var(--teal);
  transform: translateY(-2px);
}
.service-card__num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--teal-dark);
  letter-spacing: 0.1em;
  font-style: italic;
  margin-bottom: 1.5rem;
  display: inline-block;
}
.service-card__icon {
  width: 44px; height: 44px;
  color: var(--navy);
  margin-bottom: 1.5rem;
  transition: all .3s ease;
}
.service-card h3 {
  margin-bottom: 0.85rem;
  font-size: 1.55rem;
}
.service-card p {
  color: var(--slate);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* On navy bg variant */
.section--navy .services-grid {
  border-top-color: rgba(255,255,255,0.1);
  border-left-color: rgba(255,255,255,0.1);
}
.section--navy .service-card {
  background: transparent;
  border-right-color: rgba(255,255,255,0.1);
  border-bottom-color: rgba(255,255,255,0.1);
}
.section--navy .service-card:hover { background: rgba(47, 180, 183, 0.05); }
.section--navy .service-card__icon { color: var(--teal-bright); }
.section--navy .service-card p { color: rgba(251, 249, 243, 0.72); }

/* ===== Why choose us — split list ===== */
.reasons {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
}
.reasons__intro h2 { margin-bottom: 1.5rem; }
.reasons__intro p { color: var(--slate); font-size: 1.04rem; margin-bottom: 2rem; }

.reasons__list {
  list-style: none;
  border-top: 1px solid var(--hairline-dark);
}
.reason {
  padding: 2rem 0;
  border-bottom: 1px solid var(--hairline-dark);
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 1.5rem;
  align-items: start;
  transition: padding-left .3s ease;
}
.reason:hover { padding-left: 1rem; }
.reason__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--teal);
  font-variation-settings: "opsz" 144;
}
.reason__body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.reason__body p {
  font-size: 0.95rem;
  color: var(--slate);
  margin: 0;
}
.reason__icon {
  width: 28px; height: 28px;
  color: var(--navy);
  opacity: 0.65;
}

/* ===== Quote / pull section ===== */
.pull {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--navy);
  color: var(--bone);
  overflow: hidden;
}
.pull::before {
  content: "“";
  position: absolute;
  top: -3rem;
  right: 5%;
  font-family: var(--font-serif);
  font-size: 22rem;
  color: var(--teal-bright);
  opacity: 0.08;
  line-height: 1;
}
.pull__inner {
  max-width: 60rem;
  position: relative;
  z-index: 1;
}
.pull blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.3;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  color: var(--bone);
}
.pull blockquote em { color: var(--teal-bright); }
.pull__attribution {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(251, 249, 243, 0.6);
}
.pull__attribution::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--teal-bright);
  margin-right: 0.85rem;
  vertical-align: middle;
}

/* ===== CTA band ===== */
.cta-band {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.85rem;
}
.cta-band p {
  font-size: 1.05rem;
  color: var(--slate);
}
.cta-band__action {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}
.cta-band__action small {
  font-size: 0.82rem;
  color: var(--slate);
  letter-spacing: 0.04em;
}

/* ===== Contact ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info p {
  color: var(--slate);
  margin-bottom: 2.5rem;
  font-size: 1.04rem;
}
.contact-detail {
  padding: 1.5rem 0;
  border-top: 1px solid var(--hairline-dark);
}
.contact-detail:last-child { border-bottom: 1px solid var(--hairline-dark); }
.contact-detail__label {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
  display: block;
}
.contact-detail__value {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.4;
}
.contact-detail__value a:hover { color: var(--teal); }

.contact-form {
  background: var(--white);
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--hairline);
}
.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.contact-form > p {
  color: var(--slate);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-group label .req { color: var(--teal); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--charcoal);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  transition: border-color .25s ease;
  border-radius: 0;
}
.form-group select { padding: 0.85rem 0; cursor: pointer; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 0;
  border-bottom-color: var(--teal);
}
.form-group textarea {
  min-height: 110px;
  resize: vertical;
  font-family: var(--font-sans);
}
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
}
.form-actions small {
  color: var(--slate);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.form-success,
.form-error {
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.form-success {
  background: rgba(30, 139, 142, 0.08);
  border-left: 3px solid var(--teal);
  color: var(--teal-dark);
}
.form-error {
  background: rgba(176, 50, 50, 0.06);
  border-left: 3px solid #b03232;
  color: #8a2424;
}

/* Honeypot — visually hidden, but available to bots */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Consent checkbox */
.consent {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 0;
  margin-top: 0.5rem;
}
.consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--teal);
  cursor: pointer;
}
.consent label {
  font-size: 0.86rem;
  color: var(--slate);
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  cursor: pointer;
  margin: 0;
}
.consent label a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent label a:hover { color: var(--teal); }

/* ===== Page header (inner pages) ===== */
.page-head {
  background: var(--navy);
  color: var(--bone);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3.5rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(47, 180, 183, 0.1);
  border-radius: 50%;
}
.page-head::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(47, 180, 183, 0.08);
  border-radius: 50%;
}
.page-head__inner {
  position: relative;
  z-index: 1;
  max-width: 50rem;
}
.page-head .eyebrow { color: var(--teal-bright); margin-bottom: 1.5rem; }
.page-head .eyebrow::before { background: var(--teal-bright); }
.page-head h1 { color: var(--bone); margin-bottom: 1.25rem; }
.page-head__lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(251, 249, 243, 0.78);
  max-width: 38rem;
  line-height: 1.55;
}
.crumbs {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251, 249, 243, 0.55);
  margin-bottom: 2rem;
}
.crumbs a:hover { color: var(--teal-bright); }
.crumbs span { color: var(--teal-bright); margin: 0 0.5rem; }

/* ===== Detail service rows (services page) ===== */
.service-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  border-bottom: 1px solid var(--hairline-dark);
  align-items: start;
}
.service-row:last-child { border-bottom: 0; }
.service-row__index {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--teal-dark);
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  display: block;
}
.service-row__icon {
  width: 52px; height: 52px;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.service-row h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  margin-bottom: 1rem;
}
.service-row h2 em { font-style: italic; color: var(--teal-dark); }
.service-row__body p {
  margin-bottom: 1rem;
  color: var(--slate);
  font-size: 1.02rem;
}
.service-row__features {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.5rem;
}
.service-row__features li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.93rem;
  color: var(--charcoal);
}
.service-row__features li::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--teal);
  display: inline-block;
  flex-shrink: 0;
}

/* ===== About page sections ===== */
.about-narrative {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.about-narrative__side {
  position: sticky;
  top: 100px;
}
.about-narrative__side .eyebrow { margin-bottom: 1rem; }
.about-narrative__side h2 { font-size: 2rem; }
.about-narrative__body p {
  font-size: 1.05rem;
  color: var(--slate);
  margin-bottom: 1.25rem;
  max-width: 38rem;
}
.about-narrative__body p:first-child {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--charcoal);
  line-height: 1.45;
  margin-bottom: 2rem;
  font-variation-settings: "opsz" 144;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline-dark);
  border: 1px solid var(--hairline-dark);
  margin-top: 4rem;
}
.principle {
  padding: 2rem;
  background: var(--bone);
}
.principle__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--teal);
  font-variation-settings: "opsz" 144;
  display: block;
  margin-bottom: 0.5rem;
}
.principle h3 { font-size: 1.15rem; margin-bottom: 0.5rem; font-weight: 500; }
.principle p { font-size: 0.92rem; color: var(--slate); }

/* ===== Footer ===== */
.footer {
  background: var(--navy-deep);
  color: rgba(251, 249, 243, 0.72);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__brand .logo { color: var(--bone); margin-bottom: 1.25rem; }
.footer__brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(251, 249, 243, 0.55);
  max-width: 22rem;
}
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer__col a {
  font-size: 0.92rem;
  color: rgba(251, 249, 243, 0.7);
}
.footer__col a:hover { color: var(--teal-bright); }
.footer__col p {
  font-size: 0.92rem;
  color: rgba(251, 249, 243, 0.7);
  margin-bottom: 0.4rem;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(251, 249, 243, 0.45);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__legal { display: flex; gap: 1.5rem; }

/* ===== Reveal animations ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .4s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 380px; margin: 2rem auto 0; }
  .about { grid-template-columns: 1fr; }
  .about__visual { max-width: 480px; aspect-ratio: 4/3.5; }
  .reasons { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-narrative { grid-template-columns: 1fr; }
  .about-narrative__side { position: static; }
  .section__head { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; }
  .principles { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .util-bar { font-size: 0.72rem; }
  .util-bar__inner { justify-content: center; text-align: center; }
  .util-bar__contacts { gap: 1rem; }

  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-deep);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    transform: translateY(-100%);
    transition: transform .4s cubic-bezier(.2,.7,.2,1);
    z-index: 99;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { font-size: 1.1rem; }
  .header .btn { display: none; }

  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .hero__meta { grid-template-columns: 1fr; gap: 1.25rem; }

  .services-grid { grid-template-columns: 1fr; }
  .reason { grid-template-columns: 40px 1fr; }
  .reason__icon { display: none; }

  .cta-band__inner { grid-template-columns: 1fr; text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions small { text-align: center; }

  .footer__main { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

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