/* ============================================================
   StoneWVivid — Complete Custom CSS
   Type-Driven Design | Bold, Editorial, Expressive
   Color: Ink Navy + Signal Red + Warm Surface
   ============================================================ */


:root {
  --color-ink:           #1a1a2e;
  --color-ink-light:     #2d2d4a;
  --color-ink-muted:     #5a5a7a;
  --color-surface:       #f7f6f2;
  --color-surface-alt:   #eeecea;
  --color-white:         #fefefe;
  --color-accent:        #e84545;
  --color-accent-dark:   #c23030;
  --color-accent-light:  #ff7070;
  --color-gold:          #c9a84c;

  --shadow-xs:  0 1px 3px rgba(26,26,46,0.06), 0 1px 2px rgba(26,26,46,0.04);
  --shadow-sm:  0 2px 8px rgba(26,26,46,0.08), 0 1px 3px rgba(26,26,46,0.05);
  --shadow-md:  0 4px 20px rgba(26,26,46,0.10), 0 2px 8px rgba(26,26,46,0.06);
  --shadow-lg:  0 8px 40px rgba(26,26,46,0.14), 0 4px 16px rgba(26,26,46,0.08);
  --shadow-xl:  0 16px 60px rgba(26,26,46,0.18), 0 8px 24px rgba(26,26,46,0.10);

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  --font-body:    'Schibsted Grotesk', sans-serif;
  --font-display: 'Schibsted Grotesk', sans-serif;

  --space-xs:  clamp(0.4rem,  0.8vw, 0.6rem);
  --space-sm:  clamp(0.6rem,  1.2vw, 0.9rem);
  --space-md:  clamp(0.9rem,  1.8vw, 1.4rem);
  --space-lg:  clamp(1.4rem,  2.8vw, 2.2rem);
  --space-xl:  clamp(2.2rem,  4.5vw, 4rem);
  --space-2xl: clamp(3.5rem,  7vw,   7rem);

  --max-width:     1200px;
  --header-height: 72px;
}


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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-surface);
  color: var(--color-ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  line-height: inherit;
}

ul { list-style: none; }


.LoadingSkeleton {
  position: fixed;
  inset: 0;
  background: var(--color-surface);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.LoadingSkeleton-bar--nav {
  height: var(--header-height);
  width: 100%;
  background: linear-gradient(
    90deg,
    #e8e6e0 25%,
    #d4d2cc 50%,
    #e8e6e0 75%
  );
  background-size: 200% 100%;
  animation: skeletonShimmer 1.4s infinite linear;
}

.LoadingSkeleton-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) clamp(1.5rem, 5vw, 5rem);
  gap: var(--space-md);
}

.LoadingSkeleton-block {
  background: linear-gradient(
    90deg,
    #e8e6e0 25%,
    #d4d2cc 50%,
    #e8e6e0 75%
  );
  background-size: 200% 100%;
  animation: skeletonShimmer 1.4s infinite linear;
  border-radius: var(--radius-sm);
}

.LoadingSkeleton-block--title  { width: clamp(200px, 52%, 500px); height: clamp(44px, 9vw, 88px); }
.LoadingSkeleton-block--subtitle { width: clamp(140px, 38%, 340px); height: clamp(14px, 2.5vw, 22px); margin-top: var(--space-sm); }
.LoadingSkeleton-block--btn   { width: 148px; height: 50px; margin-top: var(--space-md); border-radius: var(--radius-full); }

@keyframes skeletonShimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}


.SiteHeader {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.SiteHeader--scrolled {
  background: var(--color-ink);
  box-shadow: var(--shadow-md);
}

.SiteHeader-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.SiteHeader-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.SiteHeader-logoImg {
  height: 36px;
  width: auto;
}

.SiteHeader-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.SiteHeader-navLink {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-white);
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
  padding: 0.25rem 0;
  position: relative;
}

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

.SiteHeader-navLink:hover        { opacity: 1; }
.SiteHeader-navLink:hover::after { width: 100%; }

.SiteHeader-navLink--active {
  opacity: 1;
  color: var(--color-accent-light);
}
.SiteHeader-navLink--active::after { width: 100%; }

.SiteHeader-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: background 0.2s ease;
}
.SiteHeader-hamburger:hover { background: rgba(255,255,255,0.1); }

