/* palette: bg=#F4EDE0 fg=#15102A accent=#FF3D7F */
/* fonts: display="Bricolage Grotesque" body="Inter" mono="Space Mono" */

:root {
  --bg: #F4EDE0;
  --bg-alt: #15102A;
  --bg-cream: #F9F4EA;
  --fg: #15102A;
  --fg-soft: #2D2540;
  --muted: #6B5F7A;
  --accent: #FF3D7F;
  --accent-deep: #E61F65;
  --accent-cyan: #00D4C5;
  --accent-yellow: #FFD23F;
  --accent-orange: #FF6B35;
  --accent-violet: #7B3FF2;
  --border: rgba(21, 16, 42, 0.16);
  --border-strong: #15102A;
  --serif: 'Bricolage Grotesque', ui-serif, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, ui-sans-serif, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: opacity 0.3s var(--ease), color 0.3s var(--ease); }
a:hover { opacity: 0.7; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
svg { display: block; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--fg);
}
p { margin: 0; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ─── HEADER ───────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 237, 224, 0.0);
  backdrop-filter: saturate(180%) blur(0px);
  -webkit-backdrop-filter: saturate(180%) blur(0px);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.header[data-scrolled="true"] {
  background: rgba(244, 237, 224, 0.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(21,16,42,0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.brand__mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  position: relative;
}
.brand__mark::before, .brand__mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.brand__mark::before {
  width: 22px; height: 22px;
  background: var(--accent);
  top: 0; left: 0;
}
.brand__mark::after {
  width: 18px; height: 18px;
  background: var(--accent-cyan);
  bottom: 0; right: 0;
  mix-blend-mode: multiply;
}

.nav { display: none; gap: 32px; align-items: center; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav a:hover { opacity: 1; }
.nav a:hover::after { width: 100%; }

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 9999px;
  background: var(--fg);
  color: var(--bg);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.btn-pill:hover { transform: translateY(-2px); background: var(--accent); opacity: 1; color: #fff; }
.btn-pill__arrow { width: 14px; height: 14px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 9999px;
  border: 1.5px solid var(--fg);
  color: var(--fg);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.btn-ghost:hover { background: var(--fg); color: var(--bg); opacity: 1; }

.menu-toggle {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--fg);
}
.menu-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--bg);
  position: relative;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--bg);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-menu {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--bg);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  padding: 40px 24px;
  overflow-y: auto;
}
.mobile-menu[data-open="true"] { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  margin-top: -76px;
  padding: 110px 0 60px;
  overflow: hidden;
  background: linear-gradient(180deg,
    #FFD23F 0%,
    #FF6B35 22%,
    #FF3D7F 50%,
    #B83A8A 75%,
    #15102A 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
}

.hero__sun {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #FFE9A8 0%, #FFD23F 30%, #FF8C42 70%, transparent 71%);
  filter: blur(2px);
  z-index: -1;
  animation: heroZoom 12s var(--ease) infinite alternate;
}
@keyframes heroZoom {
  from { transform: translateX(-50%) scale(1); }
  to   { transform: translateX(-50%) scale(1.08); }
}

.hero__shapes { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero__shape {
  position: absolute;
  opacity: 0.85;
}
.hero__shape--c1 { top: 14%; left: 6%; width: 64px; height: 64px; background: var(--accent-cyan); border-radius: 50%; }
.hero__shape--c2 { top: 70%; right: 8%; width: 48px; height: 48px; background: var(--accent-yellow); border-radius: 50%; }
.hero__shape--zz {
  top: 26%; right: 12%;
  width: 80px; height: 24px;
  background: repeating-linear-gradient(45deg, var(--accent-yellow) 0 6px, transparent 6px 12px);
  transform: rotate(12deg);
}
.hero__shape--tri {
  bottom: 22%; left: 10%;
  width: 0; height: 0;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-bottom: 48px solid var(--accent-cyan);
  transform: rotate(-18deg);
}
.hero__shape--sq {
  bottom: 14%; right: 18%;
  width: 36px; height: 36px;
  background: var(--accent-violet);
  transform: rotate(20deg);
}
.hero__shape--ring {
  top: 10%; right: 22%;
  width: 90px; height: 90px;
  border: 4px solid var(--bg);
  border-radius: 50%;
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(21, 16, 42, 0.85);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 9999px;
  backdrop-filter: blur(10px);
}
.hero__eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 9.5vw, 8.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--fg);
  max-width: 1100px;
}
.hero__title em {
  font-style: normal;
  display: inline-block;
  position: relative;
  color: var(--fg);
}
.hero__title em::before {
  content: "";
  position: absolute;
  inset: -2px -8px;
  background: var(--accent-cyan);
  z-index: -1;
  transform: skew(-4deg);
}

.hero__lead {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(21, 16, 42, 0.85);
  font-weight: 500;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.hero__actions .btn-pill { background: var(--fg); color: var(--bg); padding: 16px 28px; font-size: 14px; }
.hero__actions .btn-ghost { border-color: var(--fg); color: var(--fg); padding: 16px 28px; font-size: 14px; }

.hero__stat-card {
  position: absolute;
  top: 32%;
  right: 6%;
  width: 180px;
  background: var(--fg);
  color: var(--bg);
  border-radius: 6px;
  padding: 16px;
  display: none;
  z-index: 3;
  transform: rotate(4deg);
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.4);
}
@media (min-width: 1024px) { .hero__stat-card { display: block; } }
.hero__stat-card__head {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-yellow);
  margin-bottom: 8px;
}
.hero__stat-card__big {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero__stat-card__lbl { font-size: 11px; opacity: 0.75; margin-top: 4px; }

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg);
  opacity: 0.6;
}

