/* ==========================================================================
   Aurora Homes — landing page
   Implementation of "Aurora Homes Landing v2" (Claude Design project).
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
/*
 * Palette derived from the Aurora Homes logo: gold #c49a44 on navy #1a1e27.
 *
 * Gold is only legible on dark ground — it measures 2.4:1 on the cream page,
 * so it is never used for text on a light surface. Light-surface accents step
 * down to progressively deeper bronzes instead:
 *
 *   --gold           2.4:1 on cream   dark surfaces only, never text on light
 *   --gold-strong    3.3:1 on cream   display text (>=24px) and focus rings
 *   --gold-text      4.6:1 on sand    body-size links, eyebrows, labels
 *   --gold-text-dark 6.0:1 on sand    hover state for the above
 *
 * --gold-text is tuned against --sand, the darkest light surface here, so it
 * clears 4.5:1 on every light background (sand 4.6, tint 4.6, cream 5.1,
 * white 5.4). On --navy, --gold reads 5.9:1 and --gold-light 7.8:1.
 */
:root {
  /* Neutrals */
  --cream: #faf6ef;
  --sand: #f2ecdf;
  --tint: #e9ebf1;
  --ink: #1d2027;
  --white: #fff;

  /* Brand dark */
  --navy: #1f2530;
  --navy-dark: #141922;
  --navy-deep: #1a1e27;

  /* Brand gold */
  --gold: #c49a44;
  --gold-dark: #a8813a;
  --gold-light: #d9b46a;
  --gold-strong: #a8813a;
  --gold-text: #84651e;
  --gold-text-dark: #6e5417;

  /* Derived ink tints */
  --ink-72: rgba(29, 32, 39, 0.72);
  --ink-65: rgba(29, 32, 39, 0.65);
  --ink-62: rgba(29, 32, 39, 0.62);
  --ink-60: rgba(29, 32, 39, 0.6);
  --ink-55: rgba(29, 32, 39, 0.55);

  /* Derived cream tints (on dark backgrounds) */
  --cream-80: rgba(250, 246, 239, 0.8);
  --cream-75: rgba(250, 246, 239, 0.75);
  --cream-15: rgba(250, 246, 239, 0.15);

  /* Type */
  --font-display: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-body: "Work Sans", "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --shell: 1440px;
  --gutter: 64px;

  /* Elevation */
  --shadow-hero: 0 20px 50px rgba(26, 30, 39, 0.18);
  --shadow-card: 0 8px 24px rgba(26, 30, 39, 0.08);
  --shadow-card-soft: 0 8px 24px rgba(26, 30, 39, 0.06);
  --shadow-collage-lg: 0 16px 40px rgba(26, 30, 39, 0.16);
  --shadow-collage-sm: 0 12px 30px rgba(26, 30, 39, 0.2);
  --shadow-menu: 0 12px 24px rgba(26, 30, 39, 0.14);
}

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

html {
  scroll-behavior: smooth;
  /* Sticky nav is ~78px tall; keep anchored sections clear of it. */
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0;
}

blockquote {
  margin: 0;
}

/* Keyboard focus stays visible everywhere. */
:focus-visible {
  outline: 2px solid var(--gold-strong);
  outline-offset: 3px;
  border-radius: 4px;
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.shell {
  max-width: var(--shell);
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  background: var(--navy);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 0 0 10px 10px;
  font-weight: 600;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 0;
}

.eyebrow {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-text);
}

/* Fills its container, cropping rather than distorting. */
.media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  white-space: nowrap;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.btn--solid {
  background: var(--navy);
  color: var(--cream);
}

.btn--solid:hover {
  background: var(--navy-dark);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn--outline:hover {
  background: rgba(26, 30, 39, 0.06);
}

/*
 * Gold fill takes dark text, not light: cream on gold is 2.4:1, navy on gold
 * is 6.4:1. This is the only high-emphasis button on the dark CTA panels.
 */
.btn--accent {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 15px 28px;
}

.btn--accent:hover {
  background: var(--gold-light);
}

/* Text link with a trailing arrow. */
.link-arrow {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-text);
  transition: color 0.18s ease;
}

.link-arrow:hover {
  color: var(--gold-text-dark);
}

/* --------------------------------------------------------------------------
   Brand lockup
   -------------------------------------------------------------------------- */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

/*
 * The logo is used exactly as supplied — gold mark and "Aurora Homes"
 * wordmark stacked on its own dark ground — so no separate text label runs
 * alongside it. object-fit: cover means the fixed square sizes below crop
 * a hair off the 298x300 original rather than squashing it.
 */
.brand__mark {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.brand__mark--sm {
  width: 56px;
  height: 56px;
  border-radius: 13px;
}

.company__lockup .brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px var(--gutter);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav__links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  transition: color 0.18s ease;
}

