/* ==========================================================================
   MN Booth — design system
   Light, bright, welcoming. No framework dependencies.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Brand */
  --coral: #ff6b6b;
  --coral-dark: #ec4f52;
  --coral-soft: #ffe9e7;
  --sun: #ffc94a;
  --sun-dark: #f0ad14;
  --sun-soft: #fff3d4;
  --mint: #2fc1a3;
  --mint-dark: #1fa287;
  --mint-soft: #ddf6ef;
  --sky: #5aa9e6;
  --sky-soft: #e2f0fc;
  --plum: #7c6bd6;
  --plum-soft: #ece9fb;

  /* Neutrals */
  --ink: #241f2e;
  --ink-2: #4a4459;
  --muted: #7a7488;
  --line: #eee7e0;
  --cream: #fffaf5;
  --cream-2: #fff4ea;
  --white: #ffffff;

  /* Semantic */
  --bg: var(--cream);
  --surface: var(--white);
  --text: var(--ink);
  --text-soft: var(--muted);
  --brand: var(--coral);
  --brand-ink: var(--coral-dark);

  /* Type */
  --font-head: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Space */
  --gap: 1.5rem;
  --section: clamp(3.5rem, 8vw, 7rem);
  --container: 1180px;
  --container-pad: clamp(1.15rem, 4vw, 2rem);

  /* Shape */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Elevation — warm-tinted so shadows sit in the cream, not on it */
  --sh-sm: 0 2px 8px rgba(80, 55, 40, 0.06);
  --sh: 0 10px 30px rgba(80, 55, 40, 0.08);
  --sh-lg: 0 22px 60px rgba(80, 55, 40, 0.12);
  --sh-brand: 0 12px 28px rgba(255, 107, 107, 0.28);

  --ease: cubic-bezier(0.4, 0.14, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.6em;
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}
h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
}
h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
}
h4 {
  font-size: 1.2rem;
}
h5 {
  font-size: 1.05rem;
}
h6 {
  font-size: 0.95rem;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-2);
}

a {
  color: var(--brand-ink);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--ink);
}

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

ul,
ol {
  padding-left: 1.25rem;
}

strong,
b {
  font-weight: 700;
  color: var(--ink);
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2rem 0;
}

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection {
  background: var(--sun-soft);
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container--wide {
  max-width: 1440px;
}

.container--narrow {
  max-width: 820px;
}

.section {
  padding-block: var(--section);
}

.section--tight {
  padding-block: calc(var(--section) * 0.6);
}

.section--cream {
  background: var(--cream-2);
}

.section--white {
  background: var(--white);
}

.grid {
  display: grid;
  gap: var(--gap);
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.stack > * + * {
  margin-top: 1rem;
}

.text-center {
  text-align: center;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--r-sm) 0;
}

.skip-link:focus {
  left: 0;
  color: var(--white);
}

/* Section heading -------------------------------------------------------- */

.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.3rem 0.9rem;
  border-radius: var(--r-pill);
  background: var(--coral-soft);
  color: var(--coral-dark);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow--mint {
  background: var(--mint-soft);
  color: var(--mint-dark);
}
.eyebrow--sun {
  background: var(--sun-soft);
  color: #a97400;
}
.eyebrow--plum {
  background: var(--plum-soft);
  color: #5a49b8;
}
.eyebrow--sky {
  background: var(--sky-soft);
  color: #2b7cb8;
}

.section-head p {
  font-size: 1.05rem;
  margin-bottom: 0;
}

.section-head__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.section-head__row .section-head {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border: 2px solid transparent;
  border-radius: var(--r-pill);
  background: var(--brand);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background 0.2s var(--ease), color 0.2s var(--ease);
}

.btn:hover {
  background: var(--brand-ink);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--sh-brand);
}

.btn:active {
  transform: translateY(0);
}

/* Inline icons inherit the label's size rather than the SVG default. */
.btn svg,
.link svg {
  width: 1.05em;
  height: 1.05em;
  flex-shrink: 0;
}

