
:root {
  --ink: #171816;
  --ink-soft: #2b2d29;
  --stone: #c9c2b5;
  --sand: #e9e4dc;
  --paper: #f4f1eb;
  --white: #fbfaf7;
  --line: rgba(23, 24, 22, 0.18);
  --accent: #a89678;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.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: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(24px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(15,16,14,.78), rgba(15,16,14,0));
  backdrop-filter: blur(2px);
}
.brand, .footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  letter-spacing: .02em;
}
.brand strong, .footer-brand strong { display: block; font-size: .94rem; }
.brand small, .footer-brand small {
  display: block;
  opacity: .68;
  font-size: .68rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.mini-monolith {
  display: block;
  width: 20px;
  height: 34px;
  background: currentColor;
  clip-path: polygon(20% 4%, 82% 0, 100% 92%, 14% 100%, 0 18%);
}
.navigation {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .82rem;
  letter-spacing: .08em;
}
.navigation a { opacity: .78; }
.navigation a:hover { opacity: 1; }
.navigation .nav-cta {
  border: 1px solid rgba(255,255,255,.5);
  padding: 10px 17px;
  opacity: 1;
}
.menu-button { display: none; }

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background:
    radial-gradient(circle at 78% 42%, rgba(162,151,130,.12), transparent 28%),
    linear-gradient(125deg, #111210 0%, #20221f 56%, #111210 100%);
  color: var(--white);
  overflow: hidden;
  padding: 150px clamp(24px, 7vw, 110px) 70px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
  z-index: 2;
}
.eyebrow {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero h1, h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.045em;
}
.hero h1 {
  font-size: clamp(4rem, 8vw, 8.4rem);
  max-width: 780px;
}
.hero-text {
  max-width: 570px;
  margin: 34px 0 38px;
  color: rgba(255,255,255,.72);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: .82rem;
  letter-spacing: .07em;
}
.button-primary { background: var(--sand); color: var(--ink); }
.button-light { background: var(--white); color: var(--ink); }
.text-link { font-size: .84rem; color: rgba(255,255,255,.7); }
.text-link span { margin-left: 8px; }

.hero-visual { position: relative; min-height: 650px; }
.halo {
  position: absolute;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
}
.monolith {
  position: absolute;
  width: min(280px, 34vw);
  height: min(520px, 63vw);
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%) rotate(-1.5deg);
  background:
    linear-gradient(102deg, transparent 0 47%, rgba(255,255,255,.08) 48%, transparent 50%),
    linear-gradient(135deg, #393a35 0%, #141512 53%, #2b2c28 100%);
  clip-path: polygon(12% 3%, 79% 0, 98% 92%, 17% 100%, 1% 18%);
  box-shadow: 42px 50px 90px rgba(0,0,0,.5);
}
.monolith::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(255,255,255,.05) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.035) 0 1px, transparent 2px);
  background-size: 38px 31px, 43px 47px;
  opacity: .8;
}
.light-line {
  position: absolute;
  z-index: 2;
  left: 51%;
  top: 22%;
  width: 1px;
  height: 48%;
  background: linear-gradient(to bottom, transparent, rgba(227,217,196,.65), transparent);
  transform: rotate(3deg);
  box-shadow: 0 0 12px rgba(227,217,196,.35);
}
.water-line {
  position: absolute;
  left: 5%;
  right: 4%;
  height: 1px;
  background: rgba(255,255,255,.19);
  border-radius: 50%;
}
.water-line-one { top: 78%; transform: rotate(-1deg); }
.water-line-two { top: 81%; left: 18%; opacity: .45; }
.visual-caption {
  position: absolute;
  right: 2%;
  bottom: 2%;
  margin: 0;
  color: rgba(255,255,255,.45);
  font-family: Georgia, serif;
  font-size: .9rem;
  font-style: italic;
}

