/* ==========================================================================
   Nova Core Construction - inner page styles, version 3.
   Layered on top of /assets/styles.css. Same tokens, same fonts, same colors.
   Only additive: nothing here restyles a lander component out from under it.
   ========================================================================== */

/* ------------------------------------------------------------ page hero
   Split layout: copy left, a full-strength photo card right. The photo is
   the design, not a dimmed texture. Pages without an image get a tighter
   flat navy band instead. */

.phero {
  background: var(--navy);
  color: var(--on-navy);
  padding: clamp(2.75rem, 2rem + 3vw, 4.75rem) 0;
}
.phero-grid {
  display: grid;
  gap: clamp(2rem, 3vw, 4rem);
  align-items: center;
}
.phero-copy,
.phero-media {
  min-width: 0;
}
.phero h1 {
  color: var(--on-navy);
  font-size: clamp(2rem, 1.45rem + 2.3vw, 3.3rem);
  max-width: 24ch;
}
.phero-sub {
  color: var(--on-navy-muted);
  font-size: var(--step-lead);
  line-height: 1.6;
  max-width: 54ch;
  margin-top: 1.1rem;
}
.phero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.9rem;
}
.phero-call {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--on-navy);
  transition: color 0.2s var(--ease);
}
.phero-call svg {
  width: 18px;
  height: 18px;
  color: var(--stone-light);
}
.phero-call:hover {
  color: var(--stone-light);
}
.phero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-lg);
  outline: 1px solid rgba(243, 238, 228, 0.14);
  outline-offset: -1px;
}
@media (min-width: 62rem) {
  .phero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .phero-media img {
    aspect-ratio: 5 / 4;
    max-height: 26rem;
  }
}
.phero-plain {
  padding: clamp(2.5rem, 2rem + 2vw, 3.75rem) 0;
}

/* --------------------------------------------------------- breadcrumbs
   styles.css carries a leftover `.crumbs { background: var(--navy-deep) }`
   full-width bar from an older lander iteration; neutralise it and style the
   trail as a contained pill on the hero instead. */

.crumbs {
  background: none;
  margin-bottom: 1.5rem;
  font-size: 0;
}
.crumbs ol {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  color: var(--on-navy-faint);
  background: rgba(243, 238, 228, 0.07);
  border: 1px solid rgba(243, 238, 228, 0.14);
  border-radius: 999px;
}
.crumbs li {
  display: inline-flex;
  align-items: center;
}
.crumbs li + li::before {
  content: "/";
  margin-right: 0.6rem;
  color: var(--on-navy-faint);
  opacity: 0.55;
}
.crumbs a {
  color: var(--on-navy-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.crumbs a:hover {
  color: var(--on-navy);
  text-decoration: none;
  border-bottom-color: rgba(243, 238, 228, 0.5);
}
.crumbs [aria-current="page"] {
  color: var(--stone-light);
  font-weight: 600;
}

/* ------------------------------------------------------ eyebrow marker
   The shared stylesheet draws a horizontal line before every eyebrow.
   Replace it with the brand marker: a small stone diamond. Centered
   eyebrows get one on each side. */

.eyebrow::before {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--stone);
  border-radius: 1.5px;
  transform: rotate(45deg);
}
/* -------------------------------------------------- review avatar stack */

.avatars {
  display: inline-flex;
  align-items: center;
}
.avatars img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--white);
  object-fit: cover;
  margin-left: -9px;
  box-shadow: 0 1px 3px rgba(27, 42, 58, 0.25);
}
.avatars img:first-child {
  margin-left: 0;
}

/* Hero review strip: sits in the old eyebrow slot and links to Google. */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.15rem;
  font-size: var(--step-small);
  font-weight: 600;
  color: var(--muted);
}
.hero-rating .stars {
  font-size: 0.95rem;
}
.hero-rating .hr-text {
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.hero-rating:hover .hr-text {
  color: var(--navy);
  border-bottom-color: var(--stone);
}

/* ----------------------------------------------- active nav indication
   The lander's underline animates width from 0, so the current page gets
   the full underline plus weight. Color alone was invisible. */

.nav a[aria-current="page"] {
  color: var(--navy);
  font-weight: 700;
}
.nav a[aria-current="page"]::after {
  width: 100%;
}
.m-link[aria-current="page"] {
  color: var(--navy);
  font-weight: 700;
}

/* ------------------------------------------------- two column body grid */

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 21rem;
  gap: clamp(2rem, 1rem + 3vw, 4.5rem);
  align-items: start;
}
@media (max-width: 62rem) {
  .layout {
    grid-template-columns: 1fr;
  }
}

