:root {
  color-scheme: light;
  --cream: #faf4ea;
  --paper: #fffdf8;
  --plum: #4a203b;
  --coral: #d95f4f;
  --rose: #d9a6a1;
  --sage: #aeb9a1;
  --gold: #b88b35;
  --ink: #2d2530;
  --muted: #6b5f68;
  --line: #e6d6c3;
  --shadow: 0 18px 50px rgba(74, 32, 59, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--cream);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  transform: translateY(-150%);
  z-index: 20;
  background: var(--plum);
  color: white;
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(250, 244, 234, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  color: var(--plum);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.7rem);
  font-size: 0.96rem;
}

.site-nav a {
  text-decoration: none;
}

.nav-toggle {
  display: none;
  min-height: 44px;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--plum);
  background: transparent;
  color: var(--plum);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.15rem;
  border: 2px solid var(--coral);
  background: var(--coral);
  color: #fffdf8;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
}

.button-secondary {
  background: transparent;
  color: var(--plum);
  border-color: var(--plum);
}

.button-small {
  min-height: 40px;
  padding: 0.58rem 0.8rem;
}

.hero,
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2.2rem, 7vw, 6rem) clamp(1rem, 4vw, 4rem);
}

.hero {
  min-height: min(780px, calc(100svh - 72px));
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.page-hero {
  display: block;
  max-width: 960px;
}

.hero-copy,
.section-heading,
.narrow-copy,
.page-hero {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6.6rem);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

h3 {
  margin: 0;
  font-size: 1.35rem;
}

p {
  line-height: 1.65;
}

.lede {
  color: var(--muted);
  font-size: clamp(1.12rem, 2.1vw, 1.42rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.8rem 0 1rem;
}

.support-line,
.pricing-note,
.field-hint {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-art {
  justify-self: stretch;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-art img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section,
.feature-band,
.final-cta {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 4rem);
}

.section-heading {
  margin-bottom: 2rem;
}

.occasion-grid,
.pricing-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.occasion-card,
.price-card,
.steps article,
.paper-panel,
.admin-list article {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(74, 32, 59, 0.08);
}

.occasion-card {
  min-height: 280px;
}

.occasion-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.occasion-card h3,
.price-card,
.steps article,
.paper-panel,
.admin-list article {
  padding: 1.25rem;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 390px;
}

.price-card.featured {
  border: 3px solid var(--coral);
}

.price-card .button {
  margin-top: auto;
}

.badge {
  align-self: flex-start;
  margin: 0;
  padding: 0.32rem 0.55rem;
  background: var(--plum);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 900;
}

.price {
  margin: 0;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 2rem;
  align-items: center;
  background: var(--plum);
  color: var(--paper);
}

.feature-band h2,
.feature-band .eyebrow {
  color: var(--paper);
}

.qr-sample {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 220px;
  aspect-ratio: 1;
  padding: 20px;
  background: var(--paper);
}

.qr-sample span {
  background: var(--plum);
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  background: var(--rose);
  color: var(--plum);
  font-weight: 900;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 1rem;
  background: var(--paper);
  border-left: 5px solid var(--sage);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 900px;
}

details {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1rem 1.2rem;
}

summary {
  min-height: 44px;
  color: var(--plum);
  cursor: pointer;
  font-weight: 900;
}

.final-cta {
  background: var(--sage);
  text-align: center;
}

.final-cta h2,
.final-cta p {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 2rem;
}

.price-line {
  color: var(--plum);
  font-weight: 900;
}

.form-section {
  padding-top: 0;
}

.intake-form {
  max-width: 980px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

fieldset {
  margin: 0 0 1.5rem;
  padding: 0;
  border: 0;
}

legend,
label {
  color: var(--plum);
  font-weight: 900;
}

.product-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.product-picker legend {
  grid-column: 1 / -1;
}

.product-picker label {
  display: grid;
  gap: 0.35rem;
  min-height: 160px;
  padding: 1rem;
  border: 2px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.product-picker label.selected {
  border-color: var(--coral);
}

.product-picker input {
  width: 22px;
  height: 22px;
  min-height: 22px;
  margin: 0 0 0.25rem;
  justify-self: start;
  accent-color: var(--coral);
}

.product-picker strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.product-picker em {
  font-style: normal;
  color: var(--coral);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field,
.consent-row {
  margin-bottom: 1rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  margin-top: 0.35rem;
  padding: 0.75rem;
  border: 2px solid #d2c0ad;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.consent-row label {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
}

.consent-row input {
  width: 22px;
  min-height: 22px;
}

.field-error,
.error-summary {
  color: #8e1b14;
}

.has-error input,
.has-error select,
.has-error textarea {
  border-color: #8e1b14;
}

.error-summary {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 2px solid #8e1b14;
  background: #fff4f1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem clamp(1rem, 4vw, 4rem);
  background: var(--plum);
  color: var(--paper);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 1rem;
}

.site-footer a {
  color: var(--paper);
}

.admin-list {
  display: grid;
  gap: 1rem;
}

@media (max-width: 980px) {
  .hero,
  .two-column,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .occasion-grid,
  .pricing-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }

  .site-nav[data-open] {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .hero,
  .page-hero,
  .section,
  .feature-band,
  .final-cta {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  h1 {
    font-size: 2.6rem;
  }

  .occasion-grid,
  .pricing-grid,
  .steps,
  .check-list,
  .form-grid,
  .product-picker {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 0;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
