/* =============================================
   PURUHO PUKUGI — MAIN STYLESHEET
   Cutout Layers Design Concept
   ============================================= */


:root {
  --base-dark: #1a1a2e;
  --base-accent: #6c63ff;
  --base-warm: #f0ebe3;

  --primary: var(--base-dark);
  --primary-light: color-mix(in oklch, var(--base-dark), white 20%);
  --primary-lighter: color-mix(in oklch, var(--base-dark), white 50%);
  --primary-faint: color-mix(in oklch, var(--base-dark), white 88%);

  --accent: var(--base-accent);
  --accent-light: color-mix(in oklch, var(--base-accent), white 30%);
  --accent-dark: color-mix(in oklch, var(--base-accent), black 20%);
  --accent-faint: color-mix(in oklch, var(--base-accent), white 80%);

  --warm: var(--base-warm);
  --warm-dark: color-mix(in oklch, var(--base-warm), black 10%);
  --warm-darker: color-mix(in oklch, var(--base-warm), black 25%);

  --surface: color-mix(in oklch, var(--base-warm), white 60%);
  --surface-card: color-mix(in oklch, white, var(--base-warm) 15%);

  --text-primary: color-mix(in oklch, var(--base-dark), black 10%);
  --text-secondary: color-mix(in oklch, var(--base-dark), white 30%);
  --text-muted: color-mix(in oklch, var(--base-dark), white 55%);

  --border: color-mix(in oklch, var(--base-dark), white 78%);
  --border-strong: color-mix(in oklch, var(--base-dark), white 60%);

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

  
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 9999px;

  
  --shadow-sm: 0 1px 3px color-mix(in oklch, var(--base-dark), transparent 88%), 0 1px 2px color-mix(in oklch, var(--base-dark), transparent 94%);
  --shadow-md: 0 4px 6px color-mix(in oklch, var(--base-dark), transparent 88%), 0 2px 4px color-mix(in oklch, var(--base-dark), transparent 92%);
  --shadow-lg: 0 10px 25px color-mix(in oklch, var(--base-dark), transparent 82%), 0 4px 10px color-mix(in oklch, var(--base-dark), transparent 90%);
  --shadow-xl: 0 20px 50px color-mix(in oklch, var(--base-dark), transparent 78%), 0 8px 20px color-mix(in oklch, var(--base-dark), transparent 88%);
  --shadow-accent: 0 8px 30px color-mix(in oklch, var(--base-accent), transparent 60%);

  
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}


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

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

body {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: var(--text-primary);
  background-color: var(--surface);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a { color: var(--accent); text-decoration: none; transition: color var(--transition-base); }
a:hover { color: var(--accent-dark); }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}


.SectionLabel {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-3);
}

.SectionHeading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: var(--sp-6);
  color: var(--text-primary);
}

.CutoutReveal-layer .SectionHeading {
  color: var(--base-warm);
}

.SectionHeading--light { color: var(--warm); }

.SectionBody {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 68ch;
  margin-bottom: var(--sp-4);
}

.SectionBody--light { color: color-mix(in oklch, var(--warm), transparent 20%); }


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


.Btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-8);
  border-radius: var(--r-full);
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.Btn:hover { transform: translateY(-2px); }
.Btn:active { transform: translateY(0); }

.Btn--primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}
.Btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: white;
  box-shadow: 0 12px 40px color-mix(in oklch, var(--base-accent), transparent 50%);
}

.Btn--ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.Btn--ghost:hover {
  background: var(--accent-faint);
  color: var(--accent-dark);
}

.Btn--light {
  background: white;
  color: var(--primary);
  border-color: white;
}
.Btn--light:hover {
  background: var(--warm);
  color: var(--primary);
}

/* =============================================
   SITE HEADER
   ============================================= */
.SiteHeader {
  position: relative;
  z-index: 100;
  background: var(--primary);
  box-shadow: var(--shadow-md);
}

.SiteHeader-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-4) var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

.SiteHeader-logo img { display: block; }

.SiteHeader-nav {
  display: none;
  gap: var(--sp-6);
  align-items: center;
}

.SiteHeader-navLink {
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in oklch, white, transparent 20%);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
  padding-bottom: 2px;
}

.SiteHeader-navLink::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-base);
}

.SiteHeader-navLink:hover,
.SiteHeader-navLink.is-active {
  color: white;
}

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

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

.SiteHeader-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: var(--r-full);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