.sidecard {
  position: sticky;
  top: calc(var(--header-h, 4.5rem) + 1.5rem);
  display: grid;
  gap: 1rem;
}
.sc-inner {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.6rem;
  box-shadow: var(--sh-md);
}
.sc-inner h2 {
  font-size: var(--h3);
  margin: 0.85rem 0 0.6rem;
}
.sc-inner > p {
  color: var(--muted);
  font-size: var(--step-small);
  margin-bottom: 1.25rem;
}
.sc-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.sc-phone:hover {
  border-color: var(--stone);
  background: var(--paper);
}
.sc-phone svg {
  width: 17px;
  height: 17px;
}
.sc-list {
  margin: 1.35rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 0.6rem;
}
.sc-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--step-small);
  color: var(--muted);
}
.sc-list svg {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--stone-deep);
}

/* Small testimonial card under the sidebar quote card */
.sc-quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--sh-sm);
}
.sc-quote .stars {
  font-size: 0.8rem;
}
.sc-quote blockquote {
  margin: 0.7rem 0 0.9rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.sc-quote cite {
  display: block;
  font-style: normal;
  font-size: var(--step-small);
}
.sc-quote cite b {
  display: block;
  color: var(--navy);
}
.sc-quote cite span {
  color: var(--muted);
  font-size: 0.8rem;
}

/* --------------------------------------------------------------- prose
   Long-form copy sits in the full text color; muted is for supporting
   lines and captions, not for fifteen hundred words of article. */

.prose > * + * {
  margin-top: 1.15rem;
}
.prose h2 {
  font-size: var(--h2);
  margin-top: clamp(2.5rem, 1.8rem + 2.4vw, 3.75rem);
}
.prose h2:first-child {
  margin-top: 0;
}
.prose h3 {
  font-size: var(--h3);
  margin-top: 2.25rem;
}
.prose p,
.prose li {
  color: var(--text);
  line-height: 1.72;
}
.prose .intro {
  font-size: var(--step-lead);
  line-height: 1.65;
  color: var(--navy);
}
.prose .intro + .intro {
  font-size: var(--step-body);
  color: var(--text);
}
.prose a:not(.btn) {
  color: var(--navy-700);
  border-bottom: 1px solid var(--stone-light);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.prose a:not(.btn):hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}
.prose ul.chk {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.35rem;
}
.prose ul.chk li {
  position: relative;
  padding-left: 1.9rem;
}
.prose ul.chk li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 2px;
  border: 2px solid var(--stone);
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
}
.prose ol.num {
  counter-reset: n;
  display: grid;
  gap: 1.4rem;
  margin-top: 1.6rem;
  padding: 0;
  list-style: none;
}
.prose ol.num > li {
  counter-increment: n;
  position: relative;
  padding-left: 3.4rem;
}
.prose ol.num > li::before {
  content: counter(n, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -0.1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--stone);
  letter-spacing: -0.03em;
}
.prose ol.num h3 {
  margin: 0 0 0.3rem;
  font-size: var(--h4);
}
.prose ol.num p {
  color: var(--muted);
}

/* Pull quote / callout */
.pull {
  border-left: 3px solid var(--stone);
  padding: 0.35rem 0 0.35rem 1.5rem;
  margin-top: 2rem;
}
.pull p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-lead);
  line-height: 1.45;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.pull cite {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--step-small);
  color: var(--muted);
}

/* Note box for anything the homeowner should read before booking */
.note {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  margin-top: 2rem;
}
.note h3 {
  margin: 0 0 0.5rem;
  font-size: var(--h4);
}
.note p {
  margin: 0;
  font-size: var(--step-small);
  color: var(--muted);
}

/* ---------------------------------------------------------- spec table */

.spec {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.6rem;
  font-size: var(--step-small);
}
.spec caption {
  text-align: left;
  font-size: var(--step-small);
  color: var(--muted);
  padding-bottom: 0.75rem;
}
.spec th,
.spec td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.spec thead th {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  background: var(--paper);
  border-bottom-color: var(--line);
  white-space: nowrap;
}
.spec tbody th {
  font-weight: 600;
  color: var(--navy);
  width: 38%;
}
.spec td {
  color: var(--muted);
}
.spec tbody tr:last-child th,
.spec tbody tr:last-child td {
  border-bottom: 0;
}
.table-scroll {
  overflow-x: auto;
  margin-top: 1.6rem;
}
.table-scroll .spec {
  margin-top: 0;
  min-width: 30rem;
}

