/* =============================================
   DIXUBA MOJABE - WABI-SABI DIGITAL
   CSS Custom Properties & Base
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@400;500;600;700;800&display=swap');

:root {
  --color-earth: #2C2416;
  --color-bark: #4A3728;
  --color-clay: #8B6B52;
  --color-sand: #C4A882;
  --color-parchment: #F5EFE6;
  --color-cream: #FAF7F2;
  --color-moss: #5C6B4A;
  --color-sage: #8FA67A;
  --color-sage-light: #C8D9B8;
  --color-rust: #A0522D;
  --color-warm-white: #FDFAF6;

  --shadow-sm: 0 2px 8px rgba(44,36,22,0.08), 0 1px 3px rgba(44,36,22,0.05);
  --shadow-md: 0 8px 24px rgba(44,36,22,0.12), 0 2px 8px rgba(44,36,22,0.06);
  --shadow-lg: 0 20px 48px rgba(44,36,22,0.14), 0 4px 16px rgba(44,36,22,0.08);
  --shadow-color: 0 12px 32px rgba(140,107,82,0.18), 0 2px 8px rgba(140,107,82,0.10);

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-pill: 999px;

  --font-main: 'Schibsted Grotesk', sans-serif;

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

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

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

body.canvas {
  font-family: var(--font-main);
  background-color: var(--color-warm-white);
  color: var(--color-earth);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body.canvas--thanks {
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--color-moss);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--color-bark);
}

ul {
  list-style: none;
}

/* =============================================
   PAGE TRANSITION LINE
   ============================================= */

.page-transition-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-moss), var(--color-sand));
  z-index: 9999;
  transition: width 0.4s ease;
}

.page-transition-line.animating {
  width: 100%;
}

/* =============================================
   NAVIGATION - GLASSMORPHISM
   ============================================= */

.nav-glass {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 250, 246, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196, 168, 130, 0.2);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.nav-glass.nav-scrolled,
.nav-glass.nav-solid {
  background: rgba(253, 250, 246, 0.97);
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
}

.nav-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-earth);
  letter-spacing: -0.02em;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-bark);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  background: var(--color-sage-light);
  color: var(--color-earth);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger:hover {
  background: var(--color-sage-light);
}

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

/* =============================================
   MOBILE DRAWER - CIRCULAR REVEAL
   ============================================= */

.drawer {
  position: fixed;
  inset: 0;
  z-index: 990;
  background: var(--color-parchment);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  clip-path: circle(0px at calc(100% - 44px) 44px);
  transition: clip-path 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
}

.drawer.drawer--open {
  clip-path: circle(150% at calc(100% - 44px) 44px);
  pointer-events: all;
}

.drawer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--color-earth);
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.drawer-close:hover {
  background: var(--color-sage-light);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease 0.3s, transform 0.3s ease 0.3s;
}

.drawer.drawer--open .drawer-links {
  opacity: 1;
  transform: translateY(0);
}

.drawer-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-earth);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease, color 0.2s ease;
  display: block;
}

.drawer-link:hover {
  background: var(--color-sage-light);
  color: var(--color-moss);
}

/* =============================================
   HERO - BACKGROUND CLIP TEXT EFFECT
   ============================================= */

.stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.stage-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.stage-curtain {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(44, 36, 22, 0.15) 0%,
    rgba(44, 36, 22, 0.4) 50%,
    rgba(44, 36, 22, 0.75) 100%
  );
}

.stage-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--space-md) var(--space-xl);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-text-clip-wrap {
  margin-bottom: -0.15em;
}

.hero-clip-text {
  font-size: clamp(5rem, 18vw, 18rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  background-image: url('../images/salary-negotiation-hero.jpg');
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

.hero-sub-block {
  max-width: 640px;
  padding-top: var(--space-md);
  animation: heroSubReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

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

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--color-sand);
  margin-bottom: var(--space-xs);
}

.hero-body {
  font-size: 1rem;
  color: rgba(245, 239, 230, 0.85);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.hero-cta-row {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.stage-scroll-hint {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245, 239, 230, 0.6);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(245,239,230,0.6), transparent);
  animation: scrollPulse 2s ease infinite;
}

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

/* =============================================
   BUTTONS
   ============================================= */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--color-moss);
  color: var(--color-warm-white);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(92, 107, 74, 0.3);
  text-decoration: none;
  min-height: 44px;
}