.btn--sun {
  background: var(--sun);
  color: var(--ink);
}
.btn--sun:hover {
  background: var(--sun-dark);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(240, 173, 20, 0.32);
}

.btn--mint {
  background: var(--mint);
}
.btn--mint:hover {
  background: var(--mint-dark);
  box-shadow: 0 12px 28px rgba(47, 193, 163, 0.3);
}

.btn--ink {
  background: var(--ink);
}
.btn--ink:hover {
  background: #000;
  box-shadow: 0 12px 28px rgba(36, 31, 46, 0.3);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--white);
  border-color: var(--ink);
  color: var(--ink);
  box-shadow: var(--sh);
}

.btn--sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 1.05rem 2.2rem;
  font-size: 1.05rem;
}

.btn--block {
  width: 100%;
}

/* Inline text link that still reads as a link inside prose */
.link {
  font-weight: 600;
  color: var(--brand-ink);
  border-bottom: 2px solid var(--coral-soft);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.link:hover {
  color: var(--ink);
  border-bottom-color: var(--sun);
}

.link--external::after {
  content: "↗";
  display: inline-block;
  margin-left: 0.2em;
  font-size: 0.85em;
}

/* --------------------------------------------------------------------------
   5. Cards
   -------------------------------------------------------------------------- */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.card--pad {
  padding: 2rem;
}

.card--lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh);
}

/* --------------------------------------------------------------------------
   6. Header / navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 245, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(80, 55, 40, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 76px;
}

.nav__brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav__brand img {
  height: 26px;
  width: auto;
}

.nav__brand img.nav__brand-badge {
  height: 42px;
}

.nav__toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav__toggle-bars {
  display: block;
  position: relative;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  border-radius: 2px;
  background: currentColor;
  transition: background 0.2s var(--ease);
}

.nav__toggle-bars::before,
.nav__toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s var(--ease);
}

.nav__toggle-bars::before {
  top: -6px;
}
.nav__toggle-bars::after {
  top: 6px;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bars {
  background: transparent;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bars::before {
  transform: translateY(6px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bars::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav__collapse {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.9rem;
  border-radius: var(--r-pill);
  color: var(--ink-2);
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
  background: none;
  border: 0;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav__link:hover,
.nav__link.is-active {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--sh-sm);
}

.nav__caret {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.nav__item {
  position: relative;
}

.nav__item.is-open .nav__caret {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  margin: 0;
  padding: 0.5rem;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease),
    visibility 0.2s var(--ease);
}

.nav__item.is-open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.8rem;
  border-radius: var(--r-sm);
  color: var(--ink-2);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav__dropdown a:hover {
  background: var(--cream-2);
  color: var(--ink);
}

.nav__tag {
  padding: 0.1rem 0.45rem;
  border-radius: var(--r-pill);
  background: var(--mint-soft);
  color: var(--mint-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav__cta {
  flex-shrink: 0;
  margin-left: 0.5rem;
}

@media (max-width: 991px) {
  .nav {
    flex-wrap: wrap;
    min-height: 68px;
  }

  .nav__toggle {
    display: block;
  }

  .nav__collapse {
    display: block;
    flex-basis: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
  }

  .nav__collapse.is-open {
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    margin: 0;
    padding: 0.5rem 0 1rem;
  }

  .nav__link {
    justify-content: space-between;
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: var(--r-sm);
    font-size: 1rem;
  }

  .nav__dropdown {
    position: static;
    display: none;
    min-width: 0;
    margin: 0.15rem 0 0.4rem 0.75rem;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
  }

  .nav__item.is-open .nav__dropdown {
    display: block;
  }

  .nav__cta {
    margin: 0 0 1rem;
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.5rem, 8vw, 6rem);
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}

.hero__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.hero__blob--1 {
  top: -120px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: var(--coral-soft);
}

.hero__blob--2 {
  top: 40%;
  right: -120px;
  width: 420px;
  height: 420px;
  background: var(--sun-soft);
}

.hero__blob--3 {
  bottom: -160px;
  left: 30%;
  width: 340px;
  height: 340px;
  background: var(--mint-soft);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__title {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
}

.hero__lead {
  max-width: 30rem;
  margin-bottom: 1.75rem;
  font-size: 1.1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Rotating slide content */
