:root {
  --blue: #102633;
  --cream: #f5efe6;
  --cream-light: #fbf8f2;
  --sand: #d8c8b6;
  --sand-deep: #e6d8c8;
  --gold: #a6733d;
  --gold-light: #c49457;
  --muted: #40525b;
  --soft: #efe3d3;
  --line: rgba(216, 200, 182, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--blue);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

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

h1,
h2,
h3,
.wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1,
h2 {
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  max-width: 1240px;
  margin: 0 auto;
  font-size: 7.35rem;
}

h2 {
  margin-bottom: 0;
  font-size: 4.2rem;
}

h3 {
  margin-bottom: 18px;
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1;
}

.site-nav {
  position: fixed;
  z-index: 50;
  top: 0;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 239, 230, 0.88);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  max-width: 1440px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
  padding: 16px 56px;
}

.wordmark {
  min-width: 0;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a,
.nav-cta,
.text-action,
.button {
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  border: 1px solid var(--blue);
  padding: 12px 20px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-cta:hover {
  background: var(--blue);
  color: var(--cream);
}

.mobile-nav-toggle,
.mobile-call-link,
.mobile-menu {
  display: none;
}

.mobile-nav-toggle,
.mobile-call-link {
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 38, 51, 0.34);
  background: transparent;
  color: var(--blue);
}

.mobile-nav-toggle svg,
.mobile-call-link svg {
  width: 19px;
  height: 19px;
}

.mobile-action-bar {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  min-height: 100dvh;
  place-items: center;
  overflow: hidden;
  padding: 96px 24px 64px;
  color: var(--cream);
  text-align: center;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(to bottom, rgba(16, 38, 51, 0.32), rgba(16, 38, 51, 0.28) 42%, rgba(16, 38, 51, 0.66)),
    linear-gradient(90deg, rgba(16, 38, 51, 0.24), rgba(16, 38, 51, 0.04) 50%, rgba(16, 38, 51, 0.24));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sand);
  font-size: 0.8rem;
}

.hero-subtitle {
  max-width: 820px;
  margin: 36px auto 0;
  color: rgba(243, 238, 230, 0.92);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.32rem;
  font-style: italic;
  line-height: 1.3;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 56px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  border: 1px solid currentColor;
  padding: 18px 34px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.button svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

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

.button-light {
  color: var(--cream);
}

.button-light:hover {
  background: var(--cream);
  color: var(--blue);
}

.button-dark {
  color: var(--blue);
}

.button-dark:hover {
  background: var(--blue);
  color: var(--cream);
}

.text-action {
  border-bottom: 1px solid transparent;
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.text-action:hover {
  border-bottom-color: currentColor;
}

.promise-strip {
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  background: var(--cream-light);
  padding: 28px 24px;
}

.promise-inner {
  display: grid;
  max-width: 1440px;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 0 auto;
}

.promise-inner div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.promise-inner svg,
.service-card svg,
.contact-card svg {
  flex: 0 0 auto;
  color: var(--gold);
}

.promise-inner svg {
  width: 17px;
  height: 17px;
}

.approach-section,
.contact-section {
  background: var(--blue);
  color: var(--cream);
  padding: 112px 24px;
}

.approach-inner,
.contact-inner {
  display: grid;
  max-width: 1280px;
  gap: 72px;
  margin: 0 auto;
}

.approach-inner {
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 56px;
  align-items: stretch;
}

.approach-text {
  display: grid;
  align-content: center;
  gap: 28px;
}

.approach-heading {
  max-width: 900px;
}

.approach-subtitle {
  max-width: 760px;
  margin-top: 30px;
  color: var(--sand);
  font-size: 1.18rem;
  line-height: 1.7;
  text-wrap: balance;
}

.approach-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 760px;
  gap: 26px;
  color: var(--sand);
  font-size: 1.08rem;
  line-height: 1.75;
}

.approach-media {
  position: relative;
  height: 520px;
  overflow: hidden;
  border: 1px solid rgba(216, 200, 182, 0.28);
  border-radius: 8px;
  background: rgba(245, 239, 230, 0.06);
}

.approach-media::before,
.approach-media::after {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 1;
  height: 86px;
  content: "";
  pointer-events: none;
}

.approach-media::before {
  top: 0;
  background: linear-gradient(to bottom, var(--blue), rgba(16, 38, 51, 0));
}

.approach-media::after {
  bottom: 0;
  background: linear-gradient(to top, var(--blue), rgba(16, 38, 51, 0));
}

.approach-media-track {
  display: grid;
  gap: 14px;
  padding: 14px;
  animation: approach-scroll 34s linear infinite;
}

.approach-media img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  border-radius: 6px;
}

@keyframes approach-scroll {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(-50% - 7px));
  }
}