.SiteHeader-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}


.MobileMenu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.72);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(2px);
}
.MobileMenu-overlay--visible {
  opacity: 1;
  visibility: visible;
}

.MobileMenu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 88vw);
  height: 100vh;
  background: var(--color-ink);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: var(--space-2xl) var(--space-lg) var(--space-xl);
  overflow-y: auto;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.MobileMenu--open { transform: translateX(0); }

.MobileMenu-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.2rem;
  border-radius: var(--radius-md);
  transition: background 0.2s ease, color 0.2s ease;
}
.MobileMenu-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--color-accent-light);
}

.MobileMenu-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-lg);
}

.MobileMenu-link {
  font-size: clamp(1.2rem, 4.5vw, 1.5rem);
  font-weight: 700;
  color: var(--color-white);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s ease, padding-left 0.22s ease;
  display: block;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.MobileMenu-link:hover {
  color: var(--color-accent-light);
  padding-left: 10px;
}

.MobileMenu-footer {
  margin-top: auto;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.MobileMenu-contact {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s ease;
  word-break: break-all;
}
.MobileMenu-contact:hover { color: var(--color-accent-light); }


.Btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.875rem 1.875rem;
  border-radius: var(--radius-full);
  transition:
    transform  0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    color      0.22s ease,
    border-color 0.22s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
}

.Btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow:
    0 4px 14px rgba(232,69,69,0.30),
    0 2px 6px  rgba(232,69,69,0.15);
}
.Btn--primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(232,69,69,0.35),
    0 4px 10px rgba(232,69,69,0.20);
}
.Btn--primary:active { transform: translateY(0); }

.Btn--ghost {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.38);
}
.Btn--ghost:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.10);
  transform: translateY(-2px);
}

.Btn--outline {
  background: transparent;
  color: var(--color-ink);
  border: 2px solid var(--color-ink);
}
.Btn--outline:hover {
  background: var(--color-ink);
  color: var(--color-white);
  transform: translateY(-2px);
}

.Btn--large {
  font-size: 1rem;
  padding: 1.05rem 2.35rem;
}

.Btn--sm {
  font-size: 0.8rem;
  padding: 0.6rem 1.25rem;
  min-height: 36px;
}


.PageHero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-ink);
}

.PageHero-left {
  position: absolute;
  top: 0; left: 0;
  width: 58%;
  height: 100%;
  background: var(--color-ink);
  transform: translateX(-100%);
  animation: heroHalfLeft 0.9s cubic-bezier(0.4, 0, 0.2, 1) 1.3s forwards;
  z-index: 2;
}

.PageHero-right {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transform: translateX(100%);
  animation: heroHalfRight 0.9s cubic-bezier(0.4, 0, 0.2, 1) 1.3s forwards;
  z-index: 2;
}

.PageHero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.5) saturate(0.75);
}

.PageHero-content {
  position: relative;
  z-index: 10;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding:
    calc(var(--header-height) + var(--space-2xl))
    clamp(1.5rem, 5vw, 5rem)
    var(--space-2xl);
  opacity: 0;
  animation: heroContentReveal 0.7s ease 2.15s forwards;
}

@keyframes heroHalfLeft {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}
@keyframes heroHalfRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
@keyframes heroContentReveal {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.PageHero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  background: rgba(232,69,69,0.14);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(232,69,69,0.28);
}

.PageHero-heading {
  display: flex;
  flex-direction: column;
  font-size: clamp(4.5rem, 11vw, 10rem);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-xl);
}

.PageHero-heading--line1 { color: var(--color-white); }
.PageHero-heading--line2 { color: var(--color-accent-light); }
.PageHero-heading--line3 {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.35);
}

.PageHero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}

.PageHero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}


.IntroStatement {
  background: var(--color-accent);
  padding: var(--space-xl) 0;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
  padding-bottom: calc(var(--space-xl) + 4.5vw);
}

.IntroStatement-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.IntroStatement-text {
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.45;
  max-width: 820px;
}


.DiagonalSection {
  background: var(--color-ink);
  clip-path: polygon(0 4.5vw, 100% 0, 100% 100%, 0 100%);
  padding: calc(var(--space-2xl) + 4.5vw) 0 var(--space-2xl);
}