.nav__links a:hover {
  color: var(--gold-text);
}

.nav__links a.is-active {
  font-weight: 700;
  color: var(--gold-text);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--cream);
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 22px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color 0.18s ease, padding 0.18s ease, font-size 0.18s ease;
}

.nav__cta:hover {
  background: var(--navy-dark);
}

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1.5px solid var(--navy);
  background: transparent;
  flex-shrink: 0;
  cursor: pointer;
  padding: 0;
  color: var(--navy);
}

/* The two glyphs swap based on the button's expanded state. */
.nav__toggle .icon-close,
.nav__toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav__toggle[aria-expanded="true"] .icon-close {
  display: block;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 36px var(--gutter) 80px;
  max-width: var(--shell);
  margin: 0 auto;
}

.hero__title {
  font-weight: 800;
  font-size: 56px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: normal;
  color: var(--gold-strong);
}

.hero__lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-72);
  max-width: 46ch;
  margin: 24px 0 0;
}

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

.hero__media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  aspect-ratio: 6 / 5;
}

/* --------------------------------------------------------------------------
   Focus areas
   -------------------------------------------------------------------------- */
.focus {
  padding: 8px var(--gutter) 64px;
  max-width: var(--shell);
  margin: 0 auto;
}

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

.focus__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.focus__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.focus__title {
  font-weight: 700;
  font-size: 16px;
}

.focus__text {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-62);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Developments
   -------------------------------------------------------------------------- */
.developments {
  padding: 56px var(--gutter);
  max-width: var(--shell);
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head h2 {
  font-weight: 800;
  font-size: 30px;
}

.section-head .link-arrow {
  font-size: 14px;
}

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

.dev-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.dev-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
}

.dev-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(26, 30, 39, 0.9);
  color: var(--cream);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.dev-card__body {
  padding: 22px;
}

.dev-card__title {
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 4px;
}

.dev-card__location {
  font-size: 13px;
  color: var(--ink-55);
  margin: 0 0 12px;
}

.dev-card__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-72);
  margin: 0 0 16px;
}

/* --------------------------------------------------------------------------
   Stats band
   -------------------------------------------------------------------------- */
.stats {
  background: var(--navy);
  padding: 48px var(--gutter);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--shell);
  margin: 0 auto;
}

.stat {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  color: var(--gold-light);
  line-height: 1;
}

.stat__label {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--cream-80);
  margin: 0;
  max-width: 16ch;
}

/* --------------------------------------------------------------------------
   Our story
   -------------------------------------------------------------------------- */
.story {
  padding: 80px var(--gutter);
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story .eyebrow {
  margin-bottom: 14px;
}

.story__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}

.story__title em {
  font-style: normal;
  color: var(--gold-strong);
}

.story__text {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-72);
  max-width: 50ch;
  margin: 0 0 16px;
}

.story__text:last-of-type {
  margin-bottom: 28px;
}

.story__cta {
  padding: 13px 24px;
}

/* Overlapping three-image collage. */
.collage {
  position: relative;
  height: 420px;
}

.collage__main,
.collage__inset {
  position: absolute;
  overflow: hidden;
}

.collage__main {
  left: 0;
  top: 0;
  width: 78%;
  height: 88%;
  border-radius: 20px;
  box-shadow: var(--shadow-collage-lg);
}

.collage__inset {
  right: 0;
  width: 44%;
  height: 38%;
  border-radius: 16px;
  box-shadow: var(--shadow-collage-sm);
  border: 4px solid var(--cream);
}

.collage__inset--top {
  top: 14%;
}

.collage__inset--bottom {
  bottom: 0;
}

/* --------------------------------------------------------------------------
   How we work
   -------------------------------------------------------------------------- */
.process {
  padding: 24px var(--gutter) 80px;
  max-width: var(--shell);
  margin: 0 auto;
}

.process h2 {
  font-weight: 800;
  font-size: 30px;
  margin-bottom: 40px;
}

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

.step__number {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
}

.step__title {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
}

.step__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-65);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Key people
   -------------------------------------------------------------------------- */
.people {
  background: var(--sand);
  padding: 80px var(--gutter);
}

.people h2 {
  font-weight: 800;
  font-size: 30px;
  margin-bottom: 40px;
}

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

.person {
  background: var(--white);
  border-radius: 18px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-card-soft);
}

.person__avatar {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto 20px;
}

.person__name {
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 4px;
}

.person__role {
  font-size: 14px;
  color: var(--ink-60);
  margin: 0 0 18px;
}

/* --------------------------------------------------------------------------
   Companies
   -------------------------------------------------------------------------- */
.companies {
  padding: 80px var(--gutter);
  text-align: center;
}

