@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --color-ink: #1a1a2e;
  --color-ink-soft: #2d2d4a;
  --color-blue: #1b2d6b;
  --color-blue-bright: #2541b2;
  --color-coral: #e8472a;
  --color-coral-light: #ff6b50;
  --color-yellow: #f5c518;
  --color-yellow-dark: #d4a800;
  --color-green: #0e6655;
  --color-green-light: #1a8a6e;
  --color-purple: #5c2d91;
  --color-purple-light: #7b3db5;
  --color-cream: #faf8f3;
  --color-white: #ffffff;
  --color-text-dark: #1a1a2e;
  --color-text-mid: #3d3d5c;
  --color-text-light: #f0eee8;

  --shadow-xs: 0 1px 3px rgba(26,26,46,0.08), 0 1px 2px rgba(26,26,46,0.06);
  --shadow-sm: 0 2px 8px rgba(26,26,46,0.10), 0 1px 4px rgba(26,26,46,0.08);
  --shadow-md: 0 4px 20px rgba(26,26,46,0.12), 0 2px 8px rgba(26,26,46,0.08);
  --shadow-lg: 0 8px 40px rgba(26,26,46,0.16), 0 4px 16px rgba(26,26,46,0.10);
  --shadow-xl: 0 16px 64px rgba(26,26,46,0.20), 0 8px 24px rgba(26,26,46,0.12);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.thanksPage {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

ul { list-style: none; }

address { font-style: normal; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btnPrimary {
  background: var(--color-coral);
  color: var(--color-white);
  border-color: var(--color-coral);
}

.btnPrimary:hover {
  background: var(--color-coral-light);
  border-color: var(--color-coral-light);
}

.btnOutline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}

.btnOutline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
}

.btnSecondary {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-ink);
}

.btnSecondary:hover {
  background: var(--color-ink);
  color: var(--color-white);
}

.btnFull {
  width: 100%;
  justify-content: center;
}

.sectionLabel {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-coral);
  margin-bottom: var(--space-3);
}

.sectionLabel--light {
  color: rgba(255,255,255,0.7);
}

.sectionTitle {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-ink);
  margin-bottom: var(--space-5);
}

.sectionTitle--light {
  color: var(--color-white);
}

.sectionIntro {
  font-size: 1.05rem;
  color: var(--color-text-mid);
  max-width: 640px;
  line-height: 1.7;
}

.sectionIntro--light {
  color: rgba(255,255,255,0.8);
}

.inlineLink {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-coral);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.2s ease;
}

.inlineLink:hover {
  gap: var(--space-3);
}


.siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-ink);
  box-shadow: none;
  transition: box-shadow 0.3s ease;
  height: var(--nav-height);
}

.siteHeader_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.siteHeader_logo img {
  height: 36px;
  width: auto;
}

.siteHeader_nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.siteHeader_navLink {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 2px;
}

.siteHeader_navLink::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-coral);
  transition: width 0.25s ease;
}

.siteHeader_navLink:hover,
.siteHeader_navLink.is-active {
  color: var(--color-white);
}

.siteHeader_navLink:hover::after,
.siteHeader_navLink.is-active::after {
  width: 100%;
}

.siteHeader_hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.siteHeader_hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  transition: transform 0.25s ease, opacity 0.25s ease;
}


.mobileTabBar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-ink);
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -4px 24px rgba(26,26,46,0.25);
}

.mobileTabBar_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
  padding: var(--space-2) var(--space-1);
  color: rgba(255,255,255,0.55);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  min-height: 56px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.mobileTabBar_item i {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.mobileTabBar_item:hover,
.mobileTabBar_item.is-active {
  color: var(--color-yellow);
}

.mobileTabBar_item.is-active i {
  transform: translateY(-2px);
}


.mainHero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.mainHero_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mainHero_bgImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mainHero_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,46,0.88) 0%,
    rgba(27,45,107,0.75) 50%,
    rgba(26,26,46,0.65) 100%
  );
}