.btn-primary:hover {
  background: var(--color-bark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92, 107, 74, 0.35);
  color: var(--color-warm-white);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--color-parchment);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(245, 239, 230, 0.5);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  text-decoration: none;
  min-height: 44px;
}

.btn-ghost:hover {
  background: rgba(245, 239, 230, 0.15);
  border-color: var(--color-parchment);
  color: var(--color-parchment);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--color-moss);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-moss);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  text-decoration: none;
  min-height: 44px;
}

.btn-outline:hover {
  background: var(--color-moss);
  color: var(--color-warm-white);
}

/* =============================================
   SECTION LABELS
   ============================================= */

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-clay);
  margin-bottom: var(--space-xs);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-earth);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* =============================================
   INTRO STRIP
   ============================================= */

.intro-strip {
  background: var(--color-parchment);
  padding: var(--space-lg) var(--space-md);
}

.intro-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.intro-strip-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.intro-strip-text p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--color-bark);
}

.intro-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-color);
  transform: rotate(-1.5deg);
}

/* =============================================
   ACCORDION
   ============================================= */

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

.gallery-header {
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(196, 168, 130, 0.25);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

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

.accordion-item.accordion-item--open {
  box-shadow: var(--shadow-lg);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 24px var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-main);
  transition: background 0.2s ease;
  min-height: 44px;
}

.accordion-trigger:hover {
  background: rgba(196, 168, 130, 0.1);
}

.acc-number {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-clay);
  letter-spacing: 0.05em;
  min-width: 28px;
}

.acc-title {
  flex: 1;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--color-earth);
  letter-spacing: -0.01em;
}

.acc-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-moss);
  font-size: 0.8rem;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease;
  flex-shrink: 0;
}

.accordion-item--open .acc-icon {
  transform: rotate(45deg);
  background: var(--color-moss);
  color: white;
}

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

.accordion-panel.panel--open {
  max-height: 2000px;
}

.accordion-body {
  padding: 0 var(--space-md) var(--space-md);
}

.acc-content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-lg);
}

.acc-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.acc-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-bark);
}

.acc-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-earth);
  margin-top: 8px;
}

.acc-text ul {
  list-style: disc;
  padding-left: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.acc-text ul li {
  font-size: 0.95rem;
  color: var(--color-bark);
  line-height: 1.6;
}

.acc-inline-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

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

.acc-highlight-card {
  background: var(--color-parchment);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border-left: 3px solid var(--color-moss);
}

.acc-highlight-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-earth);
  margin-bottom: 12px;
}

.acc-highlight-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.acc-highlight-card li {
  font-size: 0.875rem;
  color: var(--color-bark);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.acc-highlight-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-sage);
}

.acc-note-card {
  background: rgba(92, 107, 74, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.acc-note-card p {
  font-size: 0.875rem;
  color: var(--color-moss);
  line-height: 1.6;
  font-style: italic;
}

/* =============================================
   VISUAL BREAK SECTION
   ============================================= */

.visual-break {
  background: var(--color-earth);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.visual-break-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

.visual-break-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transform: rotate(1deg);
}

.visual-break-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.visual-break-text .section-label {
  color: var(--color-sand);
}

.visual-break-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-parchment);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.visual-break-text p {
  font-size: 1.05rem;
  color: rgba(245, 239, 230, 0.8);
  line-height: 1.75;
}

/* =============================================
   SHELF SECTION
   ============================================= */

.shelf-section {
  padding: var(--space-xl) var(--space-md);
  background: var(--color-parchment);
}

.shelf-header {
  max-width: 1280px;
  margin: 0 auto var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.shelf {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.shelf-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid rgba(196, 168, 130, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shelf-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-color);
}

.shelf-card.spotlight {
  background: var(--color-moss);
  border-color: transparent;
}

.shelf-card.spotlight .shelf-card-icon {
  color: var(--color-sage-light);
}

.shelf-card.spotlight h3 {
  color: var(--color-parchment);
}

.shelf-card.spotlight p {
  color: rgba(245, 239, 230, 0.8);
}

.shelf-card-icon {
  font-size: 1.4rem;
  color: var(--color-moss);
}

.shelf-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-earth);
  letter-spacing: -0.01em;
}

.shelf-card p {
  font-size: 0.9rem;
  color: var(--color-clay);
  line-height: 1.65;
}

/* =============================================
   CONTACT PREVIEW
   ============================================= */

.contact-preview {
  padding: var(--space-xl) var(--space-md);
}

