/* ============================================================
   POCKETJOY KEEPSAKES — DESIGN SYSTEM
   ============================================================ */

/* ── 1. TOKENS ─────────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --navy:       #131B2E;
  --navy-deep:  #0D1320;
  --navy-mid:   #1C2740;
  --navy-light: #263352;
  --pink:       #FF4070;
  --pink-dark:  #D9304F;
  --teal:       #1EC8D0;
  --teal-dark:  #16A8AF;
  --cream:      #FFF5F0;
  --cream-mid:  #F0E4DD;
  --gold:       #D4AF55;
  --gold-light: #E8CB76;
  --white:      #FFFFFF;
  --slate:      #4A4A6A;

  /* Text */
  --text-on-dark:  rgba(255, 255, 255, 0.85);
  --text-muted:    rgba(255, 255, 255, 0.50);
  --text-on-light: rgba(19,  27,  46,  0.85);
  --text-light-muted: rgba(19, 27, 46, 0.55);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Type scale — fluid */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  clamp(1.375rem, 2.5vw, 1.875rem);
  --text-3xl:  clamp(1.75rem,  3.5vw, 2.5rem);
  --text-4xl:  clamp(2.25rem,  5vw,   3.5rem);
  --text-hero: clamp(2.75rem,  7.5vw, 5.5rem);

  /* Spacing */
  --space-2xs: 0.375rem;
  --space-xs:  0.5rem;
  --space-sm:  0.875rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  /* Easing */
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* Transitions */
  --transition-fast: 200ms var(--ease-expo);
  --transition-base: 350ms var(--ease-expo);
  --transition-slow: 600ms var(--ease-expo);

  /* Z-index layers */
  --z-base:   0;
  --z-raised: 10;
  --z-sticky: 100;
  --z-overlay: 200;
  --z-modal:  1000;
}

/* ── 2. RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--navy);
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }

/* ── 3. TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }

p { max-width: 65ch; line-height: 1.7; color: var(--slate); }

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  clip-path: inset(0 100% 0 0);
}

.label.label--revealed {
  animation: labelReveal 0.5s ease-out both;
}

.label::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--teal);
  flex-shrink: 0;
}

/* ── 4. LAYOUT UTILITIES ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

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

@media (min-width: 768px) {
  .container { padding-inline: 2rem; }
  .section   { padding-block: var(--space-2xl); }
}

@media (min-width: 1024px) {
  .container { padding-inline: 3rem; }
  .section   { padding-block: var(--space-3xl); }
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: var(--space-lg);
}

.section-header--center {
  align-items: center;
  text-align: center;
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--slate);
}

.section--cream .section-header p,
.section--cream h2,
.section--cream h3 {
  color: var(--text-on-light);
}

.section--cream .section-header p {
  color: var(--text-light-muted);
}

.section--cream .label {
  color: rgba(19, 27, 46, 0.4);
}
.section--cream .label::before {
  background: rgba(19, 27, 46, 0.4);
}

@media (min-width: 768px) {
  .section-header { margin-bottom: var(--space-xl); }
}

/* ── 5. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-base);
  line-height: 1;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-height: 48px;
  min-width: 44px;
  transition: color var(--transition-base), box-shadow var(--transition-base),
              transform var(--transition-fast);
  z-index: 0;
}

/* Directional fill — enters from bottom */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateY(100%);
  transition: transform var(--transition-base);
  z-index: -1;
  border-radius: inherit;
}

.btn:hover::after { transform: translateY(0); }
.btn--primary:hover { box-shadow: 0 4px 20px rgba(255, 64, 112, 0.35); transform: scale(1.02); }
.btn:active { transform: scale(0.975) !important; box-shadow: none !important; }

.btn--primary {
  background: var(--pink);
  color: var(--white);
}
.btn--primary::after { background: var(--pink-dark); }

.btn--outline {
  border: 1.5px solid rgba(19, 27, 46, 0.25);
  color: var(--navy);
  background: transparent;
}
.btn--outline::after { background: rgba(19, 27, 46, 0.05); }

.btn--teal {
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
}
.btn--teal::after { background: var(--teal-dark); }

