


:root {
  --primary: #2c2318;
  --primary-mid: #4a3c2e;
  --primary-light: #7a6a58;
  --accent: #c9a84c;
  --accent-warm: #e8c97a;
  --accent-dim: color-mix(in oklch, #c9a84c, #2c2318 40%);

  --surface-base: #faf7f2;
  --surface-inset-bg: color-mix(in oklch, #faf7f2, #2c2318 5%);
  --surface-raised-bg: #ffffff;
  --surface-dark: #1e1710;

  --text-primary: color-mix(in oklch, #2c2318, black 10%);
  --text-secondary: color-mix(in oklch, #2c2318, white 30%);
  --text-muted: color-mix(in oklch, #2c2318, white 55%);
  --text-on-dark: #f5f0e8;
  --text-on-accent: #1e1710;

  --border-subtle: color-mix(in oklch, #2c2318, white 80%);
  --border-medium: color-mix(in oklch, #2c2318, white 65%);

  --shadow-sm: 0 1px 3px color-mix(in oklch, #2c2318, transparent 85%),
               0 1px 2px color-mix(in oklch, #2c2318, transparent 90%);
  --shadow-md: 0 4px 6px color-mix(in oklch, #2c2318, transparent 80%),
               0 2px 4px color-mix(in oklch, #2c2318, transparent 88%);
  --shadow-lg: 0 10px 25px color-mix(in oklch, #2c2318, transparent 75%),
               0 4px 10px color-mix(in oklch, #2c2318, transparent 85%);
  --shadow-accent: 0 4px 20px color-mix(in oklch, #c9a84c, transparent 65%),
                   0 2px 8px color-mix(in oklch, #c9a84c, transparent 78%);

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --header-h: 72px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
  --space-2xl: 10rem;
}


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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Schibsted Grotesk', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--surface-base);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

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

ul { list-style: none; }

address { font-style: normal; }


.text-display {
  font-size: clamp(2.2rem, 5vw + 1rem, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.text-display em {
  font-style: italic;
  color: var(--accent);
}

.text-body {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 400;
}

.text-caption {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}


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

.container--narrow {
  max-width: 800px;
}

.space-section {
  padding: var(--space-xl) 0;
}

.space-card {
  padding: var(--space-md) var(--space-md);
}


.surface {
  background: var(--surface-base);
}

.surface-raised {
  background: var(--surface-raised-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
}

.surface-inset {
  background: var(--surface-inset-bg);
}


.section-label {
  display: inline-block;
  margin-bottom: var(--space-sm);
  color: var(--accent);
}

.section-heading {
  margin-bottom: var(--space-md);
}


.action-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--text-on-accent);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease,
              box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: var(--shadow-accent);
  text-decoration: none;
  min-height: 44px;
}

.action-primary:hover {
  background: var(--accent-warm);
  border-color: var(--accent-warm);
  box-shadow: 0 6px 28px color-mix(in oklch, #c9a84c, transparent 50%),
              0 3px 10px color-mix(in oklch, #c9a84c, transparent 68%);
  transform: translateY(-2px);
}

.action-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--border-medium);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease,
              transform 0.2s ease;
  text-decoration: none;
  min-height: 44px;
}

.action-ghost:hover {
  background: color-mix(in oklch, var(--primary), transparent 92%);
  border-color: var(--primary-light);
  color: var(--text-primary);
  transform: translateY(-2px);
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: color-mix(in oklch, var(--surface-base), transparent 8%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background 0.3s ease;
  will-change: transform;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.site-logo {
  flex-shrink: 0;
  transition: opacity 0.25s ease;
}
.site-logo:hover { opacity: 0.75; }

.site-nav { display: none; }

@media (min-width: 900px) {
  .site-nav { display: flex; }
  .nav-toggle { display: none; }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color 0.25s ease, background 0.25s ease;
  letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: color-mix(in oklch, var(--accent), transparent 88%);
}

.nav-link.active {
  color: var(--accent);
}


.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

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

.nav-toggle.is-open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.mobile-menu {
  background: var(--surface-raised-bg);
  border-top: 1px solid var(--border-subtle);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.is-open {
  max-height: 400px;
}

.mobile-nav-list {
  padding: var(--space-sm) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav-link {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: color 0.25s ease, background 0.25s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

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


.hero-section {
  padding-top: calc(var(--header-h) + var(--space-xl));
  padding-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50vw;
  height: 70vh;
  background: radial-gradient(ellipse at center,
    color-mix(in oklch, var(--accent), transparent 90%) 0%,
    transparent 70%);
  pointer-events: none;
}

.hero-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

.hero-eyebrow {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--accent);
}

.hero-heading {
  font-size: clamp(2.8rem, 6vw + 1rem, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-md);
}

.hero-body {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 480px;
  margin-bottom: var(--space-md);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle {
  width: clamp(260px, 40vw, 480px);
  height: clamp(260px, 40vw, 480px);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg),
              0 0 0 8px color-mix(in oklch, var(--accent), transparent 80%),
              0 0 0 16px color-mix(in oklch, var(--accent), transparent 92%);
}

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

.hero-circle-accent {
  position: absolute;
  width: clamp(200px, 32vw, 380px);
  height: clamp(200px, 32vw, 380px);
  border-radius: 50%;
  background: color-mix(in oklch, var(--accent), transparent 85%);
  top: 50%;
  left: 50%;
  transform: translate(-35%, -35%);
  z-index: 1;
}

.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--text-muted));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}


.strip-intro {
  text-align: center;
  margin-bottom: var(--space-lg);
}

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

@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  padding: var(--space-md) 1.5rem;
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: color-mix(in oklch, var(--accent), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  font-size: 1.3rem;
  color: var(--accent);
  transition: background 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon-wrap {
  background: var(--accent);
  color: var(--text-on-accent);
}

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}


.process-editorial {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.editorial-pull {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding: var(--space-md);
  border-left: 2px solid var(--border-subtle);
  transition: border-color 0.3s ease;
}

.process-step:hover { border-color: var(--accent); }

.step-number {
  font-size: 2rem;
  font-weight: 800;
  color: color-mix(in oklch, var(--accent), transparent 50%);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}


.comparison-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-lg);
}

.comparison-lead {
  margin-top: var(--space-sm);
}

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

@media (min-width: 768px) {
  .comparison-grid { grid-template-columns: repeat(2, 1fr); }
}

.comparison-col {
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--border-subtle);
  background: var(--surface-raised-bg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

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

.comparison-col--a {
  border-top: 3px solid var(--accent);
}

.comparison-col--b {
  border-top: 3px solid var(--border-medium);
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-header i {
  font-size: 1.4rem;
  color: var(--accent);
}

.comparison-col--b .comparison-header i {
  color: var(--text-muted);
}

.comparison-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.comparison-item i {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 0.15rem;
}

.comparison-item--positive i { color: var(--accent); }
.comparison-item--neutral i { color: var(--text-muted); }

.comparison-item span {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}


.showcase-intro {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.showcase-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .showcase-mosaic {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto;
  }
  .mosaic-item--large { grid-row: span 2; }
}

.mosaic-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}

.mosaic-item--large {
  aspect-ratio: 3/4;
}

@media (max-width: 767px) {
  .mosaic-item--large { grid-column: span 2; aspect-ratio: 16/9; }
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mosaic-item:hover img {
  transform: scale(1.04);
}

.mosaic-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(30,23,16,0.85), transparent);
  color: var(--text-on-dark);
  letter-spacing: 0.08em;
}


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

@media (min-width: 768px) {
  .workshops-layout { grid-template-columns: 1fr 1fr; }
}

.workshops-img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.workshops-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workshops-text-col .text-body {
  margin-bottom: var(--space-sm);
}

.workshops-text-col .action-primary {
  margin-top: var(--space-sm);
}


.materials-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-lg);
}

.materials-lead { margin-top: var(--space-sm); }

.materials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .materials-grid { grid-template-columns: repeat(4, 1fr); }
}

.material-item {
  text-align: center;
  padding: var(--space-md) var(--space-sm);
}

.material-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: color-mix(in oklch, var(--accent), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  font-size: 1.4rem;
  color: var(--accent);
}

.material-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}


.page-hero {
  padding-top: calc(var(--header-h) + var(--space-lg));
  padding-bottom: var(--space-lg);
}

.page-hero-content {
  max-width: 700px;
}

.page-hero-heading {
  margin-bottom: var(--space-sm);
}

.page-hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 560px;
}


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

@media (min-width: 768px) {
  .about-layout { grid-template-columns: 1fr 1fr; }
}

.about-img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text-col .text-body {
  margin-bottom: var(--space-sm);
}

.values-intro { text-align: center; margin-bottom: var(--space-lg); }

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

@media (min-width: 600px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

.value-item {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--surface-raised-bg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: color-mix(in oklch, var(--accent), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.value-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.tools-intro { max-width: 640px; margin-bottom: var(--space-lg); }
.tools-lead { margin-top: var(--space-sm); }

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

.tool-entry {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-subtle);
  align-items: start;
}

@media (max-width: 600px) {
  .tool-entry { grid-template-columns: 1fr; gap: 0.4rem; }
}

.tool-label {
  color: var(--accent);
  padding-top: 0.2rem;
}


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

@media (min-width: 900px) {
  .quote-layout { grid-template-columns: 1fr 1fr; }
}

.quote-hint {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.quote-hint-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.quote-hint-item i {
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.quote-hint-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}

.services-detail-intro {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.services-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) { .services-detail-grid { grid-template-columns: repeat(2, 1fr); } }

.service-detail-card {
  padding: var(--space-md) 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface-raised-bg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-detail-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.service-detail-list {
  margin-top: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-left: var(--space-sm);
}

.service-detail-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-muted);
}

.service-detail-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}


.form-card {
  border-radius: var(--radius-xl);
}

.form-card-heading {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--border-subtle);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.form-label span[aria-hidden] {
  color: var(--accent);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--surface-base);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  min-height: 44px;
  appearance: none;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent), transparent 75%);
}

.form-input::placeholder { color: var(--text-muted); }

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

.form-group--checkbox { margin-top: var(--space-sm); }

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

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

.form-checkbox-label span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.form-link {
  color: var(--accent);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.form-link:hover { opacity: 0.75; }

.form-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-sm);
  font-size: 1rem;
}


.workshops-hero { background: var(--surface-base); }

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

@media (min-width: 768px) {
  .workshop-format-layout { grid-template-columns: 1fr 1fr; }
}

.workshop-img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.workshop-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workshop-format-text .text-body { margin-bottom: var(--space-sm); }

.program-intro { text-align: center; margin-bottom: var(--space-lg); }

.program-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) { .program-blocks { grid-template-columns: repeat(2, 1fr); } }

.program-block {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--surface-raised-bg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

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

.program-block-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 0.4rem;
}

.program-block h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.workshop-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) { .workshop-details-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .workshop-details-grid { grid-template-columns: repeat(4, 1fr); } }

.workshop-detail-item {
  padding: var(--space-md);
  text-align: center;
}

.workshop-detail-item i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.workshop-detail-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.faq-intro { margin-bottom: var(--space-lg); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 760px;
}

.faq-item {
  padding: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
}

.faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: var(--space-sm) 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 52px;
  transition: background 0.25s ease;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

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

.faq-answer {
  padding: 0 1.25rem var(--space-sm);
  border-top: 1px solid var(--border-subtle);
}


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

@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1fr 1fr; }
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
  margin-bottom: var(--space-md);
}

.contact-info-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

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

.contact-info-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-link {
  color: var(--accent);
  transition: opacity 0.2s ease;
}

.contact-link:hover { opacity: 0.75; }

.contact-directions {
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.directions-heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.directions-sub {
  font-size: 0.9rem;
  font-weight: 700;
  margin: var(--space-sm) 0 0.4rem;
  color: var(--text-primary);
}

.contact-directions .text-body {
  margin-bottom: 0.5rem;
}

.map-section { line-height: 0; }

.map-wrapper iframe {
  display: block;
  width: 100%;
  filter: grayscale(30%) contrast(1.05);
}


.legal-section { padding-top: calc(var(--header-h) + var(--space-lg)); }

.legal-header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--border-subtle);
}

.legal-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 0.5rem;
}

.legal-date {
  color: var(--text-muted);
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.legal-item {
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-subtle);
}

.legal-item:last-child { border-bottom: none; }

.legal-item h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.legal-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}


.thanks-main { min-height: calc(100vh - var(--header-h) - 300px); }

.thanks-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--header-h) + var(--space-xl));
}

