:root {
  --bg: #3B343C;
  --bg-deep: #29242B;
  --accent: #E8BB87;
  --accent-soft: #C99A67;
  --paper: #EFE6D8;
  --paper-dim: #9C9199;
  --rule: rgba(232, 187, 135, 0.28);
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(232, 187, 135, 0.18);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(ellipse 120% 90% at 50% 15%, var(--bg) 0%, var(--bg-deep) 100%);
  background-attachment: fixed;
  color: var(--paper);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Site header / nav, shared across every page ---------- */

.site-header {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--card-border);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.site-header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-header-logo {
  width: 34px;
  height: 34px;
  border-radius: 22%;
  display: block;
}

.site-header-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  font-style: italic;
  font-size: 19px;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  color: var(--paper-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent-soft);
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.site-nav a:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Home page hero (coming-soon.html / index.html) ---------- */

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 560px;
  width: 100%;
}

.logo {
  width: clamp(96px, 18vw, 148px);
  height: auto;
  border-radius: 22%;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45), 0 2px 0 rgba(232, 187, 135, 0.15);
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.eyebrow {
  margin-top: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.24s forwards;
}

h1 {
  margin: 14px 0 0;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(40px, 8vw, 64px);
  line-height: 1.05;
  color: var(--accent);
  letter-spacing: -0.01em;
  opacity: 0;
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.38s forwards;
}

.tagline {
  margin: 22px 0 0;
  font-size: clamp(15px, 2.4vw, 17px);
  line-height: 1.6;
  color: var(--paper);
  max-width: 460px;
  opacity: 0;
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.46s forwards;
}

.status-note {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--paper-dim);
  max-width: 400px;
  opacity: 0;
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.58s forwards;
}

.rule {
  width: 64px;
  height: 1px;
  margin: 34px 0 0;
  background: var(--rule);
  border: none;
  opacity: 0;
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.contact {
  margin: 22px 0 0;
  font-size: 13px;
  color: var(--paper-dim);
  opacity: 0;
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.78s forwards;
}

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

.contact a:hover,
.contact a:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent-soft);
}

.contact a:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
  border-radius: 2px;
}

footer {
  margin-top: 26px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--paper-dim);
  opacity: 0;
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo, .eyebrow, h1, .tagline, .status-note, .rule, .contact, footer, .page-fade {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------- Secondary pages (About, Waiting List) ---------- */

.page {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 56px 24px 40px;
}

.page-fade {
  opacity: 0;
  animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards;
}

.page-content {
  max-width: 640px;
  width: 100%;
}

.page-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin: 0 0 10px;
}

.page-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.1;
  color: var(--accent);
  letter-spacing: -0.01em;
  margin: 0 0 26px;
}

.page-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--paper);
  margin: 0 0 20px;
}

.page-content p.lede {
  font-size: 18px;
  color: var(--accent);
}

.page-rule {
  width: 48px;
  height: 1px;
  margin: 34px 0;
  background: var(--rule);
  border: none;
}

.page-footer {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--paper-dim);
}

/* ---------- Waiting list form ---------- */

.form-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 28px;
  margin-top: 8px;
}

.form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.form-row label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-row input[type="email"] {
  flex: 1 1 240px;
  min-width: 0;
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--paper);
}

.form-row input[type="email"]::placeholder {
  color: var(--paper-dim);
}

.form-row input[type="email"]:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
}

.form-row button {
  flex: 0 0 auto;
  background: var(--accent);
  color: var(--bg-deep);
  border: none;
  border-radius: 6px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease;
}

.form-row button:hover,
.form-row button:focus-visible {
  background: var(--accent-soft);
}

.form-row button:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 2px;
}

.form-note {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--paper-dim);
}

.form-response {
  margin-top: 16px;
  font-size: 14px;
  color: var(--accent);
  display: none;
}

.form-response.visible {
  display: block;
}

/* Honeypot spam trap for the waiting list form -- positioned off-screen
   rather than display:none, since some bots specifically skip fields
   hidden that way but still fill in ones that are merely positioned
   out of the visible viewport. */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