.btn--ghost-dark {
  border: 1.5px solid rgba(19, 27, 46, 0.2);
  color: var(--navy);
  background: transparent;
}
.btn--ghost-dark::after { background: rgba(19, 27, 46, 0.06); }

.btn--sm {
  padding: 0.625rem 1.5rem;
  font-size: var(--text-sm);
  min-height: 40px;
}

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

/* ── 6. NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  height: 72px;
  padding-block: 1rem;
  background: var(--cream);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 450ms var(--ease-smooth);
}

.nav--scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  text-decoration: none;
}

.nav__logo img {
  height: 34px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.nav__logo-text em {
  font-style: italic;
  color: var(--pink);
}

.nav__links {
  display: none;
  align-items: center;
  gap: 2.25rem;
}

@media (min-width: 900px) { .nav__links { display: flex; } }

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(19, 27, 46, 0.60);
  position: relative;
  padding-block: 0.25rem;
  transition: color var(--transition-base);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  right: 50%;
  height: 1.5px;
  background: var(--teal);
  border-radius: 2px;
  transition: left var(--transition-base), right var(--transition-base);
}

.nav__link:hover,
.nav__link.active { color: var(--navy); }

.nav__link:hover::after,
.nav__link.active::after { left: 0; right: 0; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__cta {
  display: none;
  padding: 0.625rem 1.375rem;
  font-size: var(--text-sm);
}

@media (min-width: 768px) { .nav__cta { display: inline-flex; } }

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  min-width: 44px;
  min-height: 44px;
}

@media (min-width: 900px) { .nav__hamburger { display: none; } }

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-sticky) - 1);
  background: rgba(10, 15, 26, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
  padding: 6rem 2rem 3rem;
}

.nav__drawer.open {
  opacity: 1;
  pointer-events: all;
}

.nav__drawer-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.75rem);
  font-weight: 700;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-base);
  letter-spacing: -0.025em;
}

.nav__drawer-link:hover,
.nav__drawer-link.active { color: var(--white); }

.nav__drawer-cta {
  margin-top: 1rem;
}

/* ── 7. HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 90px;
  padding-bottom: var(--space-xl);
  overflow: clip;
}

/* Ambient blobs — GPU animated, pointer-events off */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.hero__blob--teal {
  width: min(700px, 80vw);
  height: min(700px, 80vw);
  background: radial-gradient(circle at center, rgba(30, 200, 208, 0.10) 0%, transparent 68%);
  top: -15%;
  right: -10%;
  animation: blob-drift 12s ease-in-out infinite;
}

.hero__blob--pink {
  width: min(500px, 60vw);
  height: min(500px, 60vw);
  background: radial-gradient(circle at center, rgba(255, 64, 112, 0.07) 0%, transparent 68%);
  bottom: -5%;
  left: -5%;
  animation: blob-drift 16s ease-in-out infinite reverse;
}

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(24px, -18px) scale(1.04); }
  66%       { transform: translate(-16px, 22px) scale(0.97); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 55fr 45fr;
    gap: 2rem;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.625rem;
}


.hero__headline {
  font-size: var(--text-hero);
  color: var(--white);
  max-width: 12ch;
}

.hero__headline em {
  font-style: italic;
  color: var(--teal);
  display: block;
}

.hero__sub {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.58);
  max-width: 40ch;
  font-weight: 400;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Hero visual — polaroid collage */
.hero__visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) { .hero__visual { height: 480px; } }
@media (min-width: 1024px) { .hero__visual { height: 560px; } }

.polaroid {
  position: absolute;
  background: var(--white);
  padding: 10px 10px 38px;
  width: 150px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  transition: transform var(--transition-slow), z-index 0ms, box-shadow var(--transition-slow);
}

@media (min-width: 640px) { .polaroid { width: 190px; } }
@media (min-width: 1024px) { .polaroid { width: 210px; } }

.polaroid:hover {
  z-index: var(--z-raised);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  animation-play-state: paused;
}

.polaroid__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.polaroid__caption {
  display: block;
  text-align: center;
  font-size: 0.625rem;
  letter-spacing: 0.03em;
  color: var(--slate);
  padding-top: 9px;
  font-family: var(--font-body);
  font-style: normal;
}