.companies .eyebrow {
  margin-bottom: 16px;
}

.companies__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.companies__logo span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--navy);
}

/* --------------------------------------------------------------------------
   Values quote
   -------------------------------------------------------------------------- */
.values {
  background: var(--tint);
  padding: 72px var(--gutter);
}

.values__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.values blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.5;
  color: var(--navy);
}

/* --------------------------------------------------------------------------
   Contact CTA
   -------------------------------------------------------------------------- */
.cta {
  padding: var(--gutter);
  max-width: var(--shell);
  margin: 0 auto;
}

.cta__box {
  background: var(--navy);
  border-radius: 24px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta__title {
  font-weight: 800;
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 10px;
}

.cta__text {
  font-size: 15px;
  color: var(--cream-75);
  margin: 0;
  max-width: 48ch;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--navy-deep);
  padding: 64px var(--gutter) 28px;
  color: var(--cream-75);
}

.footer__grid {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer .brand {
  margin-bottom: 14px;
}

.footer__blurb {
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 32ch;
  margin: 0;
}

.footer__heading {
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__list a {
  color: var(--cream-75);
  transition: color 0.18s ease;
}

.footer__list a:hover {
  color: var(--cream);
}

.footer__bottom {
  border-top: 1px solid var(--cream-15);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
  max-width: var(--shell);
  margin: 0 auto;
}

/* ==========================================================================
   Interior pages
   ========================================================================== */

/* --------------------------------------------------------------------------
   Breadcrumb + page header
   -------------------------------------------------------------------------- */
.breadcrumb {
  padding: 8px var(--gutter) 0;
  max-width: var(--shell);
  margin: 0 auto;
  font-size: 13px;
  color: rgba(29, 32, 39, 0.5);
}

.breadcrumb a {
  color: rgba(29, 32, 39, 0.5);
  transition: color 0.18s ease;
}

.breadcrumb a:hover {
  color: var(--gold-text);
}

.page-head {
  padding: 20px var(--gutter) 48px;
  max-width: var(--shell);
  margin: 0 auto;
}

.page-head--tight {
  padding-bottom: 32px;
}

.page-head--wide {
  padding-bottom: 56px;
}

.page-head .eyebrow {
  margin-bottom: 14px;
}

.page-title {
  font-weight: 800;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  max-width: 20ch;
}

.page-title--wide {
  max-width: 22ch;
}

.page-lede {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-72);
  max-width: 70ch;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Who We Are — narrative + key fundamentals
   -------------------------------------------------------------------------- */
.about-grid {
  padding: 16px var(--gutter) 80px;
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-grid p {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(29, 32, 39, 0.78);
  margin: 0 0 18px;
}

.about-grid p:last-child {
  margin-bottom: 0;
}

.fundamentals {
  background: var(--sand);
  padding: 72px var(--gutter);
}

.fundamentals h2 {
  font-weight: 800;
  font-size: 30px;
  margin-bottom: 12px;
}

.fundamentals__lede {
  font-size: 15px;
  color: var(--ink-65);
  max-width: 60ch;
  margin: 0 0 40px;
}

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

/* Shared surface for the fundamentals / values / people cards. */
.info-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow-card-soft);
}

.info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 16px;
}

.info-card__title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.info-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-65);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Key People — full profile cards
   -------------------------------------------------------------------------- */
.people-detail {
  padding: 0 var(--gutter) 80px;
  max-width: var(--shell);
  margin: 0 auto;
}

/* Full biographies read better as left-aligned prose than centred teaser
   cards, so each person is a row — portrait column + bio column — rather
   than a grid of squares. */
.people-detail__grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.profile {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-card-soft);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: start;
}

.profile__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile__avatar {
  width: 128px;
  height: 128px;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 20px;
}

.profile__name {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 4px;
}

.profile__role {
  font-size: 13.5px;
  color: var(--gold-text);
  font-weight: 600;
  margin: 0;
}

.profile__bio {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.profile__bio p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(29, 32, 39, 0.72);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Our Companies
   -------------------------------------------------------------------------- */
.company {
  padding: 0 var(--gutter) 80px;
  max-width: var(--shell);
  margin: 0 auto;
}

.company__card {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  box-shadow: var(--shadow-card-soft);
}

.company__lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.company__lockup h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--navy);
}

.company__text {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-72);
  margin: 0 0 20px;
  max-width: 60ch;
}

.company__link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gold-text);
  transition: color 0.18s ease;
}

.company__link:hover {
  color: var(--gold-text-dark);
}

/* Standalone prose band on sand. */
.note-band {
  background: var(--sand);
  padding: 64px var(--gutter);
}

.note-band p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(29, 32, 39, 0.78);
}