/* ─── MARQUEE ──────────────────────────────────────── */
.marquee {
  background: var(--accent);
  color: var(--fg);
  padding: 22px 0;
  overflow: hidden;
  border-top: 2px solid var(--fg);
  border-bottom: 2px solid var(--fg);
}
.marquee__track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  width: max-content;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee__track span::after {
  content: "✦";
  color: var(--fg);
  font-size: 1em;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTIONS GENERIC ─────────────────────────────── */
.section { padding: clamp(80px, 12vw, 160px) 0; }
.section--alt { background: var(--bg-cream); }
.section--dark {
  background: var(--bg-alt);
  color: var(--bg);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--bg-cream); }

.section__head {
  display: grid;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto 72px;
  text-align: center;
}
.section__head h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: -0.025em;
  line-height: 1.0;
}
.section__head p { font-size: 17px; line-height: 1.7; color: var(--fg-soft); max-width: 620px; margin: 0 auto; }
.section--dark .section__head p { color: rgba(244, 237, 224, 0.78); }

/* ─── FEATURES GRID ───────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 2px solid var(--fg);
  border-left: 2px solid var(--fg);
}
@media (min-width: 700px) { .features { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .features { grid-template-columns: repeat(4, 1fr); } }

.feature {
  padding: 40px 32px;
  background: var(--bg-cream);
  border-right: 2px solid var(--fg);
  border-bottom: 2px solid var(--fg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: background 0.4s var(--ease);
}
.feature:hover { background: var(--accent-yellow); }
.feature:nth-child(2):hover { background: var(--accent-cyan); }
.feature:nth-child(3):hover { background: var(--accent); color: #fff; }
.feature:nth-child(3):hover h3 { color: #fff; }
.feature:nth-child(4):hover { background: var(--accent-violet); color: #fff; }
.feature:nth-child(4):hover h3 { color: #fff; }
.feature:nth-child(4):hover .feature__num { color: #fff; }

.feature__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
}
.feature__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--fg);
  color: var(--bg-cream);
  border-radius: 6px;
  margin-bottom: 4px;
}
.feature__icon svg { width: 28px; height: 28px; }
.feature h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.feature p { font-size: 15px; line-height: 1.65; color: var(--fg-soft); }

/* ─── HOW IT WORKS ─────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.step {
  background: var(--bg-cream);
  border: 2px solid var(--fg);
  border-radius: 6px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.step:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--fg); }

.step__num {
  position: absolute;
  top: -22px; left: 28px;
  width: 56px; height: 56px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--fg);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
}
.step:nth-child(2) .step__num { background: var(--accent-cyan); color: var(--fg); }
.step:nth-child(3) .step__num { background: var(--accent-yellow); color: var(--fg); }

.step h3 {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.015em;
  margin-top: 28px;
  margin-bottom: 14px;
}
.step p { font-size: 15.5px; line-height: 1.7; color: var(--fg-soft); }
.step__meta {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

/* ─── MANIFESTO ────────────────────────────────────── */
.manifesto {
  padding: clamp(100px, 14vw, 180px) 0;
  background: var(--bg-alt);
  color: var(--bg-cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.manifesto__quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 940px;
  margin: 0 auto;
  color: var(--bg-cream);
}
.manifesto__quote em {
  font-style: normal;
  color: var(--accent-cyan);
}
.manifesto__quote em.pink { color: var(--accent); }
.manifesto__attr {
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}
.manifesto__decor {
  position: absolute;
  font-family: var(--serif);
  font-size: 280px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.18;
  top: -40px;
  left: 60px;
}
.manifesto__decor--right {
  left: auto; right: 60px; top: auto; bottom: -120px;
  color: var(--accent-cyan);
}

/* ─── PRICING ──────────────────────────────────────── */
.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) { .pricing { grid-template-columns: repeat(3, 1fr); } }

