@import url('https://fonts.googleapis.com/css2?family=Literata:opsz,wght@7..72,400;7..72,600;7..72,700&family=Figtree:wght@400;500;600&display=swap');

/* =============================================
   CUSTOM PROPERTIES & COLOR SYSTEM
   ============================================= */
:root {
  --primary: #2C4A6E;
  --secondary: #4E8098;
  --accent: #E07A5F;

  --primary-light: color-mix(in oklch, var(--primary), white 40%);
  --primary-xlight: color-mix(in oklch, var(--primary), white 75%);
  --primary-dark: color-mix(in oklch, var(--primary), black 25%);
  --secondary-light: color-mix(in oklch, var(--secondary), white 50%);
  --secondary-xlight: color-mix(in oklch, var(--secondary), white 80%);
  --accent-light: color-mix(in oklch, var(--accent), white 40%);
  --accent-dark: color-mix(in oklch, var(--accent), black 20%);

  --bg: #F7F5F2;
  --bg-alt: color-mix(in oklch, var(--primary), white 92%);
  --bg-dark: #1A2E45;
  --bg-darker: color-mix(in oklch, var(--bg-dark), black 20%);

  --txt: #1E2D3D;
  --txt-muted: color-mix(in oklch, var(--txt), white 40%);
  --txt-light: color-mix(in oklch, var(--txt), white 70%);

  --border: color-mix(in oklch, var(--primary), white 80%);
  --border-strong: color-mix(in oklch, var(--primary), white 60%);

  --shadow-sm: 0 1px 3px color-mix(in oklch, var(--primary), transparent 85%),
               0 2px 6px color-mix(in oklch, var(--primary), transparent 90%);
  --shadow-md: 0 4px 12px color-mix(in oklch, var(--primary), transparent 80%),
               0 8px 24px color-mix(in oklch, var(--primary), transparent 88%);
  --shadow-lg: 0 8px 24px color-mix(in oklch, var(--primary), transparent 75%),
               0 16px 48px color-mix(in oklch, var(--primary), transparent 85%);
  --shadow-accent: 0 4px 16px color-mix(in oklch, var(--accent), transparent 60%);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --hdr-h: 72px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 9rem;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Figtree', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--txt);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main { flex: 1; }

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

a { color: var(--primary); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--accent); }

ul { list-style: none; }

button { cursor: pointer; font-family: inherit; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: 'Literata', Georgia, serif;
  line-height: 1.25;
  color: var(--txt);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }

p { margin-bottom: 1.25rem; color: var(--txt-muted); }
p:last-child { margin-bottom: 0; }

/* =============================================
   LAYOUT CONTAINERS
   ============================================= */