@media (min-width: 768px) {
  .SiteHeader-nav { display: flex; }
  .SiteHeader-hamburger { display: none; }
}

/* =============================================
   MOBILE TAB BAR
   ============================================= */
.MobileTabBar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--primary);
  border-top: 1px solid color-mix(in oklch, white, transparent 80%);
  box-shadow: 0 -4px 20px color-mix(in oklch, var(--base-dark), transparent 70%);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.MobileTabBar.is-visible { display: flex; }

.MobileTabBar-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: var(--sp-2) var(--sp-1);
  color: color-mix(in oklch, white, transparent 40%);
  text-decoration: none;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition-base), background var(--transition-base);
  min-height: 56px;
}

.MobileTabBar-tab i { font-size: 1.1rem; }

.MobileTabBar-tab.is-active,
.MobileTabBar-tab:hover {
  color: var(--accent);
  background: color-mix(in oklch, var(--accent), transparent 90%);
}

@media (max-width: 767px) {
  .MobileTabBar { display: flex; }
  body { padding-bottom: 56px; }
}

/* =============================================
   HERO SECTION
   ============================================= */
.PageHero {
  position: relative;
  background: var(--primary);
  overflow: hidden;
  padding: var(--sp-20) 0 var(--sp-16);
}

.PageHero-cutout {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--surface);
  clip-path: ellipse(60% 100% at 50% 100%);
  z-index: 2;
}

.PageHero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  text-align: center;
}

.PageHero-heading {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: white;
  margin-bottom: var(--sp-4);
  letter-spacing: -0.01em;
}

.PageHero-subheading {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: color-mix(in oklch, white, transparent 30%);
  max-width: 56ch;
  margin: 0 auto var(--sp-12);
}

.PageHero-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--sp-4);
  align-items: center;
  margin-bottom: var(--sp-10);
}

.PageHero-splitPanel {
  background: color-mix(in oklch, white, transparent 92%);
  border: 1px solid color-mix(in oklch, white, transparent 80%);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  text-align: left;
  backdrop-filter: blur(8px);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

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

.PageHero-splitPanel--before { border-top: 3px solid color-mix(in oklch, #ff6b6b, transparent 20%); }
.PageHero-splitPanel--after { border-top: 3px solid color-mix(in oklch, #6bffb8, transparent 20%); }

.PageHero-splitLabel {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: var(--sp-3);
}

.PageHero-splitImage {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--r-md);
  margin-bottom: var(--sp-4);
}

.PageHero-splitText {
  font-size: 0.9rem;
  color: color-mix(in oklch, white, transparent 25%);
  line-height: 1.6;
}

.PageHero-splitDivider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.PageHero-splitIcon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  box-shadow: var(--shadow-accent);
}

.PageHero-cta {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .PageHero-split {
    grid-template-columns: 1fr;
  }
  .PageHero-splitDivider {
    transform: rotate(90deg);
    margin: var(--sp-2) auto;
  }
}

/* =============================================
   CUTOUT REVEAL SECTION
   ============================================= */
.CutoutReveal {
  position: relative;
  margin: var(--sp-16) 0;
  min-height: 500px;
  overflow: hidden;
}

.CutoutReveal-bg {
  position: absolute;
  inset: 0;
}

.CutoutReveal-bgImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.CutoutReveal-layer {
  position: relative;
  background: var(--primary);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 55% 100%, 0 85%);
  min-height: 500px;
  display: flex;
  align-items: center;
}

.CutoutReveal-window {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 0 2000px var(--primary);
  clip-path: circle(50%);
  opacity: 0.92;
}

.CutoutReveal-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-20) var(--sp-6);
  max-width: 600px;
  padding-left: var(--sp-16);
}

@media (max-width: 768px) {
  .CutoutReveal-window { display: none; }
  .CutoutReveal-content { padding: var(--sp-12) var(--sp-6); max-width: 100%; }
  .CutoutReveal-layer { clip-path: polygon(0 0, 100% 0, 100% 92%, 50% 100%, 0 92%); }
}

/* =============================================
   BENTO GRID
   ============================================= */
.BentoSection {
  padding: var(--sp-20) 0;
  background: var(--surface);
}

.BentoGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--sp-4);
  margin-top: var(--sp-10);
}

.BentoCard {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  overflow: hidden;
}

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

.BentoCard--wide {
  grid-column: span 2;
}

.BentoCard--tall {
  grid-row: span 2;
}

.BentoCard--accent {
  background: var(--primary);
  border-color: var(--primary);
}

