:root {
  --red: #d7192a;
  --red-dark: #8f0e1a;
  --ink: #171313;
  --muted: #675d59;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: rgba(23, 19, 19, 0.18);
  --shadow: 0 24px 80px rgba(23, 19, 19, 0.2);
}

* {
  box-sizing: border-box;
}

.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;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(22px, 5vw, 72px);
  color: var(--white);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.32));
}

.brand-text {
  display: grid;
  gap: 2px;
  color: var(--white);
  font-size: clamp(0.72rem, 1.05vw, 0.92rem);
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.brand-text span:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78em;
  letter-spacing: 0.18em;
}

.header-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: var(--white);
  opacity: 0.9;
  transition: background 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  opacity: 1;
}

.nav-link:not(.nav-contact)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: calc(100% + 0.08em);
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 150ms ease;
}

.nav-link:not(.nav-contact):hover::after,
.nav-link:not(.nav-contact):focus-visible::after {
  transform: scaleX(1);
}

.nav-contact {
  min-height: 38px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  opacity: 1;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  background: var(--red);
  border-color: var(--red);
}

.hero {
  position: relative;
  min-height: calc(100vh - 34px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--ink);
}

.hero-overlay {
  position: absolute;
  inset: -3%;
  z-index: -2;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    linear-gradient(180deg, rgba(23, 19, 19, 0.32), rgba(23, 19, 19, 0.44)),
    linear-gradient(90deg, rgba(143, 14, 26, 0.68), rgba(143, 14, 26, 0.08) 48%, rgba(23, 19, 19, 0.34)),
    url("assets/western-cape-property.jpg");
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    linear-gradient(180deg, rgba(23, 19, 19, 0.32), rgba(23, 19, 19, 0.44)),
    linear-gradient(90deg, rgba(143, 14, 26, 0.68), rgba(143, 14, 26, 0.08) 48%, rgba(23, 19, 19, 0.34)),
    image-set(
      url("assets/western-cape-property.webp") type("image/webp"),
      url("assets/western-cape-property.jpg") type("image/jpeg")
    );
  background-position: center 42%;
  background-size: cover;
  pointer-events: none;
  transform-origin: center center;
  animation: heroImageSettle 1800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.subpage-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background-image:
    linear-gradient(180deg, rgba(23, 19, 19, 0.38), rgba(23, 19, 19, 0.58)),
    linear-gradient(90deg, rgba(143, 14, 26, 0.62), rgba(143, 14, 26, 0.08) 52%, rgba(23, 19, 19, 0.34)),
    url("assets/western-cape-property.jpg");
  background-image:
    linear-gradient(180deg, rgba(23, 19, 19, 0.38), rgba(23, 19, 19, 0.58)),
    linear-gradient(90deg, rgba(143, 14, 26, 0.62), rgba(143, 14, 26, 0.08) 52%, rgba(23, 19, 19, 0.34)),
    image-set(
      url("assets/western-cape-property.webp") type("image/webp"),
      url("assets/western-cape-property.jpg") type("image/jpeg")
    );
  background-position: center 42%;
  background-size: cover;
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(23, 19, 19, 0), rgba(23, 19, 19, 0.52));
  z-index: -1;
}

.subpage-hero-content {
  width: min(980px, calc(100% - 48px));
  padding: 132px 0 84px;
  text-align: center;
}

.subpage-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5.2vw, 5.6rem);
  line-height: 0.98;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: min(46vw, 620px);
  height: min(26vw, 320px);
  border-right: 16px solid rgba(215, 25, 42, 0.86);
  border-top: 16px solid rgba(215, 25, 42, 0.86);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(23, 19, 19, 0), rgba(23, 19, 19, 0.48));
  z-index: -1;
}

@keyframes heroImageSettle {
  from {
    transform: scale(1.035) translate3d(0, 12px, 0);
  }

  to {
    transform: scale(1) translate3d(0, 0, 0);
  }
}

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

  .hero-overlay {
    animation: none;
    transform: none;
  }
}

.hero-content {
  width: min(980px, calc(100% - 40px));
  padding: 98px 0 122px;
  text-align: center;
}

