/* ============================================================
   ZUNOBU HADAGU — STYLE.CSS  (continued / complete version)
   Maximalist Color concept | Commissioner typeface
   ============================================================ */


:root {
  --c-ink:        #1a1a2e;
  --c-ink-soft:   #2d2d44;
  --c-paper:      #f5f3ee;
  --c-paper-warm: #faf8f3;

  --c-violet:     #4f2d8a;
  --c-violet-lt:  #7b52c1;
  --c-citrine:    #e8c832;
  --c-citrine-dk: #c9ab1a;
  --c-coral:      #e84545;
  --c-coral-lt:   #f07070;
  --c-emerald:    #1a7a5e;
  --c-emerald-lt: #2da882;
  --c-amber:      #f5841e;
  --c-amber-lt:   #f9a94e;

  --c-white:      #ffffff;
  --c-grey-1:     #f0eee8;
  --c-grey-2:     #d8d4cc;
  --c-grey-3:     #9a9590;
  --c-grey-4:     #5a5650;

  --shadow-sm:   0 2px 8px rgba(26,26,46,0.10), 0 1px 3px rgba(26,26,46,0.06);
  --shadow-md:   0 6px 24px rgba(26,26,46,0.14), 0 2px 8px rgba(26,26,46,0.08);
  --shadow-lg:   0 16px 48px rgba(26,26,46,0.18), 0 4px 16px rgba(26,26,46,0.10);
  --shadow-xl:   0 32px 80px rgba(26,26,46,0.22), 0 8px 24px rgba(26,26,46,0.12);
  --shadow-color-violet:  0 8px 32px rgba(79,45,138,0.35);
  --shadow-color-coral:   0 8px 32px rgba(232,69,69,0.30);
  --shadow-color-emerald: 0 8px 32px rgba(26,122,94,0.30);

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

  --r-sm:   4px;
  --r-md:   10px;
  --r-lg:   18px;
  --r-xl:   28px;
  --r-pill: 999px;

  --t-fast:   150ms ease;
  --t-base:   250ms ease;
  --t-slow:   400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  --font-main: 'Commissioner', sans-serif;
  --lh-tight:  1.15;
  --lh-base:   1.65;
  --lh-loose:  1.8;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background-color: var(--c-paper);
  color: var(--c-ink);
  line-height: var(--lh-base);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: var(--font-main); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font-main); }


.c-cookie-bar {
  background: var(--c-ink);
  color: var(--c-paper);
  width: 100%;
  z-index: 1000;
  overflow: hidden;
}
.c-cookie-bar.is-hidden {
  max-height: 0 !important;
  opacity: 0;
  padding: 0;
  pointer-events: none;
}
.c-cookie-bar__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-3) var(--sp-6);
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.c-cookie-bar__text {
  font-size: 0.8rem;
  flex: 1;
  min-width: 200px;
  opacity: 0.9;
}
.c-cookie-bar__text a {
  text-decoration: underline;
  opacity: 0.8;
  transition: opacity var(--t-fast);
}
.c-cookie-bar__text a:hover { opacity: 1; }
.c-cookie-bar__actions { display: flex; gap: var(--sp-2); }
.c-cookie-bar__btn {
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  transition: all var(--t-base);
  min-height: 32px;
  cursor: pointer;
  border: none;
}
.c-cookie-bar__btn--accept {
  background: var(--c-citrine);
  color: var(--c-ink);
}
.c-cookie-bar__btn--accept:hover {
  background: var(--c-citrine-dk);
  transform: translateY(-1px);
}
.c-cookie-bar__btn--decline {
  background: transparent;
  color: var(--c-paper);
  border: 1px solid rgba(255,255,255,0.3);
}
.c-cookie-bar__btn--decline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}


.c-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(26,26,46,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(-100%);
  transition: transform var(--t-slow);
  box-shadow: 0 2px 24px rgba(26,26,46,0.28);
}
.c-nav.is-visible,
.c-nav.c-nav--visible {
  transform: translateY(0);
}
.c-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-8);
  max-width: 1400px;
  margin: 0 auto;
}
.c-nav__logo { display: flex; align-items: center; }
.c-nav__links {
  display: flex;
  gap: var(--sp-8);
  align-items: center;
}
.c-nav__link {
  color: rgba(245,243,238,0.72);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--t-base);
  position: relative;
  padding-bottom: 3px;
}
.c-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--c-citrine);
  transform: scaleX(0);
  transition: transform var(--t-base);
  transform-origin: left;
  border-radius: 2px;
}
.c-nav__link:hover { color: var(--c-paper); }
.c-nav__link:hover::after,
.c-nav__link.is-active::after { transform: scaleX(1); }
.c-nav__link.is-active { color: var(--c-paper); }
.c-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.c-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-paper);
  border-radius: 2px;
  transition: all var(--t-base);
}