.BentoCard--accent .BentoCard-title,
.BentoCard--accent .BentoCard-body {
  color: color-mix(in oklch, white, transparent 10%);
}

.BentoCard--accent .BentoCard-icon {
  color: var(--accent-light);
}

.BentoCard-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: var(--sp-4);
}

.BentoCard-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: var(--sp-3);
  color: var(--text-primary);
}

.BentoCard-body {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.BentoCard-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--r-md);
  margin-top: var(--sp-4);
}

@media (max-width: 900px) {
  .BentoGrid { grid-template-columns: repeat(2, 1fr); }
  .BentoCard--wide { grid-column: span 2; }
  .BentoCard--tall { grid-row: span 1; }
}

@media (max-width: 560px) {
  .BentoGrid { grid-template-columns: 1fr; }
  .BentoCard--wide { grid-column: span 1; }
}

/* =============================================
   WHY SECTION
   ============================================= */
.WhySection {
  position: relative;
  background: var(--primary);
  padding: var(--sp-24) 0;
  overflow: hidden;
}

.WhySection-cutout {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--surface);
  clip-path: polygon(0 0, 100% 0, 100% 30%, 50% 100%, 0 30%);
}

.WhySection .SectionLabel { color: var(--accent-light); }
.WhySection .SectionHeading { color: white; }

.WhyGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}

.WhyCard {
  background: color-mix(in oklch, white, transparent 94%);
  border: 1px solid color-mix(in oklch, white, transparent 85%);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  transition: background var(--transition-slow), transform var(--transition-slow), box-shadow var(--transition-slow);
}

.WhyCard:hover {
  background: color-mix(in oklch, white, transparent 88%);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px color-mix(in oklch, black, transparent 70%);
}

.WhyCard-iconWrap {
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  margin-bottom: var(--sp-4);
  box-shadow: var(--shadow-accent);
  transition: transform var(--transition-base);
}

.WhyCard:hover .WhyCard-iconWrap { transform: rotate(-5deg) scale(1.05); }

.WhyCard-title {
  font-size: 1.15rem;
  color: white;
  margin-bottom: var(--sp-3);
}

.WhyCard-body {
  font-size: 0.875rem;
  color: color-mix(in oklch, white, transparent 30%);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .WhyGrid { grid-template-columns: 1fr; }
}

/* =============================================
   LAYER BREAK
   ============================================= */
.LayerBreak {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.LayerBreak-back {
  position: absolute;
  inset: 0;
}

.LayerBreak-backImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.LayerBreak-front {
  position: relative;
  background: color-mix(in oklch, var(--base-dark), transparent 15%);
  min-height: 480px;
  display: flex;
  align-items: center;
  clip-path: polygon(0 10%, 45% 0, 100% 10%, 100% 90%, 55% 100%, 0 90%);
}

.LayerBreak-cutCircle {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 0 1000px color-mix(in oklch, var(--base-dark), transparent 15%);
  pointer-events: none;
}

.LayerBreak-text {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-16) var(--sp-6);
  max-width: 580px;
}

@media (max-width: 768px) {
  .LayerBreak-front { clip-path: none; }
  .LayerBreak-cutCircle { display: none; }
}

/* =============================================
   FAQ SECTION
   ============================================= */
.FaqSection {
  padding: var(--sp-20) 0;
  background: var(--warm);
}

.FaqGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-10);
}

.FaqCard {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.FaqCard:hover { box-shadow: var(--shadow-md); }

.FaqCard-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-6);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--transition-base), background var(--transition-base);
  min-height: 44px;
}

.FaqCard-question:hover { background: var(--primary-faint); color: var(--accent); }

.FaqCard-icon {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--accent);
  transition: transform var(--transition-base);
}

.FaqCard.is-open .FaqCard-icon { transform: rotate(180deg); }

.FaqCard-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
  padding: 0 var(--sp-6);
}

.FaqCard.is-open .FaqCard-answer {
  max-height: 600px;
  padding: 0 var(--sp-6) var(--sp-6);
}

.FaqCard-answer p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
  padding-top: var(--sp-4);
}

@media (max-width: 640px) {
  .FaqGrid { grid-template-columns: 1fr; }
}

/* =============================================
   BACK TO TOP
   ============================================= */
.BackToTop {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 150;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-base), transform var(--transition-base), background var(--transition-base);
  pointer-events: none;
}

.BackToTop.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.BackToTop:hover { background: var(--accent-dark); }