.thanks-content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.thanks-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: var(--space-sm);
  margin-top: var(--space-lg);
}

.thanks-text {
  margin-bottom: var(--space-md);
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}


.envelope-animation {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.envelope-body {
  position: relative;
  width: 120px;
  height: 85px;
  background: color-mix(in oklch, var(--surface-raised-bg), var(--primary) 6%);
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-medium);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.envelope-flap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: color-mix(in oklch, var(--accent), transparent 60%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform-origin: top center;
  transform: rotateX(0deg);
  animation: flapOpen 0.6s ease 0.3s forwards;
}

.envelope-letter {
  position: absolute;
  bottom: 8px;
  left: 12px;
  right: 12px;
  height: 60px;
  background: var(--surface-raised-bg);
  border-radius: 3px;
  border: 1px solid var(--border-subtle);
  transform: translateY(50px);
  animation: letterRise 0.5s ease 0.9s forwards;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6px 8px;
  gap: 4px;
}

.letter-lines span {
  display: block;
  height: 2px;
  background: color-mix(in oklch, var(--accent), transparent 40%);
  border-radius: 2px;
}

.letter-lines span:nth-child(1) { width: 80%; }
.letter-lines span:nth-child(2) { width: 60%; }
.letter-lines span:nth-child(3) { width: 70%; }

@keyframes flapOpen {
  0% { transform: rotateX(0deg); }
  100% { transform: rotateX(-160deg); }
}

@keyframes letterRise {
  0% { transform: translateY(50px); opacity: 0; }
  100% { transform: translateY(-20px); opacity: 1; }
}


.site-footer {
  margin-top: auto;
}

.footer-cta {
  padding: var(--space-xl) 0;
  text-align: center;
}

.footer-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.footer-cta-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: var(--space-sm);
}

