@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,500;1,600&display=swap');

:root {
  --black: #090909;
  --muted: #666;
  --line: #dedede;
  --paper: #f8f8f6;
  --white: #fff;
  --accent: #b28b4b;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--black);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0,0,0,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

.page-shell {
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}

.brand { display: inline-flex; }

.brand-logo {
  width: 148px;
  height: auto;
  display: block;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255,255,255,.72);
  color: #4b4b4b;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(178,139,75,.12);
}

.hero {
  flex: 1;
  padding: clamp(72px, 10vw, 128px) 0 70px;
  max-width: 1020px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .24em;
  font-weight: 700;
  margin-bottom: 25px;
}

h1 {
  margin: 0;
  font-size: clamp(56px, 8.5vw, 112px);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 700;
  max-width: 980px;
}

h1 em {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: -.045em;
}

.rule {
  width: 74px;
  height: 3px;
  background: var(--accent);
  margin: 38px 0 28px;
}

.lead {
  max-width: 700px;
  margin: 0;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.6;
  color: #414141;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid var(--line);
}

.feature {
  padding: 28px 34px 12px 0;
  border-right: 1px solid var(--line);
  margin-right: 34px;
}

.feature:last-child {
  border-right: 0;
  margin-right: 0;
}

.feature-number {
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 20px;
}

.feature h2 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 27px;
  font-weight: 600;
}

.feature p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.65;
  max-width: 290px;
}

.coming-soon {
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
}

.coming-soon p {
  margin: 8px 0 0;
  color: #666;
  font-size: 13px;
  letter-spacing: .02em;
}

.monogram {
  font-family: Georgia, serif;
  font-size: 30px;
  letter-spacing: -.08em;
}

.site-footer {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #777;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .page-shell { width: min(100% - 32px, 620px); }
  .site-header { min-height: 78px; }
  .brand-logo { width: 122px; }
  .status { font-size: 9px; padding: 8px 10px; }
  .status-dot { width: 6px; height: 6px; }

  .hero { padding: 62px 0 52px; }
  h1 { font-size: clamp(48px, 14vw, 76px); }
  .lead { font-size: 17px; }

  .features {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .feature,
  .feature:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    margin: 0;
    padding: 24px 0;
  }

  .feature:last-child { border-bottom: 0; }

  .feature p { max-width: 100%; }

  .coming-soon {
    align-items: flex-start;
  }

  .coming-soon p {
    line-height: 1.7;
  }

  .site-footer {
    min-height: 92px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
  }
}

@media (max-width: 430px) {
  .page-shell { width: calc(100% - 28px); }
  .site-header { align-items: flex-start; padding: 18px 0; flex-direction: column; }
  .status { align-self: flex-start; }
  .hero { padding-top: 52px; }
  h1 { font-size: 50px; }
  .coming-soon { flex-direction: column; }
}
