/* ============================================================
   5TH DIMENSION — MAIN STYLESHEET
   Premium-editorial frame, creative-desk texture.
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Base palette */
  --base: #FAF7F2;          /* warm off-white */
  --paper: #FFFDF9;         /* card / polaroid white */
  --dark: #142030;          /* near-black navy — text + anchor sections */
  --blush: #F2D4D4;         /* core light pink — reserved for CTA moments */
  --blush-soft: #F8ECEA;    /* blush tint for small panels/washes */
  --sage: #DFE6D5;          /* matcha-milk green — workhorse section tint */
  --sky: #E3ECF8;           /* pale structural-blue wash — one band per page */
  --mauve: #B09AAA;         /* accent, dividers, annotations */
  --steel: #85A3B2;         /* NEUROMARKETING CONTEXTS ONLY */
  --rose: #D4849A;          /* CTAs ONLY */
  --rose-hover: #C4718A;
  --mid-blue: #5B7DB1;      /* structural */
  --deep-blue: #3A5F96;     /* structural */

  --ink-70: rgba(20, 32, 48, 0.72);
  --ink-55: rgba(20, 32, 48, 0.55);
  --cream-90: rgba(250, 247, 242, 0.90);
  --cream-70: rgba(250, 247, 242, 0.72);
  --cream-55: rgba(250, 247, 242, 0.58);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', Arial, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-card: 0 6px 28px rgba(20, 32, 48, 0.07), 0 2px 8px rgba(20, 32, 48, 0.04);
  --shadow-card-hover: 0 16px 44px rgba(20, 32, 48, 0.12), 0 4px 12px rgba(20, 32, 48, 0.05);
  --shadow-polaroid: 0 14px 34px rgba(20, 32, 48, 0.13), 0 3px 9px rgba(20, 32, 48, 0.07);

  --max-width: 1200px;
  --section-padding: 96px 40px;
  --section-padding-mobile: 56px 20px;
}

/* --- Reset & Global --- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--base);
  font-family: var(--font-body);
  color: var(--dark);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Faint paper grain over everything — handmade texture layer */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--blush); color: var(--dark); }

h1, h2, h3, h4 { font-family: var(--font-display); }

h1 {
  font-size: clamp(44px, 5.4vw, 72px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 0 0 26px;
}
h2 {
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.005em;
  margin: 0 0 22px;
}
h3 { font-size: clamp(26px, 2.6vw, 32px); font-weight: 300; line-height: 1.2; margin: 0 0 16px; }

h1 em, h2 em { font-style: italic; font-weight: 300; }

p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-70);
  margin: 0 0 16px;
}
p:last-child { margin-bottom: 0; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

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

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Utility --- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve);
  display: block;
  margin-bottom: 18px;
}

/* Pill CTA — deeper rose, CTA-exclusive */
.btn {
  display: inline-block;
  background: var(--rose);
  color: var(--base);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 17px 36px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 14px rgba(212, 132, 154, 0.28);
}
.btn:hover {
  background: var(--rose-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(212, 132, 154, 0.36);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--rose);
  color: var(--rose);
  box-shadow: none;
}
.btn-outline:hover { background: var(--rose); color: var(--base); }

.btn:disabled,
.btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

/* Honeypot — off-screen, not display:none (some bots skip display:none checks) */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --- Hand-drawn doodles ---
   --doodle-rotate / --doodle-flip / --doodle-scale are set per-instance
   (rotate/flip inline on desktop; scale added by mobile.css) so mobile
   scaling never clobbers an element's own rotation. */
.doodle {
  position: absolute;
  pointer-events: none;
  color: var(--mauve);
  opacity: 0.85;
  z-index: 4; /* polaroid images use `transform`, which creates an implicit
                 stacking context — without this, doodles placed before an
                 image in the markup render behind it regardless of position */
  transform: scale(var(--doodle-scale, 1)) scaleX(var(--doodle-flip, 1)) rotate(var(--doodle-rotate, 0deg));
}
.doodle svg { display: block; width: 100%; height: 100%; }

/* Corner-overlap doodle — a sticker half on, half off a polaroid edge */
.doodle-corner {
  position: absolute;
  pointer-events: none;
  color: var(--mauve);
  opacity: 0.9;
  z-index: 3;
  filter: drop-shadow(0 3px 5px rgba(20, 32, 48, 0.14));
  transform: scale(var(--doodle-scale, 1)) rotate(var(--doodle-rotate, 0deg));
}
.doodle-corner svg { display: block; width: 100%; height: 100%; }