.polaroid--1 {
  left: 4%;
  top: 8%;
  z-index: 3;
  animation: float1 3s ease-in-out infinite;
}
.polaroid--1 .polaroid__img {
  background: linear-gradient(135deg, #FF4070 0%, #9430D8 100%);
}

.polaroid--2 {
  right: 4%;
  top: 4%;
  z-index: 2;
  animation: float2 4s ease-in-out infinite 1s;
}
.polaroid--2 .polaroid__img {
  background: linear-gradient(135deg, #1EC8D0 0%, #131B2E 100%);
}

.polaroid--3 {
  left: 22%;
  bottom: 4%;
  z-index: 4;
  animation: float3 3.5s ease-in-out infinite 0.5s;
}
.polaroid--3 .polaroid__img {
  background: linear-gradient(135deg, #D4AF55 0%, #FF4070 100%);
}

.polaroid--4 {
  transform: rotate(8deg);
  right: 12%;
  bottom: 8%;
  z-index: 1;
}
.polaroid--4 .polaroid__img {
  background: linear-gradient(135deg, #FF4070 0%, #9430D8 100%);
}
.polaroid--4:hover { animation-play-state: paused; }

/* ── 8. MARQUEE ─────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(19, 27, 46, 0.08);
  padding-block: 1.125rem;
  background: var(--cream);
}

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

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

.marquee__item {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(19, 27, 46, 0.38);
  white-space: nowrap;
}

.marquee__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  opacity: 0.6;
}

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

/* ── 9. SERVICES SECTION ────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }
  .service-card--featured { grid-row: span 2; }
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition-base), transform var(--transition-base),
              box-shadow var(--transition-base);
}

.service-card:hover {
  border-color: rgba(30, 200, 208, 0.28);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(30, 200, 208, 0.05) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.service-card:hover::before { opacity: 1; }

.service-card__img {
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card--featured .service-card__img { aspect-ratio: 4 / 3; }
.service-card:not(.service-card--featured) .service-card__img { aspect-ratio: 16 / 9; }

.service-card__img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.12);
  transition: transform 500ms var(--ease-expo);
}

.service-card:hover .service-card__img-inner { transform: scale(1.04); }

.img-markets  { background: linear-gradient(145deg, #1C2740, #0D3B38); }
.img-weddings { background: linear-gradient(145deg, #2D1F3D, #1C2740); }
.img-nfc      { background: linear-gradient(145deg, #0D2033, #133B3D); }

.service-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex: 1;
}

.service-card--featured .service-card__body { padding: 2rem; }

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(30, 200, 208, 0.08);
  border: 1px solid rgba(30, 200, 208, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 { font-size: var(--text-2xl); color: var(--white); }

.service-card p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--teal);
  margin-top: auto;
  transition: gap var(--transition-base), color var(--transition-base);
  padding-top: 0.5rem;
}

.service-card__link svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.service-card__link:hover { gap: 0.8rem; }
.service-card__link:hover svg { transform: translateX(4px); }

/* ── 10. HOW IT WORKS ───────────────────────────────────────── */
.section--cream {
  background: var(--cream);
  color: var(--navy);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

/* ── PRICING TEASER ─────────────────────────────────────── */
.pricing-teaser__from {
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.pricing-teaser__price {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-style: italic;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin: 0.25rem 0 0;
  letter-spacing: -0.02em;
}

/* ── PERFECT FOR LIST ───────────────────────────────────── */
.perfect-for-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.perfect-for-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--cream-mid);
}

.perfect-for-item:first-child {
  border-top: 1px solid var(--cream-mid);
}

.perfect-for-item__title {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-on-light);
}

.perfect-for-item__desc {
  font-size: var(--text-base);
  color: var(--text-light-muted);
}

@media (min-width: 768px) {
  .perfect-for-item {
    flex-direction: row;
    align-items: baseline;
    gap: 2rem;
  }

  .perfect-for-item__title {
    flex: 0 0 260px;
  }
}

/* ── ADD-ONS TABLE ──────────────────────────────────────── */
.addons-block {
  max-width: 860px;
  margin: 2.5rem auto 0;
}

.addons-block__title {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin: 0 0 1rem;
}

.addons-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-base);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.addons-table thead th {
  padding: 0.75rem 1.25rem;
  text-align: left;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.addons-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.addons-table tbody tr:last-child {
  border-bottom: none;
}

.addons-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}

.addons-table tbody td {
  padding: 0.875rem 1.25rem;
  vertical-align: middle;
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
}

.addons-table tbody td:nth-child(2) {
  font-weight: 600;
  color: var(--teal);
  white-space: nowrap;
}


/* ── COMPARISON TABLE ───────────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-base);
}

.compare-table thead th {
  padding: 0.875rem 1.25rem;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.compare-table thead th:first-child {
  color: rgba(255,255,255,0.5);
}

.compare-table thead th:last-child {
  color: var(--teal);
}

.compare-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 200ms ease;
}

.compare-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}

.compare-table tbody td {
  padding: 1rem 1.25rem;
  vertical-align: middle;
  line-height: 1.5;
}

.compare-table tbody td:first-child {
  color: rgba(255,255,255,0.9);
}

.compare-table tbody td:last-child {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  padding: 2rem;
  border-left: 1px solid rgba(19, 27, 46, 0.08);
  background: var(--navy);
  border-radius: var(--radius-md);
  border-top: 2px solid var(--teal);
}

.step:first-child { border-left: none; }

@media (max-width: 767px) {
  .step {
    border-left: none;
    padding: 1.75rem;
  }
}

.step__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 1.375rem;
  flex-shrink: 0;
}

.step h3 {
  font-size: var(--text-2xl);
  color: var(--white);
}

.step p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ── 11. EMAIL CAPTURE ──────────────────────────────────────── */
.section--capture {
  background: var(--navy-mid);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.capture-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .capture-inner { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.capture-text h2 { font-size: var(--text-3xl); margin-top: 0.75rem; }
.capture-text p  { color: rgba(255, 255, 255, 0.55); margin-top: 0.75rem; }

.capture-form { display: flex; flex-direction: column; gap: 1rem; }

/* ── 12. FORM INPUTS ────────────────────────────────────────── */
.input {
  display: block;
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1.5px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: var(--text-base);
  font-family: var(--font-body);
  transition: border-color var(--transition-base), background var(--transition-base);
  min-height: 48px;
  outline: none;
}

.input::placeholder { color: rgba(255, 255, 255, 0.28); }

.input:focus {
  border-color: var(--teal);
  background: rgba(30, 200, 208, 0.06);
  box-shadow: 0 0 0 3px rgba(30, 200, 208, 0.12);
}

.input--error { border-color: var(--pink) !important; }

textarea.input { resize: vertical; min-height: 128px; }

select.input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.38)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}

select.input option {
  background: var(--navy);
  color: var(--white);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 480px) { .form-row { flex-direction: row; } }

.form-message {
  font-size: var(--text-xs);
  color: var(--pink);
  margin-top: 0.375rem;
  display: none;
}

.has-error .form-message { display: block; }
.has-error .input { border-color: var(--pink); box-shadow: none; }

/* Full booking form */
.booking-form {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
}

@media (min-width: 768px) { .booking-form { padding: 2.75rem; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.form-label .req { color: var(--pink); margin-left: 0.2rem; }

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }

.form-note {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
  max-width: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}

.form-success.visible { display: block; }

.form-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(30, 200, 208, 0.12);
  border: 1px solid rgba(30, 200, 208, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.form-success__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success h3 { font-size: var(--text-2xl); color: var(--teal); margin-bottom: 0.75rem; }
.form-success p  { color: rgba(255, 255, 255, 0.55); max-width: none; }

/* ── 13. FOOTER ─────────────────────────────────────────────── */
.footer {
  background: #161a24 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: 3.5rem 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
}

.footer__brand-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer__brand-name em { color: var(--pink); font-style: italic; }

.footer__brand p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 28ch;
}

.footer__col-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.125rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-base);
}

.footer__link:hover { color: var(--teal); }

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer__social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  transition: border-color var(--transition-base), color var(--transition-base),
              background var(--transition-base);
}

