/* ============================================================
   MORVISTO — Complete Stylesheet
   Design: Kinetic Typography | Dynamic, Expressive, Modern
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ── Design Tokens ── */
:root {
  /* Colors */
  --clr-bg:          #F7F5F0;
  --clr-bg-alt:      #EDEAE2;
  --clr-bg-dark:     #1A1814;
  --clr-bg-mid:      #2C2820;
  --clr-surface:     #FFFFFF;
  --clr-primary:     #1A1814;
  --clr-secondary:   #3D3730;
  --clr-accent:      #E8622A;
  --clr-accent-2:    #F0A500;
  --clr-accent-3:    #2E7D6B;
  --clr-text:        #1E1C18;
  --clr-text-muted:  #6B6560;
  --clr-text-light:  #A8A29C;
  --clr-border:      #D8D3CB;
  --clr-white:       #FDFCFA;

  /* Typography Scale */
  --fs-xs:   clamp(0.75rem,  1.5vw, 0.8125rem);
  --fs-sm:   clamp(0.875rem, 1.8vw, 0.9375rem);
  --fs-base: clamp(1rem,     2vw,   1.0625rem);
  --fs-md:   clamp(1.125rem, 2.2vw, 1.25rem);
  --fs-lg:   clamp(1.25rem,  2.5vw, 1.5rem);
  --fs-xl:   clamp(1.5rem,   3vw,   2rem);
  --fs-2xl:  clamp(1.875rem, 4vw,   2.625rem);
  --fs-3xl:  clamp(2.25rem,  5vw,   3.5rem);
  --fs-4xl:  clamp(3rem,     7vw,   5rem);
  --fs-5xl:  clamp(3.5rem,   9vw,   6.5rem);

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

  /* Border Radius Scale */
  --r-xs:  3px;
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-full: 9999px;

  /* Shadows — consistent top-left light source */
  --sh-xs:  1px 2px 4px rgba(26,24,20,0.06);
  --sh-sm:  2px 4px 10px rgba(26,24,20,0.08), 0 1px 2px rgba(26,24,20,0.05);
  --sh-md:  4px 8px 24px rgba(26,24,20,0.10), 0 2px 4px rgba(26,24,20,0.06);
  --sh-lg:  8px 16px 40px rgba(26,24,20,0.12), 0 4px 8px rgba(26,24,20,0.07);
  --sh-xl:  12px 24px 60px rgba(26,24,20,0.15), 0 6px 12px rgba(26,24,20,0.08);
  --sh-accent: 4px 8px 24px rgba(232,98,42,0.25), 0 2px 4px rgba(232,98,42,0.12);

  /* Transitions */
  --tr-fast:   150ms ease;
  --tr-base:   250ms ease;
  --tr-slow:   400ms ease;
  --tr-spring: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Schibsted Grotesk', system-ui, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-6);
}
.container--wide { max-width: 1400px; }
.container--narrow { max-width: 760px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-accent { color: var(--clr-accent); }
.text-accent-2 { color: var(--clr-accent-2); }
.text-accent-3 { color: var(--clr-accent-3); }
.text-center { text-align: center; }
.text-muted { color: var(--clr-text-muted); }

/* ── Notification Banner ── */
.notif-banner {
  background: var(--clr-accent);
  color: var(--clr-white);
  padding: var(--sp-3) var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  position: relative;
  z-index: 200;
  font-size: var(--fs-sm);
  font-weight: 500;
}
.notif-banner p { flex: 1; text-align: center; }
.notif-banner a { color: var(--clr-white); text-decoration: underline; text-underline-offset: 3px; }
.notif-banner__close {
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--clr-white);
  width: 28px; height: 28px;
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--tr-base);
  flex-shrink: 0;
  font-size: 1rem;
}
.notif-banner__close:hover { background: rgba(255,255,255,0.35); }
.notif-banner.hidden { display: none; }