.footer-cta-desc {
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
}

.footer-body {
  background: var(--surface-dark);
  color: var(--text-on-dark);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (min-width: 600px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.footer-logo {
  margin-bottom: var(--space-sm);
  filter: brightness(0) invert(1) opacity(0.85);
}

.footer-tagline {
  color: color-mix(in oklch, var(--text-on-dark), transparent 35%);
  line-height: 1.5;
}

.footer-col-heading {
  color: color-mix(in oklch, var(--accent), white 20%);
  margin-bottom: var(--space-sm);
  display: block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-link {
  font-size: 0.9rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 25%);
  transition: color 0.25s ease;
  padding: 0.15rem 0;
}

.footer-link:hover { color: var(--accent); }

.footer-address { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-address .text-caption { color: color-mix(in oklch, var(--text-on-dark), transparent 30%); }
.footer-address .footer-link { font-size: 0.78rem; }

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid color-mix(in oklch, var(--text-on-dark), transparent 80%);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}

.footer-copy {
  color: color-mix(in oklch, var(--text-on-dark), transparent 45%);
}

.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-legal-link {
  color: color-mix(in oklch, var(--text-on-dark), transparent 40%);
  transition: color 0.25s ease;
}

.footer-legal-link:hover { color: var(--accent); }


.cookie-modal {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  z-index: 9999;
  max-width: 360px;
  width: calc(100vw - 2 * var(--space-md));
  background: var(--surface-raised-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg),
              0 0 0 1px var(--border-subtle);
  padding: var(--space-md);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.4s ease;
  opacity: 1;
}

.cookie-modal.cookie-modal--hidden {
  transform: translateY(calc(100% + var(--space-md)));
  opacity: 0;
  pointer-events: none;
}

.cookie-modal-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
}

.cookie-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookie-modal-actions .action-primary,
.cookie-modal-actions .action-ghost {
  width: 100%;
  justify-content: center;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
}

.cookie-customize-panel {
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.cookie-option input {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
}

.cookie-save {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
}


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

  .hero-circle {
    width: 240px;
    height: 240px;
  }

  .hero-circle-accent {
    width: 180px;
    height: 180px;
  }

  .footer-cta-headline {
    font-size: 2rem;
  }

  .comparison-grid,
  .services-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) {
  .space-section { padding: var(--space-2xl) 0; }
}


button, a, input, select, textarea, details summary {
  transition-property: color, background, border-color, box-shadow, transform, opacity;
  transition-duration: 0.25s;
  transition-timing-function: ease;
}