:root{
  --ink: #2b2320;
  --ink-soft: #5a4f4a;
  --teal: #17968c;
  --teal-soft: #17968c1a;
  --paper: #faf7f3;
  --line: #e7e0d8;
}

*{ box-sizing: border-box; margin: 0; padding: 0; }

html, body{
  height: 100%;
}

body{
  background: var(--paper);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
}

.bg-glow{
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(600px 400px at 15% 10%, var(--teal-soft), transparent 60%),
    radial-gradient(700px 500px at 90% 90%, var(--teal-soft), transparent 60%);
  pointer-events: none;
}

.wrap{
  position: relative;
  z-index: 1;
  max-width: 620px;
  width: 100%;
  padding: 64px 32px;
  text-align: center;
}

.logo{
  width: 168px;
  height: auto;
  margin: 0 auto 40px;
  display: block;
}

.eyebrow{
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}

h1{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
}

.lede{
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 440px;
  margin: 0 auto 44px;
}

.lines{
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  margin: 0 auto 48px;
  padding: 32px 40px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255,255,255,0.5);
}

.lines li{
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.lines .num{
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--teal);
  min-width: 20px;
}

.social{
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-bottom: 56px;
}

.social a{
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.social a:hover{
  color: var(--teal);
  border-color: var(--teal);
}

.social .dot{
  color: var(--line);
  margin: 0 14px;
}

.footer{
  font-size: 12px;
  color: var(--ink-soft);
  opacity: 0.6;
  letter-spacing: 0.02em;
}

@media (max-width: 480px){
  .wrap{ padding: 48px 24px; }
  .logo{ width: 140px; margin-bottom: 32px; }
  .lines{ padding: 24px 28px; }
  .lines li{ font-size: 18px; }
  .social .dot{ margin: 0 8px; }
  .social{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .social .dot{ display: none; }
}
