@font-face {
  font-family: "Gro Madefor";
  src: url("../fonts/madefor-text.var.original-60ca2f04a2d7.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

@font-face {
  font-family: "Gro Display";
  src: url("../fonts/madefor-display.var.original-dbad5922673c.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --forest-950: #082c22;
  --forest-900: #0b3d2e;
  --forest-800: #12533c;
  --forest-700: #176847;
  --leaf-500: #4f8e4c;
  --leaf-200: #c8ddbc;
  --leaf-100: #e7f0e1;
  --sun-500: #e3a51a;
  --sun-300: #f2c963;
  --sand-100: #f6f2e8;
  --sand-50: #fbfaf6;
  --ink: #15241d;
  --muted: #5f6d65;
  --white: #ffffff;
  --line: rgba(11, 61, 46, 0.15);
  --shadow-soft: 0 24px 70px rgba(8, 44, 34, 0.12);
  --shadow-card: 0 14px 40px rgba(8, 44, 34, 0.09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1280px, calc(100vw - 48px));
  --header-height: 92px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--sand-50);
  font-family: "Gro Madefor", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

h1,
h2,
h3,
h4 {
  font-family: "Gro Display", "Trebuchet MS", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

h1 {
  font-size: clamp(3.35rem, 7vw, 7rem);
}

h2 {
  font-size: clamp(2.3rem, 4.5vw, 4.8rem);
}

h3 {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--forest-950);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--sun-500);
  outline-offset: 4px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.narrow {
  width: min(820px, 100%);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(11, 61, 46, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 246, 0.98);
  box-shadow: 0 12px 36px rgba(8, 44, 34, 0.1);
}

.header-shell {
  width: var(--container);
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: clamp(210px, 21vw, 276px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 42px);
}

.site-nav a {
  position: relative;
  color: var(--forest-950);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

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

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--forest-950);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.nav-toggle-lines::after {
  position: absolute;
  top: 6px;
  left: 0;
}

.nav-open .nav-toggle-lines {
  background: transparent;
}

.nav-open .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-open .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 22px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  background: var(--forest-900);
  border: 1px solid var(--forest-900);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  background: var(--forest-700);
  box-shadow: 0 12px 28px rgba(8, 44, 34, 0.22);
  transform: translateY(-2px);
}

.button-light {
  color: var(--forest-950);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  background: var(--sand-100);
}

.button-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-arrow {
  transition: transform 180ms ease;
}

.button:hover .button-arrow {
  transform: translateX(4px);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 22px;
  align-items: center;
  gap: 10px;
  color: var(--forest-700);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 2px;
  content: "";
  background: var(--sun-500);
}

.eyebrow-light {
  color: var(--sand-100);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  color: var(--white);
  background: var(--forest-950);
  overflow: hidden;
}

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

.hero-media img {
  object-fit: cover;
  object-position: center 44%;
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 29, 22, 0.9) 0%, rgba(5, 29, 22, 0.68) 46%, rgba(5, 29, 22, 0.16) 76%),
    linear-gradient(0deg, rgba(5, 29, 22, 0.55), transparent 42%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: var(--container);
  min-height: calc(100svh - var(--header-height));
  margin-inline: auto;
  padding: clamp(80px, 12vh, 150px) 0 72px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(850px, 76%);
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 28px;
  text-wrap: balance;
}

.hero-copy > p {
  max-width: 700px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - min(1280px, calc(100vw - 48px))) / 2));
  bottom: 32px;
  padding: 15px 20px;
  color: var(--forest-950);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 780;
  letter-spacing: 0.05em;
  backdrop-filter: blur(12px);
}

.section {
  padding: clamp(90px, 11vw, 160px) 0;
}

.section-compact {
  padding: clamp(64px, 8vw, 100px) 0;
}

.section-soft {
  background: var(--sand-100);
}

.section-leaf {
  background: var(--leaf-100);
}

.section-dark {
  color: var(--white);
  background: var(--forest-950);
}

.section-heading {
  max-width: 880px;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.section-heading h2 {
  margin-bottom: 22px;
  text-wrap: balance;
}

.section-heading p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(52px, 9vw, 130px);
  align-items: end;
}