.squiggle {
  display: block;
  width: 190px;
  height: 16px;
  margin: 2px auto 0;
  color: var(--mauve);
}
.squiggle svg { display: block; width: 100%; height: 100%; }

/* Highlighter stroke — pink highlighter, not straight underline */
.highlight-stroke {
  background: linear-gradient(100deg, transparent 2%, rgba(242, 212, 212, 0.9) 6%, rgba(242, 212, 212, 0.75) 94%, transparent 98%);
  background-size: 100% 46%;
  background-position: 0 68%;
  background-repeat: no-repeat;
  padding: 0 3px;
}

.underline-hand {
  border-bottom: 2px solid var(--deep-blue);
  padding-bottom: 2px;
}

/* Steel highlighter — neuromarketing contexts only */
.highlight-steel {
  background: linear-gradient(100deg, transparent 2%, rgba(133, 163, 178, 0.5) 6%, rgba(133, 163, 178, 0.38) 94%, transparent 98%);
  background-size: 100% 52%;
  background-position: 0 72%;
  background-repeat: no-repeat;
  padding: 0 3px;
}

/* --- Image Placeholder (default: soft blush panel) --- */
.img-placeholder {
  background: var(--blush-soft);
  border: 1.5px dashed rgba(176, 154, 170, 0.5);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  width: 100%;
  position: relative;
}

.img-placeholder span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--mauve);
  line-height: 1.55;
  max-width: 230px;
}

.img-placeholder.img-loaded {
  border-style: solid;
  border-color: transparent;
  padding: 0;
  overflow: hidden;
}
.img-placeholder.img-loaded img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* Polaroid treatment — large standalone images become physical objects */
.hero-image .img-placeholder,
.audience-hero-image .img-placeholder,
.founder-image-wrapper .img-placeholder,
.what-we-do-grid .img-placeholder,
.services-header .img-placeholder,
.process-image-wrap .img-placeholder,
.socratic-inner .img-placeholder {
  background: var(--paper);
  border: none;
  padding: 14px;
  border-radius: 6px;
  box-shadow: var(--shadow-polaroid);
  transform: var(--tilt, rotate(-1.4deg));
}

.hero-image .img-placeholder::before,
.audience-hero-image .img-placeholder::before,
.founder-image-wrapper .img-placeholder::before,
.what-we-do-grid .img-placeholder::before,
.services-header .img-placeholder::before,
.process-image-wrap .img-placeholder::before,
.socratic-inner .img-placeholder::before {
  /* washi tape strip */
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 104px;
  height: 30px;
  background: rgba(242, 212, 212, 0.82);
  box-shadow: 0 1px 3px rgba(20, 32, 48, 0.10);
  transform: translateX(-50%) rotate(-2.5deg);
  z-index: 2;
}

.hero-image .img-placeholder span,
.audience-hero-image .img-placeholder span,
.founder-image-wrapper .img-placeholder span,
.what-we-do-grid .img-placeholder span,
.services-header .img-placeholder span,
.process-image-wrap .img-placeholder span,
.socratic-inner .img-placeholder span {
  background: var(--blush-soft);
  align-self: stretch;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: none;
  border-radius: 3px;
  padding: 20px;
}
.hero-image .img-placeholder span { max-width: none; }

.hero-image .img-placeholder.img-loaded,
.audience-hero-image .img-placeholder.img-loaded,
.founder-image-wrapper .img-placeholder.img-loaded,
.what-we-do-grid .img-placeholder.img-loaded,
.services-header .img-placeholder.img-loaded,
.process-image-wrap .img-placeholder.img-loaded,
.socratic-inner .img-placeholder.img-loaded {
  padding: 14px;
  overflow: visible;
}
.hero-image .img-placeholder.img-loaded img,
.audience-hero-image .img-placeholder.img-loaded img,
.founder-image-wrapper .img-placeholder.img-loaded img,
.what-we-do-grid .img-placeholder.img-loaded img,
.services-header .img-placeholder.img-loaded img,
.process-image-wrap .img-placeholder.img-loaded img,
.socratic-inner .img-placeholder.img-loaded img {
  border-radius: 3px;
}

/* Tilt variants */
.audience-hero-image .img-placeholder { --tilt: rotate(1.3deg); }
.founder-image-wrapper .img-placeholder { --tilt: rotate(1.1deg); }
.what-we-do-grid .img-placeholder { --tilt: rotate(-1.2deg); }
.services-header .img-placeholder { --tilt: rotate(-1deg); }

/* --- Torn Dividers ---
   Straight-edged rects displaced by SVG turbulence = fibrous torn paper.
   "X-to-Y": upper section X (--torn-top fill), lower section Y (--torn-bottom bg) */