.contact-preview-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: center;
}

.contact-preview-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-preview-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-earth);
  letter-spacing: -0.02em;
}

.contact-preview-text p {
  font-size: 1rem;
  color: var(--color-clay);
  line-height: 1.7;
}

.contact-preview-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(196, 168, 130, 0.2);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

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

.contact-card.contact-card--large {
  padding: 24px;
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--color-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-moss);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-card-body h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-clay);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-card-body p {
  font-size: 0.95rem;
  color: var(--color-earth);
  line-height: 1.55;
}

.contact-card-body a {
  color: var(--color-moss);
  font-weight: 500;
}

.contact-note {
  font-size: 0.8rem !important;
  color: var(--color-clay) !important;
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background: var(--color-earth);
  color: var(--color-sand);
  margin-top: auto;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-xl);
}

.footer-logo {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  filter: brightness(0) invert(0.7);
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(196, 168, 130, 0.7);
}

.footer-nav h4,
.footer-legal h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-sand);
  margin-bottom: var(--space-sm);
}

.footer-nav ul,
.footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a,
.footer-legal a {
  font-size: 0.9rem;
  color: rgba(196, 168, 130, 0.7);
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--color-sand);
}

.footer-bottom {
  border-top: 1px solid rgba(196, 168, 130, 0.15);
  padding: var(--space-sm) var(--space-md);
  max-width: 1280px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(196, 168, 130, 0.5);
}

/* =============================================
   INNER HERO (SUBPAGES)
   ============================================= */

.inner-hero {
  padding: calc(68px + var(--space-xl)) var(--space-md) var(--space-lg);
  background: var(--color-parchment);
  position: relative;
  overflow: hidden;
}

.inner-hero--dark {
  background: var(--color-earth);
}

.inner-hero--dark .inner-hero-title {
  color: var(--color-parchment);
}

.inner-hero--dark .inner-hero-sub {
  color: rgba(245, 239, 230, 0.75);
}

.inner-hero--dark .section-label {
  color: var(--color-sand);
}

.inner-hero-content {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.inner-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-earth);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.inner-hero-sub {
  font-size: 1.1rem;
  color: var(--color-clay);
  max-width: 600px;
  line-height: 1.7;
}

.inner-hero-deco {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.deco-circle {
  border-radius: 50%;
  background: rgba(143, 166, 122, 0.12);
  position: absolute;
}

.deco-circle--lg {
  width: 400px;
  height: 400px;
  right: 0;
  top: -200px;
}

.deco-circle--sm {
  width: 200px;
  height: 200px;
  right: 200px;
  top: -50px;
  background: rgba(196, 168, 130, 0.1);
}

/* =============================================
   CONTENT SECTIONS
   ============================================= */

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

.content-section--tinted {
  background: var(--color-parchment);
}

.content-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.content-narrow {
  max-width: 860px;
}

.content-wide {
  max-width: 1100px;
}

/* =============================================
   NOT HERE PAGE
   ============================================= */

.not-here-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.not-here-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid rgba(196, 168, 130, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.25s ease;
}

.not-here-card:hover {
  box-shadow: var(--shadow-md);
}

.not-here-card--accent {
  background: var(--color-parchment);
  border-color: var(--color-sand);
}

.not-here-card--muted {
  opacity: 0.8;
}

.not-here-icon {
  font-size: 1.5rem;
  color: var(--color-clay);
}

.not-here-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-earth);
}

.not-here-card p {
  font-size: 0.9rem;
  color: var(--color-clay);
  line-height: 1.65;
}

.divider-organic {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-sand), transparent);
  margin: var(--space-xl) 0;
}

.what-is-here-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.what-is-here-block h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-earth);
  letter-spacing: -0.02em;
}

.what-is-here-block p {
  font-size: 1rem;
  color: var(--color-bark);
  line-height: 1.75;
  max-width: 720px;
}

/* =============================================
   ARTICLES PAGE
   ============================================= */

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

.article-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(196, 168, 130, 0.2);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  box-shadow: var(--shadow-lg);
}

.article-card--featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.article-card-image {
  overflow: hidden;
}

.article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  min-height: 260px;
}

.article-card:hover .article-img {
  transform: scale(1.03);
}

.article-card-image--side {
  max-height: 320px;
}

.article-card-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-moss);
  background: var(--color-sage-light);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.article-title {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-earth);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.article-excerpt {
  font-size: 0.95rem;
  color: var(--color-clay);
  line-height: 1.7;
}

