* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #172022;
  --paper: #fbf7ef;
  --paper-strong: #fffdf7;
  --muted: #5e696c;
  --line: rgba(23, 32, 34, 0.16);
  --charcoal: #101719;
  --gold: #d7a642;
  --sea: #2f8f91;
  --rose: #c6626e;
  --blue: #315c86;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

code {
  padding: 2px 5px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(16, 23, 25, 0.42);
  color: #fff7db;
  font-size: 0.92em;
}

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  min-height: 72px;
  padding: 0 36px;
  color: #fffdf7;
  background: rgba(16, 23, 25, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.topbar nav {
  display: flex;
  gap: 24px;
  align-items: center;
  color: rgba(255, 253, 247, 0.82);
  font-size: 0.92rem;
  font-weight: 760;
}

.topbar__cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 820;
}

.topbar__cta {
  color: #101719;
  background: #fff4d0;
  border-color: transparent;
}

.button {
  color: #fffdf7;
  background: rgba(255, 255, 255, 0.1);
}

.button--primary {
  color: #101719;
  background: var(--gold);
  border-color: var(--gold);
}

.hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  overflow: hidden;
  padding: 132px 36px 46px;
  color: #fffdf7;
  background: #101719;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  filter: saturate(0.9) contrast(1.04);
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 23, 25, 0.94), rgba(16, 23, 25, 0.72) 48%, rgba(16, 23, 25, 0.2)),
    linear-gradient(180deg, rgba(16, 23, 25, 0.12), rgba(16, 23, 25, 0.24) 58%, rgba(16, 23, 25, 0.88));
}

.hero__content,
.section,
.footer {
  width: min(100% - 72px, 1200px);
  margin-right: auto;
  margin-left: auto;
}

.hero__content {
  align-self: end;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.7rem;
  line-height: 0.96;
}

.hero__lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 253, 247, 0.86);
  font-size: 1.28rem;
  line-height: 1.36;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 920px;
  margin: 44px 0 0;
}

.hero__proof div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(16, 23, 25, 0.58);
}

.hero__proof dt {
  font-weight: 900;
}

.hero__proof dd {
  margin: 5px 0 0;
  color: rgba(255, 253, 247, 0.72);
}

.section {
  scroll-margin-top: 92px;
  padding: 84px 0;
}

.section__copy {
  max-width: 760px;
}

.section h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  line-height: 1;
}