.logo-hero .hero-content {
  width: min(880px, calc(100% - 40px));
  display: grid;
  justify-items: center;
  align-content: center;
  gap: clamp(28px, 4vw, 40px);
  padding: clamp(128px, 16vh, 168px) 0 clamp(150px, 18vh, 194px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.statement h2,
.focus-band h2,
.contact-section h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(3rem, 6.2vw, 5.65rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.hero-logo-lockup {
  width: min(520px, 76vw);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.42));
}

.hero-center-logo {
  --hero-logo-type: clamp(1.72rem, 3.25vw, 3.28rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(var(--hero-logo-type) * 0.815);
  margin: 0 auto;
  filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.42));
}

.hero-center-logo-stacked {
  width: min(440px, 82vw);
  flex-direction: column;
  gap: clamp(14px, 1.8vw, 22px);
}

.hero-center-mark {
  width: calc(var(--hero-logo-type) * 3.533);
  height: auto;
  display: block;
}

.hero-center-logo-stacked .hero-center-mark {
  width: calc(var(--hero-logo-type) * 2.95);
  margin-inline: auto;
}

.hero-center-text {
  display: grid;
  gap: calc(var(--hero-logo-type) * 0.136);
  color: var(--white);
  font-size: var(--hero-logo-type);
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.42);
}

.hero-center-logo-stacked .hero-center-text {
  justify-items: center;
  text-align: center;
}

.hero-center-text span:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78em;
  letter-spacing: 0.18em;
}

.logo-hero .hero-copy {
  max-width: 690px;
  margin: 0 auto;
  font-size: clamp(0.98rem, 1.55vw, 1.16rem);
}

.hero-copy {
  max-width: 760px;
  margin: 28px auto 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.button {
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--red);
  box-shadow: var(--shadow);
}

.button.primary:hover {
  background: #bd1423;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.1);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-meta {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  display: grid;
  width: min(320px, calc(100% - 44px));
  border-top: 1px solid rgba(255, 255, 255, 0.36);
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(23, 19, 19, 0.16);
  backdrop-filter: blur(8px);
}

.hero-meta > span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.82rem, 1.4vw, 1rem);
  text-align: center;
}

.logo-hero .hero-meta {
  width: min(580px, calc(100% - 44px));
}

.logo-hero .hero-meta > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  white-space: nowrap;
}

.meta-dot {
  display: inline-block;
  margin: 0 20px;
  color: var(--red);
  font-size: 1.18em;
  line-height: 0;
  transform: translateY(-0.02em);
}

.statement {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 128px) 0 clamp(46px, 7vw, 86px);
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.statement .section-kicker,
.contact-copy .section-kicker {
  color: var(--red);
}

.statement h2 {
  max-width: 920px;
  margin-inline: auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 4.8vw, 5rem);
  line-height: 1.02;
}

.statement p {
  max-width: 790px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.55vw, 1.2rem);
}

.pillars {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: clamp(44px, 7vw, 78px) 0;
}

.pillars article {
  min-height: 286px;
  padding: 30px clamp(20px, 3vw, 40px) 18px;
  border-top: 2px solid var(--ink);
  border-right: 1px solid var(--line);
}

.pillars article:last-child {
  border-right: 0;
}