@media (max-width: 767px) {
  .BackToTop { bottom: calc(56px + var(--sp-4)); }
}

/* =============================================
   SITE FOOTER
   ============================================= */
.SiteFooter {
  background: var(--primary);
  padding: var(--sp-16) 0 var(--sp-8);
}

.SiteFooter-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
  text-align: center;
}

.SiteFooter-logo img { opacity: 0.9; }

.SiteFooter-tagline {
  font-size: 0.9rem;
  color: color-mix(in oklch, white, transparent 40%);
  max-width: 40ch;
}

.SiteFooter-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-6);
  justify-content: center;
}

.SiteFooter-links a {
  font-size: 0.875rem;
  color: color-mix(in oklch, white, transparent 35%);
  transition: color var(--transition-base);
}

.SiteFooter-links a:hover { color: white; }

.SiteFooter-contact {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-6);
  justify-content: center;
  font-size: 0.85rem;
  color: color-mix(in oklch, white, transparent 40%);
}

.SiteFooter-contact i { color: var(--accent); margin-right: var(--sp-1); }

.SiteFooter-contact a {
  color: color-mix(in oklch, white, transparent 30%);
}

.SiteFooter-contact a:hover { color: white; }

.SiteFooter-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-4);
  justify-content: center;
  padding-top: var(--sp-4);
  border-top: 1px solid color-mix(in oklch, white, transparent 85%);
  width: 100%;
}

.SiteFooter-legal a {
  font-size: 0.78rem;
  color: color-mix(in oklch, white, transparent 55%);
}

.SiteFooter-legal a:hover { color: white; }

.SiteFooter-copy {
  font-size: 0.78rem;
  color: color-mix(in oklch, white, transparent 60%);
}

/* =============================================
   CURSOR TRAIL
   ============================================= */
.CursorTrail {
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: left 80ms linear, top 80ms linear, opacity var(--transition-slow);
  box-shadow: 0 0 12px var(--accent), 0 0 24px color-mix(in oklch, var(--accent), transparent 60%);
}

@media (hover: none) { .CursorTrail { display: none; } }

/* =============================================
   COOKIE CONSENT
   ============================================= */
.CookieLink {
  position: fixed;
  bottom: var(--sp-4);
  left: var(--sp-4);
  z-index: 300;
}

@media (max-width: 767px) {
  .CookieLink { bottom: calc(56px + var(--sp-3)); }
}

.CookieLink-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-2);
  border-radius: var(--r-sm);
  transition: color var(--transition-base), background var(--transition-base);
  min-height: 44px;
}

.CookieLink-btn:hover {
  color: var(--accent);
  background: var(--accent-faint);
}

.CookieLink-btn.is-pulsing {
  animation: cookiePulse 2s ease-in-out 3;
}

@keyframes cookiePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.CookieModal {
  position: fixed;
  inset: 0;
  background: color-mix(in oklch, black, transparent 50%);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
  backdrop-filter: blur(4px);
}

.CookieModal[hidden] { display: none; }

.CookieModal-box {
  background: var(--surface-card);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-xl);
}

.CookieModal-title {
  font-size: 1.5rem;
  margin-bottom: var(--sp-3);
}

.CookieModal-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: var(--sp-6);
}

.CookieModal-options {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.CookieModal-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) var(--sp-4);
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  gap: var(--sp-4);
}

.CookieModal-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

.CookieModal-badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--border);
  padding: 2px 8px;
  border-radius: var(--r-full);
}

.CookieModal-actions {
  display: flex;
  gap: var(--sp-3);
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* =============================================
   INNER HERO (sub-pages)
   ============================================= */
.InnerHero {
  position: relative;
  background: var(--primary);
  padding: var(--sp-20) 0 var(--sp-16);
  overflow: hidden;
  text-align: center;
}

.InnerHero-cutout {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--surface);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.InnerHero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.InnerHero-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: white;
  margin-bottom: var(--sp-4);
}

.InnerHero-sub {
  font-size: 1.05rem;
  color: color-mix(in oklch, white, transparent 30%);
  max-width: 56ch;
  margin: 0 auto;
}

/* =============================================
   TEAM PAGE
   ============================================= */
.TeamSection {
  padding: var(--sp-20) 0;
}

.TeamSection-intro {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-secondary);
  max-width: 72ch;
  margin: 0 auto var(--sp-16);
  text-align: center;
}

.TeamGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.TeamCard {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

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

.TeamCard-imageWrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.TeamCard-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.TeamCard:hover .TeamCard-image { transform: scale(1.04); }

.TeamCard-cutout {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--surface-card);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.TeamCard-body { padding: var(--sp-6); }

.TeamCard-name {
  font-size: 1.3rem;
  margin-bottom: var(--sp-1);
}

.TeamCard-role {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-4);
}

.TeamCard-bio {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .TeamGrid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .TeamGrid { grid-template-columns: 1fr; }
}

.TeamValues {
  position: relative;
  background: var(--warm);
  padding: var(--sp-20) 0;
  overflow: hidden;
}

.TeamValues-cutout {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--surface);
  clip-path: polygon(0 0, 100% 0, 75% 100%, 25% 100%);
}

.TeamValues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}

.TeamValues-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
}

.TeamValues-icon {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: var(--sp-4);
  display: block;
}

.TeamValues-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--sp-3);
}

.TeamValues-card p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .TeamValues-grid { grid-template-columns: 1fr; }
}

/* =============================================
   WHAT WE OFFER PAGE
   ============================================= */
.OfferSection { padding: var(--sp-20) 0; }

.OfferBlock {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--sp-12);
  align-items: start;
  padding: var(--sp-12) 0;
  border-bottom: 1px solid var(--border);
}

.OfferBlock:last-child { border-bottom: none; }

.OfferBlock--reverse { grid-template-columns: 1fr 200px; }
.OfferBlock--reverse .OfferBlock-visual { order: 2; }
.OfferBlock--reverse .OfferBlock-content { order: 1; }

.OfferBlock-iconLarge {
  width: 100px;
  height: 100px;
  background: var(--accent-faint);
  border: 2px solid var(--accent-light);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--accent);
  margin: 0 auto;
  transition: transform var(--transition-slow), background var(--transition-slow);
}

.OfferBlock:hover .OfferBlock-iconLarge {
  transform: rotate(8deg) scale(1.05);
  background: var(--accent);
  color: white;
}

.OfferBlock-title {
  font-size: 1.6rem;
  margin-bottom: var(--sp-4);
}

.OfferBlock-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--sp-4);
}

@media (max-width: 768px) {
  .OfferBlock,
  .OfferBlock--reverse {
    grid-template-columns: 1fr;
  }
  .OfferBlock--reverse .OfferBlock-visual,
  .OfferBlock--reverse .OfferBlock-content {
    order: unset;
  }
}

.OfferCallout {
  position: relative;
  background: var(--primary);
  padding: var(--sp-24) 0;
  overflow: hidden;
}

.OfferCallout-cutout {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--surface);
  clip-path: polygon(0 0, 100% 0, 60% 100%, 40% 100%);
}

.OfferCallout-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  text-align: center;
}

/* =============================================
   METHODOLOGY PAGE
   ============================================= */
.MethodSection { padding: var(--sp-16) 0 var(--sp-20); }

.MethodIntro {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-secondary);
  max-width: 72ch;
  margin: 0 auto var(--sp-16);
  text-align: center;
}

.MethodSteps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.MethodSteps::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), color-mix(in oklch, var(--accent), transparent 80%));
}

.MethodStep {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--sp-6);
  align-items: start;
  padding: var(--sp-8) 0;
  position: relative;
}

.MethodStep-number {
  width: 72px;
  height: 72px;
  background: var(--accent);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: var(--shadow-accent);
  position: relative;
  z-index: 1;
}

.MethodStep-title {
  font-size: 1.3rem;
  margin-bottom: var(--sp-3);
  padding-top: var(--sp-3);
}

.MethodStep-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

@media (max-width: 560px) {
  .MethodSteps::before { left: 24px; }
  .MethodStep { grid-template-columns: 48px 1fr; }
  .MethodStep-number { width: 48px; height: 48px; font-size: 1rem; }
}

.MethodCutout {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.MethodCutout-back {
  position: absolute;
  inset: 0;
  background: var(--warm);
}

.MethodCutout-layer {
  position: relative;
  background: var(--primary);
  clip-path: polygon(0 0, 100% 8%, 100% 92%, 0 100%);
  min-height: 400px;
  display: flex;
  align-items: center;
}

.MethodCutout-window {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  height: 240px;
  border-radius: 50%;
  box-shadow: 0 0 0 2000px var(--primary);
}

.MethodCutout-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-16) var(--sp-6) var(--sp-16) calc(var(--sp-16) + 180px);
}