/* ── Navigation ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,245,240,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--sh-xs);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--sp-4);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.nav-logo img { width: 38px; height: 38px; }
.nav-logo-text {
  font-size: var(--fs-md);
  font-weight: 800;
  color: var(--clr-primary);
  letter-spacing: -0.03em;
}
.nav-logo-text span { color: var(--clr-accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-secondary);
  position: relative;
  padding-block: var(--sp-1);
  transition: color var(--tr-base);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--clr-accent);
  transition: width var(--tr-base);
  border-radius: var(--r-full);
}
.nav-links a:hover { color: var(--clr-accent); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--clr-accent); }
.nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--clr-bg-alt);
  border-radius: var(--r-full);
  padding: var(--sp-1) var(--sp-3);
  border: 1px solid var(--clr-border);
}
.lang-btn {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--clr-text-muted);
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: var(--r-full);
  transition: all var(--tr-base);
}
.lang-btn:hover { color: var(--clr-accent); }
.lang-btn.active {
  color: var(--clr-white);
  background: var(--clr-accent);
}
.lang-divider {
  color: var(--clr-border);
  font-size: var(--fs-xs);
  user-select: none;
}

/* CTA Button Nav */
.btn-nav {
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 700;
  transition: all var(--tr-base);
  box-shadow: var(--sh-sm);
}
.btn-nav:hover {
  background: var(--clr-accent);
  transform: translateY(-1px);
  box-shadow: var(--sh-accent);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  border-radius: var(--r-sm);
  transition: background var(--tr-base);
}
.nav-hamburger:hover { background: var(--clr-bg-alt); }
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--clr-primary);
  border-radius: var(--r-full);
  transition: all var(--tr-base);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--clr-bg-dark);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  transform: translateX(100%);
  transition: transform var(--tr-slow);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--clr-white);
  letter-spacing: -0.02em;
  transition: color var(--tr-base);
}
.mobile-nav a:hover { color: var(--clr-accent); }
.mobile-nav .lang-switcher {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  margin-top: var(--sp-4);
}
.mobile-nav .lang-btn { color: rgba(255,255,255,0.6); }
.mobile-nav .lang-btn.active { background: var(--clr-accent); color: var(--clr-white); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--r-full);
  font-size: var(--fs-base);
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: all var(--tr-spring);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--clr-accent);
  color: var(--clr-white);
  box-shadow: var(--sh-accent);
}
.btn--primary:hover {
  background: #D4541E;
  transform: translateY(-2px);
  box-shadow: 6px 12px 30px rgba(232,98,42,0.35), 0 3px 6px rgba(232,98,42,0.15);
}
.btn--secondary {
  background: transparent;
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}
.btn--secondary:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.btn--light {
  background: var(--clr-white);
  color: var(--clr-primary);
  box-shadow: var(--sh-sm);
}
.btn--light:hover {
  background: var(--clr-bg);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.3);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
.btn--sm {
  padding: var(--sp-3) var(--sp-6);
  font-size: var(--fs-sm);
}