.c-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: flex;
  transform: translateX(-100%);
  transition: transform var(--t-slow);
  pointer-events: none;
}
.c-mobile-menu.is-open {
  transform: translateX(0);
  pointer-events: all;
}
.c-mobile-menu__left {
  width: 55%;
  background: var(--c-violet);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-y: auto;
}
.c-mobile-menu__right {
  width: 45%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.c-mobile-menu__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.c-mobile-menu__tagline {
  position: absolute;
  bottom: var(--sp-8);
  left: var(--sp-6);
  color: var(--c-white);
  font-size: 1rem;
  font-weight: 700;
  background: rgba(26,26,46,0.72);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-sm);
  backdrop-filter: blur(4px);
}
.c-mobile-menu__close {
  color: var(--c-paper);
  font-size: 1.4rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  margin-bottom: var(--sp-10);
  transition: opacity var(--t-base), transform var(--t-base);
  align-self: flex-start;
}
.c-mobile-menu__close:hover { opacity: 0.7; transform: rotate(90deg); }
.c-mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.c-mobile-menu__link {
  color: rgba(245,243,238,0.72);
  font-size: clamp(1.3rem, 4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color var(--t-base), transform var(--t-base), padding-left var(--t-base);
  display: block;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.c-mobile-menu__link:hover {
  color: var(--c-citrine);
  padding-left: var(--sp-3);
}
.c-mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.52);
  z-index: 940;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-slow);
}
.c-mobile-menu__overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}


.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--t-base);
  min-height: 48px;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}
.c-btn--primary {
  background: var(--c-violet);
  color: var(--c-white);
  box-shadow: var(--shadow-color-violet);
}
.c-btn--primary:hover {
  background: var(--c-violet-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(79,45,138,0.45);
}
.c-btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-ink);
}
.c-btn--ghost:hover {
  background: var(--c-ink);
  color: var(--c-paper);
  transform: translateY(-2px);
}
.c-btn--dark {
  background: var(--c-ink);
  color: var(--c-paper);
  border-color: transparent;
}
.c-btn--dark:hover {
  background: var(--c-ink-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.c-btn--white {
  background: var(--c-white);
  color: var(--c-violet);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.c-btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}


.s-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--c-ink);
  overflow: hidden;
  position: relative;
}
.s-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-32) var(--sp-12) var(--sp-16) clamp(var(--sp-8), 6vw, var(--sp-24));
  position: relative;
  z-index: 2;
}
.s-hero__label {
  display: inline-block;
  background: var(--c-citrine);
  color: var(--c-ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-sm);
  margin-bottom: var(--sp-6);
  width: fit-content;
}
.s-hero__heading {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: var(--lh-tight);
  color: var(--c-paper);
  letter-spacing: -0.035em;
  margin-bottom: var(--sp-6);
}
.s-hero__heading em {
  font-style: normal;
  color: var(--c-citrine);
}
.s-hero__sub {
  font-size: clamp(0.92rem, 1.4vw, 1.08rem);
  color: rgba(245,243,238,0.68);
  max-width: 48ch;
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-10);
}
.s-hero__cta-row {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
}
.s-hero__stats {
  display: flex;
  gap: var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(245,243,238,0.12);
}
.s-hero__stat { display: flex; flex-direction: column; gap: var(--sp-1); }
.s-hero__stat-num {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--c-citrine);
  line-height: 1;
  letter-spacing: -0.03em;
}
.s-hero__stat-label {
  font-size: 0.72rem;
  color: rgba(245,243,238,0.48);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.s-hero__visual {
  position: relative;
  overflow: hidden;
}
.s-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.72) saturate(0.82);
  transition: filter var(--t-slow);
}
.s-hero:hover .s-hero__img {
  filter: brightness(0.78) saturate(0.88);
}
.c-accent-card {
  position: absolute;
  bottom: var(--sp-16);
  left: -2rem;
  background: var(--c-violet);
  color: var(--c-white);
  padding: var(--sp-5) var(--sp-6);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl), var(--shadow-color-violet);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 5;
  border: 2px solid rgba(255,255,255,0.14);
}
.c-accent-card__icon {
  font-size: 1.2rem;
  color: var(--c-citrine);
}


.s-topics {
  background: var(--c-paper);
  padding: var(--sp-24) clamp(var(--sp-6), 6vw, var(--sp-24));
}
.s-topics__intro {
  max-width: 680px;
  margin-bottom: var(--sp-16);
}
.s-topics__heading {
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: var(--lh-tight);
  color: var(--c-ink);
  margin-bottom: var(--sp-4);
}
.s-topics__sub {
  color: var(--c-grey-4);
  font-size: 1.05rem;
  line-height: var(--lh-loose);
}
.s-topics__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-6);
}
.c-topic-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--sp-10) var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-grey-1);
}
.c-topic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.c-topic-card--crawl::before { background: var(--c-violet); }
.c-topic-card--index::before { background: var(--c-coral); }
.c-topic-card--rank::before  { background: var(--c-emerald); }
.c-topic-card--eeat::before  { background: var(--c-amber); }
.c-topic-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}
.c-topic-card__num {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--c-grey-1);
  line-height: 1;
  margin-bottom: var(--sp-3);
  letter-spacing: -0.05em;
}
.c-topic-card__icon {
  font-size: 1.5rem;
  margin-bottom: var(--sp-4);
}
.c-topic-card--crawl .c-topic-card__icon { color: var(--c-violet); }
.c-topic-card--index .c-topic-card__icon { color: var(--c-coral); }
.c-topic-card--rank .c-topic-card__icon  { color: var(--c-emerald); }
.c-topic-card--eeat .c-topic-card__icon  { color: var(--c-amber); }
.c-topic-card__title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: var(--sp-3);
  letter-spacing: -0.025em;
  color: var(--c-ink);
}
.c-topic-card__body {
  font-size: 0.87rem;
  color: var(--c-grey-4);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-6);
}
.c-topic-card__link {
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  transition: gap var(--t-base), color var(--t-base);
}
.c-topic-card--crawl .c-topic-card__link { color: var(--c-violet); }
.c-topic-card--index .c-topic-card__link { color: var(--c-coral); }
.c-topic-card--rank .c-topic-card__link  { color: var(--c-emerald); }
.c-topic-card--eeat .c-topic-card__link  { color: var(--c-amber); }
.c-topic-card__link:hover { gap: var(--sp-4); }


