:root {
  --bg: #0a0a0a;
  --panel: #121212;
  --text: #f5efe6;
  --muted: rgba(245, 239, 230, 0.72);
  --line: rgba(255, 255, 255, 0.1);
  --accent: #0a84ff;
  --accent-strong: #52a8ff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(214, 185, 140, 0.14), transparent 35%),
    linear-gradient(180deg, #141414 0%, #080808 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page-shell {
  padding: 24px;
}

.landing-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 15, 15, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  gap: 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: end;
}

.hero-panel {
  margin: 0;
  min-height: 460px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--panel);
}

.hero-panel:first-child {
  transform: rotate(-1deg) translateX(18px);
  z-index: 1;
}

.hero-panel.featured {
  transform: translateY(12px);
  z-index: 3;
}

.hero-panel:last-child {
  transform: rotate(1deg) translateX(-18px);
  z-index: 2;
}

.hero-copy {
  max-width: 860px;
  padding: 8px 6px 0;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.88;
  margin-top: 0;
}

.subcopy {
  max-width: 540px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.cta-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.imessage-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: min(100%, 420px);
  padding: 14px 18px;
  border-radius: 24px;
  border: 1px solid rgba(82, 168, 255, 0.28);
  background: linear-gradient(180deg, #1195ff 0%, #0a84ff 100%);
  box-shadow: 0 18px 40px rgba(10, 132, 255, 0.24);
  text-decoration: none;
  color: #ffffff;
  transition: transform 160ms ease, border-color 160ms ease;
}

.imessage-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.42);
}

.imessage-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg, #b9c6dd 0%, #8797c8 100%);
  color: #ffffff;
  font-weight: 700;
}

.imessage-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.imessage-copy strong {
  font-size: 1rem;
}

.imessage-copy small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.imessage-arrow {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.35rem;
  line-height: 1;
}

.contact-strip {
  display: grid;
  gap: 8px;
  margin-top: 36px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
}

.signup-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.signup-form input {
  flex: 1 1 260px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.signup-form input::placeholder {
  color: rgba(245, 239, 230, 0.45);
}

.signup-form button {
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 16px;
  background: var(--text);
  color: #111;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.contact-email,
.footer a {
  color: var(--muted);
  text-decoration: none;
}

.contact-email {
  font-size: 0.98rem;
  margin: 2px 0 12px;
}

.footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 12px;
}

.footer a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-label {
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

.age-gate {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  z-index: 50;
}

.age-gate.is-open {
  display: flex;
}

.age-gate-card {
  width: min(100%, 460px);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #111214;
  box-shadow: var(--shadow);
}

.age-gate-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.confirm-age,
.deny-age {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font: inherit;
  text-decoration: none;
}

.confirm-age {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(180deg, #1195ff 0%, #0a84ff 100%);
  color: #fff;
}

.deny-age {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

@media (max-width: 820px) {
  .page-shell {
    padding: 0;
  }

  .landing-page {
    padding: 0 0 10px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .hero {
    gap: 14px;
  }

  .hero-grid {
    display: flex;
    gap: 0;
    align-items: end;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    padding: 18px 0 0;
    margin-bottom: -10px;
    overflow: hidden;
  }

  .hero-panel,
  .hero-panel.featured {
    flex: 1 1 0;
    width: 38%;
    min-height: 246px;
    border-radius: 16px;
  }

  .hero-panel:first-child {
    transform: rotate(-1deg) translateX(28px);
  }

  .hero-panel.featured {
    transform: translateY(8px) scale(1.06);
  }

  .hero-panel:last-child {
    transform: rotate(1deg) translateX(-28px);
  }

  .hero-copy,
  .contact-strip,
  .footer-label,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-copy {
    padding-top: 0;
    margin-top: 0;
  }

  .eyebrow {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .contact-strip {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 520px) {
  .hero-grid {
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: -14px;
  }

  .hero-panel,
  .hero-panel.featured {
    min-height: 232px;
  }

  .hero-panel:first-child {
    transform: rotate(-1deg) translateX(20px);
  }

  .hero-panel:last-child {
    transform: rotate(1deg) translateX(-20px);
  }
}