/* ── Kinetic Typography Animations ── */
@keyframes weight-breathe {
  0%, 100% { font-weight: 800; letter-spacing: -0.04em; }
  50%       { font-weight: 400; letter-spacing: -0.01em; }
}
@keyframes color-shift {
  0%   { color: var(--clr-white); }
  33%  { color: var(--clr-accent-2); }
  66%  { color: var(--clr-accent); }
  100% { color: var(--clr-white); }
}
@keyframes letter-breathe {
  0%, 100% { letter-spacing: -0.04em; }
  50%       { letter-spacing: 0.02em; }
}
@keyframes slide-up-fade {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes accent-pulse {
  0%, 100% { color: var(--clr-accent); opacity: 1; }
  50%       { color: var(--clr-accent-2); opacity: 0.85; }
}
@keyframes underline-grow {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes bg-pan {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hero Kinetic Text */
.kinetic-hero {
  animation: slide-up-fade 0.9s ease both;
}
.kinetic-hero .line-1 {
  display: block;
  animation: letter-breathe 6s ease-in-out infinite;
}
.kinetic-hero .line-accent {
  display: block;
  animation: accent-pulse 4s ease-in-out infinite;
  color: var(--clr-accent);
}
.kinetic-word {
  display: inline-block;
  animation: color-shift 8s ease-in-out infinite;
}
.kinetic-word--delay { animation-delay: 2s; }
.kinetic-word--delay2 { animation-delay: 4s; }

/* ── Hero Section ── */
.hero {
  background: var(--clr-bg-dark);
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 30% 50%, rgba(232,98,42,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 50% 60% at 80% 20%, rgba(240,165,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  padding: var(--sp-24) var(--sp-12) var(--sp-24) 0;
  padding-left: max(var(--sp-6), calc((100vw - 1200px) / 2 + var(--sp-6)));
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(232,98,42,0.15);
  border: 1px solid rgba(232,98,42,0.3);
  color: var(--clr-accent);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
  animation: slide-up-fade 0.6s ease 0.1s both;
}
.hero-title {
  font-size: var(--fs-5xl);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--clr-white);
  margin-bottom: var(--sp-6);
}
.hero-desc {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: var(--sp-10);
  animation: slide-up-fade 0.8s ease 0.4s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  animation: slide-up-fade 0.8s ease 0.55s both;
}
.hero-image-side {
  position: relative;
  height: 100%;
  min-height: 88vh;
  overflow: hidden;
}
.hero-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-image-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--clr-bg-dark) 0%, transparent 40%);
  z-index: 1;
}
/* Overlap Card */
.hero-overlap-card {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--clr-white);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-8);
  box-shadow: var(--sh-xl);
  z-index: 3;
  width: 260px;
  animation: slide-up-fade 1s ease 0.7s both;
}
.hero-overlap-card .card-icon {
  width: 48px; height: 48px;
  background: var(--clr-accent);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-white);
  font-size: 1.25rem;
  margin-bottom: var(--sp-3);
  box-shadow: var(--sh-accent);
}
.hero-overlap-card .card-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: var(--sp-1);
}
.hero-overlap-card .card-value {
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--clr-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--clr-accent);
  padding: var(--sp-6) 0;
}
.stats-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  color: var(--clr-white);
}
.stat-item .stat-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: var(--sp-1);
}
.stat-item .stat-value {
  font-size: var(--fs-lg);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

/* ── Section Styles ── */
.section {
  padding-block: var(--sp-24);
}
.section--alt { background: var(--clr-bg-alt); }
.section--dark {
  background: var(--clr-bg-dark);
  color: var(--clr-white);
}
.section--mid {
  background: var(--clr-bg-mid);
  color: var(--clr-white);
}

.section-header {
  margin-bottom: var(--sp-16);
}
.section-header.text-center { text-align: center; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-4);
}
.section-eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--clr-accent);
  border-radius: var(--r-full);
}
.section-title {
  font-size: var(--fs-3xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--clr-primary);
}
.section--dark .section-title,
.section--mid .section-title { color: var(--clr-white); }
.section-subtitle {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin-top: var(--sp-4);
}
.section--dark .section-subtitle,
.section--mid .section-subtitle { color: rgba(255,255,255,0.65); }
.section-header.text-center .section-subtitle { margin-inline: auto; }