/* --------------------------------------------------------------------------
   Our Values
   -------------------------------------------------------------------------- */
.values-grid {
  padding: 0 var(--gutter) 72px;
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

/* Larger type than the fundamentals variant of the same card. */
.values-grid .info-card__title {
  font-size: 19px;
}

.values-grid .info-card__text {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(29, 32, 39, 0.68);
}

.quote-band--accent {
  background: var(--gold);
  padding: 72px var(--gutter);
}

.quote-band--accent blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  color: var(--navy-deep);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.mission-grid {
  padding: 72px var(--gutter);
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.mission-grid__lede {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(29, 32, 39, 0.78);
  margin: 0;
  max-width: 44ch;
}

.mission-grid__panel {
  background: var(--navy);
  color: var(--cream);
  border-radius: 20px;
  padding: 36px;
}

.mission-grid__panel p {
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Our Developments — filter row
   -------------------------------------------------------------------------- */
.filters {
  padding: 0 var(--gutter) 32px;
  max-width: var(--shell);
  margin: 0 auto;
}

.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.chip {
  display: inline-block;
  background: var(--white);
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(26, 30, 39, 0.15);
  white-space: nowrap;
}

.chip--active {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.dev-listing {
  padding: 0 var(--gutter) 80px;
  max-width: var(--shell);
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-grid {
  padding: 0 var(--gutter) 80px;
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-card-soft);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
}

.field input,
.field textarea {
  font-family: var(--font-body);
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(26, 30, 39, 0.18);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--white);
  width: 100%;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
  border-color: transparent;
}

.contact-form button[type="submit"] {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 14px 28px;
}

/* Hidden until the submit handler fills it in. */
.form-status {
  font-size: 14px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--tint);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 0;
}

.form-status:empty {
  display: none;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-details {
  background: var(--navy);
  color: var(--cream);
  border-radius: 20px;
  padding: 32px;
}

.contact-details h2 {
  font-weight: 700;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 20px;
}

.contact-details dl {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14.5px;
  margin: 0;
}

.contact-details dt {
  color: rgba(250, 246, 239, 0.6);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-details dd {
  margin: 0;
}

.contact-details a {
  color: var(--cream);
  transition: color 0.18s ease;
}

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

/* Empty image slot in the design — kept as a labelled placeholder. */
.contact-map {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--tint);
  border: 1.5px dashed rgba(26, 30, 39, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-size: 13.5px;
  color: rgba(26, 30, 39, 0.6);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1300px) {
  .nav__links {
    gap: 14px;
  }

  .nav__links a {
    font-size: 12.5px;
  }

  .nav__cta {
    padding: 10px 16px;
    font-size: 13px;
  }
}

@media (max-width: 1060px) {
  /* Drop the two longest labels before the layout starts wrapping. */
  .nav__links li:nth-child(5),
  .nav__links li:nth-child(6) {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --gutter: 24px;
  }

  .nav {
    position: relative;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 24px 24px;
    box-shadow: var(--shadow-menu);
    z-index: 20;
  }

  .nav__links.is-open {
    display: flex;
  }

  /* Restore the labels hidden at 1060px once they live in the drawer. */
  .nav__links li {
    width: 100%;
  }

  .nav__links li:nth-child(5),
  .nav__links li:nth-child(6) {
    display: block;
  }

  .nav__links a {
    font-size: 15px;
    padding: 10px 0;
    display: block;
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 20px;
    padding-bottom: 48px;
  }

  /* Lead with the photograph on narrow screens. */
  .hero__media {
    order: -1;
  }

  .hero__title {
    font-size: 32px;
    line-height: 1.2;
  }

  h2,
  .section-head h2,
  .process h2,
  .people h2 {
    font-size: 24px;
  }

  .story__title {
    font-size: 28px;
  }

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

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

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .story {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .collage {
    height: 300px;
    margin-top: 8px;
  }

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

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

  .values blockquote {
    font-size: 21px;
  }

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

  .cta__title {
    font-size: 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
  }

  /* Interior pages */
  .page-title {
    font-size: 32px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Collage leads on narrow screens, matching the hero's behaviour. */
  .about-grid .collage {
    order: -1;
  }

  .fund-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .profile {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 20px;
  }

  .mission-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .company__card {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    gap: 24px;
  }

  .company__lockup h2 {
    font-size: 22px;
  }

  /* Chips scroll sideways rather than stacking into a tall block. */
  .filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .quote-band--accent blockquote {
    font-size: 22px;
  }

  .contact-form {
    padding: 28px;
  }
}

@media (max-width: 520px) {
  .field-row {
    grid-template-columns: 1fr;
  }

  .focus__grid,
  .stats__grid,
  .process__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}