.intro-grid h2 {
  margin-bottom: 0;
  text-wrap: balance;
}

.intro-copy {
  padding-bottom: 10px;
}

.intro-copy p {
  color: var(--muted);
  font-size: 1.15rem;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  align-items: center;
  gap: 9px;
  color: var(--forest-800);
  font-weight: 760;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid rgba(11, 61, 46, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.feature-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0, 1);
}

.feature-card:hover .feature-media img {
  transform: scale(1.035);
}

.feature-copy {
  padding: clamp(30px, 4vw, 52px);
}

.feature-index {
  display: block;
  margin-bottom: 34px;
  color: var(--sun-500);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.feature-copy h3 {
  margin-bottom: 16px;
}

.feature-copy p {
  color: var(--muted);
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 22px;
}

.media-grid .gallery-link:first-child {
  grid-row: 1 / 3;
}

.gallery-link {
  position: relative;
  display: block;
  min-height: 100%;
  background: var(--forest-950);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.gallery-link img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0, 1), opacity 250ms ease;
}

.gallery-link::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 13px;
  content: "View full resolution ↗";
  color: var(--forest-950);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 780;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-link:hover img {
  opacity: 0.92;
  transform: scale(1.025);
}

.gallery-link:hover::after,
.gallery-link:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.contact-panel {
  position: relative;
  padding: clamp(44px, 7vw, 86px);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(227, 165, 26, 0.28), transparent 32%),
    var(--forest-900);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.contact-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 64px;
  align-items: end;
}