.DiagonalSection-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.DiagonalSection-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: var(--space-md);
  display: block;
}

.DiagonalSection-heading {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: var(--space-xl);
}
.DiagonalSection-heading em {
  font-style: normal;
  color: var(--color-accent-light);
}

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

.FeatureCard {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition:
    background   0.3s ease,
    transform    0.3s ease,
    box-shadow   0.3s ease,
    border-color 0.3s ease;
}
.FeatureCard:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.FeatureCard-icon {
  font-size: 1.5rem;
  color: var(--color-accent-light);
  margin-bottom: var(--space-md);
}

.FeatureCard-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.FeatureCard-body {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.72;
}


.TabbedSection {
  background: var(--color-surface);
  padding: var(--space-2xl) 0;
}

.TabbedSection-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.TabbedSection-header {
  margin-bottom: var(--space-xl);
}

.TabbedSection-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--space-sm);
}

.TabbedSection-heading {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-ink);
}

.TabNav {
  display: flex;
  border-bottom: 2px solid var(--color-surface-alt);
  margin-bottom: var(--space-xl);
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.TabNav::-webkit-scrollbar { display: none; }

.TabNav-btn {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-ink-muted);
  padding: var(--space-sm) var(--space-md);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
  min-height: 44px;
}
.TabNav-btn:hover { color: var(--color-ink); }
.TabNav-btn--active {
  color: var(--color-ink);
  border-bottom-color: var(--color-accent);
}

.TabPanels { position: relative; min-height: 300px; }

.TabPanel {
  display: none;
}
.TabPanel--active {
  display: block;
  animation: tabReveal 0.32s ease both;
}

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

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

.TabPanel-title {
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-ink);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.TabPanel-body {
  font-size: 0.925rem;
  line-height: 1.78;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-md);
}

.TabPanel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-accent);
  transition: gap 0.2s ease, color 0.2s ease;
}
.TabPanel-link:hover {
  gap: 0.75rem;
  color: var(--color-accent-dark);
}

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

.TabPanel-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.TabPanel-image:hover .TabPanel-img { transform: scale(1.04); }


.CtaSplit {
  background: var(--color-ink);
  clip-path: polygon(0 0, 100% 4vw, 100% 100%, 0 calc(100% - 4vw));
  padding: calc(var(--space-2xl) + 4vw) 0;
}

.CtaSplit-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.CtaSplit-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  display: block;
  margin-bottom: var(--space-sm);
}

.CtaSplit-heading {
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.CtaSplit-sub {
  font-size: 0.925rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
}

.CtaSplit-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
}

.CtaSplit-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.CtaSplit-note a {
  color: var(--color-accent-light);
  transition: color 0.2s ease;
}
.CtaSplit-note a:hover { color: var(--color-white); }


.AboutTeaser {
  background: var(--color-surface);
  padding: var(--space-2xl) 0;
}

.AboutTeaser-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.AboutTeaser-imageWrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.AboutTeaser-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s ease;
  display: block;
}
.AboutTeaser-imageWrap:hover .AboutTeaser-image { transform: scale(1.04); }

.AboutTeaser-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--space-sm);
}

.AboutTeaser-heading {
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--color-ink);
  margin-bottom: var(--space-md);
}

.AboutTeaser-body {
  font-size: 0.925rem;
  line-height: 1.78;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-md);
}


.ProcessPreview {
  background: var(--color-surface-alt);
  clip-path: polygon(0 3vw, 100% 0, 100% calc(100% - 3vw), 0 100%);
  padding: calc(var(--space-2xl) + 3vw) 0;
}

.ProcessPreview-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.ProcessPreview-header {
  margin-bottom: var(--space-xl);
}

.ProcessPreview-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--space-sm);
}

.ProcessPreview-heading {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--color-ink);
}

.ProcessPreview-steps {
  display: flex;
  align-items: stretch;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.ProcessStep {
  flex: 1;
  min-width: 180px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition:
    transform   0.3s ease,
    box-shadow  0.3s ease;
}
.ProcessStep:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.ProcessStep-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-surface-alt);
  line-height: 1;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.04em;
}

.ProcessStep-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: var(--space-xs);
}

.ProcessStep-body {
  font-size: 0.875rem;
  color: var(--color-ink-muted);
  line-height: 1.68;
}