.hero__slides {
  position: relative;
}

.hero__slide {
  display: none;
}

.hero__slide.is-active {
  display: block;
  animation: heroIn 0.6s var(--ease);
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}

.hero__dot {
  width: 28px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--line);
  cursor: pointer;
  transition: background 0.25s var(--ease), width 0.25s var(--ease);
}

.hero__dot.is-active {
  width: 44px;
  background: var(--coral);
}

/* Photo-strip collage */
.hero__media {
  position: relative;
}

.hero__strip {
  position: relative;
  max-width: 420px;
  margin-inline: auto;
  padding: 14px 14px 60px;
  border-radius: var(--r);
  background: var(--white);
  box-shadow: var(--sh-lg);
  transform: rotate(-2.5deg);
}

.hero__strip::after {
  content: "MN Booth";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__frames {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--cream-2);
}

.hero__frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}

.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__frame.is-active {
  opacity: 1;
}

/* Floating stat pills around the strip */
.hero__pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: var(--r-pill);
  background: var(--white);
  box-shadow: var(--sh);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  animation: float 5s ease-in-out infinite;
}

.hero__pill--1 {
  top: 8%;
  left: -4%;
}

.hero__pill--2 {
  bottom: 12%;
  right: -2%;
  animation-delay: -2.5s;
}

.hero__pill span[aria-hidden] {
  font-size: 1.05rem;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@media (max-width: 860px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__actions,
  .hero__dots {
    justify-content: center;
  }

  .hero__media {
    order: -1;
  }

  .hero__strip {
    max-width: 340px;
  }
}

/* --------------------------------------------------------------------------
   8. Page hero (interior pages)
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.5rem, 6vw, 4rem);
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
  text-align: center;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.55;
  pointer-events: none;
}

.page-hero::before {
  top: -90px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: var(--coral-soft);
}

.page-hero::after {
  bottom: -110px;
  right: -50px;
  width: 280px;
  height: 280px;
  background: var(--sun-soft);
}

.page-hero__inner {
  position: relative;
}

.page-hero__title {
  margin-bottom: 0.75rem;
}

.page-hero__lead {
  max-width: 46rem;
  margin: 0 auto;
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  color: var(--muted);
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.4rem;
  color: var(--line);
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--brand-ink);
}

.breadcrumb [aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   9. Feature / service cards
   -------------------------------------------------------------------------- */

.feature {
  padding: 2rem;
  text-align: center;
}

.feature__icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 1.25rem;
  border-radius: 22px;
  background: var(--coral-soft);
}

.feature__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.feature__icon--mint {
  background: var(--mint-soft);
}
.feature__icon--sun {
  background: var(--sun-soft);
}
.feature__icon--sky {
  background: var(--sky-soft);
}
.feature__icon--plum {
  background: var(--plum-soft);
}

.feature h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.feature p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   10. Stats
   -------------------------------------------------------------------------- */

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.stat__num {
  margin-bottom: 0.1rem;
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
  color: var(--coral-dark);
}

.stat__label {
  font-size: 0.85rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   11. Pricing
   -------------------------------------------------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  align-items: start;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh);
}

.plan--featured {
  border-color: var(--sun);
  box-shadow: var(--sh);
}

.plan--featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--sun), var(--coral));
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.plan__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1rem;
  border-radius: var(--r-pill);
  background: var(--sun);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--sh-sm);
}

