:root {
  --navy: #0e2138;
  --navy-2: #142942;
  --forest: #133729;
  --forest-2: #24503c;
  --gold: #af8a48;
  --cedar: #865b2c;
  --copper: #b56b3d;
  --charcoal: #232727;
  --slate: #53606a;
  --stone: #f3eee5;
  --stone-2: #e6ded0;
  --bone: #fffaf2;
  --white: #ffffff;
  --line: rgba(14, 33, 56, 0.16);
  --line-dark: rgba(255, 250, 242, 0.18);
  --shadow: 0 20px 50px rgba(14, 33, 56, 0.15);
  --shadow-soft: 0 14px 34px rgba(14, 33, 56, 0.09);
  --content: 1180px;
  --wide: 1380px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--stone);
  color: var(--charcoal);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-color: rgba(175, 138, 72, 0.58);
  text-underline-offset: 0.22em;
}

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

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

.skip-link {
  position: absolute;
  top: -70px;
  left: 18px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 250, 242, 0.96);
  border-bottom: 1px solid rgba(14, 33, 56, 0.14);
  box-shadow: 0 8px 26px rgba(14, 33, 56, 0.06);
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--forest), var(--gold), var(--cedar));
}

.nav {
  width: min(var(--wide), calc(100vw - 44px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 220px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-menu .nav-button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(175, 138, 72, 0.5);
  border-radius: 8px;
  background: rgba(175, 138, 72, 0.1);
}

.nav-menu .nav-button::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bone);
  color: var(--navy);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before {
  position: absolute;
  top: -7px;
}

.nav-toggle span::after {
  position: absolute;
  top: 7px;
}

.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero--home {
  min-height: clamp(610px, calc(100svh - var(--header-height) - 16px), 720px);
}

.page-hero {
  min-height: 430px;
}

.compact-hero {
  min-height: 360px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 18, 30, 0.9), rgba(14, 33, 56, 0.68) 42%, rgba(14, 33, 56, 0.16)),
    linear-gradient(0deg, rgba(7, 18, 30, 0.58), rgba(7, 18, 30, 0.04) 48%);
}

.hero-inner,
.section-inner,
.footer-inner {
  width: min(var(--content), calc(100vw - 44px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 92px 0 72px;
}

.hero--home .hero-inner {
  padding: 58px 0 52px;
}

.hero-copy {
  max-width: 790px;
  min-width: 0;
}

.hero--home .hero-copy {
  max-width: 880px;
}

.eyebrow,
.section-kicker,
.meta-label {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1,
.page-title,
.section-title,
.card-title,
.metric-value {
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0;
}

.hero h1,
.page-title {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.hero--home h1 {
  font-size: clamp(2.9rem, 4.6vw, 4.55rem);
}

.page-title {
  max-width: 960px;
}

.hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button::after {
  content: "";
  width: 1.05em;
  height: 1.05em;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") center / contain no-repeat;
}

.button-no-arrow::after {
  display: none;
}

.button-primary {
  background: var(--gold);
  color: var(--navy);
}

.button-primary:hover {
  background: #c49a52;
}

.button-secondary {
  border-color: rgba(255, 250, 242, 0.62);
  color: var(--white);
  background: rgba(255, 250, 242, 0.08);
}

.button-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 250, 242, 0.16);
}

.button-outline {
  border-color: rgba(14, 33, 56, 0.24);
  color: var(--navy);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--gold);
  background: rgba(175, 138, 72, 0.1);
}

.button-dark {
  background: var(--navy);
  color: var(--white);
}

.button-dark:hover {
  background: var(--forest);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 870px;
  margin-top: 58px;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 250, 242, 0.14);
  backdrop-filter: blur(10px);
}

.hero--home .hero-proof {
  margin-top: 30px;
}

.proof-item {
  padding: 18px 20px;
  background: rgba(9, 20, 32, 0.48);
}

.proof-item strong {
  display: block;
  color: var(--white);
  font-size: 0.96rem;
  line-height: 1.35;
}

.proof-item span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 250, 242, 0.74);
  font-size: 0.84rem;
  line-height: 1.45;
}

.section {
  padding: clamp(66px, 8vw, 112px) 0;
}

.section-white {
  background: var(--white);
}

.section-stone {
  background: var(--stone);
}

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

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

.section-texture {
  background:
    linear-gradient(rgba(243, 238, 229, 0.88), rgba(243, 238, 229, 0.88)),
    repeating-linear-gradient(90deg, rgba(14, 33, 56, 0.07) 0 1px, transparent 1px 26px);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section-header > div {
  max-width: 760px;
  min-width: 0;
}

.section-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.section-dark .section-title,
.section-forest .section-title {
  color: var(--white);
}

.section-lede,
.body-large {
  max-width: 780px;
  min-width: 0;
  margin: 18px 0 0;
  color: rgba(35, 39, 39, 0.76);
  font-size: 1.05rem;
}

.section-dark .section-lede,
.section-forest .section-lede,
.section-dark .body-large,
.section-forest .body-large {
  color: rgba(255, 250, 242, 0.76);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(36px, 5.8vw, 72px);
  align-items: center;
}

.split-wide {
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
}

.split-reverse {
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
}

.split-reverse .media-frame {
  order: -1;
}

.media-frame,
.gallery-card,
.company-card,
.info-card,
.quote-card,
.contact-panel,
.role-card,
.article-card,
.map-panel,
.metric-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bone);
  box-shadow: var(--shadow-soft);
}

.section-dark .info-card,
.section-forest .info-card,
.section-dark .quote-card,
.section-forest .quote-card,
.section-dark .metric-card,
.section-forest .metric-card {
  border-color: var(--line-dark);
  background: rgba(255, 250, 242, 0.07);
  box-shadow: none;
}

.media-frame {
  position: relative;
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  min-height: 360px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-frame::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 7px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--gold), var(--cedar), var(--forest));
  opacity: 0.92;
}

.content-stack {
  display: grid;
  gap: 22px;
}

.list-check {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.list-check li {
  position: relative;
  padding-left: 34px;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 5px var(--bone);
}

.section-stone .list-check li::before {
  box-shadow: inset 0 0 0 5px var(--stone);
}

.section-dark .list-check li::before,
.section-forest .list-check li::before {
  box-shadow: inset 0 0 0 5px rgba(14, 33, 56, 0.8);
}

.metric-grid,
.card-grid,
.portfolio-grid,
.gallery-grid,
.role-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  min-width: 0;
}

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

.metric-grid > *,
.card-grid > *,
.portfolio-grid > *,
.gallery-grid > *,
.role-grid > *,
.article-grid > *,
.quote-grid > *,
.process > * {
  min-width: 0;
}

.portfolio-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(26px, 2.6vw, 34px);
}

.metric-card,
.info-card,
.quote-card,
.role-card {
  padding: 26px;
  min-width: 0;
}

.metric-card {
  min-height: 144px;
}

.metric-value {
  display: block;
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.section-dark .metric-value,
.section-forest .metric-value {
  color: var(--white);
}

.metric-card p,
.info-card p,
.quote-card p,
.role-card p,
.article-card p,
.company-card p,
.gallery-card p {
  margin: 12px 0 0;
  color: rgba(35, 39, 39, 0.72);
}

.section-dark .metric-card p,
.section-forest .metric-card p,
.section-dark .info-card p,
.section-forest .info-card p,
.section-dark .quote-card p,
.section-forest .quote-card p {
  color: rgba(255, 250, 242, 0.72);
}

.card-title {
  margin: 0;
  color: var(--navy);
  font-size: 1.24rem;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.section-dark .card-title,
.section-forest .card-title {
  color: var(--white);
}

.card-number {
  display: inline-flex;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--navy);
  color: var(--gold);
  font-weight: 900;
}

.section-dark .card-number,
.section-forest .card-number {
  background: rgba(255, 250, 242, 0.12);
}

.company-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
}

.company-feature img,
.gallery-card img,
.article-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.company-content,
.article-content,
.gallery-content {
  min-width: 0;
  padding: 30px;
}

.company-content {
  align-self: center;
}

.company-card--logo {
  display: grid;
  grid-template-rows: 190px 1fr;
  min-width: 0;
  overflow: hidden;
}