.mainHero_content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-32) var(--space-6) var(--space-20);
  width: 100%;
}

.mainHero_badge {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-ink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

.mainHero_title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--color-white);
  margin-bottom: var(--space-6);
  max-width: 800px;
}

.mainHero_typed {
  color: var(--color-yellow);
  display: block;
  min-height: 1.1em;
}

.mainHero_subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: var(--space-10);
}

.mainHero_actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.mainHero_scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}


.storySection {
  background: var(--color-cream);
  padding: var(--space-24) 0;
}

.storySection_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.storySection_text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: var(--space-5);
  line-height: 1.2;
}

.storySection_text p {
  color: var(--color-text-mid);
  line-height: 1.75;
  margin-bottom: var(--space-4);
  font-size: 1rem;
}

.storySection_image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 420px;
  object-fit: cover;
}


.waveDivider {
  line-height: 0;
  overflow: hidden;
}

.waveDivider--yellowToBlue {
  background: var(--color-cream);
}

.waveDivider--coralToYellow {
  background: var(--color-coral);
}

.waveDivider svg {
  display: block;
  width: 100%;
}


.servicesSection {
  background: var(--color-blue);
  padding: var(--space-24) 0 var(--space-32);
}

.servicesSection_header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.servicesSection_header .sectionIntro--light {
  margin: 0 auto;
}

.servicesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}

.serviceCard {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.serviceCard:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.serviceCard_icon {
  width: 56px;
  height: 56px;
  background: var(--color-yellow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  font-size: 1.4rem;
  color: var(--color-ink);
  transition: transform 0.2s ease;
}

.serviceCard:hover .serviceCard_icon {
  transform: scale(1.08);
}

.serviceCard_title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.serviceCard_text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}


.formatSection {
  background: var(--color-cream);
  padding: var(--space-24) 0;
}

.formatSection_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.formatSection_image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.formatSection_text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: var(--space-5);
}

.formatSection_text p {
  color: var(--color-text-mid);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}

.formatList {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.formatList li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.95rem;
  color: var(--color-text-mid);
}

.formatList li i {
  color: var(--color-green);
  margin-top: 3px;
  flex-shrink: 0;
}


.resourcesSection {
  background: var(--color-yellow);
  padding: var(--space-24) 0;
}

.resourcesSection_header {
  margin-bottom: var(--space-12);
}

.resourcesSection_header .sectionLabel {
  color: var(--color-ink);
  opacity: 0.7;
}

.resourcesSection_header .sectionTitle {
  color: var(--color-ink);
}

.resourcesSection_header .sectionIntro {
  color: rgba(26,26,46,0.75);
}

.resourcesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.resourceCard {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  gap: var(--space-5);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.resourceCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.resourceCard_icon {
  width: 48px;
  height: 48px;
  background: var(--color-blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-white);
  flex-shrink: 0;
}

.resourceCard_content {
  flex: 1;
}

.resourceCard_title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: var(--space-2);
}

.resourceCard_text {
  font-size: 0.88rem;
  color: var(--color-text-mid);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.resourceCard_link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-coral);
  transition: gap 0.2s ease;
}

.resourceCard_link:hover {
  gap: var(--space-3);
}


.ctaSection {
  background: var(--color-coral);
  padding: var(--space-24) 0;
}

.ctaSection_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.ctaSection_img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.ctaSection_title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-5);
}

.ctaSection_text p {
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.ctaSection_actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.ctaSection_actions .btnPrimary {
  background: var(--color-white);
  color: var(--color-coral);
  border-color: var(--color-white);
}

.ctaSection_actions .btnPrimary:hover {
  background: var(--color-cream);
}

.ctaSection_actions .btnSecondary {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}

.ctaSection_actions .btnSecondary:hover {
  background: rgba(255,255,255,0.15);
}


.pageHero {
  padding: calc(var(--nav-height) + var(--space-20)) 0 var(--space-20);
}

.pageHero--green {
  background: var(--color-green);
}

.pageHero--coral {
  background: var(--color-coral);
}

.pageHero--purple {
  background: var(--color-purple);
}

.pageHero--dark {
  background: var(--color-ink);
}

.pageHero_content {
  max-width: 720px;
}

.pageHero_title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-5);
}

.pageHero_subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}


.narrativeSection {
  background: var(--color-cream);
  padding: var(--space-24) 0;
}

.narrativeSection_grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-12);
  align-items: start;
}

.narrativeBlock {
  margin-bottom: var(--space-12);
}

.narrativeBlock:last-child {
  margin-bottom: 0;
}

.narrativeBlock h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: var(--space-4);
}

.narrativeBlock p {
  color: var(--color-text-mid);
  line-height: 1.8;
  margin-bottom: var(--space-4);
  font-size: 1rem;
}

.narrativeBlock--highlight {
  background: var(--color-blue);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.narrativeBlock--highlight h2 {
  color: var(--color-white);
}

.narrativeBlock--highlight p {
  color: rgba(255,255,255,0.8);
}

.asideCard {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-md);
}

.asideCard img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: var(--space-4);
}

.asideCard h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: var(--space-3);
}

.asideCard p {
  font-size: 0.9rem;
  color: var(--color-text-mid);
  line-height: 1.6;
}

.asideCard--accent {
  background: var(--color-yellow);
}

.asideCard--accent i {
  font-size: 1.5rem;
  color: var(--color-ink);
  opacity: 0.4;
  margin-bottom: var(--space-3);
}

.asideCard--accent p {
  font-size: 1rem;
  font-style: italic;
  color: var(--color-ink);
  font-weight: 600;
  line-height: 1.6;
}

.principlesList {
  background: var(--color-ink);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.principlesList h3 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-yellow);
  margin-bottom: var(--space-4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.principlesList ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.principlesList li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.principlesList li i {
  color: var(--color-yellow);
  font-size: 0.5rem;
}


.valuesSection {
  background: var(--color-green);
  padding: var(--space-20) 0;
}

.valuesSection_header {
  margin-bottom: var(--space-12);
}

.valuesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}

.valueCard {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: background 0.25s ease;
}

.valueCard:hover {
  background: rgba(255,255,255,0.18);
}

.valueCard i {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-4);
}

.valueCard h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.valueCard p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}


.teamSection {
  background: var(--color-cream);
  padding: var(--space-24) 0;
}

.teamSection_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.teamSection_image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.teamSection_text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: var(--space-5);
}

.teamSection_text p {
  color: var(--color-text-mid);
  line-height: 1.75;
  margin-bottom: var(--space-5);
}


.scheduleSection {
  background: var(--color-cream);
  padding: var(--space-24) 0;
}

.scheduleSection_intro {
  margin-bottom: var(--space-16);
}

.scheduleTimeline {
  position: relative;
  padding-left: var(--space-8);
}

.scheduleTimeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-coral), var(--color-blue));
  border-radius: var(--radius-full);
}

.scheduleItem {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  position: relative;
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(26,26,46,0.08);
}

.scheduleItem:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.scheduleItem::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-8) - 5px);
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-coral);
  border: 2px solid var(--color-cream);
  box-shadow: 0 0 0 2px var(--color-coral);
}

.scheduleItem_time {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-coral);
  padding-top: 2px;
}

.scheduleItem_content h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: var(--space-2);
}

.scheduleItem_content p {
  font-size: 0.92rem;
  color: var(--color-text-mid);
  line-height: 1.65;
}


.detailsSection {
  background: var(--color-yellow);
  padding: var(--space-24) 0;
}

.detailsSection_header {
  margin-bottom: var(--space-12);
}

.detailsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
}

.detailCard {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.detailCard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.detailCard i {
  font-size: 1.4rem;
  color: var(--color-coral);
  margin-bottom: var(--space-4);
}

.detailCard h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: var(--space-2);
}

.detailCard p {
  font-size: 0.9rem;
  color: var(--color-text-mid);
  line-height: 1.65;
}


.casesSection {
  background: var(--color-blue);
  padding: var(--space-24) 0;
}

.casesSection_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.casesSection_text p {
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}

.casesSection_image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 400px;
  object-fit: cover;
}


.workshopCtaSection {
  background: var(--color-ink);
  padding: var(--space-20) 0;
}

.workshopCtaSection_inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.workshopCtaSection_inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.workshopCtaSection_inner p {
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}


.giftIntroSection {
  background: var(--color-cream);
  padding: var(--space-24) 0;
}

.giftIntroSection_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.giftIntroSection_text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: var(--space-5);
}

.giftIntroSection_text p {
  color: var(--color-text-mid);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}

.giftIntroSection_image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.giftContextSection {
  background: var(--color-purple);
  padding: var(--space-24) 0;
}

.giftContextSection_header {
  margin-bottom: var(--space-12);
}

.giftContextGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}

.giftContextCard {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: background 0.25s ease, transform 0.25s ease;
}

.giftContextCard:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

.giftContextCard_icon {
  width: 52px;
  height: 52px;
  background: var(--color-yellow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-ink);
  margin-bottom: var(--space-5);
}

.giftContextCard h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.giftContextCard p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

.giftProcessSection {
  background: var(--color-cream);
  padding: var(--space-24) 0;
}

.giftProcessSection_header {
  margin-bottom: var(--space-12);
}

.giftProcessSteps {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.giftStep {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-6);
  align-items: start;
}

.giftStep_number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-yellow-dark);
  opacity: 0.6;
  line-height: 1;
}

.giftStep_content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: var(--space-2);
}

.giftStep_content p {
  font-size: 0.95rem;
  color: var(--color-text-mid);
  line-height: 1.7;
}

.giftFormSection {
  background: var(--color-blue);
  padding: var(--space-24) 0;
}

.giftFormSection_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.giftFormSection_text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.giftFormSection_text p {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.giftFormSection_img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 280px;
  object-fit: cover;
}


.contactSection {
  background: var(--color-cream);
  padding: var(--space-24) 0;
}

.contactSection_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.contactInfoCard {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-6);
}

.contactInfoCard h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: var(--space-6);
}

.contactInfoItem {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid rgba(26,26,46,0.08);
}

.contactInfoItem:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contactInfoItem i {
  width: 40px;
  height: 40px;
  background: var(--color-coral);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.contactInfoItem strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.contactInfoItem a,
.contactInfoItem address,
.contactInfoItem p {
  font-size: 0.95rem;
  color: var(--color-ink);
  line-height: 1.5;
}

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

.contactSection_image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.contactSection_form h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: var(--space-6);
}


.areaSection {
  background: var(--color-ink);
  padding: var(--space-24) 0;
}

.areaSection_header {
  margin-bottom: var(--space-12);
}

.areaSection_header .sectionTitle {
  color: var(--color-white);
}

.areaSection_header .sectionIntro {
  color: rgba(255,255,255,0.75);
}

.areaGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}

.areaCard {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: background 0.25s ease;
}

.areaCard:hover {
  background: rgba(255,255,255,0.12);
}

.areaCard i {
  font-size: 1.4rem;
  color: var(--color-yellow);
  margin-bottom: var(--space-4);
}

.areaCard h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.areaCard p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}


.mapSection {
  background: var(--color-cream);
  padding: var(--space-20) 0;
}

.mapSection_header {
  margin-bottom: var(--space-8);
}

.mapWrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}


.contactForm {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}

.formGroup {
  margin-bottom: var(--space-5);
}

.formGroup label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: var(--space-2);
}

.formGroup input,
.formGroup textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid rgba(26,26,46,0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-ink);
  background: var(--color-cream);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.formGroup input:focus,
.formGroup textarea:focus {
  border-color: var(--color-coral);
  box-shadow: 0 0 0 3px rgba(232,71,42,0.12);
}

.formGroup textarea {
  resize: vertical;
  min-height: 120px;
}

.formGroup--checkbox {
  margin-top: var(--space-4);
}

.checkboxLabel {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--color-text-mid);
  line-height: 1.5;
}

.checkboxLabel input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 1px;
  accent-color: var(--color-coral);
  cursor: pointer;
}

.checkboxLabel a {
  color: var(--color-coral);
  text-decoration: underline;
}


.thanksMain {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-32) var(--space-6);
  background: var(--color-cream);
  padding-top: calc(var(--nav-height) + var(--space-32));
}

.thanksContent {
  text-align: center;
  max-width: 480px;
}

.thanksIcon {
  font-size: 4rem;
  color: var(--color-green);
  margin-bottom: var(--space-8);
}

.thanksTitle {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: var(--space-4);
  line-height: 1.1;
}

.thanksSubtitle {
  font-size: 1.1rem;
  color: var(--color-text-mid);
  margin-bottom: var(--space-10);
}


.legalHero {
  background: var(--color-ink);
  padding: calc(var(--nav-height) + var(--space-12)) 0 var(--space-12);
}

.legalHero_title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.legalHero_date {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

.legalContent {
  background: var(--color-cream);
  padding: var(--space-16) 0 var(--space-24);
}

.legalBody {
  max-width: 760px;
}

.legalBody h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}

.legalBody h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.legalBody p {
  color: var(--color-text-mid);
  line-height: 1.8;
  margin-bottom: var(--space-5);
  font-size: 0.97rem;
}

.legalBody ul {
  list-style: disc;
  padding-left: var(--space-6);
  margin-bottom: var(--space-5);
}

.legalBody ul li {
  color: var(--color-text-mid);
  line-height: 1.75;
  margin-bottom: var(--space-2);
  font-size: 0.97rem;
}

.legalBody strong {
  color: var(--color-ink);
  font-weight: 600;
}


.pageFooter {
  background: var(--color-ink-soft);
  padding: var(--space-16) 0 0;
}

.pageFooter_grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pageFooter_brand img {
  margin-bottom: var(--space-4);
}

.pageFooter_brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.pageFooter_brand address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.pageFooter_nav h4,
.pageFooter_legal h4,
.pageFooter_contact h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

.pageFooter_links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.pageFooter_links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}

.pageFooter_links a:hover {
  color: var(--color-yellow);
}

.pageFooter_contact {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pageFooter_contact a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-3);
  transition: color 0.2s ease;
}

.pageFooter_contact a:hover {
  color: var(--color-yellow);
}

.pageFooter_contact i {
  width: 16px;
  color: var(--color-coral);
}

.pageFooter_bottom {
  padding: var(--space-5) 0;
  text-align: center;
}

.pageFooter_bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}


.cookieOverlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.55);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cookieOverlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

.cookiePanel {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--color-white);
  z-index: 901;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(26,26,46,0.2);
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}

.cookiePanel.is-open {
  right: 0;
}

.cookiePanel_header {
  background: var(--color-ink);
  padding: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.cookiePanel_header i {
  font-size: 1.4rem;
  color: var(--color-yellow);
}

.cookiePanel_header h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
}

.cookiePanel_body {
  padding: var(--space-6);
  flex: 1;
}

.cookiePanel_intro {
  font-size: 0.85rem;
  color: var(--color-text-mid);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.cookieCategory {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(26,26,46,0.08);
}

.cookieCategory:last-of-type {
  border-bottom: none;
}

.cookieCategory_info h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 2px;
}

.cookieCategory_info p {
  font-size: 0.78rem;
  color: var(--color-text-mid);
  line-height: 1.4;
}

.cookieToggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookieToggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookieToggle_slider {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.2);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.25s ease;
}

.cookieToggle_slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--color-white);
  border-radius: 50%;
  transition: transform 0.25s ease;
  box-shadow: var(--shadow-xs);
}

.cookieToggle input:checked + .cookieToggle_slider {
  background: var(--color-green);
}

.cookieToggle input:checked + .cookieToggle_slider::before {
  transform: translateX(20px);
}

.cookieToggle input:disabled + .cookieToggle_slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookiePanel_footer {
  padding: var(--space-5) var(--space-6);
  border-top: 1px solid rgba(26,26,46,0.08);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex-shrink: 0;
}

.cookiePanel_footer .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.88rem;
  padding: var(--space-3) var(--space-4);
}

.cookieBtnAccept {
  background: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
}

.cookieBtnAccept:hover {
  background: var(--color-green-light);
}

.cookieBtnReject {
  background: transparent;
  color: var(--color-text-mid);
  border-color: rgba(26,26,46,0.2);
}

.cookieBtnReject:hover {
  background: rgba(26,26,46,0.05);
}

.cookieBtnSave {
  background: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
}

.cookieBtnSave:hover {
  background: var(--color-blue-bright);
}


@media (max-width: 1024px) {
  .siteHeader_nav {
    gap: var(--space-4);
  }

  .pageFooter_grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .narrativeSection_grid {
    grid-template-columns: 1fr;
  }

  .narrativeSection_aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
  }

  .asideCard {
    margin-bottom: 0;
  }

  .principlesList {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .siteHeader_nav {
    display: none;
  }

  .siteHeader_hamburger {
    display: flex;
  }

  .mobileTabBar {
    display: flex;
  }

  body {
    padding-bottom: 56px;
  }

  .storySection_grid,
  .formatSection_grid,
  .casesSection_grid,
  .ctaSection_inner,
  .giftIntroSection_grid,
  .giftFormSection_grid,
  .teamSection_grid,
  .contactSection_grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .storySection_image img,
  .formatSection_image img,
  .teamSection_image img,
  .giftIntroSection_image img {
    height: 280px;
  }

  .casesSection_image img,
  .ctaSection_img {
    height: 240px;
  }

  .servicesGrid,
  .resourcesGrid {
    grid-template-columns: 1fr;
  }

  .resourceCard {
    flex-direction: column;
  }

  .pageFooter_grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .mainHero_actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .mainHero_actions .btn {
    width: 100%;
    justify-content: center;
  }

  .scheduleItem {
    grid-template-columns: 60px 1fr;
    gap: var(--space-4);
  }

  .giftStep {
    grid-template-columns: 60px 1fr;
  }

  .narrativeSection_aside {
    display: flex;
    flex-direction: column;
  }

  .storySection,
  .formatSection,
  .teamSection,
  .giftIntroSection,
  .giftProcessSection,
  .contactSection,
  .scheduleSection,
  .narrativeSection,
  .mapSection {
    padding: var(--space-16) 0;
  }

  .servicesSection,
  .resourcesSection,
  .ctaSection,
  .detailsSection,
  .casesSection,
  .giftContextSection,
  .giftFormSection,
  .valuesSection,
  .workshopCtaSection,
  .areaSection {
    padding: var(--space-16) 0;
  }

  .detailsGrid,
  .valuesGrid,
  .areaGrid,
  .giftContextGrid {
    grid-template-columns: 1fr;
  }

  .ctaSection_actions {
    flex-direction: column;
  }

  .ctaSection_actions .btn {
    width: 100%;
    justify-content: center;
  }

  .legalHero {
    padding: calc(var(--nav-height) + var(--space-8)) 0 var(--space-8);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-4);
  }

  .mainHero_content {
    padding: var(--space-20) var(--space-4) var(--space-12);
  }

  .contactForm {
    padding: var(--space-5);
  }

  .cookiePanel {
    width: 100%;
    right: -100%;
  }

  .cookiePanel.is-open {
    right: 0;
  }
}