.torn-divider {
  display: block;
  line-height: 0;
  overflow: hidden;
  position: relative;
  background: var(--torn-bottom, transparent);
}

.torn-divider svg {
  display: block;
  width: 100%;
  height: 56px;
}

.torn-divider svg rect,
.torn-divider svg path { fill: var(--torn-top, var(--base)); }

.torn-divider svg .torn-back { opacity: 0.4; }

/* Overlap variant: top of the strip is transparent so a card can slide
   behind the wave. Only valid when the section above is base-coloured. */
.wave-divider--overlap {
  background: transparent;
  z-index: 2;
}
.wave-divider--overlap svg path { fill: var(--sage); }
.wave-divider--overlap svg .wave-under { opacity: 0.5; }

.torn-divider--dark-to-base   { --torn-top: var(--dark);  --torn-bottom: var(--base); }
.torn-divider--base-to-dark   { --torn-top: var(--base);  --torn-bottom: var(--dark); }
.torn-divider--base-to-blush  { --torn-top: var(--base);  --torn-bottom: var(--blush); }
.torn-divider--blush-to-base  { --torn-top: var(--blush); --torn-bottom: var(--base); }
.torn-divider--blush-to-dark  { --torn-top: var(--blush); --torn-bottom: var(--dark); }
.torn-divider--dark-to-blush  { --torn-top: var(--dark);  --torn-bottom: var(--blush); }
.torn-divider--base-to-sage   { --torn-top: var(--base);  --torn-bottom: var(--sage); }
.torn-divider--sage-to-base   { --torn-top: var(--sage);  --torn-bottom: var(--base); }
.torn-divider--sage-to-dark   { --torn-top: var(--sage);  --torn-bottom: var(--dark); }
.torn-divider--base-to-sky    { --torn-top: var(--base);  --torn-bottom: var(--sky); }
.torn-divider--sky-to-sage    { --torn-top: var(--sky);   --torn-bottom: var(--sage); }
.torn-divider--sky-to-dark    { --torn-top: var(--sky);   --torn-bottom: var(--dark); }

/* --- Navigation --- */
.site-nav {
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(20, 32, 48, 0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  position: relative;
}

.nav-side {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-side--left { justify-content: flex-start; }
.nav-side--right { justify-content: flex-end; }

.nav-side a:not(.btn) {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.72;
  transition: opacity 0.2s;
  position: relative;
  padding: 4px 0;
}
.nav-side a:not(.btn):hover { opacity: 1; }
.nav-side a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--blush);
  transition: right 0.3s ease;
}
.nav-side a:not(.btn):hover::after { right: 0; }

.nav-side .btn { padding: 13px 28px; font-size: 11.5px; }

/* Circular text-ring logo */
.nav-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
}

.logo-ring { width: 76px; height: 76px; overflow: visible; }

.logo-ring .ring-rotor {
  transform-origin: 50px 50px;
  animation: logo-spin 50s linear infinite;
}

@keyframes logo-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.logo-ring-text {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 1.9px;
  fill: var(--dark);
}

.logo-ring-center {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 41px;
  fill: var(--dark);
}

.nav-brand-name {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Mobile menu (hidden on desktop) */
.nav-links { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: all 0.25s;
}

.site-nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --- Hero Section (Homepage) --- */
.hero {
  background: var(--base);
  background-image:
    radial-gradient(ellipse 60% 55% at 12% 18%, rgba(242, 212, 212, 0.55), transparent 70%),
    radial-gradient(ellipse 50% 60% at 88% 85%, rgba(176, 154, 170, 0.22), transparent 70%);
  padding: 104px 40px 100px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 72px;
  align-items: center;
  position: relative;
}

.hero-text { position: relative; }

.hero-text h1 { color: var(--dark); }
.hero-text h1 em { color: var(--dark); }

.hero-text p {
  color: var(--ink-70);
  font-size: 17px;
  margin-bottom: 20px;
  max-width: 52ch;
}

.hero-text .btn { margin-top: 12px; }

.hero-image { position: relative; }

.hero-image .img-placeholder { height: 500px; }

/* --- Selection Cards (Homepage) --- */
.selection-section {
  background: var(--sage);
  --page-bg: var(--sage);
  padding: var(--section-padding);
  position: relative;
}

.selection-section .section-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  position: relative;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 52px;
}

.selection-card {
  background: var(--paper);
  border-radius: 2px;
  box-shadow: var(--shadow-card);
  padding: 40px 30px 32px;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
}
.selection-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px) rotate(-0.4deg);
}