.ProcessStep-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink-muted);
  font-size: 0.9rem;
  flex-shrink: 0;
  padding-top: var(--space-xl);
  opacity: 0.5;
}

.ProcessPreview-cta {
  margin-top: var(--space-xl);
  text-align: center;
}


.GallerySection {
  background: var(--color-surface);
  padding: var(--space-2xl) 0;
}

.GallerySection-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.GallerySection-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--space-sm);
}

.GallerySection-heading {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--color-ink);
  margin-bottom: var(--space-xl);
}

.GallerySection-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px;
  gap: var(--space-md);
}

.GallerySection-item {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.GallerySection-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.GallerySection-item:hover .GallerySection-img { transform: scale(1.06); }

.GallerySection-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  opacity: 0;
  transition: background 0.3s ease, opacity 0.3s ease;
}
.GallerySection-item:hover .GallerySection-overlay {
  background: rgba(26,26,46,0.42);
  opacity: 1;
}


.InnerHero {
  background: var(--color-ink);
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
}

.InnerHero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.InnerHero-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  display: block;
  margin-bottom: var(--space-md);
}

.InnerHero-heading {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.035em;
  color: var(--color-white);
}
.InnerHero-heading em {
  font-style: normal;
  color: var(--color-accent-light);
  display: block;
}


.StorySection {
  background: var(--color-surface);
  padding: var(--space-2xl) 0;
}
.StorySection--alt { background: var(--color-surface-alt); }

.StorySection-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  align-items: flex-start;
}

.Pullquote {
  font-size: clamp(1.05rem, 2.3vw, 1.45rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-ink);
  border-left: 4px solid var(--color-accent);
  padding-left: var(--space-lg);
  font-style: normal;
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
}

.StorySection-body p {
  font-size: 1rem;
  line-height: 1.82;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-md);
}
.StorySection-body p:last-child { margin-bottom: 0; }

.StorySection-h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--color-ink);
  margin-bottom: var(--space-lg);
}

.StorySection-heading {
  display: flex;
  align-items: flex-start;
}


.StoryImageBreak {
  background: var(--color-ink);
  padding: var(--space-xl) 0;
}

.StoryImageBreak-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.StoryImageBreak-link { display: block; }

.StoryImageBreak-img {
  width: 100%;
  height: clamp(280px, 45vw, 500px);
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transition: transform 0.45s ease;
}
.StoryImageBreak-link:hover .StoryImageBreak-img { transform: scale(1.02); }

.StoryImageBreak-caption {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  margin-top: var(--space-sm);
  text-align: center;
  letter-spacing: 0.05em;
}


.ValuesSection {
  background: var(--color-surface);
  padding: var(--space-2xl) 0;
}

.ValuesSection-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.ValuesSection-heading {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--color-ink);
  margin-bottom: var(--space-xl);
}

.ValuesSection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-lg);
}

.ValueCard {
  padding: var(--space-lg) 0;
  border-top: 2px solid var(--color-surface-alt);
  transition: border-color 0.3s ease;
}
.ValueCard:hover { border-color: var(--color-accent); }

.ValueCard-number {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.ValueCard-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: var(--space-sm);
}

.ValueCard-body {
  font-size: 0.875rem;
  line-height: 1.72;
  color: var(--color-ink-muted);
}


.PlatformOverview {
  background: var(--color-surface);
  padding: var(--space-2xl) 0;
}

.PlatformOverview-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.PlatformOverview-heading {
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--color-ink);
  margin-bottom: var(--space-md);
}

.PlatformOverview-lead {
  font-size: 0.975rem;
  line-height: 1.78;
  color: var(--color-ink-muted);
}

.PlatformOverview-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.PlatformOverview-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.PlatformOverview-image:hover .PlatformOverview-img { transform: scale(1.03); }


.DetailedSteps {
  background: var(--color-surface-alt);
  padding: var(--space-2xl) 0;
}

.DetailedSteps-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.DetailedStep {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-xl);
  align-items: flex-start;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-xs);
  transition:
    box-shadow 0.3s ease,
    transform  0.3s ease;
}
.DetailedStep:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.DetailedStep-number {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  color: var(--color-surface-alt);
  line-height: 1;
  letter-spacing: -0.04em;
  min-width: 80px;
  text-align: right;
  user-select: none;
}