@keyframes approach-scroll-mobile {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 5px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .approach-media-track {
    animation: none;
  }
}

.contact-section {
  background: var(--blue);
  color: var(--cream);
}

.contact-inner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "intro intro"
    "profiles profiles"
    "address address";
  gap: 34px 28px;
  align-items: start;
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(216, 200, 182, 0.48);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.story-link:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.story-link svg {
  width: 16px;
  height: 16px;
}

.approach-copy p,
.approach-subtitle,
.contact-subtitle,
.section-heading p,
.philosophy-copy > p:last-child {
  margin-bottom: 0;
}

.approach-detail-section {
  background: var(--cream-light);
  padding: 118px 24px;
}

.approach-detail-inner {
  display: grid;
  max-width: 1280px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  grid-template-areas:
    "heading media"
    "copy copy";
  gap: 54px 76px;
  align-items: center;
  margin: 0 auto;
}

.approach-detail-heading {
  grid-area: heading;
  max-width: 560px;
}

.approach-detail-lead {
  margin-top: 30px;
  margin-bottom: 0;
  color: var(--blue);
  font-size: 1.18rem;
  line-height: 1.7;
}

.approach-detail-media {
  grid-area: media;
  width: min(100%, 440px);
  aspect-ratio: 16 / 10;
  justify-self: end;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(196, 148, 87, 0.36);
  border-radius: 8px;
  background: var(--sand);
}

.approach-detail-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.approach-detail-copy {
  display: grid;
  grid-area: copy;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 76px;
  border-top: 1px solid rgba(196, 148, 87, 0.32);
  padding-top: 44px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.approach-detail-copy p {
  margin-bottom: 0;
}

.services-section {
  background: var(--cream);
  padding: 112px 24px;
}

.section-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.section-heading {
  display: block;
  margin-bottom: 64px;
}

.section-heading > div {
  max-width: 900px;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.7;
  text-wrap: balance;
}

.services-grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  border: 1px solid var(--sand);
  background: var(--sand);
}

.service-card {
  min-height: 292px;
  background: var(--cream-light);
  padding: 32px;
  transition: background-color 180ms ease;
}

.service-card:hover {
  background: var(--soft);
}

.service-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 42px;
}

.service-card p {
  margin-bottom: 0;
  color: #52636a;
  font-size: 0.92rem;
  line-height: 1.7;
}

.philosophy-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1px;
  background: var(--sand);
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-grid img:first-child {
  grid-row: 1 / -1;
  object-position: center;
}

.photo-grid img:last-child {
  object-position: center;
}

.philosophy-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--sand-deep);
  padding: 80px;
}

.philosophy-copy p:last-child {
  max-width: 600px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.contact-intro {
  grid-area: intro;
}

.contact-intro h2 {
  max-width: 720px;
}

.contact-subtitle {
  max-width: 720px;
  margin-top: 30px;
  color: var(--sand);
  font-size: 1.18rem;
  line-height: 1.7;
  text-wrap: balance;
}

.contact-cards {
  display: grid;
  grid-area: profiles;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.contact-card {
  overflow: hidden;
  border: 1px solid rgba(216, 200, 182, 0.72);
  border-radius: 8px;
  background: var(--cream-light);
  color: var(--blue);
}

.contact-cards .profile-card:nth-child(2) {
  background: var(--sand-deep);
}

.profile-card {
  display: grid;
  min-height: 360px;
  grid-template-columns: minmax(230px, 0.82fr) minmax(0, 1fr);
  align-items: stretch;
}

.contact-portrait {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid rgba(196, 148, 87, 0.38);
  background: rgba(245, 239, 230, 0.08);
}

.contact-portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16, 38, 51, 0), rgba(16, 38, 51, 0.18));
  content: "";
}

.contact-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
}

.contact-portrait-max img {
  object-position: center 43%;
}

.contact-portrait-chloe img {
  object-position: center 44%;
}

.contact-details,
.contact-address {
  padding: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.contact-card p {
  margin-bottom: 28px;
  color: var(--gold-light);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-card a,
.contact-card span {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  color: var(--blue);
  overflow-wrap: anywhere;
}

.contact-card a:hover {
  color: var(--gold);
}

.contact-card svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--gold);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.social-links a {
  align-items: center;
  gap: 8px;
  margin-top: 0;
  border: 1px solid rgba(166, 115, 61, 0.42);
  padding: 10px 12px;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.social-links a:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--cream);
}

.social-links svg {
  width: 16px;
  height: 16px;
  margin-top: 0;
}

.contact-address {
  display: flex;
  min-height: 0;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  grid-area: address;
  padding: 24px 32px;
}

.contact-address span {
  max-width: none;
  font-size: 1.24rem;
  font-weight: 600;
  line-height: 1.55;
}

