:root {
  --paper: #fff8f1;
  --surface: #ffffff;
  --rose: #be3154;
  --rose-dark: #8f1f3e;
  --rose-soft: #fff1f4;
  --amber-soft: #fff2d7;
  --ink: #182032;
  --muted: #647083;
  --line: rgba(190, 49, 84, 0.16);
  --shadow: 0 22px 62px rgba(79, 43, 45, 0.13);
  --radius-lg: 32px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(190, 49, 84, 0.16), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(228, 168, 76, 0.18), transparent 26%),
    linear-gradient(180deg, var(--paper), #fffdf9 52%, #fff8f1);
  font-family: "Inter", system-ui, sans-serif;
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

.site {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.topbar-inner,
.shell,
.page-shell,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 8px 18px rgba(79, 43, 45, 0.1);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-weight: 800;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.site-nav button,
.mobile-nav button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #3d4658;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav button {
  padding: 10px 14px;
  font-size: 0.94rem;
}

.site-nav button:hover,
.site-nav button.is-active,
.mobile-nav button:hover {
  background: var(--rose);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--rose-soft);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--rose-dark);
}

.mobile-nav {
  display: none;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 14px;
}

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-nav button {
  padding: 13px 16px;
  text-align: left;
}

.page {
  display: none;
}

.page.is-active {
  display: block;
  animation: pageIn 340ms ease both;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  overflow: hidden;
  background: linear-gradient(135deg, #ffe9ef, #fff8eb 58%, #fff0d1);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 44px;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--rose-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.05;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 6.5vw, 5.35rem);
}

.page-shell h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.lead,
.copy-stack p,
.info-card p,
.wide-card p,
.callout p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 14px 30px rgba(190, 49, 84, 0.24);
}

.button-primary:hover {
  background: var(--rose-dark);
}

.button-secondary,
.button-light {
  background: #fff;
  color: var(--rose-dark);
  box-shadow: 0 12px 26px rgba(79, 43, 45, 0.1);
}

.hero-logo-card,
.logo-panel {
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-logo-card {
  padding: 28px;
}

.hero-logo-card img,
.logo-panel img {
  display: block;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  border-radius: 24px;
  object-fit: contain;
}

.feature-grid,
.two-grid {
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
  padding: 64px 0;
}

.two-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 42px;
}

.info-card,
.wide-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(79, 43, 45, 0.07);
}

.info-card {
  padding: 28px;
}

.info-card h2,
.wide-card h2,
.callout h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.icon-badge {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 18px;
  background: var(--rose);
}

.icon-badge::before {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
}

.heart-icon::before {
  content: "H";
}

.users-icon::before {
  content: "U";
}

.support-icon::before {
  content: "S";
}

.calendar-icon::before {
  content: "E";
}

.partner-icon::before {
  content: "P";
}

.gift-icon::before {
  content: "+";
}

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 72px;
  padding: 42px;
  border-radius: var(--radius-lg);
  background: var(--rose);
  color: #fff;
  box-shadow: 0 22px 52px rgba(190, 49, 84, 0.22);
}

.callout p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.page-shell {
  padding: 72px 0 84px;
}

.split-panel,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
  margin-top: 42px;
}

.logo-panel {
  padding: 28px;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.copy-stack p {
  margin-bottom: 0;
}

.notice {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  background: var(--rose-soft);
  font-size: 0.96rem !important;
}

.wide-card {
  margin-top: 42px;
  padding: 34px;
}

.wide-card p {
  max-width: 850px;
}

.contact-grid {
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 30px;
  font-style: normal;
}

.contact-card a,
.contact-card span {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.contact-card a::before,
.contact-card span::before {
  display: inline-flex;
  width: 28px;
  color: var(--rose);
  font-weight: 800;
}

.contact-card a::before {
  content: "@";
}

.contact-card span:first-of-type::before {
  content: "TX";
}

.contact-card span:nth-of-type(2)::before {
  content: "W";
}

.contact-card small {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 28px max(24px, calc((100vw - 1120px) / 2));
  background: #121827;
  color: #fff;
}

.footer-brand {
  color: #fff;
  font-weight: 800;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: right;
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-inner,
  .split-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .two-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    padding: 42px 0;
  }

  .callout {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    max-width: 170px;
  }

  .hero-inner {
    padding: 52px 0;
  }

  .page-shell {
    padding-top: 48px;
  }

  .hero-logo-card,
  .logo-panel,
  .info-card,
  .wide-card,
  .callout,
  .contact-card {
    border-radius: 22px;
    padding: 24px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }
}
