:root {
  --ink: #082f27;
  --ink-deep: #031f1a;
  --ink-night: #011714;
  --ink-soft: #27594e;
  --ink-muted: #6a7b73;
  --paper: #eadfcb;
  --paper-light: #f7efde;
  --paper-warm: #d8c5a5;
  --stone: #cdbb9b;
  --gold: #bf9655;
  --gold-light: #d5b36d;
  --gold-deep: #806032;
  --copper: #b76033;
  --rust: #8f3f25;
  --steel: #66717a;
  --sage: #6f806d;
  --line: rgba(191, 150, 85, 0.62);
  --line-soft: rgba(191, 150, 85, 0.26);
  --green-line: rgba(8, 47, 39, 0.18);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-heavy: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 34px 90px -54px rgba(3, 31, 26, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.38), transparent 28rem),
    linear-gradient(90deg, rgba(128, 96, 50, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(128, 96, 50, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 54px 54px, 54px 54px, auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 45;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 25% 18%, var(--ink) 0 0.55px, transparent 0.75px),
    radial-gradient(circle at 78% 62%, var(--gold-deep) 0 0.45px, transparent 0.7px);
  background-size: 13px 13px, 17px 17px;
}

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

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.page-frame {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
}

.site-page {
  min-height: 100dvh;
  color: var(--ink);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  background: var(--paper);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 70;
  transform: translateY(-140%);
  background: var(--paper-light);
  color: var(--ink-deep);
  border: 1px solid var(--gold);
  padding: 10px 14px;
  text-decoration: none;
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 260ms var(--ease);
}

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

.site-nav {
  position: relative;
  z-index: 40;
  color: var(--paper-light);
  background:
    radial-gradient(circle at 8% 0%, rgba(191, 150, 85, 0.16), transparent 24rem),
    linear-gradient(180deg, #092f28 0%, var(--ink-deep) 100%);
  border-bottom: 1px solid rgba(213, 179, 109, 0.76);
  box-shadow: 0 22px 64px -46px rgba(1, 23, 20, 0.92);
}

.site-nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 4px;
  background:
    linear-gradient(90deg, transparent 0 12%, var(--gold) 12% 88%, transparent 88% 100%);
  opacity: 0.68;
}

.site-nav__bar {
  min-height: 114px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: 0 clamp(20px, 4vw, 64px);
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 38px);
}

.site-nav__links--left {
  justify-content: flex-start;
}

.site-nav__links--right {
  justify-content: flex-end;
}

.site-nav__link {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  position: relative;
  color: rgba(247, 239, 222, 0.78);
  text-decoration: none;
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 280ms var(--ease), transform 280ms var(--ease);
}

.site-nav__link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 5px;
  height: 5px;
  border: 1px solid var(--gold-light);
  background: var(--ink-deep);
  opacity: 0;
  transform: translateX(-50%) rotate(45deg) scale(0.72);
  transition: opacity 280ms var(--ease), transform 320ms var(--ease);
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light) 22% 78%, transparent);
  opacity: 0;
  transform: translateX(-50%) scaleX(0.4);
  transform-origin: center;
  transition: opacity 280ms var(--ease), transform 360ms var(--ease);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--gold-light);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.site-nav__link:hover::before,
.site-nav__link.is-active::before {
  opacity: 1;
  transform: translateX(-50%) rotate(45deg) scale(1);
}

.site-nav__brand {
  position: relative;
  min-width: 272px;
  min-height: 114px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 30px 18px;
  color: var(--gold-light);
  text-align: center;
  text-decoration: none;
  isolation: isolate;
}

.site-nav__brand::before {
  content: "";
  position: absolute;
  inset: 0 0 -14px;
  z-index: -1;
  background: var(--ink-deep);
  border: 1px solid rgba(213, 179, 109, 0.78);
  border-top: 0;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 88% 100%, 12% 100%, 0 78%);
  box-shadow: 0 18px 42px -26px rgba(0, 0, 0, 0.72);
}

.site-nav__brand::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -19px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold-light);
  background: var(--ink-deep);
  transform: translateX(-50%) rotate(45deg);
}

.site-nav__logo {
  width: auto;
  height: 56px;
  object-fit: contain;
  filter: sepia(1) saturate(0.8) brightness(1.25) drop-shadow(0 7px 14px rgba(0, 0, 0, 0.22));
}

.site-nav__brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.site-nav__brand-copy strong {
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 0.86;
}

.site-nav__brand-copy span,
.site-nav__brand-copy small {
  display: block;
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav__brand-copy span {
  color: rgba(247, 239, 222, 0.86);
  font-size: 0.68rem;
}

.site-nav__brand-copy small {
  color: var(--gold-light);
  font-size: 0.62rem;
}

.site-nav__toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border: 1px solid rgba(213, 179, 109, 0.56);
  border-radius: 4px;
  background: rgba(247, 239, 222, 0.05);
  color: var(--gold-light);
  cursor: pointer;
  transition: transform 260ms var(--ease), background 260ms var(--ease);
}

.site-nav__toggle:active {
  transform: scale(0.97);
}