/* sticky-note corner curl */
.selection-card::after,
.bundle-card::after,
.deliverable-list::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 24px 24px;
  border-color: transparent transparent var(--page-bg, var(--base)) transparent;
  filter: drop-shadow(-3px -3px 3px rgba(20, 32, 48, 0.14));
}

/* Washi tape strip at the top of each card */
.selection-card::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  width: 92px;
  height: 26px;
  box-shadow: 0 1px 3px rgba(20, 32, 48, 0.08);
  transform: translateX(-50%) rotate(-2.5deg);
}
.cards-grid .selection-card:nth-child(3n+1)::before { background: rgba(242, 212, 212, 0.92); }
.cards-grid .selection-card:nth-child(3n+2)::before { background: rgba(176, 154, 170, 0.55); transform: translateX(-50%) rotate(2deg); }
.cards-grid .selection-card:nth-child(3n)::before { background: rgba(242, 212, 212, 0.92); transform: translateX(-50%) rotate(-1.5deg); }

.selection-card .card-img { margin-bottom: 22px; }
.selection-card .card-img .img-placeholder { height: 130px; }

/* Hand-drawn doodle in place of card imagery */
.card-doodle {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mauve);
  margin-bottom: 22px;
  transition: color 0.3s;
}
.card-doodle svg { width: 92px; height: 92px; }
.selection-card:hover .card-doodle { color: var(--dark); }

.card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  margin: 0 0 10px;
  line-height: 1.3;
}

.card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-55);
  margin: 0 0 18px;
}

.card-arrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-top: auto;
  transition: letter-spacing 0.25s;
}
.selection-card:hover .card-arrow { letter-spacing: 0.2em; }

.section-cta { text-align: center; }
.section-cta p { margin-bottom: 16px; }

/* --- Neuromarketing Dark Panel — the science anchor --- */
.neuro-section {
  background: var(--dark);
  background-image:
    linear-gradient(rgba(133, 163, 178, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133, 163, 178, 0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.neuro-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.neuro-text .eyebrow { color: var(--steel); }
.neuro-text h2 { color: var(--base); }
.neuro-text h2 em { color: var(--steel); }
.neuro-text p { color: var(--cream-70); font-size: 17px; }

.neuro-section .doodle { color: var(--steel); }

/* Lab-slide treatment for the neuro image */
.neuro-grid .img-placeholder {
  background: rgba(250, 247, 242, 0.05);
  border: 1.5px dashed rgba(133, 163, 178, 0.45);
  border-radius: var(--radius-md);
}
.neuro-grid .img-placeholder span { color: rgba(133, 163, 178, 0.85); }

/* Loaded brain diagram — polaroid card with slate-blue (steel) tape,
   full aspect ratio preserved so the diagram is never cropped. */
.neuro-grid .img-placeholder.img-loaded {
  background: var(--paper);
  border: none;
  padding: 14px;
  border-radius: 6px;
  box-shadow: var(--shadow-polaroid);
  transform: rotate(-1.2deg);
  height: auto;
  overflow: visible;
}
.neuro-grid .img-placeholder.img-loaded::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 104px;
  height: 30px;
  background: rgba(133, 163, 178, 0.82);
  box-shadow: 0 1px 3px rgba(20, 32, 48, 0.10);
  transform: translateX(-50%) rotate(-2.5deg);
  z-index: 2;
}
.neuro-grid .img-placeholder.img-loaded img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 3px;
  display: block;
}

.neuro-card {
  border: 1.5px solid var(--steel);
  border-radius: var(--radius-md);
  padding: 28px;
  background: transparent;
}

.neuro-card .card-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--steel);
  margin-bottom: 16px;
  line-height: 1.6;
}

.neuro-card .card-statement {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--base);
  margin: 0;
  line-height: 1.4;
}

/* --- Founder / Approach Section --- */
.founder-section {
  background: var(--base);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.founder-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.founder-image-wrapper {
  position: relative;
  padding: 10px;
}

.founder-image-wrapper .img-placeholder { height: 400px; }

.credential-badge {
  position: absolute;
  bottom: -14px;
  right: -10px;
  background: var(--paper);
  border: 1px solid rgba(176, 154, 170, 0.5);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow-card);
  transform: rotate(1.5deg);
  z-index: 3;
}

.credential-badge strong {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 4px;
}

.credential-badge p {
  font-size: 12px;
  color: var(--dark);
  margin: 0;
  line-height: 1.4;
  opacity: 0.8;
}

/* --- Pull Quote Section --- */
.quote-section {
  background: var(--blush);
  padding: 88px 40px;
  text-align: center;
}

.quote-inner { max-width: 700px; margin: 0 auto; }