.plan {
  background: var(--bg-cream);
  border: 2px solid var(--fg);
  border-radius: 6px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s var(--ease);
}
.plan:hover { transform: translateY(-6px); }

.plan--featured {
  background: var(--fg);
  color: var(--bg-cream);
}
.plan--featured h3, .plan--featured .plan__price { color: var(--bg-cream); }
.plan--featured .plan__features li { color: rgba(244, 237, 224, 0.8); border-color: rgba(244, 237, 224, 0.18); }
.plan--featured .plan__features li::before { color: var(--accent-cyan); }

.plan__badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 9999px;
  border: 2px solid var(--fg);
}
.plan__name {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 16px;
}
.plan--featured .plan__name { color: var(--accent-cyan); }
.plan__price {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.plan__price small { font-size: 14px; font-weight: 500; opacity: 0.7; }
.plan__desc { margin: 14px 0 24px; font-size: 14.5px; line-height: 1.55; color: var(--fg-soft); }
.plan--featured .plan__desc { color: rgba(244, 237, 224, 0.7); }
.plan__features { list-style: none; padding: 0; margin: 0 0 30px; }
.plan__features li {
  font-size: 14.5px;
  line-height: 1.5;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--border);
  position: relative;
  color: var(--fg-soft);
}
.plan__features li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 12px;
  color: var(--accent);
  font-weight: 700;
}
.plan__cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 9999px;
  background: var(--fg);
  color: var(--bg-cream);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.3s var(--ease);
}
.plan__cta:hover { background: var(--accent); opacity: 1; color: #fff; }
.plan--featured .plan__cta { background: var(--accent); color: #fff; }
.plan--featured .plan__cta:hover { background: var(--accent-cyan); color: var(--fg); }

/* ─── INTEGRATIONS / STACK ─────────────────────────── */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 2px solid var(--bg-cream);
  border-left: 2px solid var(--bg-cream);
}
@media (min-width: 700px) { .stack-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .stack-grid { grid-template-columns: repeat(6, 1fr); } }

.stack-tile {
  border-right: 2px solid var(--bg-cream);
  border-bottom: 2px solid var(--bg-cream);
  padding: 36px 24px;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--bg-cream);
  transition: background 0.3s var(--ease);
  min-height: 120px;
}
.stack-tile:hover { background: var(--accent); }
.stack-tile small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.6;
  font-weight: 400;
}