/* ── Problem Section ── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.problem-visual {
  position: relative;
}
.problem-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.problem-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.problem-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--clr-accent-2);
  color: var(--clr-primary);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-lg);
  font-weight: 800;
  font-size: var(--fs-sm);
  box-shadow: var(--sh-md);
  text-align: center;
  line-height: 1.3;
}
.problem-questions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.problem-q {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.problem-q-icon {
  width: 44px; height: 44px;
  background: rgba(232,98,42,0.1);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all var(--tr-base);
}
.problem-q:hover .problem-q-icon {
  background: var(--clr-accent);
  color: var(--clr-white);
  box-shadow: var(--sh-accent);
}
.problem-q-text h4 {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: var(--sp-1);
  letter-spacing: -0.01em;
}
.problem-q-text p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ── How It Works ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(33.33% - 20px);
  right: calc(33.33% - 20px);
  height: 2px;
  background: linear-gradient(to right, var(--clr-accent), var(--clr-accent-2));
  border-radius: var(--r-full);
}
.step-card {
  background: var(--clr-surface);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--sh-md);
  transition: all var(--tr-base);
  position: relative;
  border: 1px solid var(--clr-border);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-xl);
  border-color: var(--clr-accent);
}
.step-number {
  width: 52px; height: 52px;
  background: var(--clr-bg-dark);
  color: var(--clr-white);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-md);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
  position: relative;
  z-index: 1;
  transition: all var(--tr-base);
}
.step-card:hover .step-number {
  background: var(--clr-accent);
  box-shadow: var(--sh-accent);
}
.step-card h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}
.step-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
}
.step-duration {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-accent);
  background: rgba(232,98,42,0.1);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  margin-top: var(--sp-4);
}

/* ── What We Track ── */
.track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-4);
}
.track-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  transition: all var(--tr-base);
}
.track-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(232,98,42,0.4);
  transform: translateX(4px);
}
.track-item-icon {
  width: 40px; height: 40px;
  background: rgba(232,98,42,0.2);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.track-item span {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

/* ── Photo Grid ── */
.photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 200px;
  gap: var(--sp-4);
}
.photo-grid-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh-md);
  cursor: pointer;
}
.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}
.photo-grid-item:hover img { transform: scale(1.04); }
.photo-grid-item:nth-child(1) { grid-row: 1 / 3; }
.photo-grid-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,24,20,0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--tr-base);
}
.photo-grid-item:hover::after { opacity: 1; }
.photo-grid-item .photo-overlay {
  position: absolute;
  bottom: var(--sp-4);
  left: var(--sp-4);
  color: var(--clr-white);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--tr-base);
  z-index: 2;
}
.photo-grid-item:hover .photo-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* ── Newsletter Strip ── */
.newsletter-strip {
  background: var(--clr-bg-mid);
  padding: var(--sp-12) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.newsletter-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
}
.newsletter-text { flex: 1; }
.newsletter-text h3 {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--clr-white);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: var(--sp-2);
}
.newsletter-text p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
}
.newsletter-form {
  display: flex;
  gap: var(--sp-3);
  flex: 1;
  max-width: 440px;
}
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--clr-white);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  transition: all var(--tr-base);
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus {
  border-color: var(--clr-accent);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(232,98,42,0.15);
}

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
}
.service-card {
  background: var(--clr-surface);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  border: 1px solid var(--clr-border);
  box-shadow: var(--sh-sm);
  transition: all var(--tr-base);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--clr-accent), var(--clr-accent-2));
  transform: scaleX(0);
  transition: transform var(--tr-base);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--sp-5);
  transition: all var(--tr-base);
}
.service-icon--orange { background: rgba(232,98,42,0.1); color: var(--clr-accent); }
.service-icon--gold   { background: rgba(240,165,0,0.1); color: var(--clr-accent-2); }
.service-icon--green  { background: rgba(46,125,107,0.1); color: var(--clr-accent-3); }
.service-card:hover .service-icon--orange { background: var(--clr-accent); color: var(--clr-white); box-shadow: var(--sh-accent); }
.service-card:hover .service-icon--gold   { background: var(--clr-accent-2); color: var(--clr-primary); }
.service-card:hover .service-icon--green  { background: var(--clr-accent-3); color: var(--clr-white); }
.service-card h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}
.service-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ── Team / About ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
}
.about-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 4px solid var(--clr-bg);
}
.about-img-accent img { width: 100%; height: 150px; object-fit: cover; }