.site-nav__toggle-lines {
  position: relative;
  width: 22px;
  height: 16px;
  display: block;
}

.site-nav__toggle-lines span {
  position: absolute;
  left: 0;
  width: 22px;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition: transform 360ms var(--ease), opacity 220ms var(--ease);
}

.site-nav__toggle-lines span:nth-child(1) {
  transform: translateY(0);
}

.site-nav__toggle-lines span:nth-child(2) {
  transform: translateY(7px);
}

.site-nav__toggle-lines span:nth-child(3) {
  transform: translateY(14px);
}

.site-nav.is-open .site-nav__toggle-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav.is-open .site-nav__toggle-lines span:nth-child(2) {
  opacity: 0;
}

.site-nav.is-open .site-nav__toggle-lines span:nth-child(3) {
  transform: translateY(7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.ornament {
  display: block;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-deep);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.site-nav + main {
  position: relative;
}

.home-hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(247, 239, 222, 0.98) 0%, rgba(247, 239, 222, 0.9) 33%, rgba(247, 239, 222, 0.44) 52%, rgba(247, 239, 222, 0) 74%),
    url("assets/gcc-architectural-metal-bg.png");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--gold);
}

.home-hero::before,
.lattice-field::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(135deg, transparent 0 42%, rgba(191, 150, 85, 0.18) 42% 43%, transparent 43% 100%),
    linear-gradient(45deg, transparent 0 42%, rgba(8, 47, 39, 0.14) 42% 43%, transparent 43% 100%);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 48%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  width: min(590px, calc(100% - 40px));
  margin-left: clamp(22px, 10vw, 190px);
  padding-top: 52px;
}