/* ─── TESTIMONIALS ─────────────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }

.tcard {
  background: var(--bg-cream);
  border: 2px solid var(--fg);
  border-radius: 6px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tcard:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--accent); }

.tcard__quote {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.tcard__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  border: 2px solid var(--fg);
  flex-shrink: 0;
}
.avatar--c1 { background: var(--accent); }
.avatar--c2 { background: var(--accent-cyan); color: var(--fg); }
.avatar--c3 { background: var(--accent-violet); }
.avatar--c4 { background: var(--accent-yellow); color: var(--fg); }
.avatar--c5 { background: var(--accent-orange); }
.avatar--c6 { background: var(--fg); color: var(--bg-cream); }

.tcard__author__info { display: flex; flex-direction: column; }
.tcard__author__name { font-weight: 600; font-size: 14px; }
.tcard__author__role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ─── BIG CTA ──────────────────────────────────────── */
.cta {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-orange) 50%, var(--accent-yellow) 100%);
  color: var(--fg);
  text-align: center;
  overflow: hidden;
}
.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.cta h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
  max-width: 900px;
}
.cta h2 em {
  font-style: italic;
  color: var(--bg-alt);
  background: var(--bg-cream);
  padding: 0 12px;
  border-radius: 6px;
  display: inline-block;
}
.cta p { max-width: 540px; font-size: 17px; line-height: 1.6; font-weight: 500; }
.cta__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 12px; }
.cta__actions .btn-pill { background: var(--fg); color: var(--bg-cream); padding: 16px 32px; }
.cta__actions .btn-ghost { border-color: var(--fg); color: var(--fg); padding: 16px 32px; }

.cta__decor {
  position: absolute;
  font-family: var(--serif);
  font-size: 320px;
  line-height: 0.8;
  color: var(--accent-cyan);
  opacity: 0.4;
  top: -60px;
  right: -40px;
  z-index: 1;
}

/* ─── FOOTER ───────────────────────────────────────── */
.footer {
  background: var(--bg-alt);
  color: var(--bg-cream);
  padding: 80px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(244, 237, 224, 0.18);
}
@media (min-width: 800px) {
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer__brand h4 {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 14px;
  color: var(--bg-cream);
}
.footer__brand p { font-size: 14.5px; line-height: 1.6; opacity: 0.7; max-width: 320px; }

.footer__col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 10px; }
.footer__col a { font-size: 14px; opacity: 0.85; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ─── SPLIT (Services / About content) ─────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 80px; } }
.split--reverse > :first-child { order: 2; }
@media (max-width: 899px) { .split--reverse > :first-child { order: 0; } }

.split__media {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--fg);
  aspect-ratio: 4/5;
  position: relative;
  background: var(--accent-cyan);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

.split__body h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.split__body p { font-size: 16.5px; line-height: 1.75; color: var(--fg-soft); margin-bottom: 16px; }
.split__body p:last-of-type { margin-bottom: 28px; }

/* ─── SERVICES LIST ────────────────────────────────── */
.svc-list {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--fg);
}
.svc-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 2px solid var(--fg);
  align-items: start;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
  cursor: pointer;
}
.svc-row:hover { background: var(--accent-yellow); padding-left: 24px; padding-right: 24px; }
@media (min-width: 800px) { .svc-row { grid-template-columns: 100px 1.4fr 1fr 60px; gap: 36px; align-items: center; } }

.svc-row__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
  padding-top: 4px;
}
.svc-row__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 600;
}
.svc-row__desc { font-size: 15px; line-height: 1.6; color: var(--fg-soft); }
.svc-row__arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--fg);
  color: var(--bg-cream);
  display: grid;
  place-items: center;
  margin-left: auto;
  transition: transform 0.3s var(--ease);
}
.svc-row:hover .svc-row__arrow { transform: rotate(-45deg); background: var(--accent); }