.DetailedStep-title {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-ink);
  margin-bottom: var(--space-md);
  line-height: 1.18;
}

.DetailedStep-body {
  font-size: 0.925rem;
  line-height: 1.78;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-md);
}
.DetailedStep-body:last-child { margin-bottom: 0; }


.CurriculumSection {
  background: var(--color-surface);
  padding: var(--space-2xl) 0;
}

.CurriculumSection-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.CurriculumSection-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--space-sm);
}

.CurriculumSection-heading {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--color-ink);
  margin-bottom: var(--space-xl);
}

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

.CurriculumModule {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xs);
  border-top: 4px solid var(--color-surface-alt);
  transition:
    border-color 0.3s ease,
    box-shadow   0.3s ease,
    transform    0.3s ease;
}
.CurriculumModule:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.CurriculumModule-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.CurriculumModule-icon {
  width: 42px; height: 42px;
  background: rgba(232,69,69,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
  font-size: 1rem;
  transition: background 0.3s ease;
}
.CurriculumModule:hover .CurriculumModule-icon { background: rgba(232,69,69,0.16); }

.CurriculumModule-title {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.35;
}

.CurriculumModule-desc {
  font-size: 0.875rem;
  line-height: 1.72;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-md);
}

.CurriculumModule-topics {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.CurriculumModule-topics li {
  font-size: 0.825rem;
  color: var(--color-ink-muted);
  padding-left: var(--space-md);
  position: relative;
  line-height: 1.5;
}
.CurriculumModule-topics li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}


.FaqSection {
  background: var(--color-surface);
  padding: var(--space-2xl) 0;
}

.FaqSection-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.FaqSection-categoryTitle {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-surface-alt);
}

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

.FaqItem {
  border-bottom: 1px solid var(--color-surface-alt);
}

.FaqItem-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--color-ink);
  text-align: left;
  padding: var(--space-md) 0;
  transition: color 0.2s ease;
  min-height: 56px;
}
.FaqItem-question:hover { color: var(--color-accent); }
.FaqItem-question[aria-expanded="true"] { color: var(--color-accent); }

.FaqItem-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--color-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  transition:
    transform    0.3s ease,
    background   0.3s ease,
    border-color 0.3s ease,
    color        0.3s ease;
  color: var(--color-ink-muted);
}
.FaqItem-question[aria-expanded="true"] .FaqItem-icon {
  transform: rotate(45deg);
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.FaqItem-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.FaqItem-answer p {
  font-size: 0.9rem;
  line-height: 1.78;
  color: var(--color-ink-muted);
  padding-bottom: var(--space-md);
}
.FaqItem-answer a { color: var(--color-accent); }


.ContactSection {
  background: var(--color-surface);
  padding: var(--space-2xl) 0;
}

.ContactSection-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: flex-start;
}

.ContactSection-heading {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-ink);
  margin-bottom: var(--space-md);
}

.ContactSection-body {
  font-size: 0.925rem;
  line-height: 1.78;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-lg);
}

.ContactInfo-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.ContactInfo-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.ContactInfo-icon {
  width: 42px; height: 42px;
  background: rgba(232,69,69,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}
.ContactInfo-item:hover .ContactInfo-icon { background: rgba(232,69,69,0.18); }

.ContactInfo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ContactInfo-text strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
}
.ContactInfo-text span,
.ContactInfo-text a {
  font-size: 0.925rem;
  color: var(--color-ink);
  line-height: 1.5;
  transition: color 0.2s ease;
}
.ContactInfo-text a:hover { color: var(--color-accent); }

.ContactResponse {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-xs);
}

.ContactResponse-title {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: var(--space-sm);
}

.ContactResponse-body {
  font-size: 0.875rem;
  line-height: 1.72;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-sm);
}
.ContactResponse-body:last-child { margin-bottom: 0; }

.ContactSection-formTitle {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: var(--space-lg);
}


.ContactForm {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.ContactForm-row {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.ContactForm-field {
  flex: 1;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.ContactForm-field--message {
  flex: 2;
  min-width: 200px;
}

.ContactForm-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
}

.ContactForm-input,
.ContactForm-textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-ink);
  background: var(--color-surface);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 0.65rem 0.9rem;
  width: 100%;
  transition:
    border-color 0.22s ease,
    box-shadow   0.22s ease,
    background   0.22s ease;
  resize: vertical;
  min-height: 44px;
}