.s-about {
  background: var(--c-violet);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  overflow: hidden;
}
.s-about__image-col {
  position: relative;
  overflow: hidden;
}
.s-about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) saturate(0.88);
}
.c-floating-stat {
  position: absolute;
  top: var(--sp-12);
  right: -1rem;
  background: var(--c-citrine);
  color: var(--c-ink);
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  text-align: center;
  z-index: 5;
}
.c-floating-stat__num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
.c-floating-stat__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.s-about__content {
  padding: var(--sp-24) clamp(var(--sp-8), 5vw, var(--sp-20));
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--c-paper);
}
.s-about__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-citrine);
  margin-bottom: var(--sp-5);
}
.s-about__heading {
  font-size: clamp(1.6rem, 2.8vw, 2.7rem);
  font-weight: 800;
  line-height: var(--lh-tight);
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-8);
  max-width: 24ch;
}
.s-about__body {
  font-size: 0.94rem;
  line-height: var(--lh-loose);
  color: rgba(245,243,238,0.78);
  max-width: 52ch;
  margin-bottom: var(--sp-5);
}
.s-about__body:last-of-type { margin-bottom: var(--sp-10); }


.s-updates {
  background: var(--c-citrine);
  padding: var(--sp-24) clamp(var(--sp-6), 6vw, var(--sp-24));
}
.s-updates__header {
  max-width: 700px;
  margin-bottom: var(--sp-16);
}
.s-updates__heading {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: var(--lh-tight);
  color: var(--c-ink);
  margin-bottom: var(--sp-4);
}
.s-updates__sub {
  color: var(--c-ink-soft);
  font-size: 1.05rem;
  line-height: var(--lh-loose);
}
.s-updates__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
}
.c-update-card {
  background: var(--c-ink);
  border-radius: var(--r-xl);
  padding: var(--sp-10) var(--sp-8);
  color: var(--c-paper);
  box-shadow: var(--shadow-lg);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}
.c-update-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-xl);
}
.c-update-card__icon {
  font-size: 1.6rem;
  color: var(--c-citrine);
  margin-bottom: var(--sp-5);
}
.c-update-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: var(--sp-4);
  letter-spacing: -0.025em;
}
.c-update-card__body {
  font-size: 0.87rem;
  color: rgba(245,243,238,0.68);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-6);
}


.c-tooltip-trigger {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-citrine);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  transition: opacity var(--t-base);
  border-bottom: 1px dashed rgba(232,200,50,0.45);
  padding-bottom: 1px;
}
.c-tooltip-trigger:hover { opacity: 0.8; }
.c-tooltip-popup {
  position: fixed;
  background: var(--c-ink);
  color: var(--c-paper);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  font-size: 0.82rem;
  line-height: var(--lh-loose);
  max-width: 280px;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  opacity: 0;
  transform: translateY(5px);
  pointer-events: none;
  transition: opacity var(--t-base), transform var(--t-base);
  border: 1px solid rgba(255,255,255,0.09);
}
.c-tooltip-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
}


.s-feature-visual {
  background: var(--c-emerald);
  position: relative;
}
.s-feature-visual__inner {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: stretch;
}
.s-feature-visual__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38) saturate(0.65);
}
.s-feature-visual__overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--sp-24) var(--sp-8);
  text-align: center;
  width: 100%;
}
.s-feature-visual__heading {
  font-size: clamp(1.9rem, 4vw, 3.8rem);
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.035em;
  line-height: var(--lh-tight);
  max-width: 22ch;
  margin-bottom: var(--sp-8);
}


.s-resources {
  background: var(--c-coral);
  padding: var(--sp-24) clamp(var(--sp-6), 6vw, var(--sp-24));
}
.s-resources__header {
  max-width: 640px;
  margin-bottom: var(--sp-16);
}
.s-resources__heading {
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--c-white);
  margin-bottom: var(--sp-4);
  line-height: var(--lh-tight);
}
.s-resources__sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: var(--lh-loose);
}
.s-resources__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-6);
}
.c-resource-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-7);
  color: var(--c-white);
  backdrop-filter: blur(8px);
  transition: transform var(--t-slow), background var(--t-slow), box-shadow var(--t-slow);
}
.c-resource-card:hover {
  transform: translateY(-7px);
  background: rgba(255,255,255,0.2);
  box-shadow: var(--shadow-lg);
}
.c-resource-card__icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  transition: background var(--t-base);
}
.c-resource-card:hover .c-resource-card__icon-wrap {
  background: rgba(255,255,255,0.3);
}
.c-resource-card__icon { font-size: 1.3rem; color: var(--c-white); }
.c-resource-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: var(--sp-3);
  letter-spacing: -0.025em;
}
.c-resource-card__body {
  font-size: 0.86rem;
  line-height: var(--lh-loose);
  opacity: 0.84;
  margin-bottom: var(--sp-5);
}
.c-resource-card__link {
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--c-citrine);
  transition: gap var(--t-base);
}
.c-resource-card__link:hover { gap: var(--sp-4); }


