:root {
  --navy: #071A33;
  --navy-dark: #031122;
  --gold: #C99A45;
  --gold-dark: #A77B2F;
  --cream: #F8F5EF;
  --warm: #FBFAF7;
  --white: #FFFFFF;
  --charcoal: #2B3440;
  --muted: #6B7280;
  --border: #E7E2D8;
  --shadow: 0 18px 40px rgba(7, 26, 51, 0.08);
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(231, 226, 216, 0.72);
  backdrop-filter: blur(16px);
}
.nav-shell {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--navy-dark);
  white-space: nowrap;
}
.brand-logo-link {
  flex: 0 1 auto;
}
.brand-logo-image {
  display: block;
  width: clamp(260px, 24vw, 380px);
  height: auto;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}
.brand-logo-footer {
  width: clamp(210px, 17vw, 260px);
  max-height: 58px;
}
.line-icon svg path,
.line-icon svg circle,
.line-icon svg ellipse,
.value-icon svg path,
.value-icon svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
  color: var(--navy-dark);
  font-size: 0.94rem;
  font-weight: 650;
}
.site-nav a,
.footer-nav a {
  position: relative;
  transition: color .2s ease;
}
.site-nav a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.site-nav a:hover,
.footer-nav a:hover { color: var(--gold-dark); }
.site-nav a:hover::after,
.footer-nav a:hover::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  padding: 12px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  margin: 4px 0;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: clamp(520px, 64vw, 650px);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(90deg, #fff 0%, #fff 37%, rgba(255,255,255,.74) 55%, rgba(255,255,255,.05) 100%);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, #fff 0%, #fff 48%, rgba(255,255,255,.86) 61%, rgba(255,255,255,.1) 82%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.58)),
    url("hero-architecture.png") right center / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.92));
}
.hero-inner {
  min-height: inherit;
  display: flex;
  align-items: center;
  padding: 72px 0 76px;
}
.hero-copy {
  width: min(650px, 100%);
  transform: translateY(-3px);
}
.gold-rule {
  width: 38px;
  height: 2px;
  margin-bottom: 26px;
  background: var(--gold);
}
h1, h2, h3, p { margin-top: 0; }
h1,
.cta-band h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: .98;
}
h1 {
  margin-bottom: 24px;
  color: var(--navy-dark);
  font-size: clamp(3.15rem, 5.15vw, 4.55rem);
  max-width: 760px;
}
.hero-copy p {
  max-width: 520px;
  margin-bottom: 34px;
  color: #4f5c6d;
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  line-height: 1.6;
  font-weight: 500;
}
.button-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 30px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}
.btn-primary {
  min-width: 224px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 12px 26px rgba(201, 154, 69, .28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(201, 154, 69, .34);
}
.btn-secondary {
  min-width: 156px;
  color: var(--navy);
  background: rgba(255,255,255,.48);
  border-color: var(--navy);
}
.btn-secondary:hover {
  color: #fff;
  background: var(--navy);
  transform: translateY(-2px);
}

.section { padding: 36px 0 28px; }
.eyebrow {
  margin: 0 auto 24px;
  color: var(--gold-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: .94rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-align: center;
  text-transform: uppercase;
}
.eyebrow::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  margin: 11px auto 0;
  background: var(--gold);
}
.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}
.focus-card {
  min-height: 160px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(231, 226, 216, .86);
  border-radius: 6px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 30px rgba(7, 26, 51, .055);
  text-align: center;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.focus-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,154,69,.46);
  box-shadow: var(--shadow);
}
.line-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  color: var(--gold);
}
.focus-card h2,
.value-item h3 {
  margin-bottom: 6px;
  color: var(--navy-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.37rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.focus-card p,
.value-item p {
  margin-bottom: 0;
  color: #596272;
  font-size: .97rem;
}
.values-section {
  padding: 36px 0;
  background: linear-gradient(180deg, var(--cream), #fffaf4);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
}
.value-item {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0 42px;
}
.value-item:not(:last-child) { border-right: 1px solid #d8cfc0; }
.value-icon {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}
.value-icon svg { width: 34px; height: 34px; }

.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3,17,34,.99) 0%, rgba(7,26,51,.98) 64%, rgba(7,26,51,.92) 100%),
    radial-gradient(circle at 84% 35%, rgba(201,154,69,.16), transparent 26%),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255,255,255,.055) 42px 44px, transparent 44px 72px),
    var(--navy-dark);
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 45%, rgba(201,154,69,.12), transparent 30%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  min-height: 154px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 36px 0;
}
.cta-band .gold-rule { margin-bottom: 18px; }
.cta-band h2 {
  margin: 0;
  font-size: clamp(2rem, 3.1vw, 3rem);
}

.site-footer {
  border-top: 1px solid rgba(231,226,216,.72);
  background: #fff;
}
.footer-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr);
  align-items: center;
  gap: 26px;
}
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: var(--navy);
  font-size: .86rem;
  font-weight: 700;
}
.copyright {
  justify-self: end;
  margin: 0;
  color: #6d7480;
  font-size: .86rem;
}

@media (max-width: 1024px) {
  .hero { min-height: 590px; }
  .hero-media {
    background:
      linear-gradient(90deg, #fff 0%, rgba(255,255,255,.96) 40%, rgba(255,255,255,.42) 72%, rgba(255,255,255,.18) 100%),
      url("hero-architecture.png") 72% center / cover no-repeat;
  }
  .focus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .values-grid { gap: 0; }
  .value-item { padding: 0 22px; gap: 18px; }
  .footer-inner { grid-template-columns: 1fr; padding: 24px 0; text-align: center; }
  .brand-footer, .copyright { justify-self: center; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 34px), var(--container)); }
  .nav-shell { height: 76px; }
  .brand-logo-image { width: clamp(200px, 58vw, 245px); max-height: 58px; }
  .brand-logo-footer { width: 210px; max-height: 54px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 76px 16px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform .24s ease, opacity .24s ease;
  }
  .site-nav a { padding: 14px 12px; }
  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .hero {
    min-height: auto;
    background: var(--white);
  }
  .hero-media {
    inset: 0 0 auto;
    height: 360px;
    opacity: .32;
    background:
      linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.98) 78%, #fff 100%),
      linear-gradient(90deg, #fff 0%, rgba(255,255,255,.96) 58%, rgba(255,255,255,.68) 100%),
      url("hero-architecture.png") 68% center / cover no-repeat;
  }
  .hero-inner {
    min-height: 620px;
    align-items: flex-end;
    padding: 74px 0 54px;
  }
  h1 { font-size: clamp(3rem, 14vw, 4.4rem); }
  .hero-copy p { font-size: 1.05rem; }
  .button-row, .btn { width: 100%; }
  .btn { min-width: 0; }
  .section { padding-top: 46px; }
  .focus-grid { grid-template-columns: 1fr; gap: 16px; }
  .focus-card { min-height: 142px; }
  .values-section { padding: 24px 0; }
  .values-grid { grid-template-columns: 1fr; }
  .value-item {
    padding: 22px 0;
    border-right: 0 !important;
    border-bottom: 1px solid #ddd3c4;
  }
  .value-item:last-child { border-bottom: 0; }
  .cta-inner {
    min-height: 270px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
  .cta-band { background-position: 65% center; }
  .footer-nav { flex-wrap: wrap; gap: 16px 24px; }
}

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