.speech-bubble { margin-bottom: 24px; }

blockquote {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  margin: 0 0 20px;
  padding: 0;
  line-height: 1.45;
}

cite {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mauve);
  font-style: normal;
}

/* --- Closing CTA (blush note) --- */
.cta-section {
  background: var(--blush);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section .cta-intro {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-style: italic;
  font-weight: 300;
  color: var(--dark);
  margin: 0 auto 34px;
  max-width: 620px;
  line-height: 1.45;
}

/* --- Footer --- */
.site-footer {
  background: var(--dark);
  padding: 52px 40px 36px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--base);
}

.footer-contact { display: flex; gap: 24px; }

.footer-contact span {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--cream-55);
}

.footer-wa a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blush);
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 212, 212, 0.4);
  padding-bottom: 3px;
  transition: border-color 0.2s;
}
.footer-wa a:hover { border-color: var(--blush); }

/* ============================================================
   HOW WE WORK PAGE
   ============================================================ */

.founder-intro-section {
  background: var(--base);
  padding: var(--section-padding);
}

.founder-intro-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 60px;
  align-items: center;
}

.founder-intro-text p { margin-bottom: 20px; }
.founder-intro-text p strong { font-weight: 500; color: var(--dark); }

.socratic-section {
  background: var(--dark);
  padding: var(--section-padding);
}

.socratic-inner { max-width: 720px; margin: 0 auto; }

.socratic-inner p {
  color: var(--cream-90);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 24px;
}

.socratic-inner p em { color: var(--cream-90); }

.socratic-inner .sign-off {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--base);
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.socratic-inner .btn-outline { margin-bottom: 48px; display: inline-block; }

.socratic-inner .img-placeholder { height: 300px; }

.process-section {
  background: var(--base);
  padding: var(--section-padding);
}

.process-header { max-width: var(--max-width); margin: 0 auto 40px; }

.process-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.process-step .step-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 52px;
  font-weight: 300;
  color: var(--mauve);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 10px;
}

.process-step .step-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 400;
  line-height: 1.3;
}

.process-step .step-desc {
  font-size: 15px;
  color: var(--ink-55);
  line-height: 1.65;
  margin: 0;
}

.process-image-wrap { max-width: var(--max-width); margin: 0 auto; }
.process-image-wrap .img-placeholder { height: 280px; }

.not-section {
  background: var(--dark);
  padding: var(--section-padding);
}

.not-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.not-text h2 { color: var(--base); font-size: 36px; }
.not-text p { color: var(--cream-70); }

.not-image .img-placeholder { height: 320px; }

.not-cta { text-align: center; margin-top: 28px; }

.how-closing-section {
  background: var(--base);
  padding: 40px 40px 80px;
  text-align: center;
}

/* ============================================================
   AUDIENCE PAGES (BRAND / BUSINESS / VISIBLE)
   ============================================================ */

.audience-hero {
  background: var(--dark);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.audience-hero-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.audience-hero-text h1 { color: var(--base); }
.audience-hero-text p { color: var(--cream-70); }
.audience-hero-text .btn { margin-top: 12px; }

.audience-hero-image { position: relative; }
.audience-hero-image .img-placeholder { height: 480px; }

/* Light variant */
.audience-hero--light {
  background: var(--base);
  background-image:
    radial-gradient(ellipse 55% 55% at 10% 15%, rgba(242, 212, 212, 0.5), transparent 70%),
    radial-gradient(ellipse 45% 55% at 90% 88%, rgba(176, 154, 170, 0.18), transparent 70%);
}

.audience-hero--light .audience-hero-text h1 { color: var(--dark); }
.audience-hero--light .audience-hero-text p { color: var(--ink-70); }

/* Problem section */
.problem-section {
  background: var(--sky);
  --page-bg: var(--sky);
  padding: var(--section-padding);
}

.problem-section .card-title {
  font-size: 21px;
  line-height: 1.45;
}

/* What we do */
.what-we-do-section {
  background: var(--sage);
  --page-bg: var(--sage);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.what-we-do-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
}

.what-we-do-text p { margin-bottom: 20px; color: rgba(20, 32, 48, 0.75); }

.folder-collage-wrap {
  display: flex;
  justify-content: center;
}

.folder-collage {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}

/* What not / need */
.what-not-section {
  background: var(--dark);
  padding: var(--section-padding);
}

.what-not-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.what-not-text h3 { color: var(--base); font-size: 28px; }
.what-not-text p { color: var(--cream-70); }

.what-need-card {
  border: 1.5px dashed rgba(242, 212, 212, 0.55);
  border-radius: var(--radius-md);
  padding: 32px;
}

.what-need-card h3 { color: var(--base); font-size: 28px; }
.what-need-card p { color: var(--cream-70); }

/* Need section */
.need-section {
  background: var(--base);
  padding: var(--section-padding);
}

.need-section h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 24px;
}