.s-walkthrough-preview {
  background: var(--c-paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.s-walkthrough-preview__content {
  padding: var(--sp-24) clamp(var(--sp-8), 5vw, var(--sp-20));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.s-walkthrough-preview__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-emerald);
  margin-bottom: var(--sp-5);
  background: rgba(26,122,94,0.1);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-sm);
  width: fit-content;
}
.s-walkthrough-preview__heading {
  font-size: clamp(1.6rem, 2.8vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-6);
  color: var(--c-ink);
}
.s-walkthrough-preview__body {
  font-size: 0.94rem;
  line-height: var(--lh-loose);
  color: var(--c-grey-4);
  max-width: 48ch;
  margin-bottom: var(--sp-10);
}
.s-walkthrough-preview__visual {
  background: var(--c-ink);
  position: relative;
  padding: var(--sp-16) var(--sp-10);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--sp-4);
  overflow: hidden;
  min-height: 500px;
}
.s-walkthrough-preview__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: saturate(0);
}
.s-walkthrough-preview__steps {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.c-step {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  background: rgba(245,243,238,0.07);
  border: 1px solid rgba(245,243,238,0.11);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  transition: background var(--t-base), border-color var(--t-base);
}
.c-step:hover {
  background: rgba(245,243,238,0.13);
  border-color: rgba(245,243,238,0.2);
}
.c-step__num {
  width: 32px;
  height: 32px;
  background: var(--c-violet);
  color: var(--c-white);
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}
.c-step__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.c-step__info strong {
  color: var(--c-paper);
  font-size: 0.88rem;
}
.c-step__info span {
  color: rgba(245,243,238,0.52);
  font-size: 0.76rem;
}


.s-faq {
  background: var(--c-ink);
  padding: var(--sp-24) clamp(var(--sp-6), 6vw, var(--sp-24));
}
.s-faq__header {
  max-width: 700px;
  margin-bottom: var(--sp-16);
}
.s-faq__heading {
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--c-paper);
  margin-bottom: var(--sp-4);
  line-height: var(--lh-tight);
}
.s-faq__sub {
  color: rgba(245,243,238,0.52);
  font-size: 1rem;
  line-height: var(--lh-loose);
}
.s-faq__list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.c-faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-base), background var(--t-base);
}
.c-faq-item:hover {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.055);
}
.c-faq-item.is-open {
  border-color: rgba(79,45,138,0.5);
  background: rgba(79,45,138,0.08);
}
.c-faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-6) var(--sp-7);
  text-align: left;
  color: var(--c-paper);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: var(--lh-base);
  transition: color var(--t-base);
  min-height: 44px;
  cursor: pointer;
}
.c-faq-item__trigger:hover { color: var(--c-citrine); }
.c-faq-item.is-open .c-faq-item__trigger { color: var(--c-citrine); }
.c-faq-item__icon {
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--c-citrine);
  transition: transform var(--t-spring);
}
.c-faq-item.is-open .c-faq-item__icon { transform: rotate(45deg); }
.c-faq-item__body {
  padding: 0 var(--sp-7) var(--sp-6);
}
.c-faq-item__body[hidden] { display: none; }
.c-faq-item__body p {
  font-size: 0.9rem;
  color: rgba(245,243,238,0.62);
  line-height: var(--lh-loose);
}


.c-footer {
  background: var(--c-ink-soft);
  color: var(--c-paper);
}
.c-footer__cta-block {
  background: var(--c-violet);
  text-align: center;
  padding: var(--sp-24) var(--sp-8);
  position: relative;
  overflow: hidden;
}
.c-footer__cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(232,200,50,0.18), transparent 68%);
  pointer-events: none;
}
.c-footer__cta-heading {
  font-size: clamp(1.6rem, 3vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  max-width: 22ch;
  margin: 0 auto var(--sp-4);
  line-height: var(--lh-tight);
  position: relative;
  z-index: 1;
}
.c-footer__cta-sub {
  color: rgba(245,243,238,0.72);
  font-size: 1rem;
  max-width: 50ch;
  margin: 0 auto var(--sp-8);
  line-height: var(--lh-loose);
  position: relative;
  z-index: 1;
}
.c-footer__cta-block .c-btn {
  position: relative;
  z-index: 1;
}
.c-footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-12);
  padding: var(--sp-16) clamp(var(--sp-6), 6vw, var(--sp-24));
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.c-footer__logo {
  filter: brightness(0) invert(1);
  margin-bottom: var(--sp-4);
}
.c-footer__brand-desc {
  font-size: 0.85rem;
  color: rgba(245,243,238,0.48);
  line-height: var(--lh-loose);
  max-width: 36ch;
}
.c-footer__nav-heading {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,243,238,0.38);
  margin-bottom: var(--sp-5);
}
.c-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.c-footer__nav-list a {
  font-size: 0.875rem;
  color: rgba(245,243,238,0.62);
  transition: color var(--t-base), transform var(--t-base);
  display: inline-block;
}
.c-footer__nav-list a:hover {
  color: var(--c-paper);
  transform: translateX(4px);
}
.c-footer__address {
  font-size: 0.875rem;
  color: rgba(245,243,238,0.62);
  line-height: var(--lh-loose);
}
.c-footer__address p { margin-bottom: var(--sp-2); }
.c-footer__address a { transition: color var(--t-base); }
.c-footer__address a:hover { color: var(--c-citrine); }
.c-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-6) clamp(var(--sp-6), 6vw, var(--sp-24));
  font-size: 0.76rem;
  color: rgba(245,243,238,0.32);
}