.about-content .section-title { margin-bottom: var(--sp-6); }
.about-content p {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.value-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-primary);
}
.value-item i { color: var(--clr-accent); font-size: 1rem; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: box-shadow var(--tr-base);
}
.faq-item:hover { box-shadow: var(--sh-sm); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--clr-primary);
  text-align: left;
  cursor: pointer;
  transition: color var(--tr-base);
  gap: var(--sp-4);
}
.faq-question:hover { color: var(--clr-accent); }
.faq-question i {
  flex-shrink: 0;
  transition: transform var(--tr-base);
  color: var(--clr-accent);
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--tr-slow), padding var(--tr-slow);
}
.faq-answer p {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ── Contact Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-16);
  align-items: start;
}
.contact-info h2 {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--clr-primary);
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-4);
}
.contact-info p {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}
.contact-details { display: flex; flex-direction: column; gap: var(--sp-4); }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(232,98,42,0.1);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail-text .label {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.contact-detail-text .value {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-primary);
}
.contact-detail-text a.value:hover { color: var(--clr-accent); }

.contact-form-card {
  background: var(--clr-surface);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--clr-border);
}
.form-group { margin-bottom: var(--sp-5); }
.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: var(--sp-2);
}
.form-input,
.form-textarea {
  width: 100%;
  background: var(--clr-bg);
  border: 1.5px solid var(--clr-border);
  color: var(--clr-text);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  transition: all var(--tr-base);
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--clr-accent);
  background: var(--clr-white);
  box-shadow: 0 0 0 3px rgba(232,98,42,0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-checkbox {
  align-items: flex-start;
  gap: var(--sp-3);
  cursor: pointer;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.5;
}
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--clr-accent);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.form-checkbox a { color: var(--clr-accent); text-decoration: underline; }

/* Map */
.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  margin-top: var(--sp-8);
  border: 1px solid var(--clr-border);
}
.map-wrap iframe {
  width: 100%;
  height: 280px;
  display: block;
  border: none;
}

/* ── Thanks Page ── */
.thanks-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-24) var(--sp-6);
}
.thanks-icon {
  width: 80px; height: 80px;
  background: rgba(46,125,107,0.12);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--clr-accent-3);
  margin: 0 auto var(--sp-6);
  box-shadow: 0 4px 20px rgba(46,125,107,0.15);
}
.thanks-wrap h1 {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--clr-primary);
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-4);
}
.thanks-wrap p {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  max-width: 480px;
  margin: 0 auto var(--sp-8);
  line-height: 1.7;
}

/* ── Legal Pages ── */
.legal-hero {
  background: var(--clr-bg-dark);
  padding: var(--sp-20) 0 var(--sp-16);
  text-align: center;
}
.legal-hero h1 {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--clr-white);
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-4);
}
.legal-hero p {
  color: rgba(255,255,255,0.55);
  font-size: var(--fs-sm);
}
.legal-content {
  padding-block: var(--sp-16);
  max-width: 760px;
  margin-inline: auto;
}
.legal-content h2 {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-primary);
  letter-spacing: -0.02em;
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
}
.legal-content h3 {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--clr-primary);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
}
.legal-content p {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}
.legal-content ul {
  list-style: disc;
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-4);
}
.legal-content ul li {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-2);
}