.pillar-number {
  display: block;
  margin-bottom: 38px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.pillars h3 {
  margin: 0 0 16px;
  font-size: clamp(1.16rem, 2vw, 1.55rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pillars p {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
}

.focus-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  column-gap: clamp(36px, 8vw, 110px);
  row-gap: clamp(22px, 3.6vw, 42px);
  align-items: center;
  padding: clamp(64px, 9vw, 116px) clamp(22px, 7vw, 96px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(143, 14, 26, 0.96), rgba(23, 19, 19, 0.98)),
    var(--red-dark);
}

.focus-band h2 {
  max-width: 760px;
  font-size: clamp(2.35rem, 5.2vw, 5.5rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.focus-band > .focus-copy {
  margin: 0;
  max-width: 560px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}
.focus-principles {
  grid-column: 1 / -1;
  width: 100%;
  padding: 0;
}

.focus-principles article {
  min-height: 168px;
  padding: 26px clamp(18px, 2.8vw, 34px) 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.focus-principles article:last-child {
  border-right: 0;
}

.focus-principles .pillar-number {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.68);
}

.focus-principles h3 {
  color: var(--white);
}

.focus-principles p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  line-height: 1.5;
}

.contact-section {
  width: min(1060px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1fr);
  align-items: start;
  gap: clamp(26px, 5vw, 70px);
  padding: clamp(36px, 5vw, 56px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-section h2 {
  display: grid;
  gap: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.55vw, 1.7rem);
  line-height: 1.06;
}

.entity-suffix {
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.46em;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: none;
}

.contact-copy p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  line-height: 1.55;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 0 28px;
}

.contact-intro {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  line-height: 1.55;
}

.contact-method {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 18px 0 4px;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.98rem, 1.12vw, 1.08rem);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}


.contact-method:hover,
.contact-method:focus-visible {
  transform: translateX(6px);
  border-bottom-color: var(--red);
}


.contact-method:focus-visible {
  outline: 2px solid rgba(215, 25, 42, 0.38);
  outline-offset: 6px;
}

.contact-method span {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px 20px 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: none;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding: 18px 18px 0;
  }

  .header-links {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 14px;
    font-size: 0.66rem;
  }

  .hero {
    min-height: 800px;
    padding: 108px 0 128px;
  }

  .hero-overlay {
    background-position: center center;
  }

  .hero::before {
    width: 48vw;
    height: 140px;
    border-width: 10px;
  }

  .hero-content {
    padding-top: 0;
    padding-bottom: 40px;
  }

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

  .hero-actions {
    margin-top: 34px;
  }

  .button {
    width: min(100%, 280px);
  }

  .hero-meta {
    bottom: 20px;
  }

  .hero-meta > span {
    min-height: 52px;
  }

  .pillars,
  .focus-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .pillars article {
    min-height: 0;
    padding-inline: 0;
    border-right: 0;
  }

  .pillar-number {
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .site-header {
    gap: 10px;
  }

  .brand-lockup {
    gap: 9px;
  }

  .brand-mark {
    width: 44px;
  }

  .brand-text {
    font-size: 0.66rem;
  }

  .header-links {
    flex-wrap: nowrap;
    gap: 8px;
    font-size: 0.6rem;
  }

  .nav-contact {
    padding-inline: 12px;
  }

  .hero {
    min-height: 780px;
  }

  .hero h1 {
    font-size: clamp(2.28rem, 12.2vw, 3.12rem);
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-meta,
  .logo-hero .hero-meta {
    width: min(320px, calc(100% - 28px));
  }

  .hero-meta > span {
    padding: 10px 8px;
    font-size: 0.76rem;
  }
}

.about-story {
  width: min(980px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 86px);
  padding: clamp(76px, 10vw, 128px) 0 clamp(72px, 9vw, 116px);
}

.about-story .section-kicker {
  color: var(--red);
}

.about-story h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.02;
}

.about-copy {
  display: grid;
  gap: 26px;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  line-height: 1.72;
}

.nav-link[aria-current="page"] {
  opacity: 1;
}

.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

@media (max-width: 820px) {
  .subpage-hero {
    min-height: 560px;
  }

  .subpage-hero-content {
    padding: 132px 0 88px;
  }

  .about-story {
    grid-template-columns: 1fr;
  }
}


/* One-page band rhythm */
.section-band {
  scroll-margin-top: 0;
}

.about-band,
.approach-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-band {
  padding: clamp(62px, 7.2vw, 92px) 0;
  background: #f4f1eb;
  touch-action: pan-y;
}

.about-story {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(210px, 0.5fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
  padding: 0;
}

.about-story .section-kicker,
.statement .section-kicker,
.contact-copy .section-kicker {
  color: var(--red);
}

.about-story h2 {
  max-width: 430px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 4.35vw, 4.65rem);
  line-height: 0.98;
}

.about-copy {
  max-width: 720px;
  display: grid;
  gap: 14px;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.28vw, 1.12rem);
  line-height: 1.55;
}

.approach-band {
  padding: clamp(50px, 6.6vw, 82px) 0 clamp(42px, 5.8vw, 70px);
  background: var(--paper);
}

.approach-band .statement {
  width: min(1060px, calc(100% - 56px));
  margin: 0 auto;
  padding: 0 0 clamp(30px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.approach-band .statement h2 {
  max-width: 860px;
  margin-inline: auto;
  font-size: clamp(2.25rem, 4.55vw, 4.7rem);
}

.approach-band .statement p {
  max-width: 720px;
  margin: 22px auto 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.28vw, 1.12rem);
  line-height: 1.55;
}

.approach-band .pillars {
  width: min(1060px, calc(100% - 56px));
  padding: clamp(28px, 4vw, 42px) 0 0;
}

.approach-band .pillars article {
  min-height: 190px;
  padding: 24px clamp(18px, 2.4vw, 30px) 10px;
}

.approach-band .pillar-number {
  margin-bottom: 22px;
}

.approach-band .pillars p {
  font-size: 0.98rem;
  line-height: 1.5;
}

.focus-band {
  padding-block: clamp(52px, 7vw, 86px);
  padding-inline: max(28px, calc((100vw - 1060px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(23, 19, 19, 0.28);
}

.focus-band h2 {
  font-size: clamp(2.2rem, 4.65vw, 4.9rem);
}

.focus-band > .focus-copy {
  max-width: 540px;
  font-size: clamp(1rem, 1.62vw, 1.22rem);
  line-height: 1.55;
}

@media (max-width: 820px) {
  .about-band,
  .approach-band {
    padding-block: 46px;
  }

  .about-band {
    padding-block: 54px;
  }

  .about-story {
    width: min(100% - 44px, 680px);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-story h2 {
    max-width: 560px;
    font-size: clamp(2.2rem, 10vw, 3.8rem);
  }

  .about-copy {
    max-width: none;
    gap: 13px;
  }

  .about-copy p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .approach-band .statement,
  .approach-band .pillars {
    width: min(100% - 44px, 680px);
  }

  .approach-band .statement {
    text-align: left;
  }

  .approach-band .statement h2 {
    font-size: clamp(2.1rem, 9vw, 3.45rem);
  }

  .approach-band .pillars {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }

  .approach-band .pillars article {
    min-height: 0;
    padding: 20px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .approach-band .pillars article:first-child {
    border-top: 2px solid var(--ink);
  }

  .focus-band {
    padding: 48px 22px;
    gap: 24px;
  }
.focus-principles {
  grid-template-columns: 1fr;
  padding-top: 0;
}

.focus-principles article {
  min-height: 0;
  padding: 20px 0;
  border-right: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.focus-principles article:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

}


.about-mark-title {
  display: flex;
  align-items: center;
  min-height: clamp(96px, 10vw, 136px);
}

.about-mark-title img {
  width: clamp(92px, 8.5vw, 126px);
  height: auto;
  display: block;
}

@media (max-width: 820px) {
  .about-mark-title {
    min-height: auto;
  }

  .about-mark-title img {
    width: clamp(82px, 24vw, 112px);
  }
}


.about-story-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.about-copy .section-kicker {
  margin-bottom: 6px;
  color: var(--red);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-mark-title {
  justify-content: center;
  width: 100%;
}

@media (max-width: 820px) {
  .about-story-heading,
  .about-mark-title {
    justify-content: center;
  }
}


.approach-quote {
  max-width: 720px;
  margin: 22px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
}

.approach-quote p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.32vw, 1.18rem);
  line-height: 1.45;
}

.approach-quote cite {
  display: block;
  margin-top: 10px;
  color: var(--red);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.04em;
}

@media (max-width: 820px) {
  .approach-quote {
    margin-inline: 0;
    text-align: left;
  }
}

/* About carousel and before/after portfolio proof points */
.about-carousel {
  width: 100%;
  overflow-anchor: none;
}

.about-carousel-viewport {
  overflow: hidden;
  transition: height 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.about-slides {
  display: flex;
  align-items: flex-start;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.about-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.about-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: clamp(20px, 3vw, 30px) 0 0;
}

.about-carousel-dot {
  position: relative;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.about-carousel-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: transparent;
  transform: translate(-50%, -50%);
  transition: background 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.about-carousel-dot.is-active::before {
  background: var(--red);
  transform: translate(-50%, -50%) scale(1.18);
}

.about-carousel-dot:focus-visible {
  outline: 2px solid rgba(215, 25, 42, 0.34);
  outline-offset: 2px;
}

.asset-proof {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(230px, 0.36fr) minmax(0, 1fr);
  gap: clamp(30px, 5.5vw, 72px);
  align-items: center;
}

.asset-proof-copy .section-kicker {
  margin: 0 0 18px;
  color: var(--red);
}

.asset-proof-copy h2 {
  max-width: 360px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.65rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: none;
}

.asset-proof-copy h2 em {
  font-style: italic;
}

.asset-meta {
  margin: 14px 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.28vw, 1.12rem);
  line-height: 1.45;
}

.asset-compare {
  --compare-position: 50%;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
  border-radius: 2px;
  box-shadow: 0 28px 70px rgba(23, 19, 19, 0.16);
  isolation: isolate;
  touch-action: pan-y;
}

.asset-compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.asset-before {
  clip-path: inset(0 calc(100% - var(--compare-position)) 0 0);
}

.asset-compare::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(23, 19, 19, 0.26), transparent 22%, transparent 76%, rgba(23, 19, 19, 0.12)),
    linear-gradient(180deg, transparent 62%, rgba(23, 19, 19, 0.34));
  pointer-events: none;
}

.asset-divider {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  width: 44px;
  background: transparent;
  cursor: ew-resize;
  transform: translateX(-50%);
  pointer-events: auto;
}

.asset-divider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--red);
  transform: translateX(-50%);
}

.asset-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 10px 24px rgba(23, 19, 19, 0.28);
  transform: translate(-50%, -50%);
}

.asset-compare.is-dragging {
  cursor: ew-resize;
}

.asset-labels {
  position: absolute;
  z-index: 5;
  left: 18px;
  right: 18px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: none;
}

.asset-range {
  position: absolute;
  z-index: 6;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  pointer-events: none;
}

@media (max-width: 820px) {
  .about-carousel-viewport {
    touch-action: pan-y;
  }

  .about-carousel-dots {
    gap: 4px;
    margin-top: 18px;
  }

  .about-carousel-dot {
    width: 42px;
    height: 42px;
  }

  .asset-proof {
    width: min(100% - 44px, 680px);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .asset-proof-copy .section-kicker {
    margin-bottom: 12px;
  }

  .asset-proof-copy h2 {
    max-width: 320px;
    font-size: 1.58rem;
  }

  .asset-meta {
    margin-top: 10px;
    font-size: 1rem;
  }

  .asset-divider::after {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-carousel-viewport,
  .about-slides {
    transition: none;
  }
}
/* Phone landscape tuning */
@media (orientation: landscape) and (max-width: 1024px) {
  .site-header {
    padding: 14px 24px;
  }

  .brand-mark {
    width: 40px;
  }

  .header-links {
    gap: 18px;
    font-size: 0.66rem;
  }

  .nav-link {
    min-height: 34px;
  }

  .nav-contact {
    min-height: 34px;
    padding-inline: 16px;
  }

  .logo-hero .hero-content {
    gap: 20px;
    padding: 90px 0 92px;
  }

  .hero-center-logo {
    --hero-logo-type: clamp(1.34rem, 3.65vw, 1.7rem);
  }

  .logo-hero .hero-copy {
    max-width: 620px;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .logo-hero .hero-meta {
    bottom: 12px;
    width: min(520px, calc(100% - 48px));
  }

  .logo-hero .hero-meta > span {
    min-height: 44px;
    font-size: 0.82rem;
  }

  .about-band,
  .approach-band {
    padding-block: 44px;
  }

  .about-story {
    width: min(100% - 48px, 760px);
    grid-template-columns: minmax(104px, 0.32fr) minmax(0, 1fr);
    gap: 28px;
  }

  .about-mark-title {
    min-height: auto;
  }

  .about-mark-title img {
    width: 82px;
  }

  .about-copy {
    gap: 12px;
  }

  .about-copy .section-kicker,
  .approach-band .statement .section-kicker,
  .focus-band .eyebrow,
  .contact-copy .section-kicker {
    font-size: 0.72rem;
    line-height: 1.4;
    letter-spacing: 0.18em;
  }

  .about-copy p,
  .approach-band .statement p,
  .focus-band > .focus-copy,
  .approach-quote p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .approach-band .statement,
  .approach-band .pillars {
    width: min(100% - 48px, 780px);
  }

  .approach-band .statement {
    padding-bottom: 30px;
  }

  .approach-band .statement h2,
  .focus-band h2 {
    font-size: clamp(2rem, 3.9vw, 2.25rem) !important;
    line-height: 1.02;
    text-wrap: balance;
  }

  .approach-quote {
    margin-top: 18px;
    padding-top: 16px;
  }

  .focus-band {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 44px 32px;
  }

  .focus-band h2 {
    max-width: none;
  }

  .focus-band > .focus-copy {
    max-width: 780px;
  }

  .focus-principles article {
    min-height: 0;
    padding-block: 20px 4px;
  }

  .focus-principles .pillar-number {
    margin-bottom: 18px;
  }

  .contact-section {
    width: min(100% - 48px, 820px);
    grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1fr);
    gap: 28px;
    padding-block: 34px;
  }

  .contact-section h2 {
    font-size: clamp(1.24rem, 3vw, 1.6rem);
  }
}

@media (orientation: landscape) and (max-width: 1024px) {
  .about-carousel-dots {
    gap: 4px;
    margin-top: 12px;
  }

  .about-carousel-dot {
    width: 42px;
    height: 42px;
  }

  .about-slides {
    align-items: flex-start;
  }

  .about-slide {
    height: var(--about-carousel-height, auto);
    min-height: 0;
    display: flex;
    align-items: center;
  }

  .asset-proof {
    width: min(100% - 48px, 780px);
    grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
    gap: 28px;
  }

  .asset-proof-copy h2 {
    font-size: clamp(1.45rem, 3.25vw, 1.9rem);
  }

  .asset-meta {
    font-size: 0.96rem;
  }
}

/* Legal footer and modal */
.site-footer {
  align-items: center;
  line-height: 1.7;
}

.footer-separator {
  color: rgba(105, 96, 91, 0.7);
}

.footer-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 800;
  letter-spacing: inherit;
  cursor: pointer;
  transition: color 180ms ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--red);
}

.footer-link:focus-visible {
  outline: 2px solid rgba(215, 25, 42, 0.34);
  outline-offset: 4px;
}

body.legal-modal-open {
  overflow: hidden;
}

.legal-modal[hidden] {
  display: none;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 44px);
}

.legal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(23, 19, 19, 0.62);
  backdrop-filter: blur(7px);
  cursor: pointer;
}

.legal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100vw - 36px));
  max-height: min(82vh, 760px);
  overflow: auto;
  padding: clamp(26px, 4vw, 52px);
  border-top: 5px solid var(--red);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 34px 96px rgba(23, 19, 19, 0.34);
  -webkit-overflow-scrolling: touch;
}

.legal-panel:focus {
  outline: none;
}

.legal-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: -12px -12px 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.legal-close:hover,
.legal-close:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.legal-close:focus-visible {
  outline: 2px solid rgba(215, 25, 42, 0.3);
  outline-offset: 3px;
}

.legal-document {
  max-width: 830px;
  margin: 0 auto;
}

.legal-document h2,
.legal-document h3 {
  margin: 0;
  letter-spacing: 0;
}

.legal-document h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.legal-document h3 {
  margin-top: 28px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.62;
}

.legal-document p {
  margin: 12px 0 0;
}

.legal-document ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-document li + li {
  margin-top: 7px;
}

.legal-date {
  margin-top: 32px !important;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .site-footer {
    gap: 8px 10px;
    padding-inline: 18px;
  }

  .legal-modal {
    padding: 14px;
  }

  .legal-panel {
    width: calc(100vw - 28px);
    max-height: 84vh;
    padding: 24px 20px 30px;
  }

  .legal-close {
    width: 36px;
    height: 36px;
    margin: -8px -6px 12px 14px;
  }

  .legal-document h2 {
    font-size: 2rem;
  }

  .legal-document p,
  .legal-document li {
    font-size: 0.96rem;
  }
}
/* /Legal footer and modal */