.ContactForm-input:focus,
.ContactForm-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232,69,69,0.12);
  background: var(--color-white);
}

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

.ContactForm-bottom {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.ContactForm-privacy {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--color-ink-muted);
  cursor: pointer;
  flex: 1;
  min-width: 200px;
}
.ContactForm-privacy input {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--color-accent);
  cursor: pointer;
}
.ContactForm-privacy a {
  color: var(--color-accent);
  transition: color 0.2s ease;
}
.ContactForm-privacy a:hover { color: var(--color-accent-dark); }

.ContactForm-error {
  color: var(--color-accent-dark);
  font-size: 0.85rem;
  margin-top: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(232,69,69,0.08);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-accent);
  width: 100%;
}


.MapSection {
  background: var(--color-surface-alt);
  padding: var(--space-2xl) 0;
}

.MapSection-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.MapSection-heading {
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-ink);
  margin-bottom: var(--space-lg);
}

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


.LegalHero {
  background: var(--color-ink);
  padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
}

.LegalHero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.LegalHero-heading {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.LegalHero-meta {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
}

.LegalContent {
  background: var(--color-surface);
  padding: var(--space-2xl) 0;
}

.LegalContent-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.LegalContent-intro {
  font-size: 1.05rem;
  line-height: 1.82;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid var(--color-surface-alt);
}

.LegalContent h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-ink);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.LegalContent h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.LegalContent p {
  font-size: 0.9rem;
  line-height: 1.82;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-md);
}
.LegalContent p:last-child { margin-bottom: 0; }
.LegalContent a { color: var(--color-accent); transition: color 0.2s ease; }
.LegalContent a:hover { color: var(--color-accent-dark); }
.LegalContent strong { color: var(--color-ink); font-weight: 700; }


.CookieTable-wrap { margin-top: var(--space-md); }

.CookieCategory {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-xs);
  border-left: 4px solid var(--color-surface-alt);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.CookieCategory:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.CookieCategory-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.CookieCategory-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-ink);
}

.CookieCategory-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.CookieCategory-badge--required {
  background: rgba(201,168,76,0.15);
  color: var(--color-gold);
}
.CookieCategory-badge--optional {
  background: rgba(232,69,69,0.1);
  color: var(--color-accent);
}


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

.ThanksMain {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--color-surface);
}

.ThanksContent {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.ThanksDot {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: dotPop 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
  box-shadow:
    0 0 0 16px rgba(232,69,69,0.08),
    0 0 0 32px rgba(232,69,69,0.04);
}

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

.ThanksHeading {
  font-size: clamp(1.75rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-ink);
  line-height: 1.1;
  opacity: 0;
  animation: thanksTextIn 0.6s ease 1.15s forwards;
}

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

.ThanksLink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0;
  animation: thanksTextIn 0.5s ease 1.85s forwards;
  transition: gap 0.2s ease, color 0.2s ease;
}
.ThanksLink:hover {
  gap: 0.8rem;
  color: var(--color-accent-dark);
}


.SiteFooter {
  background: var(--color-ink-light);
  padding: var(--space-2xl) 0 0;
}

.SiteFooter-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem) var(--space-xl);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: var(--space-xl);
}

.SiteFooter-logo {
  display: inline-block;
  margin-bottom: var(--space-md);
}
.SiteFooter-logoImg {
  height: 34px;
  width: auto;
  filter: brightness(10);
}

.SiteFooter-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 280px;
}

.SiteFooter-navTitle {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: var(--space-md);
}

.SiteFooter-navLink {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: var(--space-sm);
  transition: color 0.2s ease;
}
.SiteFooter-navLink:hover { color: var(--color-white); }

.SiteFooter-contactItem {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}
.SiteFooter-contactItem i {
  margin-top: 2px;
  color: var(--color-accent-light);
  flex-shrink: 0;
  width: 14px;
}

.SiteFooter-contactItem--link {
  transition: color 0.2s ease;
  text-decoration: none;
}
.SiteFooter-contactItem--link:hover { color: var(--color-white); }

