:root {
  --cream: #f2eee4;
  --paper: #fbf7ed;
  --paper-soft: #f3eadb;
  --ink: #101a22;
  --muted: #66717b;
  --navy: #07172b;
  --navy-2: #0d2540;
  --blue: #1f4f78;
  --teal: #0c5b62;
  --sage: #7f9a86;
  --gold: #c8a96a;
  --line: rgba(16, 26, 34, 0.14);
  --white-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 22px 60px rgba(7, 23, 43, 0.18);
  --radius: 18px;
  --max: 1180px;
  --sans: "Manrope", sans-serif;
  --serif: "Fraunces", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
main[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
  padding: 14px clamp(20px, 5vw, 76px);
  background: rgba(242, 238, 228, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(7, 23, 43, 0.28);
  background: linear-gradient(135deg, #0c2a43, #113e5c);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.brand__copy strong,
.brand__copy small {
  display: block;
}

.brand__copy strong {
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand__copy small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-top: 4px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.site-nav a {
  color: #152331;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.site-nav__button)::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 6px;
  background: var(--teal);
  transition: width 0.2s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.site-nav__button {
  background: #0f6fa7;
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(15, 111, 167, 0.26);
  color: #fff !important;
  padding: 13px 18px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  height: clamp(600px, calc(100svh - 92px), 880px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 122%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: translateX(8%);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(6, 20, 34, 0.97) 0%, rgba(7, 23, 43, 0.9) 34%, rgba(7, 23, 43, 0.48) 56%, rgba(7, 23, 43, 0.08) 84%),
    linear-gradient(180deg, rgba(7, 23, 43, 0.1), rgba(7, 23, 43, 0.5));
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 104px);
  padding: clamp(46px, 6vw, 78px) 0;
  color: white;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero h1,
h2 {
  font-family: var(--serif);
  font-weight: 750;
  letter-spacing: -0.055em;
}

.hero h1 {
  font-size: clamp(2.7rem, 4.65vw, 5.15rem);
  line-height: 0.9;
  margin: 0 0 18px;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.hero__rule {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.72);
  margin: 22px 0;
}

.hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.5vw, 1.26rem);
  line-height: 1.55;
  max-width: 48ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0 20px;
  text-decoration: none;
  text-transform: uppercase;
}

.button--primary {
  background: #0f6fa7;
  color: #fff;
  box-shadow: 0 14px 26px rgba(15, 111, 167, 0.26);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
}

.button--outline {
  border-color: rgba(15, 111, 167, 0.24);
  background: rgba(255, 255, 255, 0.68);
  color: var(--navy);
}

.section-pad {
  padding: clamp(68px, 9vw, 116px) 0;
}

.about {
  background:
    radial-gradient(circle at 12% 18%, rgba(31, 79, 120, 0.28), transparent 30%),
    linear-gradient(135deg, var(--navy-2) 0%, #0a1f38 52%, var(--navy) 100%);
  color: white;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: stretch;
}

.portrait-card {
  align-self: stretch;
  display: grid;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.portrait-card--placeholder {
  min-height: 100%;
  place-items: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 34% 24%, rgba(47, 132, 156, 0.3), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  text-align: center;
}

.portrait-card--placeholder div {
  display: grid;
  gap: 10px;
  width: 100%;
  min-height: 100%;
  place-content: center;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: calc(var(--radius) - 6px);
  padding: 28px;
}

.portrait-card--placeholder span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portrait-card--placeholder strong {
  color: white;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.05em;
}

.portrait-card--placeholder p {
  color: rgba(255, 255, 255, 0.64);
  margin: 0;
}

.portrait-card img {
  aspect-ratio: 4 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.about__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__copy h2,
.section-heading h2,
.approach__heading h2,
.booking h2,
.contact h2,
.legal-hero h1 {
  color: inherit;
  font-size: clamp(2.1rem, 4.8vw, 4.8rem);
  line-height: 0.98;
  margin: 0 0 22px;
}

.about__copy p,
.booking p,
.contact p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.78;
  max-width: 62ch;
}

.credential-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.credential-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.credential-list span {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), #2b89a2);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.22);
}

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

.section-heading {
  max-width: 770px;
  margin: 0 auto clamp(36px, 5vw, 58px);
  text-align: center;
}

.section-heading h2 {
  color: var(--navy);
}

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

.specialty-card {
  min-height: 270px;
  padding: 30px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.specialty-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.specialty-card__icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin: 0 auto 20px;
  border: 2px solid rgba(12, 91, 98, 0.26);
  border-radius: 999px;
  background: rgba(12, 91, 98, 0.08);
  color: var(--teal);
  font-family: var(--serif);
  font-size: 1.36rem;
  font-weight: 800;
}

.specialty-card h3,
.approach-grid h3,
.blog-card h3 {
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.2;
  margin: 0 0 12px;
}

.specialty-card p,
.approach-grid p,
.blog-card p,
.legal-doc p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

.approach {
  background:
    radial-gradient(circle at 88% 12%, rgba(31, 79, 120, 0.22), transparent 32%),
    linear-gradient(135deg, #0a1f38 0%, var(--navy-2) 60%, #061327 100%);
  color: white;
}

.approach__heading {
  max-width: 730px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.approach-grid article {
  padding: 30px;
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.approach-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(47, 132, 156, 0.2);
  color: var(--gold);
  font-weight: 800;
}

.approach-grid h3 {
  color: white;
}

.approach-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.principles {
  background: linear-gradient(135deg, #0b2a4c, #0d4770);
  color: white;
}

.carousel-shell {
  position: relative;
  display: grid;
  align-items: center;
}

.principles__viewport {
  overflow: hidden;
  padding: 6px;
}

.principles__track {
  display: flex;
  gap: 22px;
  will-change: transform;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.principle-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  transform: scale(0.985);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.principle-card:hover {
  transform: translateY(-6px) scale(1);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.principle-card span {
  color: rgba(255, 255, 255, 0.42);
  display: block;
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 0.5;
  margin: 20px 0 18px;
}

.principle-card p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.62;
}

.principle-card strong,
.principle-card small {
  display: block;
}

.principle-card strong {
  color: var(--paper-soft);
}

.principle-card small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 6px;
  text-transform: uppercase;
}

.carousel-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: white;
  cursor: pointer;
  font-size: 1.6rem;
  transform: translateY(-50%);
  transition: transform 0.18s ease, background 0.18s ease;
}

.carousel-button:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%) scale(1.08);
}

.carousel-button--prev {
  left: -10px;
}

.carousel-button--next {
  right: -10px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  padding: 0;
  transition: width 0.2s ease, background 0.2s ease;
}

.slider-dots button.is-active {
  width: 26px;
  background: white;
}

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

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 36px rgba(7, 23, 43, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(7, 23, 43, 0.14);
}

.blog-card > div:last-child {
  padding: 20px;
}

.blog-card__image {
  height: 170px;
  background:
    linear-gradient(135deg, rgba(7, 23, 43, 0.32), rgba(12, 91, 98, 0.2)),
    var(--navy);
}

.blog-card__image--one {
  background-image:
    linear-gradient(135deg, rgba(7, 23, 43, 0.34), rgba(12, 91, 98, 0.16)),
    url("wireframe-inspo/proffesional-library headshot.png");
  background-position: center 26%;
  background-size: cover;
}

.blog-card__image--two {
  background:
    radial-gradient(circle at 72% 26%, rgba(200, 169, 106, 0.45), transparent 24%),
    linear-gradient(135deg, #0b2a4c, #1f4f78);
}

.blog-card__image--three {
  background:
    radial-gradient(circle at 30% 35%, rgba(127, 154, 134, 0.54), transparent 28%),
    linear-gradient(135deg, #0c5b62, #152331);
}

.blog-card p {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-card a {
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.blog-more {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.booking {
  overflow: hidden;
  background: linear-gradient(135deg, #0d3a50, #0b5860);
  color: white;
}

.booking__grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.72fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
}

.booking__copy p {
  margin-bottom: 28px;
}

.calendar-card {
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.calendar-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.calendar-card button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--navy);
  font-size: 1.2rem;
}

.calendar-card__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
}

.calendar-card__days span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.calendar-card__days i {
  display: grid;
  min-height: 36px;
  place-items: center;
  border-radius: 999px;
  color: var(--muted);
  font-style: normal;
}

.calendar-card__days .is-active {
  background: var(--teal);
  color: white;
}

.calendar-card__note {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(7, 23, 43, 0.1);
  color: var(--muted) !important;
  font-size: 0.9rem;
  line-height: 1.62;
}

.contact {
  background: var(--navy);
  color: white;
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(32px, 7vw, 86px);
}

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

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

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font: inherit;
  padding: 15px 16px;
}

.form-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 12px !important;
}

.form-consent input {
  width: auto;
  margin-top: 4px;
}

.form-consent span {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6;
  text-transform: none;
}

.form-consent a {
  color: white;
}

.form-message {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  background:
    radial-gradient(circle at 82% 18%, rgba(15, 111, 167, 0.22), transparent 24rem),
    #06101f;
  color: rgba(255, 255, 255, 0.66);
  padding: 72px 0 32px;
}

.site-footer .wrap {
  width: min(1320px, calc(100% - 64px));
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  padding-bottom: 48px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.18s ease;
}

.site-footer a:hover {
  color: white;
}

.site-footer__brand {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.site-footer__brand .brand__mark {
  flex: 0 0 auto;
}

.site-footer__brand strong {
  color: white;
  display: block;
  font-size: 1rem;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.site-footer__brand p {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.7;
}

.site-footer__nav,
.site-footer__legal {
  display: grid;
  gap: 14px;
  padding-top: 6px;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  line-height: 1.6;
}

.site-footer__bottom p:last-child {
  max-width: 52ch;
  text-align: right;
}

.terms-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(7, 23, 43, 0.76);
  backdrop-filter: blur(16px);
}

.terms-gate__panel {
  width: min(640px, 100%);
  padding: clamp(28px, 5vw, 48px);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.terms-gate h2 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin: 0 0 18px;
}

.terms-gate p {
  color: var(--muted);
  line-height: 1.72;
}

.terms-gate__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.terms-gate__links a {
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
  padding: 10px 12px;
  text-decoration: none;
}

.terms-gate__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  line-height: 1.62;
  margin-bottom: 16px;
}

.terms-gate__check input {
  margin-top: 5px;
}

.terms-gate__error {
  color: #a43232 !important;
}

.legal-page {
  background: var(--paper);
}

.legal-page .site-header {
  position: relative;
}

.site-nav--simple {
  display: flex;
}

.legal-hero {
  padding: clamp(70px, 9vw, 120px) 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
}

.legal-hero h1 {
  max-width: 780px;
}

.legal-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.7;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: clamp(30px, 6vw, 80px);
  padding: clamp(58px, 8vw, 100px) 0;
}

.legal-index {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: 12px;
}

.legal-index a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.legal-doc {
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.legal-doc span {
  color: var(--teal);
  display: block;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.legal-doc h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.8rem);
  margin: 0 0 18px;
}

.page-hero {
  padding: clamp(72px, 9vw, 120px) 0 clamp(48px, 7vw, 84px);
  background:
    linear-gradient(135deg, rgba(7, 23, 43, 0.9), rgba(13, 37, 64, 0.86)),
    url("wireframe-inspo/horinzontal-version.png");
  background-position: center;
  background-size: cover;
  color: white;
}

.page-hero__inner {
  max-width: 820px;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 6rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
  margin: 0 0 20px;
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.72;
  max-width: 58ch;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.breadcrumb a {
  color: white;
}

.article-index {
  background: var(--paper);
}

.article-list {
  display: grid;
  gap: 22px;
}

.article-list-card {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 36px rgba(7, 23, 43, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.article-list-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(7, 23, 43, 0.14);
}

.article-list-card__media {
  min-height: 150px;
  border-radius: calc(var(--radius) - 6px);
  background:
    linear-gradient(135deg, rgba(7, 23, 43, 0.3), rgba(12, 91, 98, 0.18)),
    url("wireframe-inspo/proffesional-library headshot.png");
  background-position: center 24%;
  background-size: cover;
}

.article-list-card:nth-child(2) .article-list-card__media {
  background:
    radial-gradient(circle at 70% 26%, rgba(200, 169, 106, 0.45), transparent 24%),
    linear-gradient(135deg, #0b2a4c, #1f4f78);
}

.article-list-card:nth-child(3) .article-list-card__media {
  background:
    radial-gradient(circle at 30% 35%, rgba(127, 154, 134, 0.54), transparent 28%),
    linear-gradient(135deg, #0c5b62, #152331);
}

.article-list-card p {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.article-list-card h2 {
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1;
  margin: 0 0 10px;
}

.article-list-card small {
  color: var(--muted);
  display: block;
  line-height: 1.6;
}

.article-list-card .button {
  white-space: nowrap;
}

.article-page {
  background: var(--paper);
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(32px, 6vw, 80px);
  padding: clamp(56px, 8vw, 96px) 0;
}

.article-body {
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.article-body h2 {
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 3.4rem);
  line-height: 1;
  margin: 34px 0 14px;
}

.article-body p {
  color: #4f5c67;
  font-size: 1.02rem;
  line-height: 1.86;
}

.article-sidebar {
  position: sticky;
  top: 112px;
  align-self: start;
  display: grid;
  gap: 14px;
}

.article-sidebar__card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.article-sidebar__card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.related-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 111, 167, 0.06);
  text-decoration: none;
}

.related-card span {
  color: var(--teal);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.related-card strong {
  color: var(--navy);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  .site-nav {
    position: fixed;
    inset: 82px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border-radius: 18px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open,
  .site-nav--simple {
    display: flex;
  }

  .site-nav--simple {
    position: static;
    flex-direction: row;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .nav-toggle {
    display: block;
  }

  .about__grid,
  .booking__grid,
  .contact__grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

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

  .principle-card {
    flex-basis: calc((100% - 22px) / 2);
  }

  .article-list-card,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .legal-index {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 681px) and (max-width: 1180px) {
  .hero__image {
    width: 132%;
    transform: translateX(10%);
  }

  .hero__content {
    width: min(600px, calc(100% - 40px));
    margin-left: clamp(20px, 5vw, 64px);
    padding-block: 28px 36px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 4.25vw, 4.05rem);
  }

  .hero__rule {
    margin: 16px 0;
  }

  .hero p:not(.eyebrow) {
    line-height: 1.45;
  }

  .hero__actions {
    margin-top: 18px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 74px;
    padding-inline: 16px;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__copy strong {
    font-size: 0.8rem;
  }

  .brand__copy small {
    font-size: 0.62rem;
  }

  .hero {
    height: auto;
    min-height: calc(100svh - 106px);
    align-items: end;
  }

  .hero__image {
    width: 100%;
    object-position: 58% center;
    transform: none;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(7, 23, 43, 0.18), rgba(7, 23, 43, 0.95) 55%, rgba(7, 23, 43, 0.98)),
      linear-gradient(90deg, rgba(7, 23, 43, 0.55), rgba(7, 23, 43, 0.12));
  }

  .hero__content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10.4vw, 3.35rem);
    letter-spacing: -0.045em;
    line-height: 0.96;
  }

  .hero__actions,
  .site-footer__grid {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .specialty-grid,
  .approach-grid,
  .blog-grid,
  .legal-index {
    grid-template-columns: 1fr;
  }

  .principle-card {
    flex-basis: 100%;
  }

  .carousel-button {
    top: auto;
    bottom: -58px;
    transform: none;
  }

  .carousel-button:hover {
    transform: scale(1.08);
  }

  .carousel-button--prev {
    left: 0;
  }

  .carousel-button--next {
    right: 0;
  }

  .principles .slider-dots {
    margin-top: 48px;
  }

  .article-list-card {
    padding: 18px;
  }

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

  .site-footer__grid,
  .site-footer__bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__bottom p:last-child {
    text-align: left;
    max-width: none;
  }

  .site-footer a {
    display: block;
    margin: 10px 0 0;
  }
}
