:root {
  --ink: #17313f;
  --ink-soft: #51636d;
  --blue: #1f4e79;
  --teal: #126a7b;
  --teal-dark: #0c5260;
  --teal-pale: #e7f2f3;
  --paper: #ffffff;
  --mist: #f4f7f7;
  --line: #dce5e7;
  --warm: #eff1ed;
  --shadow: 0 24px 70px rgba(23, 49, 63, 0.12);
  --radius: 20px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #f0aa3c;
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 7.4vw, 5.35rem);
  font-weight: 660;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 5vw, 3.55rem);
  font-weight: 640;
}

h3 {
  font-size: 1.24rem;
  font-weight: 650;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #9fd4d9;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--teal);
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.button--small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.87rem;
}

.button--secondary {
  background: transparent;
  color: var(--teal);
}

.button--secondary:hover {
  color: #fff;
}

.button--light {
  border-color: #fff;
  background: #fff;
  color: var(--teal-dark);
}

.button--light:hover {
  border-color: #dff1f3;
  background: #dff1f3;
  color: var(--teal-dark);
}

.button-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(23, 49, 63, 0.05);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(18, 106, 123, 0.26);
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-weight: 760;
  letter-spacing: -0.08em;
}

.brand-mark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark-fallback {
  transform: translateX(-1px);
}

.image-frame img[data-image] {
  opacity: 0;
}

.image-frame.has-image img[data-image] {
  opacity: 1;
}