.s-page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  overflow: hidden;
}
.s-page-hero--yellow { background: var(--c-citrine); }
.s-page-hero--green  { background: var(--c-emerald); }
.s-page-hero--coral  { background: var(--c-coral); }
.s-page-hero__content {
  padding: calc(var(--sp-32) + 60px) clamp(var(--sp-8), 5vw, var(--sp-20)) var(--sp-16);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.s-page-hero__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-sm);
  width: fit-content;
}
.s-page-hero--yellow .s-page-hero__label { background: var(--c-ink); color: var(--c-citrine); }
.s-page-hero--green  .s-page-hero__label { background: rgba(255,255,255,0.16); color: var(--c-white); }
.s-page-hero--coral  .s-page-hero__label { background: rgba(255,255,255,0.16); color: var(--c-white); }
.s-page-hero__heading {
  font-size: clamp(1.8rem, 3.5vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-6);
}
.s-page-hero--yellow .s-page-hero__heading { color: var(--c-ink); }
.s-page-hero--green  .s-page-hero__heading { color: var(--c-white); }
.s-page-hero--coral  .s-page-hero__heading { color: var(--c-white); }
.s-page-hero__sub {
  font-size: 1rem;
  line-height: var(--lh-loose);
  max-width: 48ch;
}
.s-page-hero--yellow .s-page-hero__sub { color: rgba(26,26,46,0.72); }
.s-page-hero--green  .s-page-hero__sub { color: rgba(255,255,255,0.78); }
.s-page-hero--coral  .s-page-hero__sub { color: rgba(255,255,255,0.78); }
.s-page-hero__img-col { overflow: hidden; }
.s-page-hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center; }


.s-why-narrative {
  background: var(--c-paper);
  padding: var(--sp-24) clamp(var(--sp-6), 6vw, var(--sp-24));
}
.s-why-narrative__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--sp-16);
  align-items: start;
  max-width: 1100px;
}
.s-why-narrative__text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-6);
  color: var(--c-ink);
  line-height: var(--lh-tight);
}
.s-why-narrative__text p {
  font-size: 0.94rem;
  line-height: var(--lh-loose);
  color: var(--c-grey-4);
  margin-bottom: var(--sp-5);
}
.c-pull-quote {
  background: var(--c-violet);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-color-violet);
  position: sticky;
  top: var(--sp-16);
}
.c-pull-quote blockquote {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-paper);
  line-height: var(--lh-loose);
  quotes: none;
}


.s-eeat-deep {
  background: var(--c-ink);
  padding: var(--sp-24) clamp(var(--sp-6), 6vw, var(--sp-24));
}
.s-eeat-deep__header {
  max-width: 700px;
  margin-bottom: var(--sp-16);
}
.s-eeat-deep__heading {
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--c-paper);
  margin-bottom: var(--sp-4);
  line-height: var(--lh-tight);
}
.s-eeat-deep__sub {
  color: rgba(245,243,238,0.52);
  font-size: 1rem;
  line-height: var(--lh-loose);
}
.s-eeat-deep__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-5);
}
.c-eeat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-7);
  transition: transform var(--t-slow), border-color var(--t-base), background var(--t-base);
}
.c-eeat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
}
.c-eeat-card__letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 1.8rem;
  font-weight: 800;
  border-radius: var(--r-md);
  margin-bottom: var(--sp-5);
  color: var(--c-white);
}
.c-eeat-card:nth-child(1) .c-eeat-card__letter { background: var(--c-coral); }
.c-eeat-card:nth-child(2) .c-eeat-card__letter { background: var(--c-violet); }
.c-eeat-card:nth-child(3) .c-eeat-card__letter { background: var(--c-emerald); }
.c-eeat-card:nth-child(4) .c-eeat-card__letter { background: var(--c-amber); }
.c-eeat-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-paper);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}
.c-eeat-card__body {
  font-size: 0.86rem;
  color: rgba(245,243,238,0.58);
  line-height: var(--lh-loose);
}


.s-who-for {
  background: var(--c-amber);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  overflow: hidden;
}
.s-who-for__visual {
  overflow: hidden;
  position: relative;
}
.s-who-for__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
}
.s-who-for__content {
  padding: var(--sp-24) clamp(var(--sp-8), 5vw, var(--sp-20));
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--c-ink);
}
.s-who-for__heading {
  font-size: clamp(1.6rem, 2.8vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-8);
}
.s-who-for__content p {
  font-size: 0.94rem;
  line-height: var(--lh-loose);
  color: rgba(26,26,46,0.78);
  margin-bottom: var(--sp-5);
  max-width: 52ch;
}
.s-who-for__content p:last-of-type { margin-bottom: var(--sp-10); }


