:root {
  --navy: #0e2945;
  --navy-deep: #081b2f;
  --ivory: #f5f1e8;
  --warm-white: #fcfaf5;
  --gold: #ad8747;
  --gold-soft: #ceb581;
  --ink: #182536;
  --muted: #66717b;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

a { color: inherit; }

.site-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background:
    linear-gradient(90deg, rgba(173, 135, 71, 0.06) 1px, transparent 1px) 0 0 / 96px 100%,
    var(--warm-white);
}

.masthead {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(173, 135, 71, 0.55);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-variant: small-caps;
  letter-spacing: 0.1em;
}

.column-mark {
  position: relative;
  width: 32px;
  height: 38px;
  display: inline-block;
  flex: 0 0 32px;
}

.column-mark::before {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 5px;
  height: 6px;
  background: var(--ivory);
  border: 1px solid var(--gold);
}

.column-mark::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 0;
  height: 5px;
  background: var(--ivory);
  border: 1px solid var(--gold);
}

.column-mark i {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 0;
  bottom: 11px;
  clip-path: polygon(0 15%, 17% 7%, 34% 12%, 52% 0, 70% 9%, 84% 4%, 100% 11%, 100% 100%, 0 100%);
  background:
    linear-gradient(90deg,
      var(--gold) 0 7%,
      var(--ivory) 7% 24%,
      var(--gold) 24% 31%,
      var(--ivory) 31% 47%,
      var(--gold) 47% 54%,
      var(--ivory) 54% 70%,
      var(--gold) 70% 77%,
      var(--ivory) 77% 93%,
      var(--gold) 93% 100%);
}

.contact-link {
  color: var(--navy);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 700;
}

.contact-link:hover,
.contact-link:focus-visible { color: var(--gold); }

.hero {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(70px, 11vh, 130px) 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(460px, 1.15fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.hero-copy { max-width: 650px; }

.eyebrow {
  margin: 0 0 23px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 700;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 5.5vw, 76px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.gold-rule {
  width: 74px;
  height: 2px;
  margin: 34px 0 29px;
  background: var(--gold);
}

.introduction {
  max-width: 570px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.5;
}

.supporting-copy {
  max-width: 560px;
  margin: 22px 0 32px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.email-button {
  display: inline-block;
  padding: 15px 22px;
  border: 1px solid var(--navy);
  color: var(--navy);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: background 180ms ease, color 180ms ease;
}

.email-button:hover,
.email-button:focus-visible {
  background: var(--navy);
  color: var(--warm-white);
}

.architectural-mark {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1 / 1.08;
  margin: 0 auto;
  opacity: 0.95;
}

.architectural-mark::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(173, 135, 71, 0.3);
  transform: rotate(45deg);
}

.pediment {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 23%;
  height: 28%;
  clip-path: polygon(50% 0, 100% 72%, 94% 78%, 6% 78%, 0 72%);
  background: var(--navy);
}

.pediment::after {
  content: "";
  position: absolute;
  inset: 20% 17% 29%;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: var(--ivory);
}

.columns {
  position: absolute;
  left: 19%;
  right: 19%;
  top: 47%;
  bottom: 22%;
  display: flex;
  justify-content: space-between;
}

.columns i {
  width: 8%;
  border-left: 3px double var(--gold);
  border-right: 3px double var(--gold);
  background: linear-gradient(90deg, transparent, rgba(173,135,71,.12), transparent);
}

.foundation {
  position: absolute;
  left: 13%;
  right: 13%;
  bottom: 17%;
  height: 5%;
  border-top: 4px double var(--navy);
  border-bottom: 1px solid var(--navy);
}

footer {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 22px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(173, 135, 71, 0.55);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 9px;
}

@media (max-width: 820px) {
  .masthead,
  .hero,
  footer { width: min(100% - 36px, 650px); }

  .masthead { min-height: 76px; }
  .wordmark { font-size: 15px; }
  .contact-link { display: none; }

  .hero {
    padding: 56px 0 64px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .architectural-mark {
    width: min(76vw, 310px);
    order: 2;
  }

  .hero-copy { order: 1; }
  h1 { font-size: clamp(42px, 12vw, 60px); }

  footer {
    flex-direction: column;
    line-height: 1.6;
  }
}

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