.contact-panel h2 {
  margin-bottom: 18px;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-item {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-label {
  display: block;
  margin-bottom: 4px;
  color: var(--sun-300);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-item a {
  font-weight: 700;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: #061e18;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-shell {
  width: var(--container);
  margin-inline: auto;
  padding-top: clamp(56px, 7vw, 84px);
}

.footer-cta {
  padding: clamp(32px, 5vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
  background:
    radial-gradient(circle at 88% 15%, rgba(227, 165, 26, 0.22), transparent 31%),
    var(--forest-900);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
}

.footer-cta-copy {
  max-width: 800px;
}

.footer-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--sun-300);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-cta h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2rem, 3.8vw, 3.65rem);
}

.footer-cta p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-main {
  width: var(--container);
  margin-inline: auto;
  padding: clamp(56px, 7vw, 78px) 0 52px;
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(150px, 0.5fr) minmax(300px, 0.9fr);
  gap: clamp(42px, 6vw, 84px);
}

.footer-logo-link {
  width: fit-content;
  margin-bottom: 24px;
  padding: 11px 16px;
  display: inline-flex;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.footer-logo {
  width: min(235px, 62vw);
  height: auto;
  margin: 0;
  filter: none;
  opacity: 1;
}

.footer-brand p {
  max-width: 500px;
  margin-bottom: 24px;
}

.footer-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-principles span {
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 730;
  letter-spacing: 0.05em;
}

.footer-title {
  margin-bottom: 20px;
  color: var(--white);
  font-family: "Gro Madefor", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-contact {
  display: grid;
  gap: 18px;
}

.footer-contact-link {
  width: fit-content;
  display: grid;
  gap: 2px;
  text-decoration: none;
}

.footer-contact-label {
  color: var(--sun-300);
  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact-link strong {
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 680;
}

.footer-contact-link:hover strong {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-address {
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.66);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.65;
}

.footer-bottom {
  width: var(--container);
  margin-inline: auto;
  padding: 22px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-back-to-top {
  color: var(--white);
  font-weight: 720;
  text-decoration: none;
}

.footer-back-to-top:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Interior page heroes */
.page-hero {
  padding: clamp(52px, 7vw, 92px) 0 clamp(72px, 9vw, 120px);
  background: var(--sand-100);
}

.page-hero-grid {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.page-hero-copy h1 {
  margin-bottom: 26px;
  color: var(--forest-950);
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  text-wrap: balance;
}

.page-hero-copy > p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
}

.page-hero-media {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: inherit;
  pointer-events: none;
}

.image-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 13px 16px;
  color: var(--white);
  background: rgba(5, 29, 22, 0.76);
  border-radius: 13px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  backdrop-filter: blur(9px);
}

.vision-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.vision-lead-copy h2 {
  margin-bottom: 24px;
}

.vision-lead-copy p {
  color: var(--muted);
  font-size: 1.16rem;
}

.portrait-landscape {
  aspect-ratio: 4 / 5;
}

.nexus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.nexus-card {
  min-height: 260px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid rgba(11, 61, 46, 0.08);
  border-radius: var(--radius-lg);
}

.nexus-letter {
  color: var(--leaf-500);
  font-family: "Gro Display", sans-serif;
  font-size: 4.5rem;
  font-weight: 750;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.nexus-card h3 {
  margin: 34px 0 0;
  font-size: 1.45rem;
}

.wide-image {
  position: relative;
  display: block;
  min-height: clamp(440px, 62vw, 760px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.wide-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.wide-image.panorama-image {
  min-height: 0;
  aspect-ratio: 4 / 1;
}

.wide-image.panorama-image img {
  min-height: 0;
}

.statement-panel {
  padding: clamp(54px, 8vw, 100px);
  color: var(--white);
  background: var(--forest-900);
  border-radius: var(--radius-xl);
}

.statement-panel h2 {
  max-width: 980px;
  margin-bottom: 0;
  text-wrap: balance;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.usp-card {
  padding: clamp(28px, 4vw, 46px);
  background: var(--white);
  border: 1px solid rgba(11, 61, 46, 0.09);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.usp-icon {
  width: clamp(120px, 12vw, 170px);
  aspect-ratio: 1;
  margin-bottom: 30px;
  border-radius: 26px;
  overflow: hidden;
}

.usp-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.usp-card h3 {
  margin-bottom: 16px;
  font-size: 1.65rem;
}

.usp-card p {
  color: var(--muted);
}

.quality-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.quality-list {
  display: grid;
  gap: 0;
}

.quality-item {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
}

.quality-item span {
  color: var(--sun-300);
  font-size: 0.74rem;
  letter-spacing: 0.13em;
}

.history-hero .page-hero-media {
  aspect-ratio: 4 / 3;
}

.award-stack {
  display: grid;
  gap: clamp(60px, 8vw, 110px);
}

.award-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.award-feature:nth-child(even) {
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.15fr);
}

.award-feature:nth-child(even) .award-media {
  order: 2;
}

.award-media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.award-media.certificate {
  aspect-ratio: 1.46 / 1;
  background: var(--white);
}

.award-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.award-copy h2 {
  margin-bottom: 22px;
}

.award-copy p {
  color: var(--muted);
}

.award-tag {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--forest-700);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.team-hero {
  position: relative;
  min-height: clamp(520px, 64vw, 780px);
  color: var(--white);
  background: var(--forest-950);
  overflow: hidden;
}

.team-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(5, 29, 22, 0.88), rgba(5, 29, 22, 0.08) 70%);
}

.team-hero-copy {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  width: var(--container);
  margin-inline: auto;
  padding-bottom: clamp(44px, 7vw, 84px);
}

.team-hero-copy h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(3.5rem, 7vw, 7.5rem);
}

.team-hero-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
}

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

.profile-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1fr);
  background: var(--white);
  border: 1px solid rgba(11, 61, 46, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.profile-image {
  min-height: 100%;
  background: var(--leaf-100);
}

.profile-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.profile-copy {
  padding: clamp(30px, 4vw, 48px);
}

.profile-role {
  display: block;
  margin-bottom: 14px;
  color: var(--forest-700);
  font-size: 0.73rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-copy h3 {
  margin-bottom: 20px;
}

.profile-copy p {
  color: var(--muted);
  font-size: 0.96rem;
}

.advisor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.advisor-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(11, 61, 46, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.advisor-image {
  aspect-ratio: 1;
  overflow: hidden;
}

.advisor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.advisor-card:hover .advisor-image img {
  transform: scale(1.025);
}

.advisor-copy {
  flex: 1;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.advisor-copy h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.advisor-role {
  display: block;
  margin-bottom: 16px;
  color: var(--forest-700);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.advisor-copy p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.advisor-link {
  width: fit-content;
  margin-top: auto;
  padding-top: 12px;
  color: var(--forest-800);
  font-size: 0.82rem;
  font-weight: 760;
  text-decoration: none;
}

.advisor-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.error-page {
  min-height: calc(100svh - var(--header-height));
  padding: 80px 0;
  display: grid;
  place-items: center;
  text-align: center;
}

.error-code {
  display: block;
  color: var(--leaf-500);
  font-family: "Gro Display", sans-serif;
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.error-page h1 {
  margin: 28px 0 18px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.error-page p {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0, 1);
}

.js .reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .desktop-cta {
    display: none;
  }

  .intro-grid,
  .contact-panel-grid,
  .quality-band {
    grid-template-columns: 1fr;
  }

  .contact-panel-grid {
    gap: 44px;
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(400px, 1.14fr);
    gap: 44px;
  }

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

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

@media (max-width: 860px) {
  :root {
    --container: min(100% - 32px, 720px);
    --header-height: 78px;
  }

  body {
    font-size: 17px;
  }

  .brand img {
    width: 210px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    padding: 42px 24px 80px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--sand-50);
    overflow-y: auto;
  }

  .js .site-nav {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: visibility 180ms, opacity 180ms ease, transform 180ms ease;
  }

  .js .nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-family: "Gro Display", sans-serif;
    font-size: 1.65rem;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 28px;
  }

  .site-nav .desktop-cta {
    display: inline-flex;
  }

  .hero,
  .hero-shell {
    min-height: calc(100svh - var(--header-height));
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(5, 29, 22, 0.86), rgba(5, 29, 22, 0.38)),
      linear-gradient(0deg, rgba(5, 29, 22, 0.68), transparent 54%);
  }

  .hero-copy {
    width: 100%;
  }

  .hero-note {
    display: none;
  }

  .feature-grid,
  .vision-lead,
  .usp-grid,
  .award-feature,
  .award-feature:nth-child(even),
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-copy {
    max-width: 680px;
  }

  .page-hero-media {
    aspect-ratio: 16 / 12;
  }

  .award-feature:nth-child(even) .award-media {
    order: initial;
  }

  .media-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(420px, 1fr) minmax(240px, 0.6fr);
  }

  .media-grid .gallery-link:first-child {
    grid-column: 1 / 3;
    grid-row: 1;
  }

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

  .footer-brand {
    grid-column: 1 / 3;
  }

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

  .footer-cta .button {
    width: fit-content;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100vw - 28px);
    --radius-xl: 24px;
    --radius-lg: 20px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .brand img {
    width: 186px;
  }

  .hero-shell {
    padding-top: 72px;
    align-items: flex-end;
  }

  .hero h1 {
    margin-bottom: 22px;
  }

  .hero-copy > p {
    font-size: 1.03rem;
  }

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

  .section {
    padding: 84px 0;
  }

  .feature-copy,
  .usp-card {
    padding: 28px;
  }

  .media-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 330px);
  }

  .media-grid .gallery-link:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-link::after {
    opacity: 1;
    transform: none;
  }

  .contact-panel {
    padding: 34px 26px;
  }

  .page-hero {
    padding-top: 38px;
  }

  .page-hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.35rem);
  }

  .portrait-landscape {
    aspect-ratio: 4 / 5;
  }

  .nexus-grid,
  .advisor-grid {
    grid-template-columns: 1fr;
  }

  .nexus-card {
    min-height: 210px;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .profile-image img {
    min-height: 380px;
    max-height: 500px;
    object-position: top center;
  }

  .team-hero {
    min-height: 620px;
  }

  .team-hero > img {
    object-position: 55% center;
  }

  .wide-image.panorama-image {
    aspect-ratio: 16 / 7;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }

  .footer-cta {
    padding: 30px 24px;
  }

  .footer-cta .button {
    width: 100%;
  }

  .footer-bottom-links {
    justify-content: space-between;
  }
}

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

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

  .js .reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