.image-frame.has-image .brand-mark-fallback,
.image-frame.has-image .portrait-fallback {
  visibility: hidden;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.18;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.menu-toggle {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  inset: 78px 0 auto;
  display: none;
  max-height: calc(100vh - 78px);
  padding: 24px 20px 32px;
  overflow-y: auto;
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.main-nav.is-open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}

.main-nav > a:not(.button) {
  padding: 13px 4px;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 600;
  text-decoration: none;
}

.main-nav .button {
  margin-top: 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 0;
  background: linear-gradient(145deg, #f8faf9 0%, #fff 58%, #e9f2f2 100%);
}

.hero::before {
  position: absolute;
  top: -180px;
  right: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(18, 106, 123, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 48px;
}

.hero-copy {
  align-self: center;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2.4vw, 1.28rem);
  line-height: 1.65;
}

.portrait,
.review-portrait {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 150px 150px 18px 18px;
  background: linear-gradient(145deg, #dce9e8, #bcd4d5);
  box-shadow: var(--shadow);
}

.portrait img,
.review-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.portrait-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background:
    radial-gradient(circle at 68% 22%, rgba(255, 255, 255, 0.55) 0 7%, transparent 7.5%),
    linear-gradient(155deg, #e5efee, #afcbcd);
  color: rgba(12, 82, 96, 0.8);
}

.portrait-fallback::before,
.portrait-fallback::after {
  position: absolute;
  border: 1px solid rgba(18, 106, 123, 0.15);
  border-radius: 50%;
  content: "";
}

.portrait-fallback::before {
  width: 310px;
  height: 310px;
}

.portrait-fallback::after {
  width: 245px;
  height: 245px;
}

.portrait-fallback span {
  z-index: 1;
  font-size: 5rem;
  font-weight: 650;
  letter-spacing: -0.09em;
}

.portrait-fallback small {
  z-index: 1;
  margin-top: 8px;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-list {
  display: grid;
  padding-block: 18px;
  gap: 8px;
}

.trust-list p {
  display: flex;
  align-items: center;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 650;
}

.trust-list p span {
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-pale);
}

.section {
  padding: 88px 0;
}

.section--tint {
  background: var(--mist);
}

.split-layout,
.work-grid,
.office-grid {
  display: grid;
  gap: 42px;
}

.prose {
  max-width: 720px;
}

.large-text {
  margin-bottom: 40px;
  color: #354c58;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.prose h3 {
  margin-bottom: 18px;
}

.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 15px 0 15px 34px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.check-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  position: absolute;
  top: 21px;
  left: 4px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid var(--teal);
  border-left: 2px solid var(--teal);
  content: "";
  transform: rotate(-45deg);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 46px;
}

.section-heading > p:last-child {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.care-grid {
  display: grid;
  gap: 14px;
}

.care-card {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.care-card:hover {
  border-color: rgba(18, 106, 123, 0.35);
  box-shadow: 0 18px 44px rgba(23, 49, 63, 0.07);
  transform: translateY(-2px);
}

.card-number {
  display: block;
  margin-bottom: 40px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.care-card h3 {
  margin-bottom: 12px;
}

.care-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.58;
}

.work-section {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: #fff;
}

.work-section::after {
  position: absolute;
  right: -220px;
  bottom: -260px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.work-grid {
  position: relative;
  z-index: 1;
}

.work-intro h2 {
  max-width: 570px;
}

.work-copy > p {
  margin-bottom: 34px;
  color: #d5e1e9;
  font-size: 1.1rem;
}

.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  grid-template-columns: 44px 1fr;
  gap: 14px;
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.process-list li > span {
  color: #9fd4d9;
  font-size: 0.75rem;
  font-weight: 750;
}

.process-list strong {
  display: block;
  margin-bottom: 3px;
}

.process-list p {
  margin: 0;
  color: #c8d8e2;
  font-size: 0.92rem;
}

.office-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--mist);
}

.office-card address {
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-style: normal;
}

.office-phone {
  display: flex;
  padding: 20px 0;
  margin-bottom: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  gap: 4px;
}

.office-phone span {
  color: var(--ink-soft);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.office-phone a {
  width: fit-content;
  color: var(--teal-dark);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.office-note {
  align-self: center;
}

.office-note > div {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.office-note > div:last-child {
  border-bottom: 1px solid var(--line);
}

.office-note strong {
  font-size: 1.16rem;
}

.office-note p {
  margin: 6px 0 0;
  color: var(--ink-soft);
}

.review-callout {
  padding: 72px 0;
  background: var(--teal);
  color: #fff;
}

.review-inner {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 28px;
}

.review-inner h2 {
  max-width: 670px;
  margin-bottom: 0;
}

.site-footer {
  padding: 66px 0 28px;
  background: #132e3b;
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 36px;
}

.brand--footer {
  color: #fff;
}

.brand-mark--footer {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.brand--footer .brand-copy span {
  color: #b7c8d1;
}

.registration {
  margin: 16px 0 0 58px;
  color: #aebfc8;
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #e7eef1;
  text-decoration-color: rgba(255, 255, 255, 0.3);
}

.footer-links a:hover {
  color: #fff;
  text-decoration-color: #fff;
}

.footer-bottom {
  display: grid;
  padding-top: 28px;
  margin-top: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #aebfc8;
  font-size: 0.78rem;
  gap: 12px;
}

.footer-bottom p {
  max-width: 800px;
  margin-bottom: 0;
}

/* Review page */
.review-page {
  display: flex;
  min-height: 100vh;
  background: var(--mist);
  flex-direction: column;
}

.review-header {
  padding: 22px 0;
}

.review-main {
  display: flex;
  flex: 1;
  align-items: center;
  padding: 34px 0 70px;
}

.review-grid {
  display: grid;
  align-items: center;
  gap: 42px;
}

.review-portrait {
  min-height: 380px;
  box-shadow: 0 20px 55px rgba(23, 49, 63, 0.12);
}

.review-content h1 {
  max-width: 670px;
  font-size: clamp(2.5rem, 7vw, 4.8rem);
}

.review-content > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.review-button {
  width: 100%;
}

.back-link {
  display: block;
  width: fit-content;
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-decoration-color: var(--line);
}

.review-footer {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.review-footer .container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 4px;
}

.review-footer p {
  margin: 0;
}

/* 404 */
.error-page {
  display: grid;
  min-height: 100vh;
  padding: 32px 0;
  background: linear-gradient(145deg, #f6f9f8, #e8f1f1);
  place-items: center;
}

.error-card {
  width: min(calc(100% - 40px), 700px);
  padding: 48px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.error-code {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.error-card p:not(.error-code) {
  max-width: 470px;
  margin: 0 auto 28px;
  color: var(--ink-soft);
}

@media (min-width: 540px) {
  .button-row {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .trust-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .trust-list p:nth-child(2) {
    justify-content: center;
  }

  .trust-list p:nth-child(3) {
    justify-content: flex-end;
  }

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

  .review-button {
    width: auto;
  }

  .review-footer .container {
    flex-direction: row;
  }
}

@media (min-width: 800px) {
  .container {
    width: min(calc(100% - 64px), var(--container));
  }

  .section {
    padding: 120px 0;
  }

  .hero {
    padding-top: 88px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 54px;
  }

  .portrait {
    min-height: 620px;
  }

  .split-layout {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 80px;
  }

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

  .work-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 100px;
  }

  .office-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 80px;
  }

  .office-card {
    padding: 52px;
  }

  .review-inner {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }

  .footer-grid {
    align-items: flex-start;
    grid-template-columns: 1fr auto;
  }

  .footer-links {
    flex-direction: row;
    gap: 28px;
  }

  .footer-bottom {
    align-items: end;
    grid-template-columns: 1fr auto;
  }

  .review-grid {
    grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
    gap: clamp(60px, 9vw, 120px);
  }

  .review-portrait {
    min-height: 570px;
  }
}

@media (min-width: 1020px) {
  .header-inner {
    min-height: 88px;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav,
  .main-nav.is-open {
    position: static;
    display: flex;
    max-height: none;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
    align-items: center;
    flex-direction: row;
    gap: 24px;
  }

  .main-nav > a:not(.button) {
    padding: 10px 0;
    font-size: 0.86rem;
  }

  .main-nav .button {
    margin: 0 0 0 4px;
  }

  .hero-grid {
    min-height: 680px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .button,
  .review-callout,
  .site-footer {
    display: none;
  }

  body {
    color: #000;
  }

  .section {
    padding: 30px 0;
  }
}

/* Refined visual direction — editorial, clinical and quietly expressive */
:root {
  --ink: #132f3a;
  --ink-deep: #0b2632;
  --ink-soft: #54676d;
  --blue: #1f4e79;
  --teal: #0f6673;
  --teal-dark: #094c57;
  --teal-pale: #e6f0ee;
  --paper: #fffefa;
  --cream: #f4f0e8;
  --mist: #f2f6f4;
  --line: #d8e1de;
  --warm: #c09a63;
  --warm-pale: #eee2cf;
  --shadow: 0 28px 80px rgba(13, 48, 57, 0.13);
  --shadow-soft: 0 16px 50px rgba(13, 48, 57, 0.08);
  --radius: 26px;
  --container: 1200px;
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: -0.006em;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.045em;
}

h3 {
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3rem, 7.3vw, 6rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.6rem, 5.7vw, 4.7rem);
  line-height: 1.02;
}

.container {
  width: min(calc(100% - 36px), var(--container));
}

.eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.19em;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  margin-right: 12px;
  background: currentColor;
  content: "";
}

.section-index {
  display: block;
  margin-bottom: 22px;
  color: var(--warm);
  font-family: var(--display);
  font-size: 0.9rem;
  font-style: italic;
}

.section-index--light {
  color: #d9c097;
}

.button {
  min-height: 56px;
  padding: 15px 24px;
  border-color: var(--teal-dark);
  background: var(--teal-dark);
  box-shadow: 0 10px 28px rgba(9, 76, 87, 0.16);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.button::after {
  margin-left: 12px;
  content: "↗";
  font-size: 1rem;
  font-weight: 400;
  transition: transform 160ms ease;
}

.button:hover::after {
  transform: translate(2px, -2px);
}

.button--secondary {
  border-color: rgba(9, 76, 87, 0.3);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: none;
}

.button--secondary::after,
.button--light::after {
  content: "→";
}

.button--secondary:hover::after,
.button--light:hover::after {
  transform: translateX(3px);
}

.button--small {
  min-height: 45px;
  padding: 11px 18px;
  box-shadow: none;
}

.button--small::after {
  margin-left: 8px;
}

.site-header {
  border-color: rgba(18, 57, 67, 0.07);
  background: rgba(255, 254, 250, 0.88);
  backdrop-filter: blur(18px) saturate(1.2);
}

.site-header.is-scrolled {
  border-color: rgba(18, 57, 67, 0.12);
  box-shadow: 0 14px 50px rgba(16, 47, 57, 0.06);
}

.header-inner {
  min-height: 82px;
}

.brand {
  gap: 13px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px 16px 16px 4px;
  background: var(--ink-deep);
  color: #fff;
  box-shadow: 0 8px 22px rgba(11, 38, 50, 0.17);
  font-family: var(--display);
  font-size: 1.06rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.brand-copy span {
  margin-top: 3px;
  color: #66787e;
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.13em;
}

.menu-toggle {
  border: 0;
  background: var(--cream);
}

.main-nav > a:not(.button) {
  position: relative;
  color: #29434c;
  font-size: 0.82rem;
  font-weight: 620;
}

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

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  min-height: calc(100vh - 82px);
  padding: 52px 0 92px;
  background:
    radial-gradient(circle at 82% 18%, rgba(183, 213, 206, 0.45), transparent 27%),
    radial-gradient(circle at 3% 82%, rgba(229, 211, 181, 0.33), transparent 25%),
    linear-gradient(135deg, #faf8f2 0%, #f5f7f3 52%, #e7f0ed 100%);
}

.hero::before {
  top: 5%;
  right: -180px;
  width: 660px;
  height: 660px;
  border-color: rgba(15, 102, 115, 0.1);
}

.hero::after {
  position: absolute;
  top: 17%;
  right: -80px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(15, 102, 115, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  z-index: 1;
  gap: 58px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 830px;
  margin-bottom: 28px;
  color: var(--ink-deep);
}

.hero-accent {
  color: var(--teal);
  font-style: italic;
  white-space: normal;
}

.hero-lead {
  max-width: 710px;
  margin-bottom: 34px;
  color: #4d636a;
  font-size: clamp(1.04rem, 1.8vw, 1.24rem);
  line-height: 1.72;
}

.hero-registration {
  display: flex;
  align-items: center;
  margin: 28px 0 0;
  color: #687a7f;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 9px;
}

.portrait,
.review-portrait {
  min-height: 500px;
  overflow: visible;
  border: 8px solid rgba(255, 255, 255, 0.6);
  border-radius: 220px 220px 28px 28px;
  background: #c8dcda;
  box-shadow: 0 35px 100px rgba(17, 58, 66, 0.19);
  isolation: isolate;
}

.portrait::after,
.review-portrait::after {
  position: absolute;
  z-index: -1;
  right: -22px;
  bottom: -22px;
  width: 68%;
  height: 58%;
  border: 1px solid rgba(15, 102, 115, 0.25);
  border-radius: 0 0 28px 0;
  content: "";
}

.portrait img,
.review-portrait img,
.portrait-fallback {
  border-radius: inherit;
}

.portrait img,
.review-portrait img {
  box-shadow: 0 16px 38px rgba(13, 48, 57, 0.13);
  transform: scale(0.92);
}

.portrait-halo {
  position: absolute;
  z-index: -1;
  top: -38px;
  left: -42px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(192, 154, 99, 0.42);
  border-radius: 50%;
}

.portrait-halo::after {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(192, 154, 99, 0.27);
  border-radius: 50%;
  content: "";
}

.portrait-fallback {
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 17%, rgba(255, 255, 255, 0.65), transparent 17%),
    linear-gradient(150deg, #e5eeea 2%, #b7d0cd 62%, #95b7b6 100%);
}

.portrait-fallback::before {
  width: 360px;
  height: 360px;
  border-color: rgba(255, 255, 255, 0.48);
}

.portrait-fallback::after {
  width: 265px;
  height: 265px;
  border-color: rgba(15, 102, 115, 0.16);
}

.portrait-fallback span {
  font-family: var(--display);
  font-size: 6.4rem;
  font-style: italic;
  font-weight: 400;
}

.portrait-note {
  position: absolute;
  z-index: 5;
  right: -12px;
  bottom: 26px;
  display: flex;
  min-width: 215px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 16px 16px 5px 16px;
  background: rgba(255, 254, 250, 0.92);
  box-shadow: 0 18px 50px rgba(13, 48, 57, 0.15);
  backdrop-filter: blur(14px);
  flex-direction: column;
}

.portrait-note span {
  margin-bottom: 3px;
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.portrait-note strong {
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -45px;
  border: 0;
  background: transparent;
}

.trust-list {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(20, 70, 78, 0.1);
  border-radius: 22px;
  background: rgba(255, 254, 250, 0.96);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.trust-list p {
  display: grid;
  min-height: 92px;
  padding: 20px 24px;
  margin: 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  gap: 0 12px;
}

.trust-list p:last-child {
  border-bottom: 0;
}

.trust-list p > span {
  width: auto;
  height: auto;
  margin: 2px 0 0;
  background: none;
  box-shadow: none;
  color: var(--warm);
  font-family: var(--display);
  font-size: 0.78rem;
  font-style: italic;
  grid-row: 1 / 3;
}

.trust-list strong {
  color: var(--ink-deep);
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.trust-list small {
  color: #728187;
  font-size: 0.77rem;
}

.section {
  padding: 110px 0;
}

.split-layout {
  align-items: start;
}

.section-title-block h2 {
  max-width: 520px;
}

.large-text {
  position: relative;
  margin-bottom: 48px;
  color: #324d56;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.52;
  letter-spacing: -0.023em;
}

.large-text::before {
  position: absolute;
  top: 10px;
  bottom: 8px;
  left: -26px;
  width: 2px;
  background: linear-gradient(var(--warm), transparent);
  content: "";
}

.prose h3 {
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.check-list li {
  padding: 20px 16px 20px 42px;
  color: #50666d;
  transition: background-color 160ms ease, padding-left 160ms ease;
}

.check-list li:hover {
  padding-left: 46px;
  background: rgba(230, 240, 238, 0.65);
}

.check-list li::before {
  top: 28px;
  left: 10px;
}

.section--tint {
  position: relative;
  overflow: hidden;
  background: #edf3f1;
}

.section--tint::before {
  position: absolute;
  top: -240px;
  left: -230px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(15, 102, 115, 0.08);
  border-radius: 50%;
  content: "";
}

.section-heading {
  position: relative;
  max-width: 830px;
  margin-bottom: 58px;
}

.section-heading > p:last-child {
  max-width: 620px;
  color: #5a6e74;
}

.care-grid {
  position: relative;
  gap: 16px;
}

.care-card {
  position: relative;
  min-height: 285px;
  padding: 30px;
  overflow: hidden;
  border-color: rgba(16, 72, 81, 0.1);
  border-radius: 24px;
  background: rgba(255, 254, 250, 0.9);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.care-card::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(15, 102, 115, 0.11);
  border-radius: 50%;
  content: "";
  transition: transform 350ms ease;
}

.care-card:hover {
  border-color: rgba(15, 102, 115, 0.22);
  box-shadow: 0 25px 60px rgba(13, 48, 57, 0.1);
  transform: translateY(-5px);
}

.care-card:hover::after {
  transform: scale(1.25);
}

.card-number {
  width: fit-content;
  padding-bottom: 8px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--warm);
  color: var(--warm);
  font-family: var(--display);
  font-size: 0.84rem;
  font-style: italic;
  font-weight: 500;
}

.care-card h3 {
  max-width: 250px;
  margin-bottom: 14px;
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: 1.42rem;
  font-weight: 600;
  line-height: 1.15;
}

.care-card p {
  position: relative;
  z-index: 1;
  color: #5a6d73;
  line-height: 1.65;
}

.work-section {
  padding: 130px 0;
  background:
    radial-gradient(circle at 10% 110%, rgba(15, 102, 115, 0.65), transparent 35%),
    linear-gradient(130deg, #0b2632 0%, #173d4b 100%);
}

.work-section::before {
  position: absolute;
  top: 60px;
  left: 7%;
  width: 1px;
  height: calc(100% - 120px);
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.2), transparent);
  content: "";
}

.work-section::after {
  right: -170px;
  bottom: -340px;
  width: 720px;
  height: 720px;
}

.work-intro h2 {
  max-width: 630px;
  color: #fffdfa;
}

.work-copy > p {
  color: #c8d8dc;
  font-family: var(--display);
  font-size: 1.28rem;
  line-height: 1.58;
}

.process-list li {
  padding: 24px 0;
  grid-template-columns: 48px 1fr;
}

.process-list li > span {
  color: #d8bd91;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
}

.process-list strong {
  color: #fff;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
}

.office-grid {
  align-items: stretch;
}

.office-card {
  position: relative;
  padding: 42px 30px;
  overflow: hidden;
  border: 1px solid rgba(15, 102, 115, 0.11);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(171, 207, 201, 0.45), transparent 32%),
    #f1f5f1;
}

.office-card::after {
  position: absolute;
  right: -100px;
  bottom: -130px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(15, 102, 115, 0.13);
  border-radius: 50%;
  content: "";
}

.office-card > * {
  position: relative;
  z-index: 1;
}

.office-card h2 {
  max-width: 650px;
}

.office-card address {
  color: #52676d;
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1.7;
}

.office-note {
  display: flex;
  padding: 38px 30px;
  border-radius: 28px;
  background: var(--ink-deep);
  color: #fff;
  flex-direction: column;
  justify-content: center;
}

.office-note .eyebrow {
  color: #d7bc91;
}

.office-note > div {
  border-color: rgba(255, 255, 255, 0.14);
}

.office-note strong {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
}

.office-note p {
  color: #b9cbd0;
}

.review-callout {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--teal);
}

.review-callout::before,
.review-callout::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.review-callout::before {
  top: -180px;
  right: 9%;
  width: 430px;
  height: 430px;
}

.review-callout::after {
  top: -105px;
  right: 14%;
  width: 275px;
  height: 275px;
}

.review-inner {
  position: relative;
  z-index: 1;
}

.review-inner h2 {
  max-width: 750px;
  color: #fffdfa;
}

.site-footer {
  padding-top: 76px;
  background: #081f29;
}

.brand-mark--footer {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.footer-links a {
  position: relative;
  font-family: var(--display);
  font-size: 1.04rem;
  text-decoration: none;
}

.footer-links a::after {
  margin-left: 7px;
  color: #d7bc91;
  content: "↗";
  font-family: var(--sans);
  font-size: 0.72rem;
}

.floating-contact {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: var(--teal-dark);
  box-shadow: 0 14px 38px rgba(9, 76, 87, 0.28);
  color: #fff;
  text-decoration: none;
  transition: width 220ms ease, border-radius 220ms ease, background-color 180ms ease;
}

.floating-contact span {
  font-family: var(--display);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 400;
  transform: rotate(45deg);
}

.floating-contact strong {
  display: none;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.floating-contact:hover {
  background: var(--ink-deep);
}

/* Editorial evaluation page */
.review-page {
  background:
    radial-gradient(circle at 7% 90%, rgba(192, 154, 99, 0.2), transparent 26%),
    radial-gradient(circle at 92% 12%, rgba(157, 202, 196, 0.32), transparent 27%),
    #f6f5ef;
}

.review-header {
  padding: 25px 0;
}

.review-main {
  padding: 48px 0 88px;
}

.review-grid {
  position: relative;
}

.review-grid::before {
  position: absolute;
  z-index: -1;
  top: -80px;
  right: -15%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(15, 102, 115, 0.1);
  border-radius: 50%;
  content: "";
}

.review-portrait {
  min-height: 440px;
}

.review-content h1 {
  max-width: 720px;
  color: var(--ink-deep);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.98;
}

.review-content > p:not(.eyebrow) {
  color: #536970;
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.62;
}

.review-button {
  box-shadow: 0 15px 35px rgba(9, 76, 87, 0.2);
}

.back-link {
  color: #566c72;
  font-weight: 650;
  text-decoration: none;
}

.back-link:hover {
  color: var(--teal-dark);
}

.review-footer {
  border-color: rgba(20, 70, 78, 0.12);
}

/* Subtle reveal motion, enabled only when JavaScript is available */
.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1), transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 540px) {
  .trust-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-list p,
  .trust-list p:nth-child(2),
  .trust-list p:nth-child(3) {
    justify-content: initial;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .trust-list p:last-child {
    border-right: 0;
  }
}

@media (min-width: 800px) {
  .container {
    width: min(calc(100% - 64px), var(--container));
  }

  .hero {
    display: flex;
    align-items: center;
    padding: 70px 0 108px;
  }

  .hero-grid {
    align-items: center;
    grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
    gap: clamp(56px, 7vw, 96px);
  }

  .portrait {
    min-height: 620px;
  }

  .section {
    padding: 140px 0;
  }

  .section-title-block {
    position: sticky;
    top: 132px;
  }

  .split-layout {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(80px, 11vw, 150px);
  }

  .work-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  }

  .office-grid {
    grid-template-columns: minmax(0, 1.22fr) minmax(290px, 0.78fr);
    gap: 18px;
  }

  .office-card {
    padding: 58px;
  }

  .office-note {
    padding: 48px 42px;
  }

  .review-portrait {
    min-height: 590px;
  }

  .review-grid {
    grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
  }

  .floating-contact {
    right: 28px;
    bottom: 28px;
  }

  .floating-contact:hover,
  .floating-contact:focus-visible {
    width: 132px;
    justify-content: flex-start;
    padding: 0 17px;
    border-radius: 999px;
    gap: 9px;
  }

  .floating-contact:hover strong,
  .floating-contact:focus-visible strong {
    display: block;
  }
}

@media (min-width: 1020px) {
  .header-inner {
    min-height: 92px;
  }

  .main-nav,
  .main-nav.is-open {
    gap: 27px;
  }

  .main-nav > a:not(.button)::after {
    right: 0;
    bottom: 4px;
    left: 0;
  }

  .hero {
    min-height: calc(100vh - 92px);
  }

  .hero-grid {
    min-height: 670px;
  }
}

@media (max-width: 539px) {
  .hero {
    padding-bottom: 86px;
  }

  .hero .button-row .button {
    width: 100%;
  }

  .portrait-note {
    right: -4px;
    bottom: 18px;
    min-width: 200px;
  }

  .large-text::before {
    display: none;
  }

  .review-callout {
    padding: 82px 0;
  }
}

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

/* Photography, brand and patient opinions */
.brand-logo {
  display: block;
  width: clamp(180px, 20vw, 225px);
  height: auto;
  mix-blend-mode: multiply;
}

.brand-logo--footer {
  width: 225px;
  padding: 8px 12px;
  border-radius: 12px;
  background: #fff;
  mix-blend-mode: normal;
}

.office-gallery {
  padding: 0 0 110px;
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 230px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gallery-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--mist);
  box-shadow: var(--shadow-soft);
}

.gallery-photo--featured,
.gallery-photo--wide {
  grid-column: 1 / -1;
}

.gallery-photo--featured {
  grid-row: span 2;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-photo--featured img {
  object-position: center 35%;
}

.gallery-photo--wide img {
  object-position: center 57%;
}

.gallery-photo:hover img {
  transform: scale(1.025);
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(181, 208, 201, 0.42), transparent 34%),
    var(--cream);
}

.testimonials-section::before {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(15, 102, 115, 0.1);
  border-radius: 50%;
  content: "";
}

.testimonials-heading {
  position: relative;
  display: grid;
  align-items: end;
  margin-bottom: 50px;
  gap: 32px;
}

.testimonials-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.rating-summary {
  width: fit-content;
  padding: 22px 26px;
  border: 1px solid rgba(15, 102, 115, 0.15);
  border-radius: 20px;
  background: rgba(255, 254, 250, 0.78);
  box-shadow: var(--shadow-soft);
}

.rating-summary strong {
  display: block;
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}

.rating-summary span {
  display: block;
  margin: 8px 0 6px;
  color: #b77d2f;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

.rating-summary p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 650;
}

.testimonial-grid {
  position: relative;
  display: grid;
  gap: 14px;
}

.testimonial-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(15, 102, 115, 0.12);
  border-radius: 24px;
  background: rgba(255, 254, 250, 0.9);
  box-shadow: 0 20px 50px rgba(13, 48, 57, 0.07);
}

.testimonial-card::before {
  display: block;
  margin-bottom: 28px;
  color: var(--warm);
  content: "“";
  font-family: var(--display);
  font-size: 4.5rem;
  line-height: 0.55;
}

.testimonial-card blockquote {
  margin: 0 0 28px;
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.3vw, 1.75rem);
  line-height: 1.42;
  letter-spacing: -0.025em;
}

.testimonial-card p {
  margin: auto 0 0;
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonials-footer {
  display: grid;
  align-items: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(15, 102, 115, 0.16);
  gap: 16px;
}

.testimonials-footer p {
  max-width: 660px;
  margin: 0;
  color: var(--ink-soft);
}

.text-link {
  width: fit-content;
  color: var(--teal-dark);
  font-weight: 720;
  text-decoration-color: rgba(9, 76, 87, 0.3);
}

.text-link span {
  display: inline-block;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.instagram-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 120%, rgba(181, 208, 201, 0.18), transparent 34%),
    linear-gradient(135deg, #0a4954 0%, #123847 58%, #172f3d 100%);
  color: #fff;
}

.instagram-section::after {
  position: absolute;
  top: -180px;
  right: -150px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.instagram-card {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 48px;
}

.instagram-intro h2 {
  max-width: 760px;
  color: #fff;
}

.instagram-intro > p:not(.eyebrow) {
  max-width: 670px;
  margin-bottom: 30px;
  color: #c9d8dc;
  font-size: 1.06rem;
}

.instagram-profile {
  display: flex;
  min-height: 320px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(4, 25, 31, 0.25);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(12px);
  flex-direction: column;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.instagram-profile:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.instagram-profile__label {
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #dce8ea;
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.instagram-profile strong {
  margin: 28px 0 12px;
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.instagram-profile__topics {
  color: #bfd0d5;
  font-size: 0.85rem;
}

.instagram-profile__topics i {
  padding: 0 5px;
  color: var(--warm);
  font-style: normal;
}

.instagram-profile__action {
  display: flex;
  padding-top: 22px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 720;
  justify-content: space-between;
}

.instagram-profile__action b {
  transition: transform 160ms ease;
}

.instagram-profile:hover .instagram-profile__action b {
  transform: translate(2px, -2px);
}

.review-actions {
  display: grid;
  max-width: 620px;
  gap: 12px;
}

.review-actions .review-button {
  width: 100%;
}

.review-content > .review-reassurance {
  max-width: 590px;
  margin: 18px 0 0;
  color: #6b7d82;
  font-family: var(--sans);
  font-size: 0.78rem;
  line-height: 1.55;
}

@media (min-width: 700px) {
  .gallery-grid {
    grid-auto-rows: 300px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
  }

  .gallery-photo--featured {
    grid-column: span 5;
    grid-row: span 2;
  }

  .gallery-photo:not(.gallery-photo--featured):not(.gallery-photo--wide) {
    grid-column: span 7;
  }

  .gallery-photo--wide {
    grid-column: 6 / -1;
  }

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

  .testimonial-card {
    display: flex;
    flex-direction: column;
  }

  .testimonials-footer {
    grid-template-columns: 1fr auto;
  }

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

@media (min-width: 900px) {
  .office-gallery {
    padding-bottom: 140px;
  }

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

  .instagram-card {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    gap: clamp(70px, 9vw, 130px);
  }
}

@media (max-width: 1019px) {
  .brand-logo {
    width: 190px;
  }
}