.container-narrow {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-wide {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* =============================================
   SECTION BASE
   ============================================= */
.sec {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  position: relative;
}

.sec-eyebrow {
  font-family: 'Figtree', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.sec-title {
  font-family: 'Literata', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.sec-title.light { color: #fff; }

.sec-lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--txt-muted);
  margin-bottom: 1.5rem;
}

.sec-lead.light { color: rgba(255,255,255,0.85); }

.sec-body { color: var(--txt-muted); }

/* =============================================
   HEADER & FLIP MENU
   ============================================= */
.flip-hdr-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--hdr-h);
  perspective: 1200px;
}

.hdr {
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  backface-visibility: hidden;
  transform-origin: top center;
}

.hdr.scrolled {
  background: rgba(247, 245, 242, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.hdr-inner {
  display: flex;
  align-items: center;
  height: var(--hdr-h);
  padding: 0 2rem;
  gap: 2rem;
}

.hdr-logo { flex-shrink: 0; }
.hdr-logo img { height: 36px; width: auto; }

.hdr-nav { margin-left: auto; }

.hdr-nav ul {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav-lnk {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--txt);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-lnk:hover { color: var(--accent); background: color-mix(in oklch, var(--accent), transparent 92%); }
.nav-lnk.active { color: var(--accent); }

.hdr-cta {
  margin-left: 1rem;
  flex-shrink: 0;
  font-size: 0.9rem;
  padding: 0.6rem 1.25rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 0.5rem;
  margin-left: auto;
  border-radius: var(--radius-sm);
}

.hamburger .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s;
}


.hdr-back {
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  transform: rotateX(180deg) translateY(-100%);
  backface-visibility: hidden;
  transform-origin: top center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-hdr-wrap.flipped {
  height: auto;
  min-height: var(--hdr-h);
}

.flip-hdr-wrap.flipped .hdr {
  transform: rotateX(-90deg);
  opacity: 0;
  pointer-events: none;
}

.flip-hdr-wrap.flipped .hdr-back {
  position: relative;
  transform: rotateX(0deg) translateY(0);
  opacity: 1;
  pointer-events: all;
  min-height: var(--hdr-h);
  height: auto;
  padding: 1.5rem 2rem;
}

.hdr-back-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hdr-back-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: block;
  transition: color 0.2s ease;
}

.hdr-back-nav a:hover { color: var(--accent-light); }

.hdr-back-close {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hdr-back-close:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* =============================================
   HERO SECTION – SPLIT DIAGONAL
   ============================================= */
.hero {
  min-height: 100vh;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

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

.hero-img-side {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-color-side {
  position: absolute;
  inset: 0;
  background: var(--primary-dark);
  clip-path: polygon(0 0, 58% 0, 42% 100%, 0 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--hdr-h) + 3rem) 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  max-width: 500px;
}

.hero-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
  background: rgba(255,255,255,0.08);
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
}

.hero-h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid var(--accent);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: var(--shadow-accent);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in oklch, var(--accent), transparent 50%);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(255,255,255,0.9);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--primary);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid var(--primary);
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--primary-dark);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid #fff;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-light:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.btn-large { padding: 1rem 2.25rem; font-size: 1.0625rem; }

.lnk-inline {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: color-mix(in oklch, var(--accent), transparent 60%);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease, color 0.2s ease;
}

.lnk-inline:hover {
  color: var(--accent-dark);
  text-decoration-color: var(--accent-dark);
}

/* =============================================
   CUTOUT LAYERS DESIGN
   ============================================= */
.cutout-sec { position: relative; overflow: hidden; }

.cutout-layer {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.cutout-circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--secondary), transparent 88%);
  top: -80px;
  right: -100px;
}

.cutout-arch {
  width: 360px;
  height: 480px;
  background: color-mix(in oklch, var(--accent), transparent 90%);
  border-radius: 180px 180px 0 0;
  bottom: -120px;
  left: -80px;
}

.cutout-small-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--accent), transparent 85%);
  top: -40px;
  left: -40px;
}

.cutout-rect-right {
  width: 280px;
  height: 280px;
  background: color-mix(in oklch, var(--primary), transparent 88%);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  bottom: -60px;
  right: -60px;
}


.sec-cutout-reveal {
  padding: 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.cutout-wrap {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cutout-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cutout-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cutout-fg-layer {
  position: absolute;
  inset: 0;
  background: var(--primary-dark);
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.cutout-shape-diamond {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  background: transparent;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  box-shadow: none;
  overflow: hidden;
}

.cutout-fg-layer::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%) rotate(0deg);
  width: 340px;
  height: 340px;
  background: transparent;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  mix-blend-mode: normal;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.15);
}

.cutout-content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) 1.5rem;
  max-width: 560px;
}

/* =============================================
   INTRO SECTION
   ============================================= */
.sec-intro {
  background: var(--bg-alt);
  text-align: center;
}

.intro-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* =============================================
   PILLARS GRID
   ============================================= */
.sec-pillars { background: var(--bg); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 0 1.5rem;
}