.s-walkthrough {
  padding: var(--sp-24) clamp(var(--sp-6), 6vw, var(--sp-24));
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-16);
  background: var(--c-paper);
  align-items: start;
}
.s-walkthrough--alt {
  background: var(--c-grey-1);
}
.s-walkthrough__badge {
  display: inline-block;
  background: var(--c-violet);
  color: var(--c-white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-5);
}
.s-walkthrough__heading {
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-5);
  color: var(--c-ink);
}
.s-walkthrough__intro {
  font-size: 0.94rem;
  line-height: var(--lh-loose);
  color: var(--c-grey-4);
  margin-bottom: var(--sp-8);
  max-width: 44ch;
}
.s-walkthrough__img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.s-walkthrough__steps-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.c-walkthrough-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--sp-5);
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-grey-1);
  transition: transform var(--t-slow), box-shadow var(--t-slow), border-color var(--t-base);
}
.c-walkthrough-step:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26,122,94,0.2);
}
.c-walkthrough-step__num {
  width: 40px;
  height: 40px;
  background: var(--c-emerald);
  color: var(--c-white);
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26,122,94,0.28);
}
.c-walkthrough-step__content h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: var(--sp-2);
  color: var(--c-ink);
  letter-spacing: -0.015em;
}
.c-walkthrough-step__content p {
  font-size: 0.86rem;
  line-height: var(--lh-loose);
  color: var(--c-grey-4);
}


.s-toolkit-grid {
  padding: var(--sp-24) clamp(var(--sp-6), 6vw, var(--sp-24));
  background: var(--c-paper);
}
.s-toolkit-grid__header {
  max-width: 640px;
  margin-bottom: var(--sp-16);
}
.s-toolkit-grid__heading {
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: var(--sp-4);
  color: var(--c-ink);
  line-height: var(--lh-tight);
}
.s-toolkit-grid__sub {
  color: var(--c-grey-4);
  font-size: 1rem;
  line-height: var(--lh-loose);
}
.s-toolkit-grid__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-6);
}
.c-toolkit-item {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-7);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-grey-1);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}
.c-toolkit-item:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}
.c-toolkit-item__header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.c-toolkit-item__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--c-white);
  flex-shrink: 0;
}
.c-toolkit-item--crawl  .c-toolkit-item__icon-wrap { background: var(--c-violet); }
.c-toolkit-item--eeat   .c-toolkit-item__icon-wrap { background: var(--c-coral); }
.c-toolkit-item--audit  .c-toolkit-item__icon-wrap { background: var(--c-emerald); }
.c-toolkit-item--intent .c-toolkit-item__icon-wrap { background: var(--c-amber); }
.c-toolkit-item--updates .c-toolkit-item__icon-wrap { background: var(--c-citrine-dk); }
.c-toolkit-item--glossary .c-toolkit-item__icon-wrap { background: var(--c-ink); }
.c-toolkit-item__cat {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-grey-3);
}
.c-toolkit-item__title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: var(--sp-3);
  letter-spacing: -0.025em;
  color: var(--c-ink);
}
.c-toolkit-item__body {
  font-size: 0.86rem;
  line-height: var(--lh-loose);
  color: var(--c-grey-4);
  margin-bottom: var(--sp-5);
}
.c-toolkit-item__list {
  list-style: disc;
  padding-left: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.c-toolkit-item__list li {
  font-size: 0.8rem;
  color: var(--c-grey-4);
}
.s-toolkit-cta {
  background: var(--c-emerald);
  padding: var(--sp-20) clamp(var(--sp-6), 6vw, var(--sp-24));
}
.s-toolkit-cta__inner { max-width: 640px; }
.s-toolkit-cta__heading {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--c-white);
  margin-bottom: var(--sp-4);
  line-height: var(--lh-tight);
}
.s-toolkit-cta__body {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.78);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-8);
}


.s-contact-hero {
  background: var(--c-violet);
  padding: calc(var(--sp-32) + 60px) clamp(var(--sp-8), 6vw, var(--sp-24)) var(--sp-20);
}
.s-contact-hero__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.14);
  color: var(--c-citrine);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-sm);
  margin-bottom: var(--sp-5);
}
.s-contact-hero__heading {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--c-white);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-5);
  max-width: 24ch;
}
.s-contact-hero__sub {
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  line-height: var(--lh-loose);
  max-width: 52ch;
}
.s-contact-main {
  background: var(--c-paper);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--sp-12);
  padding: var(--sp-16) clamp(var(--sp-6), 6vw, var(--sp-24));
  align-items: start;
}
.c-contact-form-wrap {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-md);
}
.c-contact-form-wrap__heading {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: var(--sp-7);
  color: var(--c-ink);
  letter-spacing: -0.02em;
}
.c-contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.c-contact-form__row--inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.c-contact-form__field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.c-contact-form__label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-grey-4);
  letter-spacing: 0.025em;
}
.c-contact-form__input,
.c-contact-form__textarea {
  background: var(--c-grey-1);
  border: 2px solid transparent;
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  font-size: 0.9rem;
  color: var(--c-ink);
  transition: border-color var(--t-base), background var(--t-base), box-shadow var(--t-base);
  resize: none;
  min-height: 44px;
  width: 100%;
}
.c-contact-form__input:focus,
.c-contact-form__textarea:focus {
  outline: none;
  border-color: var(--c-violet);
  background: var(--c-white);
  box-shadow: 0 0 0 4px rgba(79,45,138,0.1);
}
.c-contact-form__row--footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.c-contact-form__privacy {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.82rem;
  color: var(--c-grey-4);
  cursor: pointer;
}
.c-contact-form__checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--c-violet);
  cursor: pointer;
  flex-shrink: 0;
}
.c-contact-form__privacy a {
  color: var(--c-violet);
  text-decoration: underline;
  transition: opacity var(--t-base);
}
.c-contact-form__privacy a:hover { opacity: 0.75; }
.c-contact-form__note {
  font-size: 0.74rem;
  color: var(--c-grey-3);
}
.c-contact-info {
  background: var(--c-ink);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  color: var(--c-paper);
  box-shadow: var(--shadow-md);
}
.c-contact-info__heading {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: var(--sp-7);
  color: var(--c-citrine);
  letter-spacing: -0.015em;
}
.c-contact-info__item {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  font-size: 0.88rem;
  line-height: var(--lh-loose);
  color: rgba(245,243,238,0.72);
  align-items: flex-start;
}
.c-contact-info__item i {
  color: var(--c-violet-lt);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
}
.c-contact-info__item a { transition: color var(--t-base); }
.c-contact-info__item a:hover { color: var(--c-citrine); }