/* ─── CONTACT ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.2fr 1fr; gap: 80px; } }

.form { display: flex; flex-direction: column; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  font-weight: 500;
}
.field input, .field textarea, .field select {
  padding: 14px 16px;
  border: 2px solid var(--fg);
  background: var(--bg-cream);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--fg);
  border-radius: 4px;
  resize: vertical;
  transition: background 0.3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  background: #fff;
  border-color: var(--accent);
}

.form button[type="submit"] {
  align-self: start;
  padding: 16px 32px;
  background: var(--fg);
  color: var(--bg-cream);
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.form button[type="submit"]:hover { background: var(--accent); transform: translateY(-2px); }

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.info-block h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 8px;
  font-weight: 500;
}
.info-block p { font-family: var(--serif); font-size: 22px; line-height: 1.3; letter-spacing: -0.01em; }
.info-block p small { font-family: var(--sans); font-size: 14px; color: var(--muted); display: block; margin-top: 4px; }

/* ─── PAGE HERO (subpages) ─────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.page-hero__inner { max-width: 920px; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin-bottom: 28px;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.page-hero__lead { font-size: 18px; line-height: 1.65; max-width: 620px; color: var(--fg-soft); }

.page-hero__shapes { position: absolute; inset: 0; pointer-events: none; }
.page-hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
}
.page-hero__shape--1 { top: 30%; right: 8%; width: 80px; height: 80px; background: var(--accent-cyan); }
.page-hero__shape--2 { bottom: 18%; right: 22%; width: 50px; height: 50px; background: var(--accent-yellow); }
.page-hero__shape--3 {
  top: 35%; right: 18%; width: 64px; height: 64px;
  background: none;
  border: 4px solid var(--accent);
}

/* ─── COOKIE POPUP ─────────────────────────────────── */
.cookie-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  background: rgba(21, 16, 42, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg-cream);
  padding: 32px 36px;
  max-width: 480px;
  width: 100%;
  border-radius: 6px;
  border: 2px solid var(--fg);
  box-shadow: 8px 8px 0 var(--accent);
}
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 12px;
}
.cookie-popup h3 {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.cookie-popup p { font-size: 14px; line-height: 1.6; color: var(--fg-soft); }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.cookie-popup__actions button {
  padding: 12px 22px;
  border: 2px solid var(--fg);
  border-radius: 9999px;
  background: var(--bg-cream);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--sans);
  color: var(--fg);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  flex: 1;
  min-width: 130px;
}
.cookie-popup__actions button:hover { background: var(--fg); color: var(--bg-cream); }
.cookie-popup__actions button:last-child { background: var(--fg); color: var(--bg-cream); }
.cookie-popup__actions button:last-child:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ─── LEGAL PAGES ──────────────────────────────────── */
.legal {
  padding: 130px 0 100px;
  max-width: 820px;
  margin: 0 auto;
}
.legal h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.05;
}
.legal__updated {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 48px;
  display: block;
}
.legal h2 {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.015em;
  margin: 40px 0 14px;
}
.legal h3 {
  font-family: var(--serif);
  font-size: 20px;
  margin: 28px 0 10px;
}
.legal p, .legal li { font-size: 16px; line-height: 1.75; color: var(--fg-soft); margin-bottom: 14px; }
.legal ul { padding-left: 24px; }
.legal a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }

/* ─── THANKS ───────────────────────────────────────── */
.thanks {
  min-height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 120px 24px 80px;
}
.thanks__inner { max-width: 620px; }
.thanks h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 20px;
}
.thanks h1 em { font-style: normal; color: var(--accent); }
.thanks p { font-size: 17px; line-height: 1.65; color: var(--fg-soft); margin-bottom: 32px; }
