﻿:root {
  --c-primary: #170C79;
  --c-sand: #EFE3CA;
  --c-accent: #56B6C6;
  --c-muted: #8ACBD0;
  --c-text: #1f2240;
  --c-white: #ffffff;
  --c-deep: #0d1236;
  --space-xs: 0.5rem;
  --space-sm: 0.875rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 16px 40px rgba(23, 12, 121, 0.08);
  --shadow-card: 0 10px 24px rgba(31, 34, 64, 0.12);
  --font-main: "Noto Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--c-text);
  background: radial-gradient(circle at 15% 10%, #f6f4ee 0%, #f0f6f8 45%, #edf2ff 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(239, 227, 202, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(23, 12, 121, 0.08);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.brand {
  display: block;
}

.brand img {
  width: 4rem;
  position: relative;
  z-index: 20;
}

.brand img {
  display: inline-block;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.brand:hover img {
  transform: rotate(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .brand img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  .brand img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 576px) {
  .brand img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 400px) {
  .brand img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.82rem;
  border-radius: 999px;
  transition: background-color 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--c-primary);
  color: var(--c-white);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--c-primary);
  font-size: 1.45rem;
}

main {
  overflow: hidden;
}

.hero {
  min-height: 76vh;
}

.split-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-content,
.hero-media {
  padding: clamp(2rem, 5vw, 4.5rem);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(239, 227, 202, 0.6);
}

.hero-content h1 {
  color: var(--c-primary);
  margin: 0 0 var(--space-sm);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.18;
}

.hero-media {
  background: rgba(86, 182, 198, 0.14);
  display: flex;
  align-items: center;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: 0.25rem;
}

.cta-row {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.68rem 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.28s ease, background-color 0.28s ease, color 0.28s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--c-primary);
  color: var(--c-white);
}

.btn-primary:hover {
  background: #2d1fa0;
}

.btn-ghost {
  border-color: var(--c-primary);
  color: var(--c-primary);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(23, 12, 121, 0.08);
}

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

.section h2 {
  margin-top: 0;
  color: var(--c-primary);
}

.section-lead {
  max-width: 64ch;
}

.alt {
  background: rgba(138, 203, 208, 0.14);
}

.flow-grid,
.ritual-cards,
.toolkit-grid,
.narrative-grid,
.badge-row {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flow-grid article,
.ritual-cards article,
.toolkit-grid article,
.narrative-grid article,
.badge-row article,
.planner-card,
.faq-item {
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow-grid article:hover,
.ritual-cards article:hover,
.toolkit-grid article:hover,
.narrative-grid article:hover,
.badge-row article:hover,
.planner-card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.badge-row i {
  font-size: 1.4rem;
  color: var(--c-accent);
}

.split-insight,
.split-screen-two,
.contact-layout,
.impact-grid,
.contact-snippet {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1.1fr 0.9fr;
}

.insight-card {
  background: var(--c-white);
  border-left: 6px solid var(--c-accent);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  align-self: center;
  transition: transform 0.32s ease;
}

.tilt-card {
  transform-style: preserve-3d;
}

.quote {
  font-size: 1.1rem;
  margin: 0 0 var(--space-xs);
}

.quote-meta {
  margin: 0;
  color: #5a5d7d;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.5rem;
}

.soft-band {
  background: linear-gradient(120deg, rgba(23, 12, 121, 0.94), rgba(86, 182, 198, 0.84));
  color: var(--c-white);
}

.soft-band h2 {
  color: var(--c-sand);
}

.impact-grid ul {
  margin: 0;
  padding-left: 1.1rem;
}

.contact-snippet iframe,
.contact-layout iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.page-main .page-hero {
  padding: var(--space-xl) 0 var(--space-lg);
}

.page-hero h1 {
  margin: 0;
  color: var(--c-primary);
}

.toolkit-grid i {
  font-size: 1.3rem;
  color: var(--c-accent);
}

.planner-result {
  margin-top: 0.8rem;
  border-left: 4px solid var(--c-accent);
  padding: 0.7rem 0.8rem;
  background: #f4fbfd;
  border-radius: var(--radius-sm);
}

.chip-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.chip {
  border: 1px solid rgba(23, 12, 121, 0.24);
  background: #fff;
  color: var(--c-primary);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  transition: all 0.26s ease;
}

.chip:hover,
.chip.is-selected {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}

.faq-shell {
  display: grid;
  gap: 0.9rem;
}

.faq-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: inherit;
  font-weight: 600;
  color: var(--c-primary);
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 180px;
}

.faq-item.open .faq-toggle i {
  transform: rotate(45deg);
}

.faq-toggle i {
  transition: transform 0.3s ease;
}

.contact-layout form {
  background: var(--c-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 12, 121, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.75rem;
  margin-bottom: 0.45rem;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(86, 182, 198, 0.35);
  border-color: var(--c-accent);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  margin-top: var(--space-sm);
}

.checkbox-row input {
  width: auto;
  margin: 0;
}

.error {
  display: block;
  color: #b4232d;
  min-height: 1.1em;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}

.site-footer {
  background: var(--c-deep);
  color: #dce0ff;
  padding: 2.2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: var(--space-md);
}

.footer-grid a {
  display: block;
  margin-bottom: 0.4rem;
}

.footer-grid a:hover {
  color: var(--c-muted);
}

.brand-line {
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.2rem;
  width: min(760px, 92vw);
  background: #ffffff;
  border: 1px solid rgba(23, 12, 121, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: var(--space-md);
  display: none;
  z-index: 80;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.65rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 21, 60, 0.6);
  display: none;
  place-items: center;
  z-index: 90;
  padding: 1rem;
}

.cookie-modal.show {
  display: grid;
}

.cookie-panel {
  width: min(420px, 94vw);
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.cookie-panel label {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  margin: 0.5rem 0;
}

.thanks-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: var(--space-lg);
}

.thanks-card {
  width: min(560px, 94vw);
  background: var(--c-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  text-align: center;
}

.thanks-card i {
  font-size: 2.6rem;
  color: var(--c-accent);
}

.legal-wrap {
  min-height: 100vh;
  padding: var(--space-xl) 0;
}

.legal-card {
  width: min(900px, 92vw);
  margin: 0 auto;
  background: var(--c-white);
  padding: clamp(1.25rem, 2.2vw, 2rem);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.legal-card h1,
.legal-card h2 {
  color: var(--c-primary);
}

.reveal-up,
.reveal-left {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.66s ease, transform 0.66s ease;
}

.reveal-left {
  transform: translateX(24px);
}

.reveal-up.in-view,
.reveal-left.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes gentleFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }

  100% {
    transform: translateY(0);
  }
}

.hero-media img {
  animation: gentleFloat 8s ease-in-out infinite;
}

@media (max-width: 980px) {

  .split-screen,
  .split-insight,
  .split-screen-two,
  .contact-layout,
  .impact-grid,
  .contact-snippet,
  .flow-grid,
  .ritual-cards,
  .toolkit-grid,
  .narrative-grid,
  .footer-grid,
  .badge-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content,
  .hero-media {
    padding: 1.5rem;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--c-sand);
    border-bottom: 1px solid rgba(23, 12, 121, 0.1);
    padding: 0.8rem 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.open {
    display: flex;
  }
}