.SiteFooter-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: var(--space-md) clamp(1.5rem, 5vw, 5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.SiteFooter-copy {
  font-size: 0.775rem;
  color: rgba(255,255,255,0.32);
}
.SiteFooter-copy a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s ease;
}
.SiteFooter-copy a:hover { color: var(--color-white); }


.CookieConsent {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2000;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: var(--color-ink);
  box-shadow:
    0 -4px 30px rgba(26,26,46,0.32),
    0 -2px 10px rgba(26,26,46,0.16);
  border-top: 1px solid rgba(255,255,255,0.09);
}
.CookieConsent--visible { display: grid; }

.CookieConsent-left {
  padding: var(--space-lg) var(--space-xl);
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.CookieConsent-title {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.CookieConsent-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.62;
}
.CookieConsent-link {
  color: var(--color-accent-light);
  transition: color 0.2s ease;
}
.CookieConsent-link:hover { color: var(--color-white); }

.CookieConsent-right {
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: center;
}

.CookieConsent-toggles {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.CookieToggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.CookieToggle-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  font-weight: 600;
  cursor: pointer;
}

.CookieToggle-badge {
  font-size: 0.68rem;
  color: var(--color-gold);
  background: rgba(201,168,76,0.14);
  padding: 2px 9px;
  border-radius: var(--radius-full);
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.CookieToggle-input {
  width: 38px; height: 20px;
  cursor: pointer;
  accent-color: var(--color-accent);
  flex-shrink: 0;
}

.CookieConsent-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}



@media (max-width: 1100px) {
  .SiteFooter-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

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

  .PageHero-left  { width: 100%; }
  .PageHero-right { display: none; }

  .TabPanel-layout {
    grid-template-columns: 1fr;
  }
  .TabPanel-image { order: -1; }
  .TabPanel-img   { height: 240px; }

  .CtaSplit-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .CtaSplit-action { align-items: flex-start; }

  .AboutTeaser-inner {
    grid-template-columns: 1fr;
  }
  .AboutTeaser-imageWrap { order: -1; }
  .AboutTeaser-image     { height: 340px; }

  .ProcessPreview-steps { flex-direction: column; }
  .ProcessStep-divider  {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .GallerySection-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .GallerySection-item--large { grid-column: span 2; }
  .GallerySection-item        { height: 220px; }

  .StorySection-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .Pullquote { position: static; }

  .PlatformOverview-inner {
    grid-template-columns: 1fr;
  }
  .PlatformOverview-image { order: -1; }
  .PlatformOverview-img   { height: 280px; }

  .DetailedStep {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .DetailedStep-number {
    text-align: left;
    min-width: unset;
    font-size: 2.5rem;
  }

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

  .CookieConsent {
    grid-template-columns: 1fr;
  }
  .CookieConsent-left {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding-bottom: var(--space-md);
  }
}

@media (max-width: 640px) {
  .PageHero-heading {
    font-size: clamp(3rem, 16vw, 5.5rem);
  }

  .InnerHero-heading {
    font-size: clamp(2.5rem, 13vw, 4.5rem);
  }

  .GallerySection-grid {
    grid-template-columns: 1fr;
  }
  .GallerySection-item--large { grid-column: span 1; }
  .GallerySection-item        { height: 200px; }

  .SiteFooter-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .SiteFooter-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .ContactForm-row    { flex-direction: column; }
  .ContactForm-bottom { flex-direction: column; align-items: flex-start; }
  .ContactForm        { padding: var(--space-lg) var(--space-md); }

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

  .TabNav-btn { font-size: 0.8rem; padding: var(--space-sm) 0.8rem; }

  .CurriculumSection-modules { grid-template-columns: 1fr; }
  .ValuesSection-grid        { grid-template-columns: 1fr; }
  .DiagonalSection-grid      { grid-template-columns: 1fr; }

  .CookieConsent-left,
  .CookieConsent-right { padding: var(--space-md); }
  .CookieConsent-buttons { flex-direction: column; }
  .CookieConsent-buttons .Btn { width: 100%; justify-content: center; }

  .ProcessStep-divider { display: none; }
}

@media (max-width: 380px) {
  .Btn { padding: 0.75rem 1.25rem; font-size: 0.85rem; }
  .Btn--large { padding: 0.85rem 1.5rem; font-size: 0.9rem; }
  .PageHero-heading { font-size: clamp(2.5rem, 18vw, 4rem); }
}


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