/* ------------------------------------------------------- service areas
   Ten communities, two columns: five even rows, no orphan card. */

.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 45rem) {
  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.area-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.area-card:hover {
  border-color: var(--stone-light);
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}
.area-card h3 {
  font-size: var(--h4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.area-card h3 svg {
  width: 18px;
  height: 18px;
  color: var(--stone);
  flex: none;
}
.area-card p {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: var(--step-small);
  line-height: 1.68;
}

/* ------------------------------------------------- related service chips
   A wrapping chip row instead of a card grid, so five items never leave an
   orphan on its own row. */

.more {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.6rem;
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.more b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-small);
  color: var(--navy);
  margin-right: 0.5rem;
}
.more a,
.jump a {
  font-size: var(--step-small);
  font-weight: 600;
  color: var(--navy);
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.more a:hover,
.jump a:hover {
  border-color: var(--stone);
  background: var(--paper);
}

/* Anchor jump list on long pages */
.jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

/* --------------------------------------------------- gallery variants
   Inner-page galleries always show their captions; hiding them behind
   hover left mobile with nothing. Scoped so the lander keeps its reveal. */

.show-cap .gtile figcaption {
  opacity: 1;
  transform: none;
  background: linear-gradient(transparent, rgba(19, 32, 44, 0.82));
}
.gtile.feature {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
}
@media (max-width: 45rem) {
  .gtile.feature {
    aspect-ratio: 3 / 2;
  }
}

/* --------------------------------------------------- project case tiles */

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.case {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.case-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-2);
}
.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-expo);
}
.case:hover .case-img img {
  transform: scale(1.04);
}
.case-body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.case-tag {
  font-size: var(--step-eyebrow);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-deep);
}
.case-body h3 {
  font-size: var(--h4);
  margin: 0.5rem 0 0.6rem;
}
.case-body p {
  color: var(--muted);
  font-size: var(--step-small);
  line-height: 1.68;
  margin: 0;
}
.case-meta {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 0.45rem;
  font-size: var(--step-small);
}
.case-meta div {
  display: flex;
  gap: 0.6rem;
}
.case-meta dt {
  color: var(--stone-deep);
  font-weight: 600;
  min-width: 5.5rem;
}
.case-meta dd {
  margin: 0;
  color: var(--muted);
}

/* ------------------------------------------------------------ utilities */

/* Flat section: same background colour, no dot pattern behind long copy.
   White flat sections instead get a faint blueprint-grid patch fading out
   of the top-right corner, so the ground has texture without noise running
   behind the text. */
.section.flat {
  background-image: none;
  position: relative;
  isolation: isolate;
}
.section.bg-white.flat::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: min(36rem, 70%);
  height: min(21rem, 85%);
  pointer-events: none;
  background-image: linear-gradient(rgba(151, 139, 120, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(151, 139, 120, 0.11) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(
    farthest-side at 100% 0%,
    black 20%,
    transparent 92%
  );
  mask-image: radial-gradient(
    farthest-side at 100% 0%,
    black 20%,
    transparent 92%
  );
}
.lead-narrow {
  max-width: 56ch;
}
.mt-cta {
  margin-top: 1.8rem;
}
.pb-0 {
  padding-bottom: 0;
}

/* ------------------------------------------------- process timeline
   Home's "Simple Process" section: numbered nodes on a connecting rail
   instead of three plain cards. Horizontal on desktop, a left rail on
   mobile. */

.flow {
  position: relative;
  display: grid;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}
.flow::before {
  content: "";
  position: absolute;
  background: var(--line);
}
.flow-node {
  position: relative;
  z-index: 1;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--on-navy);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 0 0 6px var(--paper);
}
.flow-body h3 {
  font-size: var(--h4);
  margin: 0 0 0.45rem;
}
.flow-body p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 49.99rem) {
  .flow::before {
    left: 1.45rem;
    top: 1.5rem;
    bottom: 1.5rem;
    width: 2px;
    transform: translateX(-1px);
  }
  .flow-step {
    display: grid;
    grid-template-columns: 2.9rem 1fr;
    gap: 1.15rem;
    align-items: start;
  }
  .flow-body h3 {
    margin-top: 0.55rem;
  }
}
@media (min-width: 50rem) {
  .flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  /* Rail runs from the first node's centre to the last node's centre. */
  .flow::before {
    top: 1.45rem;
    height: 2px;
    left: 1.45rem;
    right: calc((100% - 4rem) / 3 - 1.45rem);
  }
  .flow-body {
    max-width: 30ch;
  }
  .flow-body h3 {
    margin-top: 1.1rem;
  }
}

