:root {
  --ink: #190f15;
  --muted: #715d68;
  --line: #ead8df;
  --paper: #fff7f8;
  --white: #ffffff;
  --wine: #5f1234;
  --rose: #d84f7a;
  --blush: #ffd8e3;
  --champagne: #f2c679;
  --plum: #2a1021;
  --shadow: 0 22px 60px rgba(95, 18, 52, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: rgba(255, 247, 248, 0.9);
  border-bottom: 1px solid rgba(95, 18, 52, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--wine);
  border-radius: 50%;
  font-size: 0.78rem;
}

.nav {
  display: flex;
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.nav a:hover {
  color: var(--rose);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(42, 16, 33, 0.88), rgba(95, 18, 52, 0.52) 48%, rgba(42, 16, 33, 0.16)),
    url("images/samantha-hero.jpg") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  z-index: -1;
  background: linear-gradient(0deg, var(--paper), rgba(255, 247, 248, 0));
}

.hero-content {
  width: min(820px, 100%);
  padding: clamp(72px, 13vw, 150px) clamp(20px, 5vw, 64px);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  max-width: 900px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.02;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--rose);
}

.button.primary:hover {
  background: #bb315f;
}

.button.primary.alt {
  color: var(--plum);
  background: var(--champagne);
}

.button.primary.alt:hover {
  background: #dfb55f;
}

.button.primary.dark {
  color: var(--white);
  background: var(--wine);
}

.button.primary.dark:hover {
  background: #471029;
}

.button.invite {
  color: var(--wine);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.button.invite:hover {
  color: var(--white);
  background: var(--plum);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.1);
}

.button.big {
  min-height: 64px;
  padding: 18px 28px;
  font-size: 1.06rem;
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}

.intro,
.split,
.chat {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.section h2 {
  font-size: clamp(2.1rem, 5vw, 4.4rem);
}

.section p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
}

.vibe-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vibe-card {
  min-height: 280px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(95, 18, 52, 0.07);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 32px;
  color: var(--wine);
  background: var(--blush);
  border-radius: 50%;
  font-weight: 900;
}

.vibe-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.vibe-card p {
  margin-bottom: 0;
}

.tease-band {
  background: var(--plum);
  color: var(--white);
}

.tease-band .section-kicker {
  color: var(--champagne);
}

.tease-band p {
  color: rgba(255, 255, 255, 0.74);
}

.photo-panel {
  display: grid;
  min-height: 460px;
  place-items: end start;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(95, 18, 52, 0.1), rgba(42, 16, 33, 0.82)),
    url("images/samantha-portrait.jpg") center / cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-panel p {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.1;
}

.photo-panel span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.quote-section {
  padding-top: clamp(44px, 6vw, 76px);
  padding-bottom: clamp(44px, 6vw, 76px);
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 0;
}

.photo-strip figure {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: var(--plum);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-strip img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
}

.photo-strip figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 13px 15px;
  color: var(--white);
  background: rgba(42, 16, 33, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.quote-panel {
  padding: clamp(28px, 5vw, 48px);
  color: var(--white);
  background: var(--wine);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-panel p {
  margin: 0 0 24px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 4vw, 2.9rem);
  line-height: 1.18;
}

.quote-panel strong {
  color: var(--champagne);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-grid article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(95, 18, 52, 0.07);
}

.faq-grid h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
}

.faq-grid p {
  margin: 0;
}

.chat-band {
  background: var(--blush);
}

.platform-actions {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.platform-actions .button {
  width: min(100%, 520px);
  text-align: center;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--plum);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--champagne);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 850px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(42, 16, 33, 0.78), rgba(95, 18, 52, 0.5) 58%, rgba(42, 16, 33, 0.2)),
      url("images/samantha-hero.jpg") center / cover;
  }

  .intro,
  .split,
  .chat,
  .faq-grid,
  .photo-strip,
  .vibe-grid {
    grid-template-columns: 1fr;
  }

  .vibe-card {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-content {
    padding-top: 52px;
  }

  .hero-actions,
  .button,
  .platform-actions .button {
    width: 100%;
  }
}