.crd-pillar {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.crd-pillar header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.crd-ico {
  width: 52px;
  height: 52px;
  background: color-mix(in oklch, var(--accent), transparent 88%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.crd-pillar:hover .crd-ico {
  background: var(--accent);
  color: #fff;
}

.crd-pillar header h3 { margin: 0; font-size: 1.1rem; }

.crd-txt { color: var(--txt-muted); font-size: 0.9375rem; margin: 0; }

/* =============================================
   CTA SPLIT
   ============================================= */
.sec-cta-split {
  background: var(--bg-alt);
}

.cta-split-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-split-text .sec-title { margin-bottom: 1rem; }
.cta-split-text p { color: var(--txt-muted); }

.cta-split-action {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.cta-sub { font-size: 0.9rem; color: var(--txt-muted); margin: 0; }

/* =============================================
   COMPARISON TABLE
   ============================================= */
.sec-compare { background: var(--bg); }
.sec-compare .container-narrow { margin-bottom: 2.5rem; }

.tbl-wrap { overflow-x: auto; }

.compare-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.compare-tbl thead tr {
  background: var(--primary-dark);
  color: #fff;
}

.compare-tbl th {
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-family: 'Literata', serif;
  font-weight: 600;
  font-size: 1rem;
}

.compare-tbl th:first-child { text-align: left; }

.compare-tbl td {
  padding: 1rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--txt-muted);
}

.compare-tbl td:first-child { text-align: left; color: var(--txt); font-weight: 500; }

.compare-tbl tbody tr:last-child td { border-bottom: none; }

.compare-tbl tbody tr:nth-child(even) { background: var(--bg-alt); }

.compare-tbl tbody tr:hover { background: color-mix(in oklch, var(--secondary), transparent 93%); }

.tbl-recommended {
  background: color-mix(in oklch, var(--accent), transparent 92%) !important;
  position: relative;
}

thead .tbl-recommended {
  background: var(--accent) !important;
}

.rec-badge {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255,255,255,0.25);
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  margin-top: 0.375rem;
}

.tbl-yes { color: #2E7D32; font-size: 1.1rem; }
.tbl-no { color: color-mix(in oklch, var(--txt), transparent 60%); font-size: 1.1rem; }

/* =============================================
   SPLIDE CAROUSEL
   ============================================= */
.sec-modules { background: var(--bg-alt); }
.sec-modules .container-narrow { margin-bottom: 2.5rem; }

.splide-wrap { padding: 0 1.5rem 1rem; }

.crd-slide {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crd-slide:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.crd-slide header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.slide-num {
  font-family: 'Literata', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}

.crd-slide header h3 { font-size: 1.05rem; color: var(--txt); }

.crd-slide .crd-txt { flex: 1; font-size: 0.9rem; margin-bottom: 1rem; }

.slide-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-top: auto;
}

.splide__pagination__page.is-active { background: var(--accent); }
.splide__arrow { background: var(--primary-dark); color: #fff; }
.splide__arrow svg { fill: #fff; }
.splide__arrow:hover { background: var(--accent); }

/* =============================================
   ABOUT PREVIEW
   ============================================= */
.sec-about-prev { background: var(--bg); }

.about-prev-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-prev-img { position: relative; }

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-prev-text { position: relative; z-index: 1; }
.about-prev-text p { margin-bottom: 1.25rem; }

/* =============================================
   INNER HERO
   ============================================= */
.inner-hero {
  background: var(--bg-dark);
  padding-top: calc(var(--hdr-h) + 4rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--secondary), transparent 80%);
  pointer-events: none;
}

.inner-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--accent), transparent 85%);
  pointer-events: none;
}

.inner-h1 { color: #fff; margin-bottom: 1rem; position: relative; z-index: 1; }

.inner-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.0625rem;
  margin: 0;
  position: relative;
  z-index: 1;
}

.legal-date {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin-top: 0.75rem;
  position: relative;
  z-index: 1;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.breadcrumb ol {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb li + li::before {
  content: '/';
  margin-right: 0.5rem;
  color: rgba(255,255,255,0.3);
}

.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb [aria-current="page"] { color: var(--accent-light); }

/* =============================================
   STORY PAGE
   ============================================= */
.sec-story { background: var(--bg); }

.story-img-wrap {
  margin-bottom: 3rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.story-callout {
  background: var(--primary-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.story-quote {
  position: relative;
  z-index: 1;
}

.story-quote p {
  font-family: 'Literata', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin: 0;
}

.story-cta-block {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* =============================================
   MODULE DETAIL PAGE
   ============================================= */
.sec-structure { background: var(--bg); }
.sec-modules-detail { background: var(--bg-alt); }

.modules-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.crd-module {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crd-module:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.crd-module header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.module-num {
  font-family: 'Literata', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border-strong);
  line-height: 1;
  flex-shrink: 0;
  min-width: 3rem;
}

.crd-module header h3 { margin: 0; padding-top: 0.25rem; }

.module-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.module-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--txt-muted);
}

.module-meta i { color: var(--secondary); }

.sec-access { background: var(--primary-dark); }
.sec-access .sec-title { color: #fff; }
.sec-access p { color: rgba(255,255,255,0.8); }

/* =============================================
   ROUTINE PAGE
   ============================================= */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.crd-step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.crd-step:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }

.crd-step header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.875rem;
}

.step-ico {
  width: 44px;
  height: 44px;
  background: color-mix(in oklch, var(--accent), transparent 88%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s;
}

.crd-step:hover .step-ico { background: var(--accent); color: #fff; }

.crd-step header h3 { margin: 0; font-size: 1.05rem; }

.sec-routine-img { background: var(--bg-alt); }

.routine-img-wrap {
  margin-bottom: 3rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.routine-img { width: 100%; height: 380px; object-fit: cover; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.crd-faq {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease;
}

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

.crd-faq header { margin-bottom: 0.75rem; }
.crd-faq header h3 { font-size: 1rem; color: var(--primary); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.sec-contact-mission { background: var(--bg); text-align: center; padding-bottom: 0; }

.mission-quote {
  border-left: none;
  padding: 2.5rem;
  background: var(--primary-dark);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.mission-quote::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 1rem;
  font-family: 'Literata', serif;
  font-size: 8rem;
  color: rgba(255,255,255,0.06);
  line-height: 1;
}

.mission-quote p {
  font-family: 'Literata', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

.sec-contact-grid { background: var(--bg); }

.contact-grid-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}


.frm-contact fieldset {
  border: none;
  margin-bottom: 1.5rem;
}

.frm-contact legend {
  font-family: 'Literata', serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--txt);
  margin-bottom: 1.25rem;
  padding: 0;
}

.frm-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.frm-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--txt);
}

.frm-field input,
.frm-field select,
.frm-field textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: 'Figtree', sans-serif;
  font-size: 0.9375rem;
  color: var(--txt);
  background: var(--bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  appearance: none;
}

.frm-field input:focus,
.frm-field select:focus,
.frm-field textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--secondary), transparent 80%);
}

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

.frm-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%232C4A6E' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.frm-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--txt-muted);
}

.frm-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--accent);
}