.need-section p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(20, 32, 48, 0.78);
  margin-bottom: 1.4em;
}

/* Closing */
.closing-section {
  background: var(--blush);
  padding: var(--section-padding);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-section .closing-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-style: italic;
  font-weight: 300;
  color: var(--dark);
  max-width: 680px;
  margin: 0 auto 20px;
  line-height: 1.55;
}

.closing-section .closing-bold {
  font-weight: 500;
  color: var(--dark);
  margin: 0 auto 32px;
  font-size: 15px;
  opacity: 0.8;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

.services-header {
  background: var(--base);
  background-image:
    radial-gradient(ellipse 50% 60% at 85% 10%, rgba(242, 212, 212, 0.45), transparent 70%);
  padding: 80px 40px 0;
  text-align: center;
  position: relative;
}

.services-header h1 { margin-bottom: 18px; }

/* Paper menu card — luxury restaurant menu on textured stock */
.menu-card {
  background-color: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23p)' opacity='0.045'/%3E%3C/svg%3E");
  border-radius: 2px;
  box-shadow: var(--shadow-polaroid);
  max-width: 640px;
  margin: 0 auto -52px;
  padding: 56px 48px 104px;
  position: relative;
  --tilt: rotate(-0.3deg);
  transform: var(--tilt);
}

/* fine inner keyline, like a printed menu border */
.menu-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(20, 32, 48, 0.14);
  outline: 1px solid rgba(20, 32, 48, 0.05);
  outline-offset: 3px;
  pointer-events: none;
}

.services-header .subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 21px;
  color: var(--dark);
  max-width: 560px;
  margin: 0 auto 14px;
  line-height: 1.55;
  opacity: 0.85;
}

.services-header .note {
  font-size: 14px;
  font-style: italic;
  color: var(--mauve);
  max-width: 520px;
  margin: 0 auto;
}

/* Bundle cards */
.bundles-section {
  background: var(--sage);
  --page-bg: var(--sage);
  padding: var(--section-padding);
}

.bundles-hint {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--dark);
  opacity: 0.75;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 40px;
}

.bundles-section .section-intro { text-align: center; margin-bottom: 40px; }

.bundles-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.bundle-card {
  background: var(--paper);
  border-radius: 2px;
  box-shadow: var(--shadow-card);
  padding: 42px 36px 36px;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
}
.bundles-grid .bundle-card:nth-child(odd) { --tilt: rotate(-0.4deg); transform: var(--tilt); }
.bundles-grid .bundle-card:nth-child(even) { --tilt: rotate(0.4deg); transform: var(--tilt); }

.bundle-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px) rotate(0deg);
}

/* tape strip */
.bundle-card::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 44px;
  width: 92px;
  height: 26px;
  box-shadow: 0 1px 3px rgba(20, 32, 48, 0.08);
  transform: rotate(-2deg);
}
.bundles-grid .bundle-card:nth-child(odd)::before { background: rgba(242, 212, 212, 0.95); }
.bundles-grid .bundle-card:nth-child(even)::before { background: rgba(176, 154, 170, 0.5); transform: rotate(2deg); }

.bundle-card.featured { border: 1.5px solid var(--mid-blue); }

.bundle-tag {
  position: absolute;
  top: 22px;
  right: 24px;
  border: 1px solid var(--mauve);
  color: var(--mauve);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bundle-badge {
  display: inline-block;
  background: var(--mid-blue);
  color: var(--base);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 10px;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bundle-name {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 300;
  color: var(--dark);
  margin: 0 0 12px;
  line-height: 1.15;
}

.bundle-for {
  font-size: 14px;
  color: var(--ink-55);
  margin-bottom: 16px;
  line-height: 1.65;
}

.bundle-for strong { font-weight: 500; color: rgba(20, 32, 48, 0.8); }

.bundle-achieves {
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.65;
}

.bundle-achieves strong { font-weight: 500; }

.bundle-includes-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
  opacity: 0.70;
}

.bundle-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.bundle-card ul li {
  font-size: 14px;
  color: var(--ink-70);
  padding: 4px 0 4px 18px;
  position: relative;
  line-height: 1.5;
}

.bundle-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50% 40% 55% 45%;
  background: var(--mauve);
}

.bundle-leads {
  font-size: 14px;
  font-style: italic;
  color: var(--mauve);
  margin: 0;
  line-height: 1.6;
  border-top: 1px dashed rgba(176, 154, 170, 0.4);
  padding-top: 14px;
}

