:root {
  --ink: #17201c;
  --muted: #64706a;
  --paper: #f7f5ef;
  --white: #ffffff;
  --line: rgba(23, 32, 28, .13);
  --accent: #b18b4a;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  max-width: var(--max);
  margin: auto;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

nav {
  display: flex;
  gap: 25px;
  font-size: 12px;
  letter-spacing: .08em;
}

nav a { opacity: .9; }
nav a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 5px; }

.hero {
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: center;
  background:
    url("assets/hero.jpg") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,18,15,.68), rgba(10,18,15,.14) 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 150px 28px 100px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 8vw, 98px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.04em;
}

.hero-lead {
  max-width: 560px;
  margin: 28px 0 34px;
  font-size: 20px;
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.section {
  padding: 120px 28px;
}

.section-narrow {
  max-width: 760px;
  margin: auto;
}

.intro { background: var(--paper); }

h2 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.035em;
}

p { margin: 0 0 20px; }

.large {
  font-size: 21px;
  line-height: 1.65;
}

.split-section {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
}

.split-section.reverse .split-image { order: 2; }
.split-section.reverse .split-copy { order: 1; }

.split-image {
  min-height: 520px;
  background-position: center;
  background-size: cover;
}

.technology-image {
  background-image:
    linear-gradient(rgba(22,34,28,.12), rgba(22,34,28,.12)),
    url("assets/hero.jpg");
  filter: saturate(.75);
}

.lifestyle-image {
  background-image:
    linear-gradient(rgba(22,34,28,.08), rgba(22,34,28,.08)),
    url("assets/hero.jpg");
  background-position: 72% center;
  filter: saturate(.82);
}

.split-copy {
  max-width: 620px;
  padding: 100px clamp(40px, 7vw, 100px);
  align-self: center;
}

.split-copy ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  border-top: 1px solid var(--line);
}

.split-copy li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.split-copy li::before {
  content: "—";
  margin-right: 10px;
  color: var(--accent);
}

.accent-note {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--accent);
}

.stories { background: #e9e7df; }

.section-heading {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.story-grid {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.story-card {
  min-height: 290px;
  padding: 36px;
  background: var(--paper);
}

.story-number {
  margin-bottom: 48px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
}

.story-card h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.2;
}

.story-card p {
  color: var(--muted);
  font-size: 14px;
}

.contact {
  background: var(--ink);
  color: var(--white);
}

.contact-box {
  max-width: 720px;
  margin: auto;
  text-align: center;
}

.contact-box p:not(.eyebrow) {
  color: rgba(255,255,255,.78);
}

.contact-box .small {
  font-size: 13px;
}

.site-footer {
  max-width: var(--max);
  margin: auto;
  padding: 30px 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .04em;
}

.site-footer div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-footer strong {
  color: var(--ink);
  letter-spacing: .15em;
}

@media (max-width: 820px) {
  .site-header { padding: 16px 18px; }
  nav { display: none; }

  .hero {
    min-height: 690px;
    background-position: 58% center;
  }

  .hero-content { padding: 130px 22px 80px; }
  .hero h1 { font-size: clamp(52px, 14vw, 78px); }
  .hero-lead { font-size: 17px; }

  .section { padding: 82px 22px; }

  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
  }

  .split-section .split-image,
  .split-section.reverse .split-image {
    order: 1;
    min-height: 430px;
  }

  .split-section .split-copy,
  .split-section.reverse .split-copy {
    order: 2;
    padding: 70px 24px 82px;
  }

  .story-grid { grid-template-columns: 1fr; }
  .story-card { min-height: auto; }

  .site-footer {
    padding: 26px 22px 34px;
    align-items: flex-start;
    flex-direction: column;
  }
}