.s-office-photos {
  background: var(--c-grey-1);
  padding: var(--sp-16) clamp(var(--sp-6), 6vw, var(--sp-24));
}
.s-office-photos__header { margin-bottom: var(--sp-10); }
.s-office-photos__heading {
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-2);
  color: var(--c-ink);
}
.s-office-photos__sub {
  color: var(--c-grey-4);
  font-size: 0.9rem;
}
.s-office-photos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.c-office-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.c-office-photo__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--t-slow);
  display: block;
}
.c-office-photo:hover .c-office-photo__img { transform: scale(1.05); }
.c-office-photo__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26,26,46,0.82));
  color: var(--c-paper);
  font-size: 0.76rem;
  font-weight: 600;
  padding: var(--sp-8) var(--sp-4) var(--sp-4);
}


.s-map { background: var(--c-ink); }
.s-map__inner { overflow: hidden; }
.s-map__iframe {
  display: block;
  filter: grayscale(0.25) contrast(1.05);
  width: 100%;
}


.s-legal {
  max-width: 800px;
  margin: 0 auto;
  padding: calc(var(--sp-20) + 60px) var(--sp-8) var(--sp-20);
}
.s-legal--terms { max-width: 820px; }
.s-legal--cookies { max-width: 860px; }
.s-legal__header {
  margin-bottom: var(--sp-12);
  border-bottom: 3px solid var(--c-violet);
  padding-bottom: var(--sp-8);
}
.s-legal__header--wide { border-bottom-color: var(--c-emerald); }
.s-legal__heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--c-ink);
  margin-bottom: var(--sp-3);
  line-height: var(--lh-tight);
}
.s-legal__meta {
  font-size: 0.8rem;
  color: var(--c-grey-3);
  margin-bottom: var(--sp-4);
}
.s-legal__intro {
  font-size: 0.94rem;
  line-height: var(--lh-loose);
  color: var(--c-grey-4);
}
.s-legal__opening {
  font-size: 0.94rem;
  line-height: var(--lh-loose);
  color: var(--c-grey-4);
  margin-bottom: var(--sp-8);
}
.s-legal__body h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-ink);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.015em;
}
.s-legal__body p {
  font-size: 0.9rem;
  line-height: var(--lh-loose);
  color: var(--c-grey-4);
  margin-bottom: var(--sp-4);
}
.s-legal__body a {
  color: var(--c-violet);
  text-decoration: underline;
  transition: opacity var(--t-base);
}
.s-legal__body a:hover { opacity: 0.75; }
.s-legal__body address {
  margin-top: var(--sp-4);
  font-size: 0.9rem;
  line-height: var(--lh-loose);
  color: var(--c-grey-4);
}
.s-legal__body ul {
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-4);
  list-style: disc;
}
.s-legal__body ul li {
  font-size: 0.9rem;
  line-height: var(--lh-loose);
  color: var(--c-grey-4);
  margin-bottom: var(--sp-2);
}
.c-cookie-table { margin: var(--sp-8) 0; }
.c-cookie-table h2 { margin-top: var(--sp-8); }
.c-cookie-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--sp-4);
  font-size: 0.85rem;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.c-cookie-table th {
  background: var(--c-ink);
  color: var(--c-paper);
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.c-cookie-table td {
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--c-grey-1);
  color: var(--c-grey-4);
  vertical-align: top;
  background: var(--c-white);
}
.c-cookie-table tr:last-child td { border-bottom: none; }
.c-cookie-table code,
.s-legal__body code {
  background: var(--c-grey-1);
  padding: 2px 6px;
  border-radius: var(--r-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.82em;
  color: var(--c-violet);
}


.s-thanks {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--c-paper);
  padding: calc(var(--sp-20) + 60px) var(--sp-8) var(--sp-20);
}
.s-thanks__inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
}
.s-thanks__heading {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--c-ink);
  line-height: var(--lh-tight);
}
.s-thanks__sub {
  font-size: 1rem;
  color: var(--c-grey-4);
  line-height: var(--lh-loose);
}
.c-journey-timeline {
  margin-top: var(--sp-12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 380px;
}
.c-journey-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--sp-4);
  align-items: flex-start;
  position: relative;
  padding-bottom: var(--sp-8);
  width: 100%;
}
.c-journey-step:last-child { padding-bottom: 0; }
.c-journey-step__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 2;
  position: relative;
  flex-shrink: 0;
}
.c-journey-step--done .c-journey-step__icon {
  background: var(--c-emerald);
  color: var(--c-white);
  box-shadow: var(--shadow-color-emerald);
}
.c-journey-step--current .c-journey-step__icon {
  background: var(--c-violet);
  color: var(--c-white);
  box-shadow: var(--shadow-color-violet);
}
.c-journey-step--upcoming .c-journey-step__icon {
  background: var(--c-grey-1);
  color: var(--c-grey-3);
  border: 2px dashed var(--c-grey-2);
}
.c-journey-step__line {
  position: absolute;
  left: 22px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--c-grey-2);
  z-index: 1;
}
.c-journey-step--done .c-journey-step__line {
  background: linear-gradient(to bottom, var(--c-emerald), var(--c-grey-2));
}
.c-journey-step__content {
  padding-top: var(--sp-2);
  text-align: left;
}
.c-journey-step__content strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-ink);
  margin-bottom: var(--sp-1);
  letter-spacing: -0.015em;
}
.c-journey-step__content span {
  font-size: 0.84rem;
  color: var(--c-grey-4);
}
.c-journey-step--current .c-journey-step__content strong { color: var(--c-violet); }
.c-journey-step--upcoming .c-journey-step__content strong { color: var(--c-grey-3); }