.plan__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.plan__tier {
  display: inline-block;
  margin-bottom: 0.6rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan__tier--gold {
  background: var(--sun-soft);
  color: #a97400;
}
.plan__tier--platinum {
  background: var(--coral-soft);
  color: var(--coral-dark);
}
.plan__tier--emerald {
  background: var(--mint-soft);
  color: var(--mint-dark);
}
.plan__tier--diamond {
  background: var(--sky-soft);
  color: #2b7cb8;
}

.plan__price {
  display: flex;
  align-items: flex-start;
  gap: 0.15rem;
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}

.plan__currency {
  margin-top: 0.35rem;
  font-size: 1.25rem;
  color: var(--muted);
}

.plan__amount {
  font-size: 3rem;
  letter-spacing: -0.03em;
}

.plan__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 18px;
  background: var(--cream-2);
}

.plan__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.plan__features {
  flex-grow: 1;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.plan__features li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.9rem;
  font-size: 0.92rem;
  color: var(--ink-2);
  border-bottom: 1px dashed var(--line);
}

.plan__features li:last-child {
  border-bottom: 0;
}

.plan__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--mint-soft)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%231fa287' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8.5 6.2 11.6 13 4.8'/%3E%3C/svg%3E")
    center / 12px no-repeat;
}

.plan__features li.is-excluded {
  color: var(--muted);
}

.plan__features li.is-excluded::before {
  background: #f4f1ee
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23b4aca4' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M4.5 4.5l7 7M11.5 4.5l-7 7'/%3E%3C/svg%3E")
    center / 10px no-repeat;
}

.plan__features .info {
  color: inherit;
  border-bottom: 1px dotted var(--muted);
  cursor: zoom-in;
}

.plan__features .info:hover {
  color: var(--brand-ink);
  border-bottom-color: var(--brand-ink);
}

.plan__note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.price-note {
  margin: 2.5rem auto 0;
  max-width: 42rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

/* Add-on / discount tiles */
.tile {
  height: 100%;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh);
}

.tile__media {
  display: block;
  margin: -0.35rem -0.35rem 1.25rem;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--cream-2);
  aspect-ratio: 16 / 10;
}

.tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.tile__media:hover img {
  transform: scale(1.05);
}

.tile h3 {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}

.tile__price {
  display: flex;
  align-items: flex-start;
  gap: 0.1rem;
  margin-bottom: 0.6rem;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--coral-dark);
}

.tile__price span {
  margin-top: 0.2rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.tile__price--save {
  color: var(--mint-dark);
}

.tile p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

/* --------------------------------------------------------------------------
   12. Product detail (booth pages)
   -------------------------------------------------------------------------- */

.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.product__copy h2 {
  margin-bottom: 1rem;
}

.product__copy h3 {
  margin-top: 2rem;
  font-size: 1.15rem;
}

.product__list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.product__list li {
  position: relative;
  margin-bottom: 0.85rem;
  padding-left: 1.75rem;
  font-size: 0.95rem;
  color: var(--ink-2);
}

.product__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sun);
}

@media (max-width: 860px) {
  .product {
    grid-template-columns: 1fr;
  }
}

/* Carousel (scroll-snap based) */
.carousel {
  position: relative;
}

.carousel__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--sh-sm);
}

.carousel__slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.carousel__slide:hover img {
  transform: scale(1.04);
}

.carousel--peek .carousel__slide {
  flex-basis: clamp(240px, 30vw, 340px);
}

.carousel__nav {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.carousel__btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--sh-sm);
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.carousel__btn:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.carousel__btn svg {
  width: 18px;
  height: 18px;
}

/* --------------------------------------------------------------------------
   13. Media grid / lightbox tiles
   -------------------------------------------------------------------------- */

.media-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.media-grid--sm {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}

.media-card {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.media-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh);
}

.media-card__img {
  overflow: hidden;
  background: var(--cream-2);
  aspect-ratio: 1 / 1;
}

.media-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.media-card:hover .media-card__img img {
  transform: scale(1.06);
}

.media-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
}

.media-card__body h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.media-card__zoom {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--muted);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.media-card:hover .media-card__zoom {
  background: var(--coral);
  color: var(--white);
}