.contact-address p,
.contact-address span {
  margin-top: 0;
  margin-bottom: 0;
}

.legal-section {
  border-top: 1px solid var(--sand);
  background: var(--cream-light);
  padding: 96px 56px;
}

.legal-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.legal-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 52px;
}

.legal-intro > p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--sand);
  background: var(--sand);
}

.legal-card {
  background: var(--cream-light);
  padding: 28px;
}

.legal-card h3 {
  margin-bottom: 22px;
  font-size: 1.62rem;
}

.legal-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  list-style: none;
}

.legal-card li {
  overflow-wrap: anywhere;
}

.legal-card:last-child {
  grid-column: 1 / -1;
}

.legal-note {
  max-width: 900px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.legal-page-main {
  min-height: 76svh;
  background: var(--cream-light);
  padding: 140px 56px 96px;
}

.legal-page-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.legal-page-header {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 52px;
}

.legal-page-header p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-page-content {
  border: 1px solid var(--sand);
  background: var(--cream-light);
  padding: 36px;
}

.legal-page-content + .legal-page-content {
  margin-top: 24px;
}

.legal-page-content h3 {
  margin-bottom: 24px;
}

.legal-page-content ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.legal-page-content li {
  overflow-wrap: anywhere;
}

.legal-back-link {
  display: inline-flex;
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-back-link:hover {
  color: var(--gold);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--sand);
  background: var(--cream);
  padding: 38px 56px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--gold);
}