.privacy-group { border: none; margin-bottom: 1.5rem; }

.contact-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-item i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 20px;
}

.contact-info-item div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-info-item strong {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--txt-muted);
}

.contact-info-item a,
.contact-info-item span { color: var(--txt); font-size: 0.9375rem; }

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

/* =============================================
   THANKS PAGE
   ============================================= */
.thanks-main { display: flex; align-items: center; justify-content: center; }

.thanks-sec { flex: 1; display: flex; align-items: center; justify-content: center; }

.thanks-inner {
  text-align: center;
  max-width: 560px;
  padding: 4rem 2rem;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.thanks-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.thanks-text { color: var(--txt-muted); margin-bottom: 1rem; }

.thanks-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.sec-legal { background: var(--bg); }

.legal-body h2 {
  font-size: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.legal-body p { margin-bottom: 1.25rem; }

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

.legal-body code {
  background: var(--bg-alt);
  padding: 0.2em 0.5em;
  border-radius: 4px;
  font-size: 0.875em;
  color: var(--primary);
}

/* =============================================
   FOOTER
   ============================================= */
.ftr {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.8);
  margin-top: auto;
}

.ftr-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  padding: 5rem 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ftr-cta-title {
  font-family: 'Literata', serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.ftr-cta-sub { color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; font-size: 0.9375rem; }

.frm-ftr .frm-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.frm-inp {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: 'Figtree', sans-serif;
  font-size: 0.9375rem;
  transition: border-color 0.2s ease;
  min-width: 0;
}

.frm-inp::placeholder { color: rgba(255,255,255,0.4); }
.frm-inp:focus { outline: none; border-color: var(--accent-light); }

.frm-note { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.frm-note a { color: rgba(255,255,255,0.6); }
.frm-note a:hover { color: var(--accent-light); }

.ftr-links-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ftr-links-title {
  font-family: 'Figtree', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.ftr-links-group ul li { margin-bottom: 0.625rem; }

.ftr-links-group a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.ftr-links-group a:hover { color: var(--accent-light); }

.ftr-links-group address {
  font-style: normal;
}

.ftr-links-group address p {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.ftr-links-group address a {
  color: rgba(255,255,255,0.65);
}

.ftr-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
}

.ftr-bottom small { color: rgba(255,255,255,0.4); font-size: 0.8125rem; }
.ftr-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.ftr-bottom a:hover { color: var(--accent-light); }

/* =============================================
   COOKIE CONSENT MODAL
   ============================================= */
.ck-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 46, 69, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: opacity 0.3s ease;
}

.ck-overlay[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}

.ck-modal {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.ck-overlay[aria-hidden="true"] .ck-modal { transform: translateY(20px); }

.ck-title {
  font-family: 'Literata', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 0.75rem;
}

.ck-desc { color: var(--txt-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }

.ck-cats {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
}

.ck-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.ck-cat-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ck-cat-info strong { font-size: 0.9rem; color: var(--txt); }
.ck-cat-info span { font-size: 0.8rem; color: var(--txt-muted); }

.ck-cat input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--accent);
}

.ck-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.ck-btn { flex: 1; min-width: 120px; justify-content: center; }

.ck-legal {
  color: var(--txt-muted);
  font-size: 0.8rem;
  display: block;
  text-align: center;
}

.ck-legal a { color: var(--accent); }

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="hero"] {
  opacity: 1;
  transform: none;
}

/* =============================================
   RESPONSIVE – TABLET
   ============================================= */
@media (max-width: 1024px) {
  .hdr-nav { display: none; }
  .hdr-cta { display: none; }
  .hamburger { display: flex; }

  .about-prev-inner { grid-template-columns: 1fr; }
  .about-prev-img { max-width: 480px; margin: 0 auto; }
  .about-img { aspect-ratio: 16/9; }

  .contact-grid-inner { grid-template-columns: 1fr; }

  .ftr-links-col { grid-template-columns: repeat(2, 1fr); }

  .cta-split-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --space-xl: 4rem; }

  .hero-color-side {
    clip-path: polygon(0 0, 100% 0, 100% 55%, 0 70%);
  }

  .hero-content { padding-top: calc(var(--hdr-h) + 2rem); }

  .hero-text { max-width: 100%; }

  .hero-h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }

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

  .ftr-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ftr-links-col { grid-template-columns: repeat(2, 1fr); }

  .frm-row { flex-direction: column; }
  .frm-row .btn-primary { width: 100%; }

  .story-img { height: 260px; }

  .compare-tbl { font-size: 0.875rem; }
  .compare-tbl th, .compare-tbl td { padding: 0.875rem 0.75rem; }

  .cutout-content { max-width: 100%; }

  .ck-actions { flex-direction: column; }
  .ck-btn { flex: none; width: 100%; }
}

@media (max-width: 480px) {
  :root { --space-xl: 3rem; }

  .hdr-inner { padding: 0 1rem; }

  .hero-content { padding-left: 1rem; padding-right: 1rem; }

  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; justify-content: center; }

  .ftr-inner { padding: 3rem 1rem 2rem; }
  .ftr-bottom { padding: 1.25rem 1rem; flex-direction: column; text-align: center; }

  .ftr-links-col { grid-template-columns: 1fr; }

  .story-cta-block { flex-direction: column; }

  .ck-modal { padding: 1.75rem 1.25rem; }

  .crd-module header { flex-direction: column; gap: 0.75rem; }

  .sec-title { font-size: clamp(1.3rem, 5vw, 1.75rem); }

  .thanks-inner { padding: 3rem 1rem; }

  .container-narrow, .container-wide { padding-left: 1rem; padding-right: 1rem; }

  .contact-grid-inner { gap: 2rem; }
}