@media (max-width: 768px) {
  .MethodCutout-window { display: none; }
  .MethodCutout-content { padding: var(--sp-12) var(--sp-6); }
  .MethodCutout-layer { clip-path: none; }
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.ContactSection { padding: var(--sp-16) 0 var(--sp-20); }

.ContactGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}

.ContactMap iframe {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.ContactMap-info {
  margin-top: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.ContactMap-info i { color: var(--accent); margin-right: var(--sp-2); }
.ContactMap-info a { color: var(--text-secondary); }
.ContactMap-info a:hover { color: var(--accent); }

.ContactFormWrap-title {
  font-size: 1.8rem;
  margin-bottom: var(--sp-6);
}

.ContactForm {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.ContactForm-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.ContactForm-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.ContactForm-input {
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--surface-card);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  min-height: 44px;
  width: 100%;
}

.ContactForm-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-faint);
}

.ContactForm-textarea { min-height: 140px; resize: vertical; }

.ContactForm-privacy { margin-top: var(--sp-2); }

.ContactForm-checkLabel {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.ContactForm-checkLabel input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.ContactForm-submit { margin-top: var(--sp-2); align-self: flex-start; }

@media (max-width: 768px) {
  .ContactGrid { grid-template-columns: 1fr; }
}

.OfficeSection {
  padding: var(--sp-16) 0 var(--sp-20);
  background: var(--warm);
}

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

.OfficeSection-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--sp-4);
}

.OfficeSection-img {
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 340px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .OfficeSection-inner { grid-template-columns: 1fr; }
}

/* =============================================
   THANKS PAGE
   ============================================= */
.ThanksPage { background: var(--primary); }

.ThanksMain {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: var(--sp-16) var(--sp-6);
}

.ThanksReveal {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-8);
}

.ThanksReveal-dot {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  animation: dotReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  box-shadow: var(--shadow-accent);
}

@keyframes dotReveal {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.ThanksReveal-heading {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: white;
  animation: fadeInUp 0.7s ease 0.5s both;
}

.ThanksReveal-link {
  color: var(--accent-light);
  font-size: 0.95rem;
  font-weight: 500;
  animation: fadeInUp 0.7s ease 1s both;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  transition: gap var(--transition-base), color var(--transition-base);
}

.ThanksReveal-link:hover {
  color: white;
  gap: var(--sp-4);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.LegalPage {
  padding: var(--sp-20) 0;
}

.LegalPage-header {
  margin-bottom: var(--sp-12);
  padding-bottom: var(--sp-8);
  border-bottom: 2px solid var(--border);
}

.LegalPage-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--sp-3);
}

.LegalPage-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
}

.LegalPage-intro {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 76ch;
}

.LegalSection {
  margin-bottom: var(--sp-10);
}

.LegalSection h2 {
  font-size: 1.3rem;
  margin-bottom: var(--sp-4);
  color: var(--text-primary);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--border);
}

.LegalSection p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: var(--sp-4);
}

.LegalSection a { color: var(--accent); }
.LegalSection a:hover { color: var(--accent-dark); }

.LegalTable {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-4) 0 var(--sp-6);
  font-size: 0.85rem;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.LegalTable th {
  background: var(--primary);
  color: white;
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.LegalTable td {
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: top;
}

.LegalTable tr:last-child td { border-bottom: none; }

.LegalTable tr:nth-child(even) td {
  background: var(--primary-faint);
}

.LegalTable code {
  background: var(--warm-dark);
  padding: 2px 6px;
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  font-family: monospace;
}

.LegalDL {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-3) var(--sp-6);
  font-size: 0.9rem;
  margin: var(--sp-4) 0;
}

.LegalDL dt {
  font-weight: 600;
  color: var(--text-primary);
  padding-top: var(--sp-1);
}

.LegalDL dd {
  color: var(--text-secondary);
  line-height: 1.7;
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
}

.LegalDL dd:last-child { border-bottom: none; }

@media (max-width: 640px) {
  .LegalDL { grid-template-columns: 1fr; }
  .LegalTable { display: block; overflow-x: auto; }
}

/* =============================================
   TIPPY CUSTOM THEME
   ============================================= */
.tippy-box[data-theme~='custom'] {
  background: var(--primary);
  color: color-mix(in oklch, white, transparent 10%);
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  line-height: 1.6;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  max-width: 260px;
  padding: 2px;
}

.tippy-box[data-theme~='custom'] .tippy-arrow { color: var(--primary); }

/* =============================================
   AOS OVERRIDES
   ============================================= */
[data-aos] { transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }