:root {
  --navy: #102f53;
  --navy-soft: #44576d;
  --navy-mute: #526276;
  --navy-line: rgba(16, 47, 83, 0.12);
  --navy-line-soft: rgba(16, 47, 83, 0.1);
  --gold: #b08310;
  --gold-bright: #d6b65f;
  --gold-deep: #a87603;
  --gold-soft: #d2b461;
  --gold-link-hover: #b98605;
  --bg: #fbfbfa;
  --text-mute: #667181;
  --text-faint: #4b5b6f;
  --text-footer: #9ca4ad;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background: var(--bg);
  font-family: "Manrope", sans-serif;
  color: var(--navy);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

a:hover {
  color: var(--gold-link-hover);
}

.site-shell {
  position: relative;
  display: flex;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(
    circle at 50% 42%,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(251, 251, 250, 0.94) 42%,
    rgba(246, 247, 246, 0.96) 100%
  );
}

.page-frame {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(1380px, calc(100% - 96px));
  height: min(92svh, 900px);
  min-height: 600px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 18px;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-logo {
  display: block;
  width: clamp(210px, 22vw, 500px);
  height: auto;
  max-height: 90px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 9px;
}

.brand-name {
  margin: 0;
  color: var(--navy);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.31em;
  line-height: 1.4;
  text-transform: uppercase;
}

.brand-motto {
  margin: 7px 0 0;
  color: var(--gold);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.brand-motto span {
  display: inline-block;
  padding: 0 5px;
  color: var(--gold-soft);
}

.hero-copy {
  position: relative;
  width: 100%;
  margin: 3px 0 0;
  padding-left: 30px;
  text-align: center;
}

.gold-rule {
  position: absolute;
  top: 12px;
  left: 0;
  width: 2px;
  height: 103px;
  background: linear-gradient(
    180deg,
    var(--gold-bright) 0%,
    var(--gold-deep) 100%
  );
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.34em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1 {
  max-width: 800px;
  margin: 0 auto;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(50px, 5.8vw, 76px);
  font-weight: 500;
  letter-spacing: 0.012em;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero-subtitle {
  margin: 17px 0 0;
  color: var(--navy-mute);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 1.5;
}

.about-copy {
  width: min(810px, 100%);
  margin: 0;
  color: var(--text-mute);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.7;
  text-align: center;
}

.services {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
  padding: 15px 0 14px;
}

.service-item {
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 8px;
  color: var(--navy-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-align: left;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.service-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-item + .service-item {
  border-left: 1px solid var(--navy-line-soft);
}

.service-marker {
  display: block;
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  transform: rotate(45deg);
  border: 1px solid #be8d12;
}

.contact-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 3px 0 1px;
}

.contact-item {
  min-height: 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.contact-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.contact-value {
  color: var(--text-faint);
  font-size: 12px;
  letter-spacing: 0.03em;
  line-height: 1.65;
  text-align: center;
}

footer {
  color: var(--text-footer);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.architectural-mark {
  position: absolute;
  pointer-events: none;
  opacity: 0.045;
}

.architectural-mark-top {
  top: -120px;
  right: -105px;
  width: 390px;
  height: 370px;
  transform: rotate(45deg);
  border: 1px solid var(--navy);
  background: repeating-linear-gradient(
    135deg,
    transparent 0 25px,
    var(--navy) 25px 26px,
    transparent 26px 52px
  );
}

.architectural-mark-bottom {
  bottom: -170px;
  left: -170px;
  width: 410px;
  height: 320px;
  transform: rotate(45deg);
  border: 1px solid var(--navy);
  background: repeating-linear-gradient(
    135deg,
    transparent 0 30px,
    var(--navy) 30px 31px,
    transparent 31px 62px
  );
}

@media (max-width: 800px) {
  .site-shell {
    min-height: 600px;
  }

  .page-frame {
    width: min(620px, calc(100% - 48px));
    min-height: 560px;
    height: 94svh;
  }

  .brand-logo {
    width: 220px;
  }

  .services {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 12px;
  }

  .service-item:nth-child(4) {
    border-left: 0;
  }

  .contact-grid {
    gap: 18px;
  }
}

@media (max-width: 520px) {
  body {
    overflow: auto;
  }

  .site-shell {
    height: auto;
    min-height: 100svh;
    padding: 26px 0;
  }

  .page-frame {
    width: calc(100% - 40px);
    height: auto;
    min-height: 0;
    gap: 32px;
    padding: 0;
  }

  .brand-logo {
    width: 190px;
    max-height: 70px;
  }

  .brand-name {
    font-size: 8px;
    letter-spacing: 0.2em;
  }

  .brand-motto {
    font-size: 6px;
    letter-spacing: 0.12em;
  }

  .hero-copy {
    padding-left: 18px;
  }

  .gold-rule {
    height: 78px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .hero-subtitle {
    font-size: 9px;
  }

  .services {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item {
    justify-content: flex-start;
    padding: 0 7px;
    font-size: 7px;
  }

  .service-item:nth-child(3),
  .service-item:nth-child(5) {
    border-left: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    align-self: stretch;
  }

  footer {
    line-height: 1.6;
  }
}