.company-logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  min-width: 0;
  padding: 28px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.94), rgba(243, 238, 229, 0.78)),
    repeating-linear-gradient(90deg, rgba(14, 33, 56, 0.06) 0 1px, transparent 1px 24px);
}

.company-logo-panel img {
  width: auto;
  height: auto;
  max-width: min(100%, 250px);
  max-height: 132px;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  margin: auto;
  box-shadow: none;
}

.company-card--logo .company-content {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-content: flex-start;
  padding: 24px;
}

.company-card--logo .tag-row {
  margin-top: 22px;
  padding-top: 0;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(19, 55, 41, 0.18);
  border-radius: 8px;
  background: rgba(19, 55, 41, 0.07);
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 800;
}

.section-dark .tag,
.section-forest .tag {
  border-color: rgba(255, 250, 242, 0.22);
  background: rgba(255, 250, 242, 0.1);
  color: var(--bone);
}

.team-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 3.4vw, 44px);
  align-items: stretch;
}

.team-profile {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bone);
  box-shadow: var(--shadow-soft);
}

.team-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: clamp(28px, 3vw, 36px) clamp(28px, 3vw, 36px) 0;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.82), rgba(230, 222, 208, 0.5)),
    repeating-linear-gradient(90deg, rgba(14, 33, 56, 0.05) 0 1px, transparent 1px 24px);
}

.team-photo img {
  width: min(100%, 220px);
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 14px 28px rgba(14, 33, 56, 0.16);
}

.team-bio {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  text-align: center;
}

.team-bio .card-title {
  font-size: clamp(1.45rem, 1.8vw, 1.9rem);
}

.team-bio .meta-label {
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: 2.75em;
}

.team-details {
  width: 100%;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.team-details summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(19, 55, 41, 0.18);
  border-radius: 8px;
  color: var(--forest);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  list-style: none;
  text-transform: uppercase;
}

.team-details summary::-webkit-details-marker {
  display: none;
}

.team-details summary::after {
  content: "+";
  font-size: 1rem;
  line-height: 1;
}

.team-details[open] summary::after {
  content: "-";
}

.team-details summary:focus {
  outline: 3px solid rgba(175, 138, 72, 0.35);
  outline-offset: 2px;
}

.team-bio-text {
  margin-top: 18px;
  text-align: left;
}

.team-bio-text p {
  margin: 13px 0 0;
  color: rgba(35, 39, 39, 0.72);
  font-size: 0.94rem;
  line-height: 1.72;
}

.gallery-card,
.article-card {
  overflow: hidden;
}

.gallery-card img {
  min-height: 230px;
  aspect-ratio: 16 / 10;
}

.gallery-content,
.article-content {
  padding: 24px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.quote-card {
  min-height: 250px;
}

.quote-card blockquote {
  margin: 0;
  color: var(--navy);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.28rem;
  line-height: 1.36;
}

.quote-card cite {
  display: block;
  margin-top: 18px;
  color: rgba(35, 39, 39, 0.62);
  font-style: normal;
  font-weight: 800;
}

.section-dark .quote-card blockquote,
.section-forest .quote-card blockquote {
  color: var(--white);
}

.section-dark .quote-card cite,
.section-forest .quote-card cite {
  color: rgba(255, 250, 242, 0.68);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 24px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: var(--bone);
  box-shadow: var(--shadow-soft);
}

.process-step::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 900;
}

.process-step h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
}

.process-step p {
  margin: 10px 0 0;
  color: rgba(35, 39, 39, 0.72);
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 33, 56, 0.94), rgba(19, 55, 41, 0.86)),
    url("../img/origin-premium-deck.jpg") center / cover;
}

.cta-band .section-inner {
  position: relative;
  z-index: 1;
}