.hero-title {
  margin: 18px 0 0;
  color: var(--ink-deep);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 5.7rem;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-title span {
  display: block;
  margin-top: 10px;
  color: var(--gold-deep);
  font-size: 2.2rem;
  font-style: italic;
  line-height: 1.08;
}

.hero-lede {
  max-width: 54ch;
  margin: 26px 0 0;
  color: rgba(8, 47, 39, 0.76);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.78;
  text-wrap: pretty;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 7px 8px 7px 22px;
  border: 1px solid currentColor;
  color: var(--ink-deep);
  text-decoration: none;
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 300ms var(--ease), background 300ms var(--ease), color 300ms var(--ease);
}

.button--primary {
  color: var(--paper-light);
  background: var(--ink-deep);
  border-color: var(--ink-deep);
}

.button--secondary {
  color: var(--ink-deep);
  background: rgba(247, 239, 222, 0.54);
}

.button--gold {
  color: var(--ink-deep);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

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

.button:active {
  transform: scale(0.98);
}

.button-icon {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(247, 239, 222, 0.13);
  color: var(--gold-light);
  transition: transform 300ms var(--ease), background 300ms var(--ease);
}

.button--secondary .button-icon {
  background: rgba(8, 47, 39, 0.1);
  color: var(--ink-deep);
}

.button--gold .button-icon {
  color: var(--paper-light);
  background: rgba(8, 47, 39, 0.18);
}

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

.fact-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0 clamp(20px, 3vw, 58px);
  transform: translateY(-50%);
  background:
    radial-gradient(circle at 8% 0%, rgba(191, 150, 85, 0.12), transparent 24rem),
    var(--ink-deep);
  border: 1px solid var(--gold);
  color: var(--paper-light);
  box-shadow: var(--shadow);
}

.fact-strip__item {
  min-height: 124px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 20px 18px;
  text-align: center;
  border-right: 1px solid rgba(213, 179, 109, 0.48);
}

.fact-strip__item:last-child {
  border-right: 0;
}

.fact-strip__item strong {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
}

.fact-strip__item span {
  color: rgba(247, 239, 222, 0.68);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.45;
  text-transform: uppercase;
}

.icon-glyph {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid currentColor;
  border-radius: 50%;
}

.icon-glyph span,
.icon-glyph::before,
.icon-glyph::after {
  content: "";
  position: absolute;
  display: block;
  border-color: currentColor;
}

.icon-glyph--stack span {
  width: 18px;
  height: 12px;
  border: 1px solid currentColor;
  transform: translateY(5px);
}

.icon-glyph--stack::before,
.icon-glyph--stack::after {
  width: 18px;
  height: 12px;
  border: 1px solid currentColor;
}

.icon-glyph--stack::before {
  transform: translateY(-5px);
}

.icon-glyph--stack::after {
  width: 26px;
  transform: translateY(14px);
  border-top: 1px solid currentColor;
}

.icon-glyph--grain span,
.icon-glyph--spice span {
  width: 22px;
  height: 22px;
  border: 1px solid currentColor;
  border-radius: 50% 0 50% 0;
  transform: rotate(45deg);
}

.icon-glyph--grain::before,
.icon-glyph--spice::before,
.icon-glyph--compass::before {
  width: 1px;
  height: 26px;
  background: currentColor;
}

.icon-glyph--grain::after,
.icon-glyph--spice::after,
.icon-glyph--compass::after {
  width: 26px;
  height: 1px;
  background: currentColor;
}

.icon-glyph--care span {
  width: 22px;
  height: 7px;
  background: currentColor;
}

.icon-glyph--care::before {
  width: 7px;
  height: 22px;
  background: currentColor;
}

.icon-glyph--gear span {
  width: 22px;
  height: 22px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.icon-glyph--gear::before {
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.icon-glyph--gear::after,
.icon-glyph--compass span {
  width: 30px;
  height: 1px;
  background: currentColor;
  transform: rotate(45deg);
}

.icon-glyph--compass span {
  height: 30px;
  width: 1px;
}

.home-after-hero {
  padding-bottom: 72px;
}

.section {
  position: relative;
  padding: 96px clamp(20px, 4vw, 64px);
}

.section--tight {
  padding-top: 54px;
}

.section--light {
  background: var(--paper-light);
}

.section--dark {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 10%, rgba(191, 150, 85, 0.12), transparent 22rem),
    linear-gradient(180deg, var(--ink-deep), var(--ink-night));
  color: var(--paper-light);
}

.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(90deg, rgba(213, 179, 109, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(213, 179, 109, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
}

.section > * {
  position: relative;
  z-index: 1;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  max-width: 1380px;
  margin: 0 auto 46px;
}

.section-head--center {
  display: block;
  max-width: 900px;
  text-align: center;
}

.section-head--center .eyebrow {
  justify-content: center;
}

.section-head--center .eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.section-head--light .eyebrow,
.section--dark .eyebrow {
  color: var(--gold-light);
}

.section-title {
  margin: 14px 0 0;
  color: var(--ink-deep);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 4.65rem;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-title em {
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 300;
}

.section--dark .section-title {
  color: var(--paper-light);
}

.section--dark .section-title em {
  color: var(--gold-light);
}

.section-copy {
  max-width: 58ch;
  margin: 0;
  color: var(--ink-soft);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.section--dark .section-copy {
  color: rgba(247, 239, 222, 0.74);
}

.division-ribbon {
  position: relative;
  max-width: 1380px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid var(--gold);
  background: rgba(247, 239, 222, 0.86);
  box-shadow: var(--shadow);
}

.division-ribbon a {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px 16px;
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  border-right: 1px solid var(--line-soft);
  transition: background 280ms var(--ease), transform 280ms var(--ease);
}

.division-ribbon a:last-child {
  border-right: 0;
}

.division-ribbon a:hover {
  background: var(--paper-light);
  transform: translateY(-2px);
}

.division-ribbon strong {
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.division-ribbon span {
  color: var(--ink-deep);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.division-mosaic {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.division-card {
  min-height: 252px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(150px, 1.05fr);
  overflow: hidden;
  color: var(--paper-light);
  text-decoration: none;
  background: var(--ink-deep);
  border: 1px solid var(--gold);
  box-shadow: 0 18px 48px -38px rgba(3, 31, 26, 0.7);
  transition: transform 420ms var(--ease-heavy), box-shadow 420ms var(--ease-heavy);
}

.division-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px -44px rgba(3, 31, 26, 0.86);
}

.division-card__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  padding: 26px 28px 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(191, 150, 85, 0.14), transparent 16rem),
    var(--ink-deep);
}

.division-card__copy::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.8;
}

.division-card .icon-glyph {
  width: 46px;
  height: 46px;
  color: var(--gold-light);
}

.division-card__roman {
  position: absolute;
  right: 18px;
  top: 14px;
  color: rgba(213, 179, 109, 0.24);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

.division-card h3 {
  margin: 0;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.division-card p {
  max-width: 32ch;
  margin: 0;
  color: rgba(247, 239, 222, 0.66);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.84rem;
  line-height: 1.64;
}

.division-card small {
  margin-top: 4px;
  color: rgba(213, 179, 109, 0.82);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.division-card--compact .material-visual {
  min-height: 150px;
}

.material-visual,
.material-plate {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--material-bg);
}

.material-visual__image,
.material-plate__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.001);
  transition: transform 520ms var(--ease-heavy), filter 520ms var(--ease-heavy);
}

.division-card:hover .material-visual__image {
  transform: scale(1.04);
}

.material-visual::before,
.material-plate::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(1, 23, 20, 0.02) 0%, rgba(1, 23, 20, 0.22) 100%),
    radial-gradient(circle at 12% 10%, rgba(213, 179, 109, 0.14), transparent 38rem);
  pointer-events: none;
}

.material-visual::before,
.material-visual::after,
.material-plate::before,
.material-plate::after,
.material-visual__grain {
  z-index: 1;
  pointer-events: none;
}

.material-visual::after,
.material-plate::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(247, 239, 222, 0.1), transparent 44%);
  opacity: 0.42;
}

.material-visual__grain {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 18px 18px, 18px 18px;
  mix-blend-mode: soft-light;
}

.material-visual--metals,
.material-plate--metals {
  --material-bg:
    linear-gradient(135deg, transparent 0 38%, rgba(102, 113, 122, 0.88) 38% 54%, transparent 54% 100%),
    radial-gradient(90% 80% at 24% 12%, #d5894c 0%, #8d4e2f 38%, #231913 72%, #0d0b09 100%);
}

.material-visual--food,
.material-plate--food {
  --material-bg:
    radial-gradient(circle at 76% 30%, rgba(247, 239, 222, 0.86) 0 2rem, transparent 2.1rem),
    radial-gradient(circle at 28% 40%, #d7c066 0%, #947b34 38%, #312811 72%, #100d08 100%);
}

.material-visual--spices,
.material-plate--spices {
  --material-bg:
    radial-gradient(circle at 74% 30%, #b8613d 0 2.2rem, transparent 2.3rem),
    radial-gradient(circle at 54% 62%, #8f3f25 0 2.8rem, transparent 2.9rem),
    radial-gradient(90% 80% at 28% 16%, #ba6a38 0%, #6b2c1b 42%, #27110d 76%, #100807 100%);
}

.material-visual--healthcare,
.material-plate--healthcare {
  --material-bg:
    radial-gradient(circle at 36% 42%, rgba(247, 247, 244, 0.86) 0 1.6rem, transparent 1.7rem),
    linear-gradient(135deg, transparent 0 46%, rgba(230, 234, 232, 0.48) 46% 48%, transparent 48% 100%),
    radial-gradient(90% 80% at 24% 16%, #a7bbb3 0%, #526e69 42%, #182825 76%, #071110 100%);
}

.material-visual--engineering,
.material-plate--engineering {
  --material-bg:
    radial-gradient(circle at 52% 46%, rgba(230, 233, 233, 0.38) 0 2.8rem, transparent 3rem),
    repeating-radial-gradient(circle at 52% 46%, rgba(255, 255, 255, 0.24) 0 1px, transparent 1px 8px),
    radial-gradient(90% 80% at 24% 16%, #aab2b9 0%, #56626d 42%, #202932 76%, #090d12 100%);
}

.material-visual--allied,
.material-plate--allied {
  --material-bg:
    linear-gradient(135deg, transparent 0 48%, rgba(191, 150, 85, 0.72) 48% 50%, transparent 50% 100%),
    radial-gradient(90% 80% at 24% 16%, #d3b978 0%, #857243 42%, #342b1b 76%, #0f0c08 100%);
}

.method-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
}

.method-panel {
  border: 1px solid rgba(213, 179, 109, 0.5);
  padding: 28px;
  background: rgba(247, 239, 222, 0.06);
}

.method-panel h3,
.founder-panel h3,
.contact-side h3 {
  margin: 12px 0 0;
  color: var(--paper-light);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 2.45rem;
  font-weight: 400;
  line-height: 1.05;
}

.method-panel p,
.founder-panel p,
.contact-side p {
  margin: 18px 0 0;
  color: rgba(247, 239, 222, 0.72);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.96rem;
  line-height: 1.7;
}

.method-ledger {
  border-top: 1px solid rgba(213, 179, 109, 0.45);
}

.method-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(213, 179, 109, 0.26);
}

.method-row strong {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.method-row h3 {
  margin: 0;
  color: var(--paper-light);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 2.15rem;
  font-weight: 400;
}

.method-row p {
  margin: 8px 0 0;
  color: rgba(247, 239, 222, 0.68);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  line-height: 1.68;
}

.founder-split,
.story-split,
.contact-layout,
.network-layout {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.founder-panel,
.portrait-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold);
  background: var(--ink-deep);
  box-shadow: var(--shadow);
}

.portrait-panel {
  aspect-ratio: 4 / 5;
  isolation: isolate;
}

.portrait-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(213, 179, 109, 0.42);
  pointer-events: none;
}

.portrait-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.32;
  background:
    linear-gradient(180deg, rgba(1, 23, 20, 0) 0%, rgba(1, 23, 20, 0.16) 58%, rgba(1, 23, 20, 0.72) 100%),
    repeating-linear-gradient(0deg, rgba(213, 179, 109, 0.36) 0 0.5px, transparent 0.5px 4px);
  pointer-events: none;
  mix-blend-mode: multiply;
}

.portrait-panel__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 18%;
  filter: saturate(0.92) contrast(1.04);
}

.portrait-panel__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 3;
  color: var(--gold-light);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(1, 23, 20, 0.82);
}

.founder-copy h2,
.story-copy h2 {
  margin: 14px 0 0;
  color: var(--ink-deep);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.founder-copy h2 em,
.story-copy h2 em {
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 300;
}

.founder-copy p,
.story-copy p,
.long-copy p {
  max-width: 66ch;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.founder-summary {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.founder-summary__copy {
  padding-block: 4px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-soft);
}

.founder-summary__copy p {
  margin: 24px 0;
  color: var(--ink-soft);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.76;
  text-wrap: pretty;
}

.founder-summary__notes {
  display: grid;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(191, 150, 85, 0.1), transparent 18rem),
    rgba(247, 239, 222, 0.58);
}

.founder-summary__notes article {
  padding: 24px 26px 26px;
  border-bottom: 1px solid var(--line-soft);
}

.founder-summary__notes article:last-child {
  border-bottom: 0;
}

.founder-summary__notes span {
  display: block;
  color: var(--gold-deep);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.founder-summary__notes h3 {
  margin: 10px 0 0;
  color: var(--ink-deep);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.08;
}

.founder-summary__notes p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  line-height: 1.64;
}

.proof-grid,
.value-grid,
.figures-grid {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  background: rgba(247, 239, 222, 0.46);
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.proof-grid div,
.value-grid article,
.figures-grid div {
  padding: 22px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.proof-grid div:last-child {
  border-right: 0;
}

.proof-grid strong,
.figures-grid strong {
  display: block;
  color: var(--ink-deep);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.proof-grid span,
.figures-grid span,
.value-grid span {
  display: block;
  margin-top: 9px;
  color: var(--gold-deep);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.45;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 74px clamp(20px, 4vw, 64px) 72px;
  border-bottom: 1px solid var(--gold);
  text-align: center;
}

.page-hero--dark {
  color: var(--paper-light);
  background:
    linear-gradient(180deg, var(--ink-deep), #0a332b);
}

.page-hero--light {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(247, 239, 222, 0.88), rgba(247, 239, 222, 0.6)),
    url("assets/gcc-architectural-metal-bg.png");
  background-size: cover;
  background-position: center;
}

.page-hero__arch {
  position: absolute;
  left: clamp(18px, 6vw, 110px);
  right: clamp(18px, 6vw, 110px);
  bottom: 28px;
  height: 76%;
  border: 1px solid rgba(213, 179, 109, 0.68);
  border-bottom: 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(191, 150, 85, 0.12), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(1, 23, 20, 0.28);
  border-top-left-radius: 48% 100%;
  border-top-right-radius: 48% 100%;
  opacity: 0.95;
}

.page-hero--light .page-hero__arch {
  background: rgba(247, 239, 222, 0.42);
  opacity: 0.46;
}

.page-hero__arch::before,
.page-hero__arch::after {
  content: "";
  position: absolute;
  top: -1px;
  width: 18%;
  height: 100%;
  border-top: 1px solid rgba(213, 179, 109, 0.64);
  background-image:
    linear-gradient(45deg, transparent 0 45%, rgba(213, 179, 109, 0.22) 45% 48%, transparent 48% 100%),
    linear-gradient(135deg, transparent 0 45%, rgba(213, 179, 109, 0.16) 45% 48%, transparent 48% 100%);
  background-size: 34px 34px;
}

.page-hero__arch::before {
  left: 0;
  border-left: 1px solid rgba(213, 179, 109, 0.64);
}

.page-hero__arch::after {
  right: 0;
  border-right: 1px solid rgba(213, 179, 109, 0.64);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  display: grid;
  justify-items: center;
}

.page-hero h1 {
  margin: 16px 0 0;
  color: inherit;
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.page-hero h1 em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 300;
}

.page-hero--light h1 em {
  color: var(--gold-deep);
}

.page-hero p {
  max-width: 68ch;
  margin: 22px auto 26px;
  color: rgba(247, 239, 222, 0.74);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.page-hero--light p {
  color: var(--ink-soft);
}

.detail-stack {
  display: grid;
  gap: 34px;
}

.detail-desk {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(247, 239, 222, 0.5);
}

.detail-desk:nth-child(even) {
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
}

.detail-desk:nth-child(even) .detail-desk__visual {
  order: 2;
}

.detail-desk__visual {
  min-height: 420px;
}

.material-plate {
  min-height: 100%;
  border: 1px solid var(--gold);
}

.material-plate__bezel {
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(247, 239, 222, 0.34);
  pointer-events: none;
}

.material-plate__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  color: var(--paper-light);
  text-shadow: 0 2px 16px rgba(1, 23, 20, 0.86);
}

.material-plate__caption span {
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.material-plate__caption strong {
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.detail-desk__copy {
  align-self: center;
  min-width: 0;
}

.detail-desk__copy h2 {
  margin: 8px 0 0;
  color: var(--ink-deep);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 0.98;
}

.detail-desk__copy p {
  max-width: 64ch;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.72;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.product-list li {
  padding: 10px 0;
  color: var(--ink-deep);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line-soft);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  border: 1px solid var(--line-soft);
}

.spec-grid div {
  padding: 16px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.spec-grid div:nth-child(even) {
  border-right: 0;
}

.spec-grid strong {
  display: block;
  color: var(--gold-deep);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.spec-grid span {
  display: block;
  margin-top: 8px;
  color: var(--ink-deep);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 1.15rem;
}

.story-nav {
  display: grid;
  gap: 10px;
  align-self: start;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(247, 239, 222, 0.64);
}

.story-nav a {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: baseline;
  color: var(--ink-soft);
  text-decoration: none;
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line-soft);
  padding: 10px 0;
}

.story-nav strong {
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
}

.long-copy article {
  padding: 0 0 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line-soft);
}

.long-copy h3 {
  margin: 0;
  color: var(--ink-deep);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 2.6rem;
  font-weight: 400;
}

.value-grid {
  max-width: 1180px;
  margin: 44px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-grid article:nth-child(3n) {
  border-right: 0;
}

.value-grid h3 {
  margin: 8px 0 0;
  color: var(--ink-deep);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 2.15rem;
  font-weight: 400;
}

.value-grid p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.94rem;
  line-height: 1.68;
}

.figures-grid {
  max-width: 1180px;
  margin: 44px auto 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.figures-grid div:nth-child(4n) {
  border-right: 0;
}

.timeline {
  max-width: 1120px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.timeline-row {
  display: grid;
  grid-template-columns: 120px 1fr 1fr 1.7fr;
  gap: 28px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-row strong {
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 400;
}

.timeline-row span {
  color: var(--ink-deep);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline-row em {
  color: var(--ink-deep);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
}

.timeline-row p {
  margin: 0;
  color: var(--ink-soft);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  line-height: 1.62;
}

.letter-block {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.letter-block h2 {
  margin: 18px 0 24px;
  color: var(--paper-light);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 3.7rem;
  font-weight: 400;
  line-height: 1.05;
}

.letter-block h2 em {
  color: var(--gold-light);
  font-style: italic;
}

.letter-columns {
  column-count: 2;
  column-gap: 54px;
  text-align: left;
}

.letter-columns p {
  margin: 0 0 16px;
  color: rgba(247, 239, 222, 0.75);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 1.32rem;
  line-height: 1.64;
}

.network-layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.route-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--gold);
  background:
    linear-gradient(135deg, rgba(247, 239, 222, 0.58), rgba(234, 223, 203, 0.88)),
    radial-gradient(circle at 42% 47%, rgba(191, 150, 85, 0.18), transparent 18rem),
    var(--paper-light);
}

.route-panel--compact {
  min-height: 420px;
}

.route-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(128, 96, 50, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(128, 96, 50, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.route-panel__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-panel__lines path {
  fill: none;
  stroke: var(--gold-deep);
  stroke-width: 0.26;
  stroke-dasharray: 1.2 1.3;
  vector-effect: non-scaling-stroke;
  animation: dash-drift 18s linear infinite;
}

.route-pin {
  position: absolute;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  text-align: center;
  white-space: nowrap;
}

.route-pin span {
  width: 9px;
  height: 9px;
  display: block;
  border-radius: 50%;
  background: var(--ink-deep);
  box-shadow: 0 0 0 4px rgba(247, 239, 222, 0.8);
}

.route-pin--home span {
  width: 17px;
  height: 17px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(247, 239, 222, 0.86), 0 0 0 6px var(--gold);
}

.route-pin strong {
  margin-top: 8px;
  color: var(--ink-deep);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
}

.route-pin small {
  margin-top: 3px;
  color: var(--gold-deep);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.route-panel__caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: var(--gold-deep);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.service-grid article {
  min-height: 230px;
  padding: 30px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(247, 239, 222, 0.4);
}

.service-grid article:nth-child(3n) {
  border-right: 0;
}

.service-grid strong {
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 400;
}

.service-grid h3 {
  margin: 10px 0 0;
  color: var(--ink-deep);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.service-grid p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.93rem;
  line-height: 1.65;
}

.banking-list {
  border-top: 1px solid rgba(213, 179, 109, 0.32);
}

.banking-list div {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(213, 179, 109, 0.24);
}

.banking-list strong {
  color: var(--gold-light);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.banking-list span {
  color: var(--paper-light);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 1.15rem;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: start;
}

.contact-form,
.contact-side,
.contact-card {
  border: 1px solid var(--line);
  background: rgba(247, 239, 222, 0.62);
  padding: clamp(24px, 4vw, 38px);
}

.desk-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.desk-picker button {
  min-height: 40px;
  padding: 8px 13px;
  color: var(--ink-deep);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 240ms var(--ease), color 240ms var(--ease), transform 240ms var(--ease);
}

.desk-picker button.is-active,
.desk-picker button:hover {
  color: var(--paper-light);
  background: var(--ink-deep);
}

.form-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--full,
.form-note,
.form-actions,
.form-success,
.form-error {
  grid-column: 1 / -1;
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.field label {
  color: var(--gold-deep);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(247, 239, 222, 0.8);
  color: var(--ink-deep);
  padding: 14px 15px;
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 1.25rem;
  outline: none;
  transition: border-color 240ms var(--ease), background 240ms var(--ease);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.5;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--ink-deep);
  background: var(--paper-light);
}

.form-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  line-height: 1.58;
}

.form-note input {
  margin-top: 4px;
  accent-color: var(--ink-deep);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.form-actions p {
  margin: 0;
  color: var(--ink-soft);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.9rem;
}

.submit-button {
  min-height: 48px;
  border: 1px solid var(--ink-deep);
  border-radius: 4px;
  padding: 7px 8px 7px 22px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: var(--ink-deep);
  color: var(--paper-light);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 260ms var(--ease), background 260ms var(--ease);
}

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

.submit-button:disabled,
.desk-picker button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-success {
  padding: 18px;
  color: var(--paper-light);
  background: var(--ink-deep);
  border: 1px solid var(--gold);
}

.form-success strong {
  display: block;
  color: var(--gold-light);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.form-success span {
  display: block;
  margin-top: 8px;
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
}

.form-error {
  padding: 18px;
  color: var(--paper-light);
  background: var(--rust);
  border: 1px solid var(--copper);
}

.form-error strong {
  display: block;
  color: var(--paper-light);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.form-error span {
  display: block;
  margin-top: 8px;
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-side {
  display: grid;
  gap: 18px;
  background: transparent;
  border: 0;
  padding: 0;
}

.contact-card {
  background: rgba(247, 239, 222, 0.65);
}

.contact-card--dark {
  background: var(--ink-deep);
  color: var(--paper-light);
}

.contact-card h3 {
  margin: 8px 0 0;
  color: inherit;
}

.contact-card p {
  color: var(--ink-soft);
}

.contact-card--dark p {
  color: rgba(247, 239, 222, 0.68);
}

.pair-list {
  margin-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.pair-list div {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
}

.pair-list strong {
  color: var(--gold-deep);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.pair-list span {
  color: var(--ink-deep);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 1.06rem;
}

.contact-card--dark .pair-list span {
  color: var(--paper-light);
}

.closing-band {
  position: relative;
  overflow: hidden;
  padding: 92px clamp(20px, 4vw, 64px);
  color: var(--paper-light);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(3, 31, 26, 0.94), rgba(3, 31, 26, 0.78)),
    url("assets/gcc-architectural-metal-bg.png");
  background-size: cover;
  background-position: center;
}

.closing-band__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

.closing-band h2 {
  margin: 18px 0 0;
  color: var(--paper-light);
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.02;
}

.closing-band h2 em {
  color: var(--gold-light);
  font-style: italic;
}

.closing-band p {
  max-width: 68ch;
  margin: 22px auto 0;
  color: rgba(247, 239, 222, 0.72);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.72;
}

.closing-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.site-footer {
  color: var(--paper-light);
  background:
    radial-gradient(circle at 88% 0%, rgba(191, 150, 85, 0.13), transparent 22rem),
    var(--ink-deep);
  border-top: 1px solid var(--gold);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(160px, 1fr));
  gap: clamp(26px, 4vw, 54px);
  padding: 56px clamp(20px, 4vw, 64px) 32px;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-light);
  text-decoration: none;
}

.site-footer__logo {
  width: auto;
  height: 74px;
  filter: sepia(1) saturate(0.8) brightness(1.25);
}

.site-footer__brand strong {
  display: block;
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 0.9;
}

.site-footer__brand small,
.site-footer__group h3,
.site-footer__bottom {
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer__brand small {
  color: rgba(247, 239, 222, 0.74);
}

.site-footer__intro p {
  max-width: 36ch;
  margin: 18px 0 18px;
  color: rgba(247, 239, 222, 0.68);
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  line-height: 1.7;
}

.site-footer__group h3 {
  margin: 0;
  color: var(--gold-light);
}

.site-footer__links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.site-footer__links a {
  color: rgba(247, 239, 222, 0.7);
  text-decoration: none;
  font-family: "DM Sans", "Geist", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  line-height: 1.45;
  transition: color 240ms var(--ease), transform 240ms var(--ease);
}

.site-footer__links a:hover {
  color: var(--gold-light);
  transform: translateX(2px);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(20px, 4vw, 64px) 24px;
  border-top: 1px solid rgba(213, 179, 109, 0.22);
  color: rgba(247, 239, 222, 0.58);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-footer__bottom a {
  color: inherit;
  text-decoration: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal][style*="--i"] {
  transition-delay: calc(var(--i) * 70ms);
}

@keyframes dash-drift {
  to {
    stroke-dashoffset: -90;
  }
}

@media (max-width: 1120px) {
  .site-nav__bar {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav__links {
    display: none;
  }

  .site-nav__brand {
    justify-self: start;
    min-width: 240px;
    min-height: 96px;
  }

  .site-nav__brand-copy strong {
    font-size: 2.5rem;
  }

  .site-nav__toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    border-top: 1px solid rgba(213, 179, 109, 0.24);
    transition: grid-template-rows 460ms var(--ease);
  }

  .site-nav.is-open .mobile-menu {
    grid-template-rows: 1fr;
  }

  .mobile-menu__inner {
    min-height: 0;
    display: grid;
    gap: 4px;
    padding: 0 clamp(20px, 4vw, 64px);
  }

  .site-nav.is-open .mobile-menu__inner {
    padding-top: 18px;
    padding-bottom: 24px;
  }

  .mobile-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    color: var(--paper-light);
    text-decoration: none;
    font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
    font-size: 2rem;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 340ms var(--ease), transform 340ms var(--ease), color 240ms var(--ease);
  }

  .site-nav.is-open .mobile-menu a {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav.is-open .mobile-menu a:nth-child(2) {
    transition-delay: 45ms;
  }

  .site-nav.is-open .mobile-menu a:nth-child(3) {
    transition-delay: 90ms;
  }

  .site-nav.is-open .mobile-menu a:nth-child(4) {
    transition-delay: 135ms;
  }

  .site-nav.is-open .mobile-menu a:nth-child(5) {
    transition-delay: 180ms;
  }

  .site-nav.is-open .mobile-menu a:nth-child(6) {
    transition-delay: 225ms;
  }

  .mobile-menu a.is-active {
    color: var(--gold-light);
  }

  .home-hero {
    min-height: 640px;
    background-position: 62% center;
  }

  .home-hero__content {
    margin-left: clamp(22px, 6vw, 80px);
  }

  .hero-title,
  .page-hero h1 {
    font-size: 4.35rem;
  }

  .section-title {
    font-size: 3.8rem;
  }

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

  .division-ribbon {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .division-ribbon a {
    flex: 0 0 220px;
    scroll-snap-align: start;
  }

  .fact-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    transform: translateY(-28%);
  }

  .fact-strip__item:nth-child(3) {
    border-right: 0;
  }

  .fact-strip__item:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(213, 179, 109, 0.48);
  }

  .section-head,
  .method-grid,
  .founder-split,
  .founder-summary,
  .story-split,
  .contact-layout,
  .network-layout {
    grid-template-columns: 1fr;
  }

  .detail-desk,
  .detail-desk:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .detail-desk:nth-child(even) .detail-desk__visual {
    order: 0;
  }

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

  .service-grid article:nth-child(3n) {
    border-right: 1px solid var(--line-soft);
  }

  .service-grid article:nth-child(even) {
    border-right: 0;
  }

  .timeline-row {
    grid-template-columns: 100px 1fr 1.3fr;
  }

  .timeline-row p {
    grid-column: 2 / -1;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-nav__bar {
    min-height: 86px;
    padding-inline: 16px;
  }

  .site-nav__brand {
    min-width: 0;
    min-height: 78px;
    padding: 10px 16px;
  }

  .site-nav__brand::before,
  .site-nav__brand::after {
    display: none;
  }

  .site-nav__logo {
    height: 48px;
  }

  .site-nav__brand-copy strong {
    font-size: 2rem;
  }

  .site-nav__brand-copy span,
  .site-nav__brand-copy small {
    font-size: 0.55rem;
  }

  .home-hero {
    min-height: auto;
    padding: 64px 18px 90px;
    background-image:
      linear-gradient(180deg, rgba(247, 239, 222, 0.96), rgba(247, 239, 222, 0.86)),
      url("assets/gcc-architectural-metal-bg.png");
    background-position: 70% center;
  }

  .home-hero__content {
    width: 100%;
    margin-left: 0;
    padding-top: 0;
  }

  .hero-title {
    font-size: 3.35rem;
  }

  .hero-title span {
    font-size: 1.72rem;
  }

  .hero-actions,
  .closing-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .submit-button {
    width: 100%;
    justify-content: space-between;
  }

  .fact-strip {
    grid-template-columns: 1fr;
    margin: -40px 18px 0;
    transform: none;
  }

  .fact-strip__item,
  .fact-strip__item:nth-child(3) {
    min-height: 98px;
    border-right: 0;
    border-bottom: 1px solid rgba(213, 179, 109, 0.48);
  }

  .fact-strip__item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 18px;
  }

  .section--tight {
    padding-top: 40px;
  }

  .section-title,
  .founder-copy h2,
  .story-copy h2,
  .detail-desk__copy h2,
  .closing-band h2 {
    font-size: 3rem;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .division-mosaic {
    grid-template-columns: 1fr;
  }

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

  .material-visual {
    min-height: 180px;
  }

  .method-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .proof-grid,
  .value-grid,
  .figures-grid,
  .service-grid,
  .form-grid,
  .spec-grid,
  .product-list {
    grid-template-columns: 1fr;
  }

  .value-grid article,
  .figures-grid div,
  .service-grid article,
  .proof-grid div {
    border-right: 0;
  }

  .page-hero {
    min-height: 300px;
    padding: 58px 18px 56px;
  }

  .page-hero h1 {
    font-size: 3.2rem;
  }

  .page-hero__arch {
    left: 16px;
    right: 16px;
    bottom: 20px;
    height: 72%;
  }

  .page-hero__arch::before,
  .page-hero__arch::after {
    width: 22%;
  }

  .detail-desk {
    padding: 16px;
  }

  .detail-desk__visual {
    min-height: 300px;
  }

  .timeline-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .timeline-row p {
    grid-column: auto;
  }

  .letter-columns {
    column-count: 1;
  }

  .route-panel,
  .route-panel--compact {
    min-height: 460px;
  }

  .route-pin small {
    display: none;
  }

  .route-pin strong {
    font-size: 1rem;
  }

  .banking-list div,
  .pair-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .site-nav__logo {
    height: 42px;
  }

  .site-nav__brand {
    gap: 8px;
    padding-inline: 4px;
  }

  .site-nav__brand-copy small {
    display: none;
  }

  .hero-title {
    font-size: 2.85rem;
  }

  .page-hero h1,
  .section-title,
  .founder-copy h2,
  .story-copy h2,
  .detail-desk__copy h2,
  .closing-band h2 {
    font-size: 2.55rem;
  }

  .division-card__copy {
    padding: 24px 22px 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