.media-card__zoom svg {
  width: 15px;
  height: 15px;
}

/* Masonry — for grids of mixed-aspect photos (event shots next to 2x6 strips).
   A uniform grid would either crop the tall strips or leave ragged gaps, so
   columns let every photo keep its natural shape and pack tight. */
.masonry {
  column-count: 4;
  column-gap: 1.25rem;
}

.masonry > * {
  /* inline-block + width:100% stops Chrome/Safari splitting an item across columns */
  display: inline-block;
  width: 100%;
  margin-bottom: 1.25rem;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

@media (max-width: 1100px) {
  .masonry {
    column-count: 3;
  }
}

@media (max-width: 780px) {
  .masonry {
    column-count: 2;
  }
}

@media (max-width: 460px) {
  .masonry {
    column-count: 1;
  }
}

/* Template / gallery tile with hover overlay */
.tile-img {
  position: relative;
  display: block;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--sh-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.tile-img:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh);
}

.tile-img img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease);
}

.tile-img:hover img {
  transform: scale(1.05);
}

.tile-img__overlay {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(36, 31, 46, 0.78));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.tile-img:hover .tile-img__overlay,
.tile-img:focus-within .tile-img__overlay {
  opacity: 1;
  transform: none;
}

.tile-img__overlay span,
.tile-img__overlay a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
}

.tile-img__overlay svg {
  width: 15px;
  height: 15px;
}

/* Filter buttons */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--white);
  color: var(--ink-2);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.filter-btn:hover {
  border-color: var(--coral);
  color: var(--coral-dark);
  transform: translateY(-2px);
}

.filter-btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.filter-item.is-hidden {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(28, 22, 18, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox.is-open {
  display: grid;
  animation: fadeIn 0.2s var(--ease);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox__img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: var(--r);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.25s var(--ease);
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.lightbox__caption {
  margin-top: 1rem;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
}

.lightbox__btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.lightbox__btn:hover {
  background: var(--coral);
  transform: scale(1.06);
}

.lightbox__btn svg {
  width: 22px;
  height: 22px;
}

.lightbox__close {
  top: 1.25rem;
  right: 1.25rem;
}

.lightbox__prev {
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__prev:hover,
.lightbox__next:hover {
  transform: translateY(-50%) scale(1.06);
}

@media (max-width: 600px) {
  .lightbox__prev {
    left: 0.5rem;
  }
  .lightbox__next {
    right: 0.5rem;
  }
}

/* --------------------------------------------------------------------------
   14. Testimonials & reviews
   -------------------------------------------------------------------------- */

.review {
  height: 100%;
  padding: 1.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.review:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh);
}

.review__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.review__avatar {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.review__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream-2);
}

.review__check {
  position: absolute;
  right: -2px;
  bottom: -2px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mint);
  border: 2px solid var(--white);
  color: var(--white);
}

.review__check svg {
  width: 9px;
  height: 9px;
}

.review__name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.review__event {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.review__stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
  color: var(--sun-dark);
}

.review__stars svg {
  width: 15px;
  height: 15px;
}

.review__text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-2);
}

/* --------------------------------------------------------------------------
   15. Logo marquee
   -------------------------------------------------------------------------- */

.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 42s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__item img {
  height: 46px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.25s var(--ease), filter 0.25s var(--ease);
}

.marquee__item:hover img {
  opacity: 1;
  filter: none;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------------------------------
   16. Blog
   -------------------------------------------------------------------------- */

.post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh);
}

.post-card__img {
  display: block;
  overflow: hidden;
  background: var(--cream-2);
  aspect-ratio: 16 / 10;
}

.post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.post-card:hover .post-card__img img {
  transform: scale(1.05);
}

.post-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.5rem;
}

.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.post-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.post-card__meta svg {
  width: 13px;
  height: 13px;
}