@media (max-width: 1200px) {
  .c-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }
}

@media (max-width: 1000px) {
  .s-walkthrough {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
  .s-walkthrough__label-col {
    display: contents;
  }
  .s-walkthrough__badge   { order: 0; }
  .s-walkthrough__heading { order: 1; }
  .s-walkthrough__intro   { order: 2; }
  .s-walkthrough__img     { order: 3; }
  .s-walkthrough__steps-col { order: 4; }
}

@media (max-width: 900px) {
  .s-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .s-hero__visual {
    height: 55vw;
    min-height: 300px;
    order: -1;
  }
  .s-hero__content {
    padding: var(--sp-12) var(--sp-6) var(--sp-12);
  }
  .s-about {
    grid-template-columns: 1fr;
  }
  .s-about__image-col {
    height: 52vw;
    min-height: 280px;
  }
  .s-page-hero {
    grid-template-columns: 1fr;
  }
  .s-page-hero__img-col {
    height: 48vw;
    min-height: 240px;
    order: -1;
  }
  .s-page-hero__content {
    padding-top: var(--sp-12);
    padding-bottom: var(--sp-12);
  }
  .s-why-narrative__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
  .c-pull-quote { position: static; }
  .s-who-for {
    grid-template-columns: 1fr;
  }
  .s-who-for__visual {
    height: 48vw;
    min-height: 240px;
    order: -1;
  }
  .s-walkthrough-preview {
    grid-template-columns: 1fr;
  }
  .s-walkthrough-preview__visual {
    min-height: 420px;
    order: -1;
  }
  .s-contact-main {
    grid-template-columns: 1fr;
  }
  .c-contact-form__row--inline {
    grid-template-columns: 1fr;
  }
  .s-office-photos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-nav__links { display: none; }
  .c-nav__hamburger { display: flex; }
  .c-nav__inner { padding: var(--sp-4) var(--sp-5); }
  .s-eeat-deep__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .s-hero__stats {
    flex-direction: column;
    gap: var(--sp-5);
    border-top: none;
    padding-top: 0;
  }
  .s-hero__cta-row {
    flex-direction: column;
  }
  .s-hero__cta-row .c-btn {
    width: 100%;
    justify-content: center;
  }
  .c-footer__main {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .c-footer__bottom {
    flex-direction: column;
    gap: var(--sp-2);
    text-align: center;
  }
  .c-mobile-menu__left { width: 78%; }
  .c-mobile-menu__right { width: 22%; }
  .c-mobile-menu__tagline { display: none; }
  .s-legal { padding-left: var(--sp-5); padding-right: var(--sp-5); }
  .c-contact-form-wrap { padding: var(--sp-7) var(--sp-5); }
  .c-contact-form__row--footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .s-office-photos__grid { grid-template-columns: 1fr; }
  .s-eeat-deep__grid { grid-template-columns: 1fr; }
  .s-topics__grid { grid-template-columns: 1fr; }
  .s-resources__grid { grid-template-columns: 1fr; }
  .s-updates__grid { grid-template-columns: 1fr; }
  .s-toolkit-grid__items { grid-template-columns: 1fr; }
  .c-cookie-table { overflow-x: auto; }
  .c-cookie-table table { min-width: 480px; }
}

@media (max-width: 480px) {
  .c-cookie-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
  }
  .c-accent-card {
    left: var(--sp-4);
    bottom: var(--sp-8);
    font-size: 0.82rem;
    padding: var(--sp-4) var(--sp-5);
  }
  .s-contact-hero {
    padding-left: var(--sp-5);
    padding-right: var(--sp-5);
  }
}


.u-hidden       { display: none !important; }
.u-text-center  { text-align: center; }
.u-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;
}


@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.is-animating { animation: fadeInUp 0.6s ease forwards; }


@media print {
  .c-nav,
  .c-cookie-bar,
  .c-mobile-menu,
  .c-mobile-menu__overlay,
  .c-tooltip-popup { display: none !important; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
}