.footer__social-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(30, 200, 208, 0.07);
}

.footer__social-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer__bottom p,
.footer__bottom a {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.28);
  max-width: none;
}

.footer__bottom a:hover { color: var(--teal); }

/* ── 14. INNER PAGE HERO ────────────────────────────────────── */
.page-hero {
  position: relative;
  padding-top: calc(90px + var(--space-xl));
  padding-bottom: var(--space-xl);
  overflow: clip;
}

.page-hero__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  width: min(500px, 70vw);
  height: min(500px, 70vw);
  background: radial-gradient(circle, rgba(30, 200, 208, 0.09) 0%, transparent 65%);
  top: -10%;
  right: -8%;
  animation: blob-drift 12s ease-in-out infinite;
}

.page-hero .label { margin-bottom: 0.5rem; }
.page-hero h1     { margin-top: 0.625rem; max-width: 16ch; }
.page-hero p      { font-size: var(--text-lg); color: rgba(255,255,255,0.55); margin-top: 1.25rem; max-width: 55ch; }

/* ── 15. SERVICES DETAIL PAGE ───────────────────────────────── */
.services-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.service-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .service-feature {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  .service-feature--reverse .service-feature__visual { order: 1; }
  .service-feature--reverse .service-feature__content { order: 0; }
}

.service-feature__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.service-feature__visual-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.1);
}

.service-feature__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-feature__content h2 {
  font-size: var(--text-3xl);
}

.service-feature__content p {
  font-size: var(--text-base);
  color: var(--slate);
  line-height: 1.75;
}

.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 0.25rem;
}

.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--text-sm);
  color: var(--slate);
  line-height: 1.6;
}

.feature-bullets li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 0.45em;
}

/* ── 16. PRICING PAGE ───────────────────────────────────────── */

.package-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-mid);
  max-width: 860px;
  margin-inline: auto;
}

.package-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2.5rem;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.package-card__name {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin: 0 0 0.5rem;
}

.package-card__price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-style: italic;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.02em;
}

.package-card__body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.package-group__title {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin: 0 0 1rem;
}

.package-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.package-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: var(--text-base);
  line-height: 1.5;
}

.package-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231EC8D0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.pricing-tier {
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: transform var(--transition-base), border-color var(--transition-base),
              box-shadow var(--transition-base);
}

.pricing-tier:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-tier--featured {
  background: linear-gradient(155deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  border-color: rgba(30, 200, 208, 0.30);
  padding-top: 2.75rem;
}

.pricing-tier__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  white-space: nowrap;
}

.pricing-tier__name {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.pricing-tier__price {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.pricing-tier__amount {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: var(--white);
}

.pricing-tier__unit {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.38);
  font-weight: 400;
}

.pricing-tier__desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.65;
  max-width: none;
  margin-top: 0.25rem;
}

.pricing-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin-block: 0.25rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.pricing-feature svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 0.15em;
}

.pricing-tier .btn { margin-top: auto; }

/* Price breakdown sub-table */
.price-breakdown {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-top: 0.25rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: var(--text-sm);
}

.price-row + .price-row {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.price-row__name  { color: rgba(255, 255, 255, 0.55); }
.price-row__value { font-weight: 700; color: var(--white); }

/* Pricing FAQ strip */
.pricing-note {
  margin-top: var(--space-lg);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 85, 0.18);
  background: rgba(212, 175, 85, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .pricing-note { flex-direction: row; align-items: center; justify-content: space-between; gap: 2rem; }
}

.pricing-note p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  max-width: none;
}

.pricing-note strong { color: var(--gold); }

/* ── 17. CONTACT PAGE ───────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-layout { grid-template-columns: 5fr 7fr; gap: 5rem; }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}

.contact-info h2 { font-size: var(--text-3xl); margin-top: 0.5rem; color: var(--white); }
.contact-info > p { color: rgba(255, 255, 255, 0.62); line-height: 1.75; }
.contact-info .label { color: var(--gold); }
.contact-info .label::before { background: var(--gold); }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(30, 200, 208, 0.09);
  border: 1px solid rgba(30, 200, 208, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail__label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.25rem;
}

.contact-detail__value {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.90);
  font-weight: 500;
}

/* ── WHY POCKETJOY SECTION ──────────────────────────────────── */
.why-pocketjoy {
  border-bottom: 1px solid rgba(19, 27, 46, 0.08);
}