/* ── Footer ── */
.site-footer {
  background: var(--clr-bg-dark);
  color: rgba(255,255,255,0.7);
  position: relative;
  overflow: hidden;
}
.footer-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.5) 0px,
    rgba(255,255,255,0.5) 1px,
    transparent 1px,
    transparent 40px
  );
}
.footer-inner {
  position: relative;
  z-index: 1;
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.footer-brand .footer-logo img { width: 36px; height: 36px; }
.footer-brand .footer-logo-text {
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--clr-white);
  letter-spacing: -0.03em;
}
.footer-brand .footer-logo-text span { color: var(--clr-accent); }
.footer-brand p {
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}
.footer-col h4 {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-5);
  text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col ul a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.5);
  transition: color var(--tr-base);
}
.footer-col ul a:hover { color: var(--clr-accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.footer-contact-item i {
  color: var(--clr-accent);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item span {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer-bottom p { font-size: var(--fs-xs); color: rgba(255,255,255,0.3); }
.footer-legal {
  display: flex;
  gap: var(--sp-5);
}
.footer-legal a {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.3);
  transition: color var(--tr-base);
}
.footer-legal a:hover { color: var(--clr-accent); }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: var(--sp-5);
  left: var(--sp-5);
  right: var(--sp-5);
  max-width: 560px;
  background: var(--clr-bg-dark);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--sh-xl);
  z-index: 9999;
  transform: translateY(120%);
  transition: transform var(--tr-slow);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner.hidden { display: none; }
.cookie-banner h4 {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--sp-3);
}
.cookie-banner p {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: var(--sp-5);
}
.cookie-banner p a { color: var(--clr-accent); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.cookie-btn {
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--tr-base);
  border: 1.5px solid transparent;
}
.cookie-btn--accept {
  background: var(--clr-accent);
  color: var(--clr-white);
}
.cookie-btn--accept:hover { background: #D4541E; }
.cookie-btn--reject {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.2);
}
.cookie-btn--reject:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--clr-white);
}
.cookie-btn--customize {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.2);
}
.cookie-btn--customize:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,24,20,0.75);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr-base);
}
.cookie-modal-overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: var(--clr-bg);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  max-width: 500px;
  width: 100%;
  box-shadow: var(--sh-xl);
  max-height: 80vh;
  overflow-y: auto;
}
.cookie-modal h4 {
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--clr-primary);
  margin-bottom: var(--sp-5);
}
.cookie-category {
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  margin-bottom: var(--sp-3);
}
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-2);
}
.cookie-category-header strong {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-primary);
}
.cookie-toggle {
  position: relative;
  width: 40px; height: 22px;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--clr-border);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: background var(--tr-base);
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; top: 3px;
  background: var(--clr-white);
  border-radius: var(--r-full);
  transition: transform var(--tr-base);
  box-shadow: var(--sh-xs);
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--clr-accent); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(18px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.6; cursor: not-allowed; }
.cookie-category p {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  line-height: 1.5;
}
.cookie-modal-actions {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  flex-wrap: wrap;
}

/* ── Workshop / Taller Page ── */
.workshop-hero {
  background: var(--clr-bg-dark);
  padding: var(--sp-24) 0;
  position: relative;
  overflow: hidden;
}
.workshop-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(240,165,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.workshop-hero-content { position: relative; z-index: 1; }
.workshop-hero h1 {
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--clr-white);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: var(--sp-6);
  animation: letter-breathe 7s ease-in-out infinite;
}
.workshop-hero h1 em {
  font-style: normal;
  color: var(--clr-accent-2);
}
.workshop-hero p {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  line-height: 1.7;
}

.workshop-phases {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.phase-card {
  background: var(--clr-surface);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-8);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--sp-6);
  align-items: start;
  border: 1px solid var(--clr-border);
  box-shadow: var(--sh-sm);
  transition: all var(--tr-base);
}
.phase-card:hover {
  transform: translateX(6px);
  box-shadow: var(--sh-md);
  border-color: var(--clr-accent);
}
.phase-day {
  text-align: center;
}
.phase-day .day-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.phase-day .day-num {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--clr-accent);
  letter-spacing: -0.04em;
  line-height: 1;
}
.phase-content h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-primary);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}
.phase-content p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
}
.phase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}
.phase-tag {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-accent);
  background: rgba(232,98,42,0.1);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
}

/* ── Expense Tracker / Custom Page ── */
.tracker-intro {
  background: linear-gradient(135deg, var(--clr-bg-dark) 0%, var(--clr-bg-mid) 100%);
  padding: var(--sp-24) 0;
  position: relative;
  overflow: hidden;
}
.tracker-intro::after {
  content: 'Gs.';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20rem;
  font-weight: 800;
  color: rgba(255,255,255,0.02);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}