.cta-band,
.cta-band p,
.cta-band .section-kicker,
.cta-band .section-title,
.cta-band .section-lede {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

.cta-band .section-kicker {
  color: #e4c27d;
}

.cta-band .section-title,
.cta-band h2,
.cta-band h3 {
  color: var(--white);
}

.cta-band .section-lede,
.cta-band p {
  color: rgba(255, 250, 242, 0.9);
}

.cta-band a:not(.button) {
  color: var(--white);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.contact-panel {
  padding: 28px;
}

.contact-panel h2 {
  margin-top: 0;
}

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.field label {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(14, 33, 56, 0.18);
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
  padding: 12px 14px;
}

.field textarea {
  min-height: 154px;
  resize: vertical;
}

.form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 28px;
  margin: 0;
  color: var(--charcoal);
  font-weight: 800;
}

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

.form-status[data-state="success"] {
  color: var(--forest);
}

.form-status[data-state="error"] {
  color: #8a1f1f;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.nav-toggle:focus,
.button:focus {
  outline: 3px solid rgba(175, 138, 72, 0.35);
  outline-offset: 2px;
}

.map-panel {
  overflow: hidden;
}

.map-panel iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.legal-content {
  max-width: 880px;
}

.legal-content h2 {
  margin: 42px 0 0;
  color: var(--navy);
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(150px, 0.35fr));
  gap: 34px;
  padding: 48px 0;
}

.footer-brand img {
  width: 260px;
}

.footer-brand p {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 250, 242, 0.86);
}

.footer-column h2 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 250, 242, 0.9);
  font-size: 0.92rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 250, 242, 0.16);
}

.footer-bottom .footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  color: rgba(255, 250, 242, 0.84);
  font-size: 0.86rem;
}

.footer-bottom a {
  color: rgba(255, 250, 242, 0.86);
  text-decoration-color: rgba(255, 250, 242, 0.5);
}

.footer-bottom a:hover {
  color: var(--white);
}

.js [data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1080px) {
  .brand img {
    width: 210px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    left: 22px;
    right: 22px;
    top: calc(var(--header-height) + 18px);
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--bone);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header[data-nav-open="true"] .nav-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    min-height: 46px;
    padding: 0 10px;
  }

  .nav-menu .nav-button {
    justify-content: center;
  }

  .split,
  .split-wide,
  .split-reverse,
  .contact-layout,
  .cta-layout {
    grid-template-columns: 1fr;
  }

  .split-reverse .media-frame {
    order: 0;
  }

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

  .card-grid,
  .portfolio-grid,
  .gallery-grid,
  .role-grid,
  .article-grid,
  .quote-grid,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-feature {
    grid-template-columns: 1fr;
  }

  .company-feature img {
    aspect-ratio: 16 / 9;
  }

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

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

@media (max-width: 720px) {
  :root {
    --header-height: 74px;
  }

  .nav,
  .hero-inner,
  .section-inner,
  .footer-inner {
    width: min(var(--content), calc(100vw - 30px));
  }

  .brand img {
    width: 178px;
  }

  .hero--home,
  .page-hero,
  .compact-hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 78px 0 68px;
  }

  .hero h1,
  .page-title {
    font-size: clamp(2.25rem, 9vw, 2.8rem);
  }

  .section-title {
    font-size: clamp(1.75rem, 8vw, 2.1rem);
  }

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

  .button {
    width: 100%;
  }

  .hero-proof,
  .metric-grid,
  .card-grid,
  .portfolio-grid,
  .gallery-grid,
  .role-grid,
  .article-grid,
  .quote-grid,
  .process,
  .form-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    margin-top: 42px;
  }

  .hero--home .hero-proof {
    display: none;
  }

  .team-list {
    grid-template-columns: 1fr;
  }

  .section-header {
    display: grid;
  }

  .section-actions {
    margin-top: 10px;
  }

  .media-frame img {
    min-height: 260px;
  }

  .company-content,
  .article-content,
  .gallery-content,
  .contact-panel,
  .metric-card,
  .info-card,
  .quote-card,
  .role-card {
    padding: 22px;
  }

  .company-logo-panel {
    min-height: 160px;
    padding: 22px;
  }

  .company-logo-panel img {
    max-height: 112px;
  }

  .team-photo {
    padding: 24px 24px 0;
  }

  .team-photo img {
    width: min(100%, 230px);
  }

  .footer-bottom .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .js [data-animate] {
    opacity: 1;
    transform: none;
  }
}