.bundle-leads strong { font-weight: 500; }

/* Customisation statement */
.custom-statement {
  background: var(--base);
  padding: 40px 40px 0;
  text-align: center;
}

.custom-statement p {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--dark);
  max-width: 640px;
  margin: 0 auto;
  opacity: 0.80;
  line-height: 1.65;
}

/* Add-ons */
.addons-section {
  background: var(--base);
  padding: var(--section-padding);
}

.addons-section .section-header {
  max-width: var(--max-width);
  margin: 0 auto 48px;
  text-align: center;
}

.addons-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.addon-card {
  background: var(--blush-soft);
  border-radius: var(--radius-md);
  padding: 20px 18px;
}

.addon-card .img-placeholder {
  height: 100px;
  margin-bottom: 14px;
  background: rgba(176, 154, 170, 0.20);
}

.addon-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  margin: 0 0 6px;
  line-height: 1.3;
}

.addon-desc {
  font-size: 13px;
  color: var(--ink-55);
  line-height: 1.5;
  margin: 0 0 8px;
}

.addon-type {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mauve);
}

/* Add-ons list (light background version) */
.addons-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 56px;
}

.addon-list-item {
  border-bottom: 1px dashed rgba(176, 154, 170, 0.45);
  padding-bottom: 18px;
}

.addon-list-name {
  display: block;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 5px;
}

.addon-list-desc {
  display: block;
  font-size: 13.5px;
  color: var(--ink-55);
  line-height: 1.6;
  margin-bottom: 8px;
}

.addon-list-type {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mauve);
  font-family: var(--font-body);
}

/* Form Section */
.form-section {
  background: var(--dark);
  padding: var(--section-padding);
}

.form-inner { max-width: 720px; margin: 0 auto; }

.form-inner h2 { color: var(--base); font-size: clamp(30px, 3.4vw, 42px); margin-bottom: 10px; }

.form-note {
  font-size: 14px;
  font-style: italic;
  color: var(--cream-55);
  margin-bottom: 8px;
}

.form-note-secondary {
  font-size: 14px;
  font-style: italic;
  color: var(--cream-55);
  margin-bottom: 40px;
}

.form-part-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blush);
  display: block;
  margin: 36px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(242, 212, 212, 0.3);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(250, 247, 242, 0.07);
  border: 1px solid rgba(250, 247, 242, 0.22);
  border-radius: 12px;
  color: var(--base);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 18px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 14px;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blush);
  background: rgba(250, 247, 242, 0.1);
}

.contact-form input.field-invalid {
  border: 1px solid #D9695C;
  background: rgba(217, 105, 92, 0.1);
}

.form-field-warning {
  font-size: 13px;
  font-style: italic;
  color: #D9695C;
  margin: -8px 0 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--cream-55);
}

.contact-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 L6 6.5 L11 1.5' fill='none' stroke='%23F2D4D4' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.contact-form select option { background: var(--dark); color: var(--base); }

.services-hint {
  font-size: 13px;
  font-style: italic;
  color: var(--cream-55);
  margin-bottom: 16px;
  display: block;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 36px;
  margin-bottom: 16px;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 19px;
  height: 19px;
  padding: 0;
  margin: 1px 0 0;
  flex-shrink: 0;
  background: rgba(250, 247, 242, 0.07);
  border: 1.5px solid rgba(250, 247, 242, 0.4);
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.checkbox-item input[type="checkbox"]:hover {
  border-color: var(--blush);
}

.checkbox-item input[type="checkbox"]:checked {
  background-color: var(--rose);
  border-color: var(--rose);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10'%3E%3Cpath d='M1.5 5.5 L4.5 8.5 L10.5 1.5' fill='none' stroke='%23FAF7F2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.checkbox-label {
  font-size: 13px;
  color: var(--cream-70);
  line-height: 19px; /* first line matches the 19px checkbox for optical alignment */
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row input { margin-bottom: 0; }

.form-submit {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.whatsapp-alt { display: flex; align-items: center; gap: 12px; }

.whatsapp-alt p {
  font-size: 13px;
  color: var(--cream-55);
  margin: 0;
}

/* Incomplete-sections confirmation modal — paper card + washi tape,
   matching the menu-card/letter-block treatment used elsewhere. */
.form-confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 32, 48, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 500;
}
.form-confirm-overlay[hidden] { display: none; }

.form-confirm-card {
  background-color: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23p)' opacity='0.045'/%3E%3C/svg%3E");
  border-radius: 2px;
  box-shadow: var(--shadow-polaroid);
  max-width: 440px;
  width: 100%;
  padding: 40px 36px 32px;
  position: relative;
  --tilt: rotate(-0.6deg);
  transform: var(--tilt);
}

.form-confirm-tape {
  position: absolute;
  top: -16px;
  left: 50%;
  width: 118px;
  height: 32px;
  background: rgba(242, 212, 212, 0.85);
  box-shadow: 0 1px 3px rgba(20, 32, 48, 0.1);
  transform: translateX(-50%) rotate(-2deg);
}

.form-confirm-text {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--dark);
  margin: 0 0 28px;
}

.form-confirm-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn-neutral {
  background: var(--dark);
  color: var(--base);
  box-shadow: none;
}
.btn-neutral:hover { background: var(--dark); opacity: 0.88; transform: translateY(-2px); }

.form-confirm-skip {
  background: none;
  border: none;
  padding: 0 0 2px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-55);
  cursor: pointer;
  border-bottom: 1.5px solid var(--mauve);
  transition: border-color 0.2s, color 0.2s;
}
.form-confirm-skip:hover { color: var(--dark); border-color: var(--dark); }

