/* 1923 Foundation — Deep Forest / Stone / Field Bone / Hunter Green / Slate */
:root {
  --forest: #1F3024;
  --forest-deep: #142018;
  --hunter: #2E4A35;
  --stone: #6F6A60;
  --stone-deep: #4D483E;
  --bone: #ECE3CE;
  --field: #BFB59A;
  --moss: #7D8665;
  --slate: #404C50;
  --gold: #B69253;
  --ink: #1F1812;
  --cream: #F5F1E8;

  --display: 'Cinzel', Georgia, serif;
  --serif:   'Cormorant Garamond', Georgia, serif;

  --max: 1280px;
  --narrow: 760px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.container.narrow { max-width: var(--narrow); text-align: center; }
.centered { text-align: center; margin-left: auto; margin-right: auto; }

/* Type primitives */
.folio {
  display: inline-flex; align-items: center; gap: 1rem;
  margin: 0 0 1.5rem;
  font-family: var(--display); font-weight: 400;
  font-size: 0.7rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--hunter);
}
.folio span:first-child { letter-spacing: 0.18em; color: rgba(31, 24, 18, 0.45); }
.folio span:nth-child(2) { position: relative; padding-left: 1rem; }
.folio span:nth-child(2)::before {
  content: "·"; position: absolute; left: 0; top: 50%;
  transform: translateY(-55%); color: var(--hunter);
}
.folio.centered { display: flex; justify-content: center; }

.title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.18; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 1.25rem;
}
.title.centered { text-align: center; }
.rule-short {
  border: 0; width: 70px; height: 1px;
  background: var(--gold); margin: 0 0 2rem;
  display: block;
}
.rule-short.centered { margin-left: auto; margin-right: auto; }
.editorial {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65; color: var(--ink);
  margin: 0 0 1.5rem; max-width: 60ch;
}
.editorial.centered { text-align: center; max-width: 56ch; margin-left: auto; margin-right: auto; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 1.1rem 0;
  background: linear-gradient(to bottom, rgba(20,32,24,0.6), transparent);
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(20, 32, 24, 0.94);
  backdrop-filter: blur(12px);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(182, 146, 83, 0.28);
}
.header-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 2rem;
  color: var(--bone);
}
.house-link {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--display); font-weight: 500;
  font-size: 0.7rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--bone);
  opacity: 0.78; transition: opacity 0.3s var(--ease);
  border-right: 1px solid rgba(236, 227, 206, 0.22); padding-right: 1rem;
}
.house-link:hover { opacity: 1; }
.house-mark { width: 1.4rem; height: 1.4rem; object-fit: contain; }
.brand {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--display); font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--bone);
  justify-self: start;
}
.site-nav {
  display: flex; gap: 1.75rem;
  font-family: var(--display); font-weight: 400;
  font-size: 0.7rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--bone);
  justify-self: end;
}
.site-nav a { opacity: 0.85; padding: 0.25rem 0; position: relative; transition: opacity 0.3s var(--ease); }
.site-nav a:hover { opacity: 1; }
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); }

/* Hero */
.hero.hero-sheet {
  position: relative; display: block;
  width: 100%; height: auto; min-height: 0;
  margin: 0; padding: 0; background: #000; overflow: hidden;
}
.hero.hero-sheet .hero-sheet-img {
  display: block; width: 100%; height: auto;
  max-width: none; object-fit: cover; object-position: center;
}
@media (min-width: 1100px) {
  .hero.hero-sheet .hero-sheet-img {
    max-height: 90vh; width: 100%; object-fit: cover;
  }
}

/* Sections */
.section { padding: clamp(5rem, 9vw, 8rem) 0; }
.mission { background: var(--bone); }

/* Pillars */
.pillars { background: var(--cream); }
.pillar-grid {
  margin-top: 3rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}
.pillar {
  border-top: 2px solid var(--gold);
  padding: 2rem 0 0;
}
.pillar-mark {
  margin: 0 0 0.85rem;
  font-family: var(--display); font-style: italic;
  font-size: 0.85rem; letter-spacing: 0.18em;
  color: var(--hunter);
}
.pillar h3 {
  margin: 0 0 1.1rem;
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--forest);
}
.pillar-lede {
  margin: 0 0 1.5rem;
  font-family: var(--serif); font-style: italic;
  font-size: 1.15rem; line-height: 1.45;
  color: var(--stone-deep);
}
.pillar-list { display: flex; flex-direction: column; gap: 0.7rem; }
.pillar-list li {
  padding: 0.7rem 0 0.7rem 1.5rem;
  position: relative;
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; line-height: 1.5;
  border-bottom: 1px solid rgba(31, 48, 36, 0.14);
}
.pillar-list li:last-child { border-bottom: none; }
.pillar-list li::before {
  content: "—"; position: absolute; left: 0; top: 0.7rem;
  color: var(--gold); font-style: normal;
}

