@font-face {
  font-family: 'Gotham';
  src: url('/fonts/Gotham-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/Gotham-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/Gotham-BookItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/Gotham-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #faf7f2;
  --bg-soft: #f3ede2;
  --ink: #1a1a1a;
  --ink-soft: #5a5651;
  --gold: #d9c180;
  --gold-deep: #907e52;
  --rule: rgba(144, 126, 82, 0.18);
  --max: 1180px;
  --sans: 'Gotham', 'Helvetica Neue', Helvetica, Arial, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100svh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* very subtle paper grain */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image: radial-gradient(
      ellipse at top left,
      rgba(217, 193, 128, 0.12),
      transparent 55%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(195, 150, 127, 0.08),
      transparent 55%
    );
}

/* ───── top bar ───── */
.topbar {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.brand img {
  display: block;
  width: clamp(72px, 9vw, 104px);
  height: auto;
  object-fit: contain;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.status .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(217, 193, 128, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(217, 193, 128, 0.18);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(217, 193, 128, 0);
  }
}

/* ───── hero ───── */
.hero {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 14vh, 140px) 32px 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(44px, 8.4vw, 116px);
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 32px;
  color: var(--ink);
}

.title em {
  font-style: normal;
  font-weight: 300;
  color: var(--gold-deep);
}

.lede {
  margin: 0 0 44px;
  max-width: 540px;
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--ink-soft);
}

/* ───── notify form ───── */
.notify {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  width: 100%;
  max-width: 480px;
}

.notify input[type='email'] {
  flex: 1 1 220px;
  min-width: 0;
  padding: 14px 18px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--rule);
  border-radius: 999px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.notify input[type='email']::placeholder {
  color: #a8a39c;
}

.notify input[type='email']:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(217, 193, 128, 0.22);
}

.notify button {
  flex: 0 0 auto;
  padding: 14px 24px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.notify button:hover:not(:disabled) {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.notify button:disabled {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  cursor: default;
  opacity: 0.85;
}

.notify-msg {
  flex-basis: 100%;
  margin: 6px 0 0 4px;
  font-size: 13px;
  color: var(--gold-deep);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ───── footer ───── */
.footer {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 32px 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.footer a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
  transition: color 160ms ease, border-color 160ms ease;
}

.footer a:hover {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}

.footer .sep {
  opacity: 0.6;
}

/* ───── small screens ───── */
@media (max-width: 520px) {
  .topbar,
  .hero,
  .footer {
    padding-left: 22px;
    padding-right: 22px;
  }
  .topbar {
    padding-top: 20px;
  }
  .status {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .status .dot {
    animation: none;
  }
}