.why-inner { max-width: 840px; }

.why-inner h2 {
  margin-top: 0.875rem;
  max-width: 26ch;
}

.why-body {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
  margin-top: 1.75rem;
}

.why-body p {
  font-size: var(--text-lg);
  color: var(--slate);
  max-width: 68ch;
}

.why-accent {
  font-size: var(--text-lg) !important;
  color: var(--navy) !important;
  font-style: italic;
}

.why-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
}

/* ── 18. SCROLL REVEAL ANIMATIONS ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease-out,
              transform 600ms ease-out;
}

.reveal.from-left  { transform: translateX(-20px); }
.reveal.from-right { transform: translateX(20px); }

.reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 175ms; }
.reveal.delay-3 { transition-delay: 270ms; }
.reveal.delay-4 { transition-delay: 365ms; }
.reveal.delay-5 { transition-delay: 460ms; }

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.stagger.active > *:nth-child(1) { transition-delay: 0ms; }
.stagger.active > *:nth-child(2) { transition-delay: 120ms; }
.stagger.active > *:nth-child(3) { transition-delay: 240ms; }
.stagger.active > *:nth-child(4) { transition-delay: 360ms; }

.stagger.active > * { opacity: 1; transform: translateY(0); }

/* ── 19. HERO PARALLAX ──────────────────────────────────────── */
/* Individual translate composes with the blob-drift animation transform */
.hero__blob {
  translate: 0 var(--parallax-y, 0px);
}

/* ── 20. PRICING PAGE TAGLINE ───────────────────────────────── */
.pricing-tagline {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  text-align: center;
  max-width: none;
  margin-bottom: var(--space-lg);
}

/* ── 21. MOBILE CTA — THUMB-FRIENDLY ────────────────────────── */
@media (max-width: 768px) {
  /* Force column stacking on named button groups */
  .hero__cta-group,
  .why-cta {
    flex-direction: column;
    align-items: stretch;
  }

  /* All non-nav, non-small buttons in main content: full-width, 56px min */
  main .btn:not(.btn--sm) {
    min-height: 56px;
    width: 100%;
  }

  /* Inline-styled button rows in service + CTA sections */
  .service-feature__content > div,
  .pricing-tier > a {
    display: block;
  }

  /* Ensure 16px gap when buttons stack in flex-wrap groups */
  .service-feature__content > div[style],
  section > .container > .reveal > div[style] {
    gap: 1rem;
    flex-direction: column;
    align-items: stretch;
  }
}

/* ── 22. FOCUS & SELECTION ──────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: rgba(30, 200, 208, 0.28);
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════════
   23. LIGHT-THEME COLOR SYSTEM OVERRIDES & NEW ANIMATIONS
   ══════════════════════════════════════════════════════════════ */

/* ── Label reveal keyframe ──────────────────────────────────── */
@keyframes labelReveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}

/* ── Polaroid float keyframes ───────────────────────────────── */
@keyframes float1 {
  0%, 100% { transform: rotate(-6deg) translateY(0px); }
  50%       { transform: rotate(-6deg) translateY(-12px); }
}
@keyframes float2 {
  0%, 100% { transform: rotate(2deg) translate(20px, -15px); }
  50%       { transform: rotate(2deg) translate(20px, -27px); }
}
@keyframes float3 {
  0%, 100% { transform: rotate(-2deg) translate(-10px, 20px); }
  50%       { transform: rotate(-2deg) translate(-10px, 8px); }
}

/* ── DARK SECTIONS — explicit navy backgrounds ──────────────── */
.hero {
  background: var(--navy);
  position: relative;
}

/* Background video */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

/* Subtle radial gradient overlay on hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(30, 200, 208, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.page-hero {
  background: #0d0f14;
}

/* Pre-footer CTA sections → dark */
section[aria-label="Call to action"] {
  background: #0d0f14;
}

