
:root {
  --green: #2C3C2F;
  --gold: #B4935D;
  --ivory: #FEF4EB;
  --deep: #1E2A1A;
  --accent: #EFE1D7;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--green);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 64px), var(--max));
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(44,60,47,.14);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
  font-weight: 600;
}
.brand-mark { width: 30px; height: 30px; object-fit: contain; }
nav { display: flex; gap: 32px; }
nav a {
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  opacity: .76;
  transition: opacity .2s ease, color .2s ease;
}
nav a:hover { opacity: 1; color: var(--gold); }

/* HERO */
.hero {
  min-height: 80vh;
  display: grid;
  place-items: center;
  padding: 120px 32px 72px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-inner {
  text-align: center;
  position: relative;
  z-index: 3;
  max-width: 1060px;
}
.hero-mark {
  width: clamp(190px, 18vw, 280px);
  margin: 0 auto 26px;
}
.section-kicker {
  text-transform: uppercase;
  letter-spacing: .19em;
  font-size: 11px;
  font-weight: 600;
}
.hero h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: .98;
  margin: 0;
}
.hero h1 {
  font-size: clamp(58px, 8.2vw, 110px);
  letter-spacing: -.035em;
}
.hero-copy {
  max-width: 860px;
  margin: 28px auto 0;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.55;
  color: rgba(44,60,47,.78);
  text-wrap: balance;
}
.hero-watermark {
  position: absolute;
  width: 660px;
  left: -285px;
  bottom: -250px;
  opacity: .025;
  filter: grayscale(1);
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.orb-one {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(180,147,93,.10), rgba(180,147,93,0) 68%);
  top: 8%; right: -180px;
}
.orb-two {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(44,60,47,.055), rgba(44,60,47,0) 68%);
  left: 4%; top: 28%;
}

/* STORY */
.section {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
  padding: 118px 0;
}
.section-kicker { color: var(--gold); margin-bottom: 44px; }

.story-shell {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(239,225,215,.28), rgba(254,244,235,0) 18%),
    var(--ivory);
}
.story {
  position: relative;
  z-index: 2;
}
.story-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 90px;
  align-items: start;
}
.story-lead { position: relative; }
.story h2 {
  font-size: clamp(44px, 5.1vw, 68px);
  letter-spacing: -.025em;
}
.story-rule {
  width: 88px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(180,147,93,.15));
  margin-top: 36px;
}
.prose {
  font-size: 16px;
  color: rgba(44,60,47,.84);
}
.prose p { margin: 0 0 21px; }
.prose p:last-child { margin-bottom: 0; }

.story-conclusion {
  margin: 82px auto 0;
  max-width: 900px;
  text-align: center;
}
.story-thought {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 2.15vw, 28px);
  line-height: 1.42;
  text-wrap: balance;
}
.thought-rule {
  display: block;
  width: 52px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 24px;
}
.closing-line {
  margin: 30px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
}
.closing-line span {
  display: inline;
  font: inherit;
}
.closing-line .gold { color: var(--gold); }
.story-watermark {
  position: absolute;
  width: 520px;
  right: -170px;
  bottom: -95px;
  opacity: .032;
  filter: grayscale(1);
  z-index: 1;
}

/* APPROACH */
.approach {
  background: var(--deep);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.approach::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 61%, rgba(180,147,93,.035) 61% 74%, transparent 74%),
    radial-gradient(circle at 82% 20%, rgba(180,147,93,.075), transparent 30%);
}
.approach-inner {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
  padding: 82px 0 88px;
  position: relative;
  z-index: 2;
}
.section-kicker.light { color: var(--gold); }
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
  margin-top: 40px;
}
.principles article {
  padding: 26px 0 16px;
  border-top: 1px solid rgba(254,244,235,.23);
  transition: transform .25s ease, border-color .25s ease;
}
.principles article:hover {
  transform: translateY(-4px);
  border-color: rgba(180,147,93,.75);
}
.number {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .14em;
  margin-bottom: 32px;
}
.principles h3 {
  font-size: 51px;
  margin-bottom: 18px;
}
.principles p {
  margin: 0;
  max-width: 330px;
  color: rgba(254,244,235,.72);
  font-size: 14px;
}

/* TYPOGRAPHIC CLOSING */
.identity-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(128deg, rgba(239,225,215,.86), rgba(254,244,235,.96) 52%, rgba(239,225,215,.62)),
    var(--ivory);
  padding: 96px 32px 102px;
}
.identity-band::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -150px;
  top: -190px;
  background: radial-gradient(circle, rgba(180,147,93,.12), rgba(180,147,93,0) 68%);
}
.identity-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .35fr 1.65fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.identity-kicker {
  padding-top: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10px;
  font-weight: 600;
  position: relative;
}
.identity-kicker::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin-top: 18px;
  background: rgba(180,147,93,.55);
}
.identity-copy h2 {
  font-size: clamp(46px, 5.7vw, 76px);
  line-height: .98;
  margin: 0 0 24px;
}
.identity-copy > p:last-child {
  max-width: 680px;
  margin: 0;
  font-size: 16px;
  color: rgba(44,60,47,.74);
}

/* FOOTER / CONTACT */
footer {
  background: var(--deep);
  color: rgba(254,244,235,.58);
}
.footer-inner {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
  padding: 34px 0 28px;
}
.footer-contact {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 26px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(254,244,235,.12);
}
.footer-label {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
}
.footer-contact a {
  color: rgba(254,244,235,.82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: .01em;
}
.footer-contact a:hover { color: var(--gold); }
.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 10px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-brand img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: .82;
}
.footer-note { opacity: .68; }

/* restrained reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .principles article { transition: none; }
}

@media (max-width: 980px) {
  .hero-copy { max-width: 720px; }
  .story-grid { gap: 58px; }
}

@media (max-width: 760px) {
  .site-header { width: calc(100% - 36px); padding-top: 20px; }
  nav { gap: 16px; }
  nav a:nth-child(2) { display: none; }
  nav a { font-size: 9px; }
  .brand span { font-size: 19px; }

  .hero {
    min-height: 82vh;
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-mark { width: 175px; }
  .hero-copy {
    font-size: 16px;
    max-width: 520px;
  }

  .section, .approach-inner, .contact-inner {
    width: calc(100% - 40px);
  }
  .section { padding: 82px 0; }
  .approach-inner { padding: 66px 0 72px; }

  .story-grid, .principles, .identity-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .story-conclusion { margin-top: 58px; }

  .principles { margin-top: 30px; }
  .number { margin-bottom: 18px; }
  .principles h3 { font-size: 44px; }

  .identity-band { padding: 72px 20px 78px; }
  .identity-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .identity-kicker { padding-top: 0; }

  .footer-inner { width: calc(100% - 40px); }
  .footer-contact,
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-contact a { font-size: 14px; }
}