@media (max-width: 1100px) {
  h1 {
    font-size: 5.65rem;
  }

  h2 {
    font-size: 3.55rem;
  }

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

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

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

@media (max-width: 900px) {
  .nav-inner {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    padding: 12px 20px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-nav-toggle,
  .mobile-call-link {
    display: inline-flex;
  }

  .wordmark {
    justify-self: center;
    text-align: center;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(16, 38, 51, 0.18);
    background: rgba(16, 38, 51, 0.16);
    box-shadow: 0 18px 36px rgba(7, 17, 24, 0.16);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    background: rgba(245, 239, 230, 0.98);
    padding: 18px 20px;
    color: var(--blue);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .hero {
    min-height: 94svh;
    min-height: 94dvh;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3.15rem;
  }

  .hero-subtitle {
    font-size: 1.65rem;
  }

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

  .approach-inner,
  .approach-detail-inner,
  .contact-inner,
  .section-heading,
  .legal-intro,
  .philosophy-section {
    grid-template-columns: 1fr;
  }

  .approach-detail-heading {
    max-width: 720px;
  }

  .approach-detail-inner {
    grid-template-areas:
      "heading"
      "media"
      "copy";
  }

  .approach-media {
    display: block;
    height: 220px;
    align-self: stretch;
  }

  .approach-media::before,
  .approach-media::after {
    top: 0;
    bottom: 0;
    width: 58px;
    height: auto;
  }

  .approach-media::before {
    right: auto;
    background: linear-gradient(to right, var(--blue), rgba(16, 38, 51, 0));
  }

  .approach-media::after {
    left: auto;
    background: linear-gradient(to left, var(--blue), rgba(16, 38, 51, 0));
  }

  .approach-media-track {
    display: flex;
    width: max-content;
    height: 100%;
    gap: 10px;
    padding: 10px;
    animation: approach-scroll-mobile 36s linear infinite;
  }

  .approach-media img {
    width: 270px;
    height: 100%;
    flex: 0 0 auto;
  }

  .contact-inner {
    grid-template-areas:
      "intro"
      "profiles"
      "address";
  }

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

  .profile-card {
    grid-template-columns: minmax(180px, 0.72fr) 1fr;
  }

  .contact-portrait {
    min-height: 292px;
  }

  .approach-detail-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 720px;
    justify-self: start;
  }

  .approach-detail-copy {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 34px;
  }

  .approach-section,
  .approach-detail-section,
  .contact-section,
  .services-section {
    padding: 88px 24px;
  }

  .legal-section {
    padding: 76px 24px;
  }

  .legal-page-main {
    padding: 116px 24px 76px;
  }

  .legal-page-header {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading {
    align-items: start;
    gap: 28px;
  }

  .photo-grid img {
    height: 340px;
  }

  .philosophy-copy {
    padding: 72px 32px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 72px;
  }

  .nav-inner {
    padding: 11px 14px;
  }

  .site-nav {
    background: rgba(245, 239, 230, 0.94);
  }

  .wordmark {
    font-size: 1.08rem;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 60;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid rgba(216, 200, 182, 0.52);
    background: rgba(16, 38, 51, 0.94);
    box-shadow: 0 18px 42px rgba(7, 17, 24, 0.32);
    backdrop-filter: blur(18px);
  }

  .mobile-action-bar a {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--cream);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .mobile-action-bar a + a {
    border-left: 1px solid rgba(216, 200, 182, 0.28);
  }

  .mobile-action-bar svg {
    width: 17px;
    height: 17px;
    color: var(--gold-light);
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    place-items: center;
    padding: 96px 20px 116px;
  }

  .hero-image {
    object-position: 54% center;
  }

  .hero-overlay {
    background:
      linear-gradient(to bottom, rgba(16, 38, 51, 0.1), rgba(16, 38, 51, 0.44) 38%, rgba(16, 38, 51, 0.78)),
      linear-gradient(90deg, rgba(16, 38, 51, 0.2), rgba(16, 38, 51, 0.08));
  }

  .hero .eyebrow {
    margin-bottom: 16px;
    font-size: 0.74rem;
  }

  h1 {
    font-size: 3.18rem;
    line-height: 0.98;
    text-wrap: balance;
  }

  h2 {
    font-size: 2.62rem;
    line-height: 1;
  }

  h3 {
    font-size: 1.68rem;
  }

  .hero-subtitle {
    max-width: 350px;
    margin-top: 22px;
    font-size: 1.48rem;
    line-height: 1.26;
    text-wrap: balance;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 30px;
  }

  .hero-actions .button {
    display: none;
  }

  .button {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .contact-cards,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .promise-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .promise-inner div {
    align-items: flex-start;
    gap: 8px;
    font-size: 0.64rem;
    line-height: 1.25;
  }

  .promise-inner svg {
    width: 15px;
    height: 15px;
    margin-top: 1px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--sand);
    background: var(--sand);
  }

  .photo-grid {
    grid-template-columns: 1.35fr 0.9fr 0.9fr;
    grid-template-rows: 150px;
  }

  .photo-grid img:first-child {
    grid-row: auto;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .promise-strip {
    padding: 24px 20px;
  }

  .approach-section,
  .approach-detail-section,
  .contact-section,
  .services-section {
    padding: 68px 20px;
  }

  .legal-section {
    padding: 64px 20px;
  }

  .legal-page-main {
    padding: 96px 20px 64px;
  }

  .legal-intro {
    gap: 28px;
    margin-bottom: 36px;
  }

  .legal-page-header {
    margin-bottom: 36px;
  }

  .legal-page-content {
    padding: 24px;
  }

  .legal-card {
    padding: 24px;
  }

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

  .approach-inner,
  .approach-detail-inner,
  .contact-inner {
    gap: 44px;
  }

  .approach-media {
    height: 184px;
  }

  .approach-media img {
    width: 236px;
  }

  .approach-copy,
  .approach-detail-copy,
  .approach-subtitle,
  .section-heading p:not(.eyebrow),
  .contact-subtitle,
  .philosophy-copy p:last-child {
    font-size: 1rem;
  }

  .approach-subtitle,
  .section-heading p:not(.eyebrow),
  .contact-subtitle {
    max-width: 100%;
    margin-top: 22px;
    line-height: 1.6;
    text-wrap: pretty;
  }

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

  .service-card svg {
    width: 24px;
    height: 24px;
    margin-bottom: 30px;
  }

  .service-card h3 {
    margin-bottom: 12px;
    font-size: 1.38rem;
  }

  .service-card p {
    font-size: 0.78rem;
    line-height: 1.55;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .photo-grid img,
  .photo-grid img:first-child {
    height: 150px;
  }

  .philosophy-copy {
    padding: 68px 20px;
  }

  .contact-cards {
    gap: 16px;
  }

  .profile-card {
    min-height: 214px;
    grid-template-columns: minmax(112px, 0.42fr) minmax(0, 1fr);
  }

  .contact-portrait {
    height: 100%;
    min-height: 214px;
    border-right: 1px solid rgba(196, 148, 87, 0.38);
    border-bottom: 0;
  }

  .contact-portrait-chloe img {
    object-position: center 38%;
  }

  .contact-portrait-max img {
    object-position: center 40%;
  }

  .contact-address {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
    margin-top: 0;
  }

  .contact-details,
  .contact-address {
    padding: 18px;
  }

  .contact-details {
    justify-content: center;
  }

  .contact-card p {
    margin-bottom: 16px;
    font-size: 0.76rem;
  }

  .contact-address span {
    font-size: 1.08rem;
    line-height: 1.55;
  }

  .contact-card a,
  .contact-card span {
    gap: 9px;
    margin-top: 12px;
    font-size: 0.76rem;
    line-height: 1.38;
  }

  .contact-card svg {
    width: 17px;
    height: 17px;
  }

  .social-links a {
    padding: 8px 9px;
    font-size: 0.58rem;
    line-height: 1;
  }

  .social-links {
    gap: 7px;
    margin-top: 18px;
  }

  .social-links svg {
    display: none;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 20px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
