:root {
  --ink: #111111;
  --muted: #6f706d;
  --line: #d9d9d4;
  --paper: #f7f7f3;
  --paper-2: #efefe9;
  --white: #ffffff;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.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;
}

/* ---------- CSS-built logo ---------- */

.brand {
  display: inline-flex;
  color: var(--ink);
}

.brand--horizontal {
  align-items: center;
  gap: 15px;
}

.brand--stacked {
  flex-direction: column;
  align-items: center;
  gap: 19px;
}

.brand-icon {
  display: block;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.brand-icon--small {
  width: 24px;
  height: 35px;
  border-width: 2px;
}

.brand-icon--hero {
  width: 70px;
  height: 100px;
  border-width: 4px;
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 18px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.09em;
}

.brand-wordmark--hero {
  font-size: clamp(27px, 3vw, 43px);
  gap: 0.62em;
  letter-spacing: 0.06em;
}

.brand-a {
  position: relative;
  display: inline-block;
  width: 0.72em;
  height: 0.95em;
  margin: 0 0.03em;
}

.brand-a::before,
.brand-a::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 1.03em;
  background: currentColor;
  transform-origin: top;
}

.brand-a::before {
  left: 50%;
  transform: rotate(27deg);
}

.brand-a::after {
  right: 50%;
  transform: rotate(-27deg);
}

/* ---------- Header ---------- */

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 64px), var(--max));
  height: 104px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
}

.nav {
  display: flex;
  gap: 34px;
  font-size: 11px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 78% 28%, rgba(0,0,0,0.04), transparent 25%),
    linear-gradient(135deg, #fbfbf8 0%, #f3f3ee 56%, #ecece6 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17,17,17,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,17,17,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent 78%);
  pointer-events: none;
}

.hero-inner {
  width: min(calc(100% - 64px), 980px);
  margin: 80px auto 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-brand {
  margin-bottom: 52px;
}

.eyebrow {
  margin: 0 0 25px;
  font-size: 10px;
  letter-spacing: 0.26em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.manifesto h2,
.directions h2,
.contact h2 {
  margin: 0;
  font-weight: 300;
  letter-spacing: -0.045em;
}

.hero h1 {
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.95;
}

.hero-copy {
  max-width: 630px;
  margin: 34px auto 32px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-footer {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: min(calc(100% - 64px), var(--max));
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(17,17,17,0.10);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit--one {
  width: 510px;
  height: 510px;
  left: -260px;
  bottom: -180px;
}

.hero-orbit--two {
  width: 310px;
  height: 310px;
  right: -120px;
  top: 15%;
}

/* ---------- Shared sections ---------- */

.manifesto,
.directions,
.contact {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 34px;
  padding: 132px 0;
  border-top: 1px solid var(--line);
}

.section-index {
  padding-top: 3px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.22em;
}

.manifesto h2,
.directions h2,
.contact h2 {
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: 1.02;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  max-width: 940px;
  margin-top: 60px;
}

.manifesto-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

/* ---------- Direction cards ---------- */

.direction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 68px;
}

.direction-card {
  min-height: 560px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.26);
  transition: transform 250ms ease, background 250ms ease;
}

.direction-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.55);
}

.direction-no {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.direction-art {
  position: relative;
  flex: 1;
  margin: 44px 0 42px;
  overflow: hidden;
  background: var(--paper-2);
}

.direction-art::before,
.direction-art::after {
  content: "";
  position: absolute;
}

.direction-art--living::before {
  width: 58%;
  height: 54%;
  left: 20%;
  top: 25%;
  border: 1px solid rgba(17,17,17,.5);
}

.direction-art--living::after {
  width: 28%;
  height: 33%;
  right: 9%;
  bottom: 11%;
  background: rgba(17,17,17,.10);
}

.direction-art--outdoor::before {
  width: 1px;
  height: 80%;
  left: 50%;
  top: 10%;
  background: rgba(17,17,17,.22);
  box-shadow: -70px 0 0 rgba(17,17,17,.14), 70px 0 0 rgba(17,17,17,.14);
}

.direction-art--outdoor::after {
  width: 230px;
  height: 115px;
  left: 50%;
  bottom: 18%;
  transform: translateX(-50%);
  border: 1px solid rgba(17,17,17,.42);
  border-bottom: none;
  border-radius: 120px 120px 0 0;
}

.direction-art--nature::before {
  width: 190px;
  height: 190px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(17,17,17,.38);
  border-radius: 50%;
}

.direction-art--nature::after {
  width: 1px;
  height: 240px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(35deg);
  background: rgba(17,17,17,.27);
}

.direction-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.direction-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

/* ---------- Statement ---------- */

.statement {
  min-height: 72vh;
  padding: 120px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--ink);
  color: var(--paper);
}

.statement .eyebrow {
  color: #aaa;
}

.statement blockquote {
  margin: 20px 0 0;
  max-width: 1050px;
  font-size: clamp(46px, 6vw, 92px);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -0.045em;
}

/* ---------- Contact ---------- */

.contact-content {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 60px;
  align-items: end;
}

.contact-details {
  padding-bottom: 6px;
}

.contact-details p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-details a {
  display: inline-block;
  margin-bottom: 42px;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  border-bottom: 1px solid var(--ink);
}

.contact-details .coming-soon {
  margin: 0;
  color: var(--ink);
}

/* ---------- Footer ---------- */

.site-footer {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
  padding: 40px 0 50px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.footer-meta {
  display: flex;
  gap: 34px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .site-header,
  .hero-inner,
  .hero-footer,
  .manifesto,
  .directions,
  .contact,
  .site-footer {
    width: min(calc(100% - 40px), var(--max));
  }

  .site-header {
    height: 82px;
  }

  .nav {
    display: none;
  }

  .hero-inner {
    margin-top: 60px;
  }

  .brand-icon--hero {
    width: 58px;
    height: 82px;
  }

  .manifesto,
  .directions,
  .contact {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 92px 0;
  }

  .manifesto-grid,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .direction-grid {
    grid-template-columns: 1fr;
  }

  .direction-card {
    min-height: 520px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
  }

  .footer-meta {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .brand-wordmark {
    font-size: 14px;
    gap: 0.38em;
  }

  .brand-wordmark--hero {
    font-size: 26px;
    gap: 0.43em;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-copy {
    font-size: 14px;
  }

  .manifesto h2,
  .directions h2,
  .contact h2 {
    font-size: 42px;
  }

  .statement {
    min-height: 60vh;
  }

  .statement blockquote {
    font-size: 42px;
  }
}
