:root {
  --ink: #12110f;
  --night: #19140f;
  --paper: #f4efe5;
  --bone: #fff8ec;
  --cane: #476d3c;
  --moss: #203c2b;
  --copper: #b66f3a;
  --clay: #8f3f32;
  --gold: #d7b164;
  --muted: #74695b;
  --line: rgba(18, 17, 15, 0.16);
  --white-line: rgba(255, 248, 236, 0.22);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 32px, var(--max));
  margin: 18px auto 0;
  padding: 10px 12px;
  color: var(--bone);
  background: rgba(16, 13, 10, 0.52);
  border: 1px solid var(--white-line);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.brand-mark,
.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  min-width: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1vw + 0.8rem, 1.35rem);
  font-weight: 700;
}

.brand-mark span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-seal {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(215, 177, 100, 0.72);
  border-radius: 50%;
  color: var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
}

.site-nav {
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  padding: 9px 10px;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 248, 236, 0.12);
  outline: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 86svh;
  overflow: hidden;
  color: var(--bone);
  background: var(--night);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 12, 9, 0.88) 0%, rgba(15, 12, 9, 0.66) 36%, rgba(15, 12, 9, 0.12) 78%),
    linear-gradient(0deg, rgba(15, 12, 9, 0.72) 0%, rgba(15, 12, 9, 0) 48%),
    radial-gradient(circle at 28% 72%, rgba(182, 111, 58, 0.24), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(100% - 32px, var(--max));
  min-height: 86svh;
  margin: 0 auto;
  padding: 150px 0 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.dark,
.section-kicker {
  color: var(--clay);
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 8.6vw, 8.6rem);
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.15rem, 4vw, 5rem);
  text-wrap: balance;
}

.hero-copy {
  max-width: 600px;
  margin: 26px 0 0;
  color: rgba(255, 248, 236, 0.86);
  font-size: clamp(1.05rem, 1.1vw + 0.82rem, 1.48rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 248, 236, 0.62);
  border-radius: 6px;
  background: var(--bone);
  color: var(--ink);
  font-weight: 800;
}

.button:hover,
.button:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  outline: none;
}

.launch-note {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--white-line);
  border-radius: 6px;
  color: rgba(255, 248, 236, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-section,
.contact-section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 124px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: end;
}

.intro-grid p,
.process-copy > p,
.contact-section h2 {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1vw + 0.9rem, 1.5rem);
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  min-height: 680px;
  background: var(--night);
  color: var(--bone);
}

.process-image {
  position: relative;
  min-height: 520px;
}

.process-image img {
  width: 100%;
  height: 100%;
}

.process-image img {
  object-fit: cover;
  object-position: center;
}

.process-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 56%, rgba(25, 20, 15, 0.68) 100%),
    linear-gradient(0deg, rgba(25, 20, 15, 0.32), transparent 42%);
  pointer-events: none;
}

.process-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 96px) max(32px, calc((100vw - var(--max)) / 2)) clamp(42px, 7vw, 96px) clamp(32px, 5vw, 74px);
}

.process-copy h2 {
  max-width: 640px;
}

.process-copy > p {
  max-width: 620px;
  margin-top: 26px;
  color: rgba(255, 248, 236, 0.72);
}

.principles {
  display: grid;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--white-line);
}

.principles div {
  display: grid;
  grid-template-columns: 48px minmax(120px, 160px) minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--white-line);
}

.principles span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.principles strong {
  color: var(--bone);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.principles p {
  margin: 0;
  color: rgba(255, 248, 236, 0.68);
}

.contact-section {
  display: grid;
  gap: 24px;
}

.contact-section h2 {
  max-width: 820px;
  color: var(--ink);
}

.email-link {
  width: fit-content;
  border-bottom: 2px solid var(--copper);
  color: var(--moss);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 1.02;
}

.email-link:hover,
.email-link:focus-visible {
  color: var(--clay);
  outline: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(16px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
}

.site-footer a {
  color: var(--moss);
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    margin-top: 10px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 4px;
  }

  .site-nav a {
    padding: 7px 6px;
  }

  .hero,
  .hero-content {
    min-height: 88svh;
  }

  .hero-content {
    padding-top: 136px;
    padding-bottom: 50px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(15, 12, 9, 0.9), rgba(15, 12, 9, 0.42)),
      linear-gradient(0deg, rgba(15, 12, 9, 0.82) 0%, rgba(15, 12, 9, 0.08) 58%);
  }

  .intro-grid,
  .process-section {
    grid-template-columns: 1fr;
  }

  .process-section {
    min-height: 0;
  }

  .process-copy {
    padding: 46px 16px 62px;
  }

  .process-image {
    min-height: 360px;
  }

  .process-image::after {
    background: linear-gradient(0deg, rgba(25, 20, 15, 0.7), transparent 44%);
  }

  .principles div {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .principles p {
    grid-column: 2;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 20px);
    gap: 10px;
    padding: 8px;
  }

  .brand-seal {
    width: 36px;
    height: 36px;
  }

  .site-nav {
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(2.6rem, 16vw, 4.8rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button,
  .launch-note {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