/* ------------------------------------------------------------ footer v3
   Self-contained (fw-*) so the lander's .footer styles are untouched.
   Slogan row with the CTA, four columns, a serving strip, and a clipped
   outline wordmark along the bottom edge. */

.fw {
  position: relative;
  background: var(--navy-deep);
  color: var(--on-navy-muted);
  overflow: hidden;
}
.fw > .shell,
.fw > .fw-bottom {
  position: relative;
  z-index: 1;
}
.fw-mark {
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: -0.26em;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(5rem, 16vw, 13rem);
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(199, 190, 174, 0.1);
  user-select: none;
  pointer-events: none;
}
@supports not (-webkit-text-stroke: 1px black) {
  .fw-mark {
    color: rgba(199, 190, 174, 0.05);
  }
}
.fw-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  padding-block: 3.25rem 2.75rem;
  border-bottom: 1px solid rgba(199, 190, 174, 0.14);
}
.fw-kicker {
  font-size: var(--step-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-light);
}
.fw-line {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--on-navy);
  font-size: clamp(1.9rem, 1.4rem + 2vw, 3rem);
  line-height: 1.05;
  margin-top: 0.45rem;
}
.fw-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}
.fw-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--on-navy);
  transition: color 0.2s var(--ease);
}
.fw-phone svg {
  width: 18px;
  height: 18px;
  color: var(--stone-light);
}
.fw-phone:hover {
  color: var(--stone-light);
}
.fw-grid {
  display: grid;
  gap: 2.5rem;
  padding-block: 3rem;
}
@media (min-width: 50rem) {
  .fw-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2rem 2.5rem;
  }
}
.fw-logo {
  display: inline-flex;
  background: var(--white);
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--sh-md);
}
.fw-logo img {
  height: 60px;
  width: auto;
  display: block;
}
.fw-about p {
  font-size: 0.88rem;
  color: var(--on-navy-faint);
  max-width: 34ch;
  margin-top: 1.15rem;
  line-height: 1.7;
}
.fw-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.15rem;
}
.fw-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(199, 190, 174, 0.22);
  display: grid;
  place-items: center;
  color: var(--on-navy-faint);
  transition: all 0.2s var(--ease);
}
.fw-social a:hover {
  color: var(--navy-deep);
  background: var(--stone-light);
  border-color: var(--stone-light);
  transform: translateY(-2px);
}
.fw-col h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-navy);
  margin-bottom: 1.1rem;
}
.fw-col h4::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  background: var(--stone);
  border-radius: 1px;
  transform: rotate(45deg);
}
.fw-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fw-col li {
  margin-bottom: 0.6rem;
}
.fw-col a,
.fw-col span {
  font-size: 0.88rem;
  color: var(--on-navy-faint);
  transition: color 0.2s;
}
.fw-col a:hover {
  color: var(--stone-light);
}
.fw-col .k {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-navy-faint);
  margin-bottom: 0.15rem;
}
.fw-col .v {
  color: var(--on-navy-muted);
  font-weight: 600;
  overflow-wrap: anywhere;
}
.fw-areas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.85rem;
  padding-block: 1.4rem;
  border-top: 1px solid rgba(199, 190, 174, 0.14);
  font-size: 0.82rem;
}
.fw-areas b {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-right: 0.3rem;
}
.fw-areas a {
  color: var(--on-navy-faint);
  transition: color 0.2s;
}
.fw-areas a:hover {
  color: var(--on-navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.fw-areas .dot {
  color: var(--on-navy-faint);
  opacity: 0.4;
}
.fw-bottom {
  border-top: 1px solid rgba(199, 190, 174, 0.14);
}
.fw-bottom .shell {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding-block: 1.25rem;
}
.fw-bottom p {
  font-size: 0.74rem;
  color: var(--on-navy-faint);
}

/* Team / values grid on the about page */
.val-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.val {
  padding: 1.6rem 0 0;
  border-top: 2px solid var(--navy);
}
.val h3 {
  font-size: var(--h4);
  margin-bottom: 0.55rem;
}
.val p {
  color: var(--muted);
  font-size: var(--step-small);
  line-height: 1.68;
  margin: 0;
}

@media (max-width: 45rem) {
  .sc-inner {
    padding: 1.5rem 1.35rem;
  }
}