.section__copy p,
.showcase__copy p,
.print-section p,
.blog-preview p {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section--intro,
.feature-band,
.pricing,
.use-cases,
.blog-preview {
  display: grid;
  gap: 34px;
}

.steps,
.feature-grid,
.pricing-grid,
.use-grid,
.blog-grid,
.print-flow {
  display: grid;
  gap: 16px;
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps article,
.feature-grid article,
.price-card,
.use-grid article,
.blog-grid a,
.print-flow article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 18px 45px rgba(23, 32, 34, 0.08);
}

.steps article {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.steps span,
.print-flow span,
.price-card__label,
.blog-grid span {
  color: var(--sea);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.steps h3,
.feature-grid h3,
.price-card h3,
.use-grid h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.16;
}

.steps p,
.feature-grid p,
.price-card p,
.use-grid p,
.print-flow p {
  margin: 0;
  color: var(--muted);
}

.feature-band {
  width: 100%;
  max-width: none;
  padding-right: max(36px, calc((100% - 1200px) / 2));
  padding-left: max(36px, calc((100% - 1200px) / 2));
  color: #fffdf7;
  background:
    linear-gradient(135deg, rgba(49, 92, 134, 0.44), transparent 42%),
    linear-gradient(180deg, #101719, #172022);
}

.feature-band h2 {
  color: #fffdf7;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article {
  background: rgba(255, 253, 247, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  padding: 18px;
}

.feature-grid p {
  color: rgba(255, 253, 247, 0.74);
}

.showcase {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 56px;
  align-items: center;
}

.event-setup-section {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 24px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.event-setup-section .section__copy {
  grid-column: 1 / -1;
}

.event-setup-form,
.event-preview-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 18px 45px rgba(23, 32, 34, 0.08);
}

.event-setup-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
}

.event-setup-form label {
  display: grid;
  gap: 6px;
}

.event-setup-form label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.event-setup-form input,
.event-setup-form select,
.event-setup-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
}

.event-setup-form textarea {
  min-height: 108px;
  padding-top: 10px;
  resize: vertical;
}

.event-setup-form__wide,
.event-setup-form__status {
  grid-column: 1 / -1;
}

.event-setup-form__status {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.event-preview-card {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.event-preview-card[hidden] {
  display: none;
}

.event-preview-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.72rem;
  line-height: 1.05;
}

.event-preview-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.event-preview-card div {
  display: grid;
  gap: 4px;
}

.event-preview-card dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-preview-card dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.event-preview-card a {
  color: var(--blue);
  font-weight: 820;
}

.phone-frame {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 12px solid #101719;
  border-radius: 34px;
  background: #101719;
  box-shadow: 0 28px 70px rgba(16, 23, 25, 0.28);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-frame__bar {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 8px;
}

.phone-frame__bar span,
.phone-frame__bar strong {
  display: grid;
  min-height: 40px;
  place-items: center;
  border-radius: 8px;
  color: #fffdf7;
  background: rgba(16, 23, 25, 0.72);
  font-weight: 850;
}

.phone-frame__bar strong {
  color: #101719;
  background: var(--gold);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
}

.check-list li::before {
  position: absolute;
  top: 0.28em;
  left: 0;
  width: 14px;
  height: 14px;
  content: "";
  border: 2px solid var(--sea);
  border-radius: 999px;
  background: var(--paper-strong);
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 20px;
}

.price-card--featured {
  border-color: rgba(215, 166, 66, 0.72);
  background:
    linear-gradient(180deg, rgba(215, 166, 66, 0.18), rgba(255, 253, 247, 0.94)),
    var(--paper-strong);
}

.price-card strong {
  color: var(--charcoal);
  font-size: 1.8rem;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 6px 0 0;
  list-style: none;
}

.price-card li {
  color: var(--muted);
}

.cost-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(47, 143, 145, 0.32);
  border-radius: 8px;
  background: rgba(47, 143, 145, 0.08);
}

.cost-note span {
  color: var(--muted);
}

.print-section {
  display: grid;
  gap: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.print-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.print-flow article {
  padding: 18px;
}

.use-grid,
.blog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.use-grid article,
.blog-grid a {
  padding: 18px;
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-grid a {
  display: grid;
  gap: 10px;
}

.blog-grid strong {
  font-size: 1.1rem;
  line-height: 1.18;
}

.text-link {
  width: fit-content;
  color: var(--blue);
  font-weight: 860;
}

.footer {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.event-page {
  --event-brand: #101719;
  --event-accent: #d7a642;
  background: var(--paper);
}

.event-topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 36px;
  color: #fffdf7;
  background: color-mix(in srgb, var(--event-brand) 88%, #101719);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.event-topbar span {
  color: rgba(255, 253, 247, 0.76);
  font-weight: 820;
}

.event-hero {
  position: relative;
  display: grid;
  min-height: 78svh;
  overflow: hidden;
  padding: 132px 36px 54px;
  color: #fffdf7;
  background: var(--event-brand);
  isolation: isolate;
}

.event-hero__image,
.event-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.event-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.event-hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--event-brand) 96%, transparent), color-mix(in srgb, var(--event-brand) 70%, transparent) 48%, transparent),
    linear-gradient(180deg, transparent, color-mix(in srgb, var(--event-brand) 86%, transparent));
}

.event-hero__content {
  width: min(100% - 72px, 980px);
  align-self: end;
  margin-right: auto;
  margin-left: auto;
}

.event-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.4rem;
  line-height: 0.96;
}

.event-hero p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 253, 247, 0.84);
  font-size: 1.2rem;
}

.event-page .button--primary {
  background: var(--event-accent);
  border-color: var(--event-accent);
}

.event-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.event-details article,
.event-venue-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 18px 45px rgba(23, 32, 34, 0.08);
}

.event-details article {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.event-details span {
  color: var(--sea);
  font-size: 0.78rem;
  font-weight: 900;
}

.event-details h2,
.event-venue-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.05;
}