.article-full-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(196, 168, 130, 0.2);
  padding-top: 16px;
  margin-top: 4px;
}

.article-full-text p {
  font-size: 0.93rem;
  color: var(--color-bark);
  line-height: 1.75;
}

.article-meta {
  font-size: 0.8rem;
  color: var(--color-clay);
  display: flex;
  gap: var(--space-sm);
}

.article-meta i {
  margin-right: 4px;
}

.articles-cta-block {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-parchment);
  border-radius: var(--radius-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.articles-cta-block p {
  font-size: 1.05rem;
  color: var(--color-bark);
}

/* =============================================
   SUBSCRIBE PAGE
   ============================================= */

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

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

.subscribe-info h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-earth);
  letter-spacing: -0.02em;
}

.subscribe-info p {
  font-size: 1rem;
  color: var(--color-bark);
  line-height: 1.75;
}

.subscribe-what-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.subscribe-what-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-bark);
}

.subscribe-what-item i {
  color: var(--color-moss);
  width: 20px;
  text-align: center;
}

.subscribe-form-wrap {
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  border: 1px solid rgba(196, 168, 130, 0.2);
  box-shadow: var(--shadow-md);
}

.subscribe-note {
  margin-top: var(--space-md);
  font-size: 0.85rem;
  color: var(--color-clay);
  line-height: 1.6;
}

.subscribe-note a {
  color: var(--color-moss);
}

/* =============================================
   CHAT FORM STYLE
   ============================================= */

.chat-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-bubble {
  max-width: 90%;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  font-size: 0.93rem;
  line-height: 1.5;
}

.chat-bubble--company {
  background: var(--color-parchment);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  color: var(--color-earth);
  font-weight: 500;
  border: 1px solid rgba(196, 168, 130, 0.2);
}

.chat-bubble--company p {
  margin: 0;
}

.chat-bubble--user {
  background: var(--color-sage-light);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  width: 100%;
  max-width: 100%;
  padding: 0;
  background: transparent;
}

.chat-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-sage-light);
  border: 1.5px solid transparent;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.93rem;
  color: var(--color-earth);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 44px;
  outline: none;
}

.chat-input:focus {
  border-color: var(--color-moss);
  box-shadow: 0 0 0 3px rgba(92, 107, 74, 0.15);
}

.chat-textarea {
  resize: vertical;
  min-height: 100px;
}

.chat-bubble--checkbox {
  background: none;
  padding: 0;
}

.chat-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-bark);
  line-height: 1.5;
  cursor: pointer;
}

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

.chat-checkbox-label a {
  color: var(--color-moss);
}

.chat-send-btn {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: var(--color-moss);
  color: white;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  min-height: 44px;
}

.chat-send-btn:hover {
  background: var(--color-bark);
  transform: translateY(-2px);
}

/* =============================================
   CONTACT PAGE
   ============================================= */

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

.team-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-color);
  transform: rotate(-1deg);
}

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

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

.team-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--color-earth);
  letter-spacing: -0.02em;
}

.team-text p {
  font-size: 1rem;
  color: var(--color-bark);
  line-height: 1.75;
}

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

.contact-info-col h2,
.contact-form-col h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--color-earth);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-contact-form {
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  border: 1px solid rgba(196, 168, 130, 0.2);
  box-shadow: var(--shadow-md);
}

/* =============================================
   MAP
   ============================================= */

.map-section {
  padding: 0;
}

.map-wrap {
  width: 100%;
  overflow: hidden;
}

.map-wrap iframe {
  display: block;
  filter: sepia(20%) saturate(80%);
}

/* =============================================
   THANKS PAGE
   ============================================= */

.thanks-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-md);
  min-height: calc(100vh - 200px);
}

.thanks-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.thanks-icon {
  font-size: 3rem;
  color: var(--color-moss);
  opacity: 0.6;
}

.thanks-heading {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--color-earth);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.thanks-sub {
  font-size: 1.1rem;
  color: var(--color-clay);
}

/* =============================================
   LEGAL CARDS
   ============================================= */

.legal-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid rgba(196, 168, 130, 0.2);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-earth);
  letter-spacing: -0.01em;
}

.legal-card p {
  font-size: 0.93rem;
  color: var(--color-bark);
  line-height: 1.75;
}