/* ── Dark section: force white text ────────────────────────── */
.hero h1, .hero h2, .hero h3,
.page-hero h1, .page-hero h2,
.section--capture h2,
section[aria-label="Call to action"] h2 {
  color: var(--white);
}

.hero p,
.page-hero p,
section[aria-label="Call to action"] p {
  color: rgba(255, 255, 255, 0.65);
}

/* Fix hero sub which uses explicit colour */
.hero__sub { color: rgba(255, 255, 255, 0.62) !important; }

/* ── Dark section: labels → gold ───────────────────────────── */
.hero .label,
.page-hero .label,
.section--capture .label,
section[aria-label="Call to action"] .label {
  color: var(--gold);
  clip-path: inset(0 100% 0 0);
}
.hero .label::before,
.page-hero .label::before,
.section--capture .label::before,
section[aria-label="Call to action"] .label::before {
  background: var(--gold);
}
.hero .label.label--revealed,
.page-hero .label.label--revealed,
.section--capture .label.label--revealed,
section[aria-label="Call to action"] .label.label--revealed {
  animation: labelReveal 0.5s ease-out both;
}

/* ── Dark section: outline buttons → white ─────────────────── */
.hero .btn--outline,
.page-hero .btn--outline,
.section--capture .btn--outline,
section[aria-label="Call to action"] .btn--outline,
.hero .btn--ghost-dark,
section[aria-label="Call to action"] .btn--ghost-dark {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}
.hero .btn--outline::after,
.page-hero .btn--outline::after,
.section--capture .btn--outline::after,
section[aria-label="Call to action"] .btn--outline::after {
  background: rgba(255, 255, 255, 0.07);
}

/* ── Section--cream: keep its label subdued ────────────────── */
.section--cream .label {
  color: rgba(19, 27, 46, 0.45);
}
.section--cream .label::before {
  background: rgba(19, 27, 46, 0.45);
}

/* ── SERVICE CARDS — dark navy with pink top border ─────────── */
.service-card {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 2px solid var(--pink);
}

.service-card h3 { color: var(--white); }
.service-card p  { color: rgba(255, 255, 255, 0.62); }

/* ── PRICING TIERS — dark navy with gold top border ─────────── */
.pricing-tier {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: 2px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* ── SECTION: capture (email) — dark, gold label ────────────── */
.section--capture {
  background: var(--navy-mid);
}
.capture-text h2 { color: var(--white); }
.capture-text p  { color: rgba(255, 255, 255, 0.58); }

/* ── WHY SECTION — light, navy headline ─────────────────────── */
.why-inner h2 { color: var(--navy); }

/* ── SECTION headings on light bg ───────────────────────────── */
h1, h2, h3, h4 { color: var(--navy); }

/* Dark sections override heading colour back to white */
.hero h1,
.page-hero h1,
.section--capture h2,
section[aria-label="Call to action"] h2,
.service-card h3,
.step h3,
.footer__brand-name {
  color: var(--white);
}

/* ── SERVICE FEATURE visual border (services page) ──────────── */
.service-feature__visual {
  border: 1px solid rgba(19, 27, 46, 0.08);
}

/* ── PRICING NOTE (gold strip) ──────────────────────────────── */
.pricing-note p { color: rgba(255, 255, 255, 0.65); }
.pricing-note { background: rgba(212, 175, 85, 0.06); }

/* ── FORM SUCCESS ───────────────────────────────────────────── */
.form-success h3 { color: var(--teal); }
.form-success p  { color: rgba(255, 255, 255, 0.65); }

/* ── FOOTER stays dark ──────────────────────────────────────── */
.footer p { color: rgba(255, 255, 255, 0.40); }

/* ── SECTION--CREAM: steps inside are dark cards ────────────── */
/* Ensure step text always white regardless of parent section */
.step h3 { color: var(--white) !important; }
.step p   { color: rgba(255, 255, 255, 0.65) !important; }
.section--cream h2,
.section--cream h3 { color: var(--text-on-light); }
.section--cream .step h2,
.section--cream .step h3 { color: var(--white) !important; }

/* ── 20. PREFERS REDUCED MOTION ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:       0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration:      0.01ms !important;
  }

  .marquee__track { animation: none; }

  .reveal,
  .stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── EVENTS GRID (services.html occasions section) ──────────────── */
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 600px) {
  .events-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .events-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.event-card {
  background: var(--white);
  border-radius: 12px;
  border-top: 2px solid var(--pink);
  padding: 1.5rem;
  box-shadow: 0 2px 16px rgba(19, 27, 46, 0.07);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(19, 27, 46, 0.12);
}
.event-card__emoji {
  font-size: 2rem;
  display: block;
  text-align: center;
  margin-bottom: 0.75rem;
}
.event-card__name {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.25rem;
  font-style: normal;
  line-height: 1.3;
}
.event-card__desc {
  font-size: var(--text-sm);
  color: var(--slate);
  text-align: center;
  max-width: none;
  line-height: 1.5;
}

/* ── ABOUT: STORY SECTION ───────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .story-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.story-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.story-tagline-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  animation: float-gentle 4s ease-in-out infinite;
  box-shadow: 0 24px 64px rgba(19, 27, 46, 0.20);
  text-align: center;
}
.story-tagline-card p {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: none;
}
.story-tagline-card em { color: var(--pink); font-style: italic; }

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

/* ── ABOUT: VALUES CARDS ────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .values-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.value-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.value-card h3 { color: var(--white) !important; font-size: var(--text-2xl); }
.value-card p  { color: rgba(255, 255, 255, 0.65) !important; max-width: none; font-size: var(--text-sm); }
.value-card--pink { border-top: 2px solid var(--pink); }
.value-card--teal { border-top: 2px solid var(--teal); }
.value-card--gold { border-top: 2px solid var(--gold); }

/* ── ABOUT: CITY PILLS ──────────────────────────────────────────── */
.cities-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.5rem;
}
.city-pill {
  background: var(--navy);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
}