.event-details p,
.event-venue-panel p,
.event-venue-panel dd {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.event-venue-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  min-width: 0;
  padding: 22px;
}

.event-venue-panel dl {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
}

.event-venue-panel div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.event-venue-panel dt {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.album-page {
  background: var(--paper);
}

.album-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  align-items: end;
  width: min(100% - 72px, 1200px);
  margin-right: auto;
  margin-left: auto;
  padding: 132px 0 48px;
}

.album-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 0.98;
}

.album-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.16rem;
}

.album-code-form,
.album-empty-state,
.album-photo-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 18px 45px rgba(23, 32, 34, 0.08);
}

.album-code-form {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.album-code-form label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.album-code-form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.album-code-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
}

.album-code-form small {
  color: var(--muted);
}

.album-grid-section {
  padding-top: 36px;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.album-photo-card {
  display: grid;
  gap: 12px;
  overflow: hidden;
}

.album-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #101719;
}

.album-photo-card div {
  display: grid;
  gap: 4px;
  padding: 0 14px;
}

.album-photo-card span,
.album-photo-card small {
  color: var(--muted);
}

.album-photo-card .text-link {
  margin: 0 14px 14px;
}

.album-empty-state {
  display: grid;
  gap: 10px;
  max-width: 720px;
  padding: 22px;
}

.album-empty-state p {
  margin: 0;
  color: var(--muted);
}

.resource-body {
  padding-top: 72px;
}

.resource-hero {
  padding: 78px 0 34px;
  background: #101719;
  color: #fffdf7;
}

.resource-hero__inner,
.resource-list,
.article {
  width: min(100% - 72px, 980px);
  margin-right: auto;
  margin-left: auto;
}

.resource-hero h1,
.article h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.4rem;
  line-height: 1;
}

.resource-hero p,
.article__intro {
  max-width: 720px;
  color: rgba(255, 253, 247, 0.76);
  font-size: 1.16rem;
}

.resource-list {
  display: grid;
  gap: 16px;
  padding: 46px 0 80px;
}

.resource-list a {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.article {
  padding: 58px 0 84px;
}

.article h1 {
  color: var(--ink);
}

.article__intro {
  color: var(--muted);
}

.article h2 {
  margin: 42px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.08;
}

.article p,
.article li {
  color: var(--muted);
  font-size: 1.05rem;
}

.article ul,
.article ol {
  display: grid;
  gap: 9px;
}

.article__back {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue);
  font-weight: 850;
}

@media (max-width: 980px) {
  .topbar {
    position: absolute;
    grid-template-columns: 1fr auto;
  }

  .topbar nav {
    display: none;
  }

  .hero h1 {
    font-size: 3.3rem;
  }

  .hero__proof,
  .steps,
  .feature-grid,
  .pricing-grid,
  .print-flow,
  .use-grid,
  .blog-grid,
  .showcase,
  .event-setup-section,
  .event-details,
  .event-venue-panel {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .topbar,
  .hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero {
    min-height: 86svh;
    padding-top: 112px;
  }

  .hero__content,
  .section,
  .footer,
  .resource-hero__inner,
  .resource-list,
  .article {
    width: min(100% - 40px, 1200px);
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero__lead {
    font-size: 1.08rem;
  }

  .hero__proof,
  .steps,
  .feature-grid,
  .pricing-grid,
  .print-flow,
  .use-grid,
  .blog-grid,
  .showcase,
  .cost-note,
  .event-setup-section,
  .event-setup-form,
  .event-details,
  .event-venue-panel {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .section h2,
  .event-hero h1,
  .resource-hero h1,
  .article h1 {
    font-size: 2.28rem;
  }

  .event-topbar,
  .event-hero,
  .album-hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  .event-hero__content {
    width: min(100% - 40px, 980px);
  }

  .album-hero {
    grid-template-columns: 1fr;
    width: min(100% - 40px, 1200px);
    padding-top: 112px;
  }

  .album-hero h1 {
    font-size: 2.45rem;
  }

  .album-code-form div {
    grid-template-columns: 1fr;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 0;
  }
}