.expense-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-5);
}
.expense-cat {
  background: var(--clr-surface);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  border: 1px solid var(--clr-border);
  box-shadow: var(--sh-sm);
  transition: all var(--tr-base);
}
.expense-cat:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.expense-cat-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.expense-cat-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.expense-cat-icon--food   { background: rgba(232,98,42,0.1); color: var(--clr-accent); }
.expense-cat-icon--mobile { background: rgba(240,165,0,0.1); color: var(--clr-accent-2); }
.expense-cat-icon--subs   { background: rgba(46,125,107,0.1); color: var(--clr-accent-3); }
.expense-cat-icon--misc   { background: rgba(61,55,48,0.1); color: var(--clr-secondary); }
.expense-cat h3 {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--clr-primary);
  letter-spacing: -0.01em;
}
.expense-cat ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.expense-cat ul li {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.expense-cat ul li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--clr-accent);
  border-radius: var(--r-full);
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content {
    padding: var(--sp-20) var(--sp-6) var(--sp-12);
    padding-left: var(--sp-6);
  }
  .hero-image-side { display: none; }
  .hero-desc { max-width: 100%; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .phase-card { grid-template-columns: 60px 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-hamburger { display: flex; }
  .stats-bar-inner { gap: var(--sp-4); }
  .stat-divider { display: none; }
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .photo-grid-item:nth-child(1) { grid-row: 1; grid-column: 1 / 3; }
  .newsletter-inner { flex-direction: column; gap: var(--sp-6); }
  .newsletter-form { max-width: 100%; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-overlap-card { display: none; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .services-grid { grid-template-columns: 1fr; }
  .track-grid { grid-template-columns: 1fr; }
  .expense-categories { grid-template-columns: 1fr; }
  .phase-card { grid-template-columns: 1fr; }
  .phase-day { display: flex; align-items: center; gap: var(--sp-3); }
  .phase-day .day-num { font-size: var(--fs-xl); }
  .cookie-banner { left: var(--sp-3); right: var(--sp-3); }
  .contact-form-card { padding: var(--sp-6); }
}

@media (max-width: 480px) {
  .container { padding-inline: var(--sp-4); }
  .section { padding-block: var(--sp-16); }
  .hero-content { padding: var(--sp-16) var(--sp-4) var(--sp-10); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { padding: var(--sp-4) var(--sp-6); }
  .photo-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .photo-grid-item:nth-child(1) { grid-column: 1; }
  .photo-grid-item { height: 220px; }
  .newsletter-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stats-bar-inner { flex-direction: column; gap: var(--sp-5); }
}

/* ── Quienes Somos specific ── */
.team-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}
.value-card {
  background: var(--clr-surface);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  border: 1px solid var(--clr-border);
  box-shadow: var(--sh-sm);
  text-align: center;
  transition: all var(--tr-base);
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}
.value-card-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto var(--sp-5);
}
.value-card-icon--a { background: rgba(232,98,42,0.1); color: var(--clr-accent); }
.value-card-icon--b { background: rgba(240,165,0,0.1); color: var(--clr-accent-2); }
.value-card-icon--c { background: rgba(46,125,107,0.1); color: var(--clr-accent-3); }
.value-card h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}
.value-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
}
.manifesto-block {
  background: var(--clr-bg-dark);
  border-radius: var(--r-xl);
  padding: var(--sp-12);
  position: relative;
  overflow: hidden;
}
.manifesto-block::before {
  content: '"';
  position: absolute;
  top: -20px; left: var(--sp-8);
  font-size: 12rem;
  font-weight: 800;
  color: rgba(232,98,42,0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.manifesto-block blockquote {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.5;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  margin-bottom: var(--sp-4);
}
.manifesto-block cite {
  font-size: var(--fs-sm);
  color: var(--clr-accent);
  font-style: normal;
  font-weight: 600;
}

/* ── Expense Diary custom page ── */
.diary-section-title {
  font-size: var(--fs-4xl);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--clr-white);
  margin-bottom: var(--sp-6);
}
.diary-section-title em {
  font-style: normal;
  animation: accent-pulse 4s ease-in-out infinite;
  color: var(--clr-accent);
}