.legal-card ul {
  list-style: disc;
  padding-left: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-card ul li {
  font-size: 0.93rem;
  color: var(--color-bark);
  line-height: 1.6;
}

.legal-card a {
  color: var(--color-moss);
}

.legal-card--intro {
  background: var(--color-parchment);
  border-left: 3px solid var(--color-moss);
}

.legal-card--cookies-intro {
  border-left: 3px solid var(--color-clay);
}

.legal-card--cookies-necessary {
  border-top: 3px solid var(--color-moss);
}

.legal-card--cookies-analytics {
  border-top: 3px solid var(--color-sand);
}

/* =============================================
   COOKIE CONSENT - BOTTOM LEFT MODAL
   ============================================= */

.cookie-modal {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 8000;
  width: 360px;
  max-width: calc(100vw - 48px);
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(196, 168, 130, 0.2);
  padding: 20px;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.cookie-modal.cookie-modal--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.cookie-modal-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-earth);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-modal-title i {
  color: var(--color-moss);
}

.cookie-modal-text {
  font-size: 0.82rem;
  color: var(--color-clay);
  line-height: 1.6;
  margin-bottom: 14px;
}

.cookie-modal-text a {
  color: var(--color-moss);
}

.cookie-modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-btn-accept {
  width: 100%;
  padding: 11px;
  background: var(--color-moss);
  color: white;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s ease;
  min-height: 44px;
}

.cookie-btn-accept:hover {
  background: var(--color-bark);
}

.cookie-btn-necessary {
  width: 100%;
  padding: 10px;
  background: transparent;
  color: var(--color-clay);
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid rgba(196, 168, 130, 0.3);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  min-height: 44px;
}

.cookie-btn-necessary:hover {
  background: var(--color-parchment);
  color: var(--color-earth);
}

.cookie-btn-customize {
  background: none;
  border: none;
  font-family: var(--font-main);
  font-size: 0.78rem;
  color: var(--color-clay);
  cursor: pointer;
  text-align: center;
  padding: 4px;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cookie-btn-customize:hover {
  color: var(--color-moss);
}

.cookie-expand {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(196, 168, 130, 0.2);
}

.cookie-expand.cookie-expand--open {
  display: block;
}

.cookie-expand-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--color-bark);
}

.cookie-expand-item span {
  font-weight: 500;
}

.cookie-toggle {
  position: relative;
  width: 36px;
  height: 20px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(196, 168, 130, 0.4);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s ease;
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  top: 3px;
  left: 3px;
  transition: transform 0.2s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--color-moss);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(16px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.7;
  cursor: not-allowed;
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE - MOBILE FIRST
   ============================================= */

@media (max-width: 1024px) {
  .acc-content-grid {
    grid-template-columns: 1fr;
  }

  .acc-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .acc-highlight-card,
  .acc-note-card {
    flex: 1;
    min-width: 240px;
  }

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

  .article-card--featured {
    grid-template-columns: 1fr;
  }

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

  .visual-break-img {
    height: 280px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .intro-img {
    transform: none;
    height: 220px;
  }

  .not-here-grid {
    grid-template-columns: 1fr;
  }

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

  .subscribe-layout {
    grid-template-columns: 1fr;
  }

  .team-block {
    grid-template-columns: 1fr;
  }

  .team-image-wrap {
    transform: none;
  }

  .team-img {
    height: 280px;
  }

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

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

  .footer-brand {
    grid-column: auto;
  }

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

  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .stage-scroll-hint {
    display: none;
  }

  .inner-hero-deco {
    display: none;
  }

  .visual-break-inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .accordion-trigger {
    padding: 18px var(--space-sm);
  }

  .accordion-body {
    padding: 0 var(--space-sm) var(--space-sm);
  }

  .gallery {
    padding: var(--space-lg) var(--space-sm);
  }

  .shelf-section,
  .contact-preview,
  .content-section,
  .visual-break,
  .intro-strip {
    padding: var(--space-lg) var(--space-sm);
  }

  .acc-sidebar {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    padding: 0 var(--space-sm);
  }

  .hero-clip-text {
    font-size: clamp(4rem, 22vw, 8rem);
  }

  .stage-content {
    padding: 0 var(--space-sm) var(--space-lg);
  }

  .cookie-modal {
    bottom: 16px;
    left: 16px;
    right: 16px;
    width: auto;
    max-width: none;
  }

  .thanks-stage {
    padding: var(--space-xl) var(--space-sm);
  }
}