.post-card__title {
  display: block;
  margin-bottom: 0.6rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.post-card:hover .post-card__title {
  color: var(--coral-dark);
}

.post-card__body p {
  flex-grow: 1;
  font-size: 0.9rem;
}

.post-card__more {
  align-self: flex-start;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
}

.post-card__more::after {
  content: "→";
  display: inline-block;
  margin-left: 0.3rem;
  transition: transform 0.2s var(--ease);
}

.post-card__more:hover::after {
  transform: translateX(3px);
}

/* Article body */
.article__hero {
  border-radius: var(--r-lg);
  margin-bottom: 2rem;
  box-shadow: var(--sh);
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.article__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.article__meta svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.prose {
  font-size: 1.03rem;
}

.prose h2 {
  margin-top: 2.5rem;
  font-size: 1.6rem;
}

.prose h3 {
  margin-top: 2rem;
  font-size: 1.25rem;
}

.prose ul,
.prose ol {
  margin-bottom: 1.25rem;
  padding-left: 1.35rem;
}

.prose li {
  margin-bottom: 0.5rem;
  color: var(--ink-2);
}

.prose img {
  border-radius: var(--r);
  margin: 1.5rem 0;
}

.prose blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--sun);
  background: var(--cream-2);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.prose blockquote p:last-child {
  margin-bottom: 0;
}

.article__sign {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--muted);
}

.article__sign svg {
  width: 16px;
  height: 16px;
  color: var(--coral);
}

/* --------------------------------------------------------------------------
   17. FAQ
   -------------------------------------------------------------------------- */

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.faq-item[open] {
  border-color: var(--coral-soft);
  box-shadow: var(--sh-sm);
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s var(--ease);
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__q:hover {
  color: var(--coral-dark);
}

.faq-item__q::after {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%237a7488' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M8 3v10M3 8h10'/%3E%3C/svg%3E")
    center / contain no-repeat;
  transition: transform 0.25s var(--ease);
}

.faq-item[open] .faq-item__q::after {
  transform: rotate(135deg);
}

.faq-item__a {
  padding: 0 1.35rem 1.35rem;
  animation: faqIn 0.3s var(--ease);
}

@keyframes faqIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.faq-item__a > *:last-child {
  margin-bottom: 0;
}

.faq-item__a p,
.faq-item__a li {
  font-size: 0.94rem;
}

.faq-item__a ol,
.faq-item__a ul {
  padding-left: 1.25rem;
}

.faq-item__a li {
  margin-bottom: 0.5rem;
}

.faq-group__title {
  margin: 2.5rem 0 1rem;
  font-size: 1.15rem;
}

.faq-group:first-child .faq-group__title {
  margin-top: 0;
}

/* --------------------------------------------------------------------------
   18. Contact
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.contact-card:hover {
  transform: translateX(4px);
  box-shadow: var(--sh);
}

.contact-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--coral-soft);
  color: var(--coral-dark);
}

.contact-card__icon svg {
  width: 21px;
  height: 21px;
}

.contact-card__icon--sky {
  background: var(--sky-soft);
  color: #2b7cb8;
}
.contact-card__icon--mint {
  background: var(--mint-soft);
  color: var(--mint-dark);
}

.contact-card p {
  margin: 0;
  font-size: 0.92rem;
}

.contact-card__label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Form */
.form-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.form-label .req {
  color: var(--coral);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.form-control:focus {
  outline: none;
  background: var(--white);
  border-color: var(--coral);
  box-shadow: 0 0 0 4px var(--coral-soft);
}

.form-control::placeholder {
  color: #b3aebb;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.radio-group {
  display: grid;
  gap: 0.5rem;
}

.radio {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--cream);
  font-size: 0.92rem;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.radio:hover {
  border-color: var(--coral);
}

.radio input {
  width: 18px;
  height: 18px;
  accent-color: var(--coral);
  cursor: pointer;
}

.radio:has(input:checked) {
  background: var(--coral-soft);
  border-color: var(--coral);
  font-weight: 600;
}

.form-hp {
  position: absolute;
  left: -5000px;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
}

/* --------------------------------------------------------------------------
   19. CTA band
   -------------------------------------------------------------------------- */

.cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, var(--sun-soft), var(--coral-soft));
}