/* ── PAGE HERO: LIGHT VARIANT (about, blog) ─────────────────────── */
.page-hero--light                { background: var(--cream); }
.page-hero--light h1             { color: var(--navy) !important; }
.page-hero--light p              { color: var(--slate) !important; }
.page-hero--light .label         { color: var(--teal) !important; }
.page-hero--light .label::before { background: var(--teal); }

/* ── BLOG: POSTS GRID ───────────────────────────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .posts-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .posts-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.post-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(19, 27, 46, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(19, 27, 46, 0.12);
}
.post-card__img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.50);
  flex-shrink: 0;
}
.post-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}
.post-card__category {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.post-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  font-style: italic;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.post-card__excerpt {
  font-size: var(--text-sm);
  color: var(--slate);
  line-height: 1.6;
  max-width: none;
}
.post-card__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--pink);
  margin-top: 0.25rem;
  display: inline-block;
  transition: color var(--transition-base);
}
.post-card__link:hover { color: var(--pink-dark); }

/* ── NAV: reduce link gap on medium screens (6 links + CTA) ─────── */
@media (min-width: 900px) and (max-width: 1200px) {
  .nav__links { gap: 1.25rem; }
}

/* ── SKIP NAVIGATION ─────────────────────────────────────────────── */
.skip-nav {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-nav:focus {
  position: fixed;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  overflow: visible;
  padding: 1rem 1.5rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-body);
  z-index: calc(var(--z-sticky) + 10);
  border-radius: 0 0 var(--radius-sm) 0;
  outline: 2px solid var(--pink);
  text-decoration: none;
}

/* ── VISUALLY HIDDEN (accessible labels) ─────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── FOCUS VISIBLE ───────────────────────────────────────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 2px solid #FF4070;
  outline-offset: 3px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: none;
}

/* ── TESTIMONIALS ────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.testimonial-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 1.125rem;
  letter-spacing: 2px;
}
.testimonial-card blockquote p {
  font-style: italic;
  color: var(--slate);
  font-size: var(--text-base);
  line-height: 1.7;
  max-width: none;
}
.testimonial-card footer { display: flex; flex-direction: column; gap: 0.25rem; }
.testimonial-card__name {
  font-weight: 700;
  color: var(--navy);
  max-width: none;
  font-size: var(--text-sm);
}
.testimonial-card__event {
  font-size: var(--text-xs);
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  max-width: none;
}