/* ============================================================
   HOW WE WORK — LETTER BLOCK
   ============================================================ */

.letter-section {
  background: var(--base);
  background-image:
    radial-gradient(ellipse 50% 45% at 88% 8%, rgba(242, 212, 212, 0.45), transparent 70%);
  padding: 88px 24px;
}

.letter-block {
  background-color: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23p)' opacity='0.045'/%3E%3C/svg%3E");
  border-radius: 2px;
  box-shadow: var(--shadow-polaroid);
  padding: 60px 68px;
  max-width: 780px;
  margin: 40px auto;
  font-family: var(--font-display);
  font-size: 19.5px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--dark);
  position: relative;
  --tilt: rotate(-0.35deg);
  transform: var(--tilt);
}

/* tape at the letter's top */
.letter-block::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  width: 118px;
  height: 32px;
  background: rgba(242, 212, 212, 0.85);
  box-shadow: 0 1px 3px rgba(20, 32, 48, 0.1);
  transform: translateX(-50%) rotate(-2deg);
}

.letter-block p {
  margin-bottom: 2em;
  color: var(--dark);
  font-size: inherit;
  line-height: inherit;
}

.letter-block p:last-of-type { margin-bottom: 0; }

/* Mobile-only truncation (collapsed/expanded rules live in mobile.css).
   On desktop these two are simply hidden — the letter always shows in full. */
.letter-ellipsis { display: none; color: var(--mauve); }

.letter-readmore {
  display: none;
  background: none;
  border: none;
  padding: 0 0 2px;
  margin-top: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--dark);
  cursor: pointer;
  border-bottom: 1.5px solid var(--mauve);
  transition: border-color 0.2s, color 0.2s;
}
.letter-readmore:hover { color: var(--rose); border-color: var(--rose); }

.letter-block .btn { margin-top: 40px; }

/* ============================================================
   WHAT WE ARE / ARE NOT — IS-LIST
   ============================================================ */

.is-section {
  background: var(--sage);
  padding: 88px 24px;
}

.is-section h2 { text-align: center; margin-bottom: 48px; }

.is-list {
  max-width: 780px;
  margin: 40px auto 20px;
  list-style: none;
  padding: 0;
}

.is-item {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(176, 154, 170, 0.45);
}

.is-item:last-child { border-bottom: none; }

.is-yes {
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}

.is-no {
  color: var(--mauve);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  display: flex;
  gap: 12px;
}

.is-tick { color: var(--dark); font-weight: 500; flex-shrink: 0; }
.is-cross { color: var(--mauve); flex-shrink: 0; }

/* ============================================================
   FOOTER CREDENTIAL LINE
   ============================================================ */

.footer-credential {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--cream-55);
  text-align: center;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================================
   CLOSING SECTION — SUPPLEMENTARY
   ============================================================ */

.closing-bold {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  text-align: center;
  margin: 0 auto 28px;
  max-width: 480px;
  opacity: 0.75;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px) var(--tilt, rotate(0deg));
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 0.7, 0.3, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) var(--tilt, rotate(0deg));
}

/* hover transforms must beat .reveal.in-view */
.selection-card.in-view:hover { transform: translateY(-6px) rotate(-0.4deg); }
.bundle-card.in-view:hover { transform: translateY(-4px) rotate(0deg); }
.btn.in-view:hover { transform: translateY(-2px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .logo-ring .ring-rotor { animation: none; }
  .btn, .selection-card, .bundle-card { transition: none; }
}