.cta--mint {
  background: linear-gradient(135deg, var(--mint-soft), var(--sky-soft));
}

.cta--plum {
  background: linear-gradient(135deg, var(--plum-soft), var(--coral-soft));
}

.cta__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.cta__text {
  max-width: 44rem;
}

.cta__text h2 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
}

.cta__text p {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .cta__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Quote band */
.quote-band {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.quote-card {
  position: relative;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, #fff6ec, #ffeef0 55%, #eef8f5);
  border: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
}

.quote-card::before {
  content: "“";
  position: absolute;
  top: -2.5rem;
  left: 1.5rem;
  font-family: var(--font-head);
  font-size: 9rem;
  color: rgba(255, 107, 107, 0.16);
  line-height: 1;
}

.quote-card blockquote {
  position: relative;
  max-width: 46rem;
  margin: 0 auto;
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer__logo {
  height: 30px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer__contact {
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
}

.footer__contact a {
  color: var(--ink-2);
}

.footer__contact a:hover {
  color: var(--coral-dark);
}

.footer h2 {
  margin-bottom: 1.15rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__list li {
  margin-bottom: 0.6rem;
}

.footer__list a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  color: var(--ink-2);
}

.footer__list a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--line);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.footer__list a:hover {
  color: var(--coral-dark);
}

.footer__list a:hover::before {
  background: var(--coral);
  transform: scale(1.6);
}

.social {
  display: flex;
  gap: 0.5rem;
}

.social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--ink-2);
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.social a:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-3px);
}

.social svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.footer__made {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer__made svg {
  width: 14px;
  height: 14px;
  color: var(--coral);
}

/* --------------------------------------------------------------------------
   21. Utilities & widgets
   -------------------------------------------------------------------------- */

.scroll-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  box-shadow: var(--sh);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease),
    visibility 0.25s var(--ease), background 0.2s var(--ease);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.scroll-top:hover {
  background: var(--coral);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  color: var(--coral);
  box-shadow: var(--sh-lg);
  transition: transform 0.25s var(--ease), background 0.2s var(--ease),
    color 0.2s var(--ease);
}

.play-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--white);
  animation: sonar 2.4s ease-out infinite;
}

.play-btn:hover {
  background: var(--coral);
  color: var(--white);
  transform: translate(-50%, -50%) scale(1.08);
}

.play-btn svg {
  width: 26px;
  height: 26px;
  margin-left: 4px;
}

@keyframes sonar {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--cream-2);
}

.frame img {
  width: 100%;
}

.frame--tilt {
  transform: rotate(-1.5deg);
}

.empty-state {
  padding: clamp(3rem, 8vw, 6rem) 1rem;
  text-align: center;
}

.empty-state img {
  max-width: min(380px, 100%);
  margin: 0 auto 2rem;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] {
  transition-delay: 0.1s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.2s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.3s;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   22. Letter (thank-you collection)
   -------------------------------------------------------------------------- */

.letter {
  max-width: 780px;
  margin-inline: auto;
  padding: clamp(1.75rem, 5vw, 3.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh);
}

.letter__logo {
  height: 34px;
  width: auto;
  margin-bottom: 1.5rem;
}

.letter__rule {
  height: 4px;
  margin-bottom: 2rem;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--coral), var(--sun), var(--mint));
}

.letter__date {
  text-align: right;
  font-size: 0.9rem;
  color: var(--muted);
}

.letter video {
  width: 100%;
  border-radius: var(--r);
  margin: 1.5rem 0;
  box-shadow: var(--sh-sm);
}

.letter__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.letter__sign {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-head);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   23. Reduced motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   24. Print
   -------------------------------------------------------------------------- */

@media print {
  .site-header,
  .site-footer,
  .scroll-top,
  .cta {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .letter {
    border: 0;
    box-shadow: none;
  }
}