/* Granting */
.granting { background: var(--forest); color: var(--bone); }
.granting .title { color: var(--cream); }
.granting .editorial { color: var(--bone); opacity: 0.93; }
.granting .folio { color: var(--gold); }
.granting .folio span:first-child { color: rgba(236, 227, 206, 0.55); }
.granting .folio span:nth-child(2)::before { color: var(--gold); }
.granting .rule-short { background: var(--gold); }
.granting-grid {
  max-width: var(--max); margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem); align-items: start;
}
.granting-figures {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
}
.figure {
  border-left: 1px solid rgba(182, 146, 83, 0.35);
  padding: 0.4rem 0 0.4rem 1.4rem;
}
.figure-eyebrow {
  margin: 0 0 0.55rem;
  font-family: var(--display); font-weight: 500;
  font-size: 0.65rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold);
}
.figure-value {
  margin: 0 0 0.6rem;
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  letter-spacing: 0.04em; color: var(--cream);
}
.figure-note {
  margin: 0; font-family: var(--serif); font-style: italic;
  font-size: 0.95rem; line-height: 1.5;
  color: rgba(236, 227, 206, 0.82);
}

/* Values */
.values { background: var(--bone); }
.creed {
  margin: 1.5rem auto 0; max-width: 580px; text-align: left;
}
.creed li {
  padding: 0.9rem 0 0.9rem 1.5rem;
  position: relative;
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(31, 48, 36, 0.16);
}
.creed li::before {
  content: "◆"; position: absolute; left: 0; top: 1rem;
  color: var(--hunter); font-size: 0.55rem; font-style: normal;
}
.creed li:last-child { border-bottom: none; }

/* Contact */
.contact { background: var(--stone-deep); color: var(--bone); text-align: center; }
.contact-inner { max-width: 720px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.contact .title { color: var(--cream); }
.contact .editorial { color: var(--bone); opacity: 0.95; max-width: 56ch; }
.contact .folio { color: var(--gold); }
.contact .folio span:first-child { color: rgba(236, 227, 206, 0.5); }
.contact .folio span:nth-child(2)::before { color: var(--gold); }
.contact .rule-short { background: var(--gold); }
.contact-form {
  display: flex; gap: 0.5rem; max-width: 480px;
  margin: 2rem auto 1.5rem; flex-wrap: wrap;
}
.contact-form input {
  flex: 1; min-width: 0; background: transparent;
  border: 1px solid rgba(236, 227, 206, 0.5);
  color: var(--bone); padding: 0.85rem 1rem;
  font-family: var(--serif); font-size: 1rem; outline: none;
  transition: border-color 0.3s var(--ease);
}
.contact-form input::placeholder { color: rgba(236, 227, 206, 0.55); font-style: italic; }
.contact-form input:focus { border-color: var(--bone); }
.contact-form button {
  background: var(--gold); color: var(--forest-deep);
  border: 1px solid var(--gold);
  padding: 0.85rem 1.4rem;
  font-family: var(--display); font-weight: 500;
  font-size: 0.7rem; letter-spacing: 0.32em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.contact-form button:hover { background: transparent; color: var(--bone); }
.closing-tag {
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; color: var(--gold); margin: 1rem 0 0;
}

/* Footer */
.site-footer { background: var(--forest-deep); color: var(--bone); border-top: 1px solid rgba(182, 146, 83, 0.22); padding: 2.25rem 0; }
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: baseline; gap: 1rem; }
.footer-name {
  font-family: var(--display); font-weight: 600;
  font-size: 0.9rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.footer-house { font-family: var(--serif); font-style: italic; font-size: 0.85rem; color: var(--gold); }
.footer-copy {
  font-family: var(--display); font-size: 0.62rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(236, 227, 206, 0.6); margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .granting-grid { grid-template-columns: 1fr; }
  .granting-figures { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .site-nav, .house-link { display: none; }
  .header-inner { grid-template-columns: 1fr; justify-items: center; }
  .granting-figures { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