.statement {
  padding: clamp(90px, 14vw, 190px) clamp(24px, 10vw, 160px);
  background: var(--sand);
}
.statement p {
  max-width: 1020px;
  margin: 0 auto;
  font-family: Georgia, serif;
  font-size: clamp(2.1rem, 4.8vw, 5.3rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.section { padding: clamp(90px, 12vw, 160px) clamp(24px, 7vw, 110px); }
.section-light { background: var(--paper); }
.section-heading { max-width: var(--max); margin: 0 auto 80px; }
.section-heading h2, .about h2, .contact h2 {
  font-size: clamp(2.8rem, 5.2vw, 5.7rem);
}
.two-column {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(50px, 9vw, 150px);
}
.large-copy p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.22;
}
.body-copy { font-size: 1.05rem; color: #4b4d48; }
.body-copy p:first-child { margin-top: 0; }

.topics { background: var(--ink); color: var(--white); }
.inverse .eyebrow { color: #b7a78b; }
.topic-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,.14);
  border-left: 1px solid rgba(255,255,255,.14);
}
.topic-grid article {
  min-height: 280px;
  padding: 40px;
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.topic-grid span, .steps span {
  color: var(--accent);
  font-size: .7rem;
  letter-spacing: .16em;
}
.topic-grid h3, .steps h3 {
  margin: 54px 0 16px;
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
}
.topic-grid p { max-width: 450px; color: rgba(255,255,255,.6); }

.about {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(55px, 9vw, 150px);
  align-items: center;
}
.about-mark { min-height: 720px; position: relative; overflow: hidden; background: #d9d3c8; }
.about-mark::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(26,27,24,.26), transparent 45%),
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.45), transparent 30%);
}
.about-stone {
  position: absolute;
  left: 50%;
  top: 53%;
  width: 46%;
  height: 58%;
  transform: translate(-50%, -50%) rotate(2deg);
  background: linear-gradient(135deg, #454640, #1f201d 65%, #363730);
  clip-path: polygon(13% 2%, 80% 0, 98% 91%, 17% 100%, 0 20%);
  box-shadow: 35px 35px 70px rgba(37,35,30,.28);
}
.about-content { max-width: 720px; }
.about-content .lead {
  margin: 35px 0 30px;
  font-family: Georgia, serif;
  font-size: clamp(1.55rem, 2.3vw, 2.4rem);
  line-height: 1.3;
}
.about-content > p:not(.eyebrow):not(.lead) { color: #4c4e49; font-size: 1.02rem; }
.about-content .note {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: .82rem !important;
}

.process { background: #ddd7cc; }
.steps {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(23,24,22,.16);
}
.steps article { background: #ddd7cc; padding: 36px; min-height: 310px; }
.steps p { color: #565852; }

.contact {
  padding: clamp(90px, 13vw, 180px) clamp(24px, 8vw, 125px);
  background: var(--ink-soft);
  color: var(--white);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 70px;
}
.contact > div { max-width: 800px; }
.contact p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.65); font-size: 1.05rem; }

footer {
  padding: 42px clamp(24px, 5vw, 72px);
  background: #11120f;
  color: rgba(255,255,255,.62);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: center;
  font-size: .76rem;
}
.footer-links { display: flex; gap: 24px; }
footer .mini-monolith { color: var(--white); }
footer strong { color: var(--white); }

.legal-page {
  max-width: 850px;
  margin: 0 auto;
  padding: 160px 24px 100px;
}
.legal-page h1 { font-family: Georgia, serif; font-size: 3rem; font-weight: 400; }
.legal-page h2 { margin-top: 40px; font-size: 1.5rem; letter-spacing: 0; line-height: 1.2; }
.legal-page a { text-decoration: underline; }

@media (max-width: 900px) {
  .site-header { padding: 18px 22px; }
  .menu-button {
    display: flex;
    width: 42px; height: 42px;
    flex-direction: column; justify-content: center; gap: 6px;
    background: transparent; border: 0; color: white;
  }
  .menu-button span:not(.sr-only) { display: block; width: 24px; height: 1px; background: currentColor; }
  .navigation {
    display: none;
    position: absolute; top: 78px; left: 18px; right: 18px;
    padding: 28px; flex-direction: column; align-items: flex-start;
    background: #1c1d1a; border: 1px solid rgba(255,255,255,.13);
  }
  .navigation.open { display: flex; }
  .hero { grid-template-columns: 1fr; padding-top: 130px; }
  .hero-copy { min-height: 560px; }
  .hero-visual { min-height: 580px; }
  .two-column, .about { grid-template-columns: 1fr; }
  .about-mark { min-height: 580px; }
  .topic-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .contact { align-items: flex-start; flex-direction: column; }
  footer { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: clamp(3.35rem, 17vw, 5.1rem); }
  .hero { padding-left: 22px; padding-right: 22px; }
  .hero-visual { min-height: 500px; }
  .monolith { width: 190px; height: 360px; }
  .halo { width: 320px; height: 320px; }
  .statement { padding-left: 24px; padding-right: 24px; }
  .topic-grid article { padding: 30px; min-height: 245px; }
  .section-heading { margin-bottom: 50px; }
  .about-mark { min-height: 470px; }
}
