/* ==========================================
   garabato Studio — Stylesheet
   ==========================================
   Dirección: cálido y handmade.
   Fondos alternados (claro ↔ oscuro), títulos
   garabateados a mano (Nothing You Could Do),
   textos en Manrope (sans humanista cálida),
   acentos en terracota/ámbar.
   ========================================== */

/* ==========================================
   Design Tokens
   ========================================== */

:root {
  /* Fondo oscuro */
  --ink: #1a1712;

  /* Fondo claro (papel cálido) */
  --paper: #e8e9eb;
  --paper-2: #f1ebdd;

  /* Texto */
  --ink-text: #1a1712;
  --paper-text: #faf6ee;
  --muted-dark: #6b6356;
  --muted-light: #cfc6b3;

  /* Acento cálido (terracota/ámbar) — funciona en claro y oscuro */
  --accent: #d97706;
  --accent-soft: rgba(217, 119, 6, 0.14);
  --accent-glow: rgba(217, 119, 6, 0.35);

  /* Línea garabateada */
  --line-warm: rgba(26, 23, 18, 0.18);
  --line-cool: rgba(250, 246, 238, 0.16);

  /* Layout */
  --radius: 14px;
  --radius-lg: 22px;
  --max-width: 1180px;

  /* Transición */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Tipografía */
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-display: 'Nothing You Could Do', cursive;   /* títulos garabateados */
  --font-doodle: 'Shadows Into Light', cursive;      /* logo y firmas a mano */
}


/* ==========================================
   Reset & Base
   ========================================== */

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

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

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font-body); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

/* Acento cálido (en claro y oscuro) */
.accent { color: var(--accent); }


/* ==========================================
   Alternancia clara / oscura de secciones
   ========================================== */

.section-light {
  background: var(--paper);
  color: var(--ink-text);
}

.section-dark {
  background: var(--ink);
  color: var(--paper-text);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--paper-text);
}

.section-accent {
  background: var(--accent);
  color: var(--ink-text);
}

.section-accent h2 {
  color: var(--ink-text);
}


/* ==========================================
   Container & Utilidades
   ========================================== */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.6rem;
}

.section-lede {
  margin-bottom: 3.5rem;
}

.section-lede h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
}

.section-lede p {
  margin-top: 1.1rem;
  font-size: 1.1rem;
  max-width: 520px;
}

.section-light .section-lede p { color: var(--muted-dark); }
.section-dark .section-lede p { color: var(--muted-light); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}


/* ==========================================
   Scroll Reveal
   ========================================== */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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




/* ==========================================
   Botones
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-lg { padding: 1.1rem 2.2rem; font-size: 1rem; border-radius: 999px; }

.btn-primary {
  background: var(--accent);
  color: var(--ink-text);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: inherit;
  border: 2px solid currentColor;
}

.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.btn-dark {
  background: var(--ink-text);
  color: var(--paper);
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}


/* ==========================================
   Navigation (minimal)
   ========================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(232, 233, 235, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-warm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.6rem;
}

.nav-logo {
  font-family: var(--font-doodle);
  font-size: 1.9rem;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--ink-text);
}

.nav-logo .accent {
  font-family: var(--font-doodle);
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted-dark);
  background: transparent;
  border: 1.5px solid var(--line-warm);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.lang-toggle:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.lang-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}


/* ==========================================
   01 — Hero compacto (cálido)
   ========================================== */

.hero {
  min-height: 100vh;
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 15%, rgba(217, 119, 6, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.6rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--ink-text);
  max-width: 760px;
  margin-bottom: 1.4rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted-dark);
  max-width: 540px;
  margin-bottom: 2.2rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Marca garabateada debajo del hero */
.hero-doodle {
  margin-top: 4.5rem;
  opacity: 0.9;
}

.hero-doodle-text {
  font-family: var(--font-doodle);
  font-size: clamp(2.4rem, 7vw, 4rem);
  color: var(--ink-text);
  letter-spacing: 0.05em;
  display: inline-block;
  position: relative;
  padding: 0 0.5rem 0.25rem;
}

.hero-doodle-text::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05rem;
  height: 0.45em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 12' fill='none' preserveAspectRatio='none'%3E%3Cpath d='M0 6 Q10 -1 20 6 T40 6 T60 6 T80 6' stroke='%23d97706' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  opacity: 0.7;
}


/* ==========================================
   02 — Intro (concepto)
   ========================================== */

.intro {
  padding: 8rem 0;
}

.intro-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.4vw, 4rem);
  color: var(--paper-text);
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.intro-body {
  font-size: 1.25rem;
  color: var(--muted-light);
  max-width: 620px;
  line-height: 1.8;
}


/* ==========================================
   03 — Cost (problema)
   ========================================== */

.cost {
  padding: 7rem 0;
}

.cost-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  color: var(--ink-text);
  margin-bottom: 2.2rem;
}

.cost-list { max-width: 700px; }

.cost-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line-warm);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink-text);
}

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

.cost-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.55rem;
}


/* ==========================================
   04 — Manifiesto
   ========================================== */

.manifesto {
  padding: 8rem 0;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
  color: var(--paper-text);
  max-width: 880px;
  line-height: 1.35;
}

.manifesto-sign {
  font-family: var(--font-doodle);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--accent);
  margin-top: 2.2rem;
}


/* ==========================================
   05 — Pillars (servicios)
   ========================================== */

.pillars {
  padding: 7rem 0;
}

.pillars-list { max-width: 820px; }

.pillar {
  display: flex;
  gap: 2.4rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-warm);
}

.pillar:last-child { border-bottom: none; }

.pillar-number {
  font-family: var(--font-doodle);
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
  min-width: 84px;
  padding-top: 0.2rem;
}

.pillar-body h3 {
  font-size: 1.6rem;
  color: var(--ink-text);
  margin-bottom: 0.4rem;
}

.pillar-body p {
  font-size: 1rem;
  color: var(--muted-dark);
  line-height: 1.75;
  max-width: 600px;
}

.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.tag {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}


/* ==========================================
   06 — Work (portfolio)
   ========================================== */

.work {
  padding: 7rem 0;
}

.work-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.work-entry {
  background: #242019;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid transparent;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.work-entry:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
}

.work-entry:first-child { grid-column: 1 / -1; }

.work-entry-preview {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-entry:first-child .work-entry-preview { aspect-ratio: 21/9; }

/* Tonos cálidos por proyecto */
.preview-carpentry { background: linear-gradient(135deg, #2a1d11, #3a2a17); }
.preview-branding   { background: linear-gradient(135deg, #241c10, #2e2714); }
.preview-health     { background: linear-gradient(135deg, #14232a, #193039); }
.preview-music      { background: linear-gradient(135deg, #241430, #311c3f); }
.preview-sweets     { background: linear-gradient(135deg, #2c1218, #3a1822); }

.work-entry-info {
  padding: 1.7rem 1.9rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.work-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.work-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  background: rgba(250, 246, 238, 0.08);
  color: var(--muted-light);
  text-transform: uppercase;
}

.work-entry-info h3 {
  font-size: 1.4rem;
  color: var(--paper-text);
  margin-bottom: 0.45rem;
}

.work-entry-info p {
  font-size: 0.95rem;
  color: var(--muted-light);
  line-height: 1.75;
  flex: 1;
}

.work-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 1.2rem;
  transition: gap var(--transition);
}

.work-link:hover { gap: 0.7rem; }

.work-link svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}


/* ==========================================
   07 — About (valores)
   ========================================== */

.about {
  padding: 7rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-content: start;
}

.about-value {
  padding: 1.6rem;
  background: var(--paper-2);
  border-radius: var(--radius);
  border: 1px solid var(--line-warm);
  transition: border-color var(--transition), transform var(--transition);
}

.about-value:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.about-value-num {
  font-family: var(--font-doodle);
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.about-value h4 {
  font-size: 1.25rem;
  color: var(--ink-text);
  margin-bottom: 0.3rem;
}

.about-value p {
  font-size: 0.9rem;
  color: var(--muted-dark);
  line-height: 1.7;
}

/* Columna de nota a mano */
.about-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.6rem;
}

.about-note-sign {
  font-family: var(--font-doodle);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--accent);
  line-height: 1.2;
}

.about-note p {
  font-size: 1.15rem;
  color: var(--muted-dark);
  line-height: 1.8;
  max-width: 440px;
}

.about-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--ink-text);
  color: var(--paper-text);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  align-self: flex-start;
}

.about-badge-value {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--accent);
  line-height: 1;
}

.about-badge-label {
  font-size: 0.75rem;
  color: var(--muted-light);
  margin-top: 0.25rem;
}


/* ==========================================
   08 — Process
   ========================================== */

.process {
  padding: 7rem 0;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.process-step {
  padding-top: 1.6rem;
  border-top: 2px solid rgba(250, 246, 238, 0.2);
  transition: border-color var(--transition);
}

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

.process-number {
  font-family: var(--font-doodle);
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.3rem;
  color: var(--paper-text);
  margin-bottom: 0.4rem;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--muted-light);
  line-height: 1.7;
}


/* ==========================================
   09 — CTA final
   ========================================== */

.cta {
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta > .container {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.cta-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--ink-text);
  margin-bottom: 1.2rem;
}

.cta-sub {
  font-size: 1.15rem;
  color: rgba(26, 23, 18, 0.8);
  margin-bottom: 2.2rem;
  line-height: 1.75;
}

.cta-actions { display: flex; justify-content: center; }

.cta-note {
  margin-top: 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(26, 23, 18, 0.75);
}


/* ==========================================
   Footer
   ========================================== */

.footer {
  background: var(--ink);
  color: var(--paper-text);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid transparent;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-wordmark {
  margin-bottom: 1.2rem;
  line-height: 1;
}

.wordmark-main {
  font-family: var(--font-doodle);
  font-size: 2rem;
  letter-spacing: 0.02em;
  color: var(--paper-text);
}

.footer-wordmark .accent {
  font-family: var(--font-doodle);
  font-size: 2rem;
  color: var(--accent);
}

.wordmark-sub {
  font-family: var(--font-doodle);
  font-size: 2rem;
  color: var(--accent);
}

.footer-brand p {
  font-size: 0.92rem;
  color: var(--muted-light);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.4rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(250, 246, 238, 0.06);
  border: 1px solid var(--line-cool);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--muted-light);
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.95rem;
  color: var(--muted-light);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--paper-text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--line-cool);
  font-size: 0.82rem;
  color: var(--muted-light);
}

.footer-bottom-links { display: flex; gap: 1.5rem; }

.footer-bottom-links span {
  color: var(--muted-light);
}

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


/* ==========================================
   Preview Components (portfolio mockups)
   ========================================== */

.preview-ui {
  width: 80%;
  border-radius: 8px;
  background: rgba(250, 246, 238, 0.05);
  border: 1px solid rgba(250, 246, 238, 0.1);
  padding: 16px;
}

.preview-ui-bar {
  height: 8px;
  border-radius: 4px;
  width: 40%;
  margin-bottom: 12px;
  opacity: 0.9;
  background: var(--accent);
}

.preview-ui-lines { display: flex; flex-direction: column; gap: 6px; }

.preview-ui-line {
  height: 5px;
  border-radius: 3px;
  background: rgba(250, 246, 238, 0.1);
}

.preview-ui-line:nth-child(2) { width: 75%; }
.preview-ui-line:nth-child(3) { width: 55%; }
.preview-ui-line:nth-child(4) { width: 80%; }

.preview-ui-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 12px;
}

.preview-ui-card {
  height: 32px;
  border-radius: 4px;
  background: rgba(250, 246, 238, 0.05);
  border: 1px solid rgba(250, 246, 238, 0.06);
}

.preview-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.preview-logo-mark {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(250, 246, 238, 0.06);
  border: 1px solid rgba(250, 246, 238, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-logo-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

.preview-logo-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.preview-logo-line {
  height: 4px;
  border-radius: 2px;
  background: rgba(250, 246, 238, 0.1);
}

.preview-logo-line:nth-child(1) { width: 80px; }
.preview-logo-line:nth-child(2) { width: 55px; }

.preview-health-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 2rem;
  padding: 0 2rem;
}

.preview-health-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: rgba(120, 190, 255, 0.14);
  border: 1px solid rgba(120, 190, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.preview-health-icon-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(120, 190, 255, 0.65);
}

.preview-health-text { display: flex; flex-direction: column; gap: 8px; }

.preview-health-text-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(250, 246, 238, 0.1);
}

.preview-health-text-line--wide  { width: 160px; }
.preview-health-text-line--med   { width: 120px; height: 5px; }
.preview-health-text-line--short { width: 100px; height: 5px; }

.preview-health-cards { display: flex; gap: 8px; }

.preview-health-card {
  width: 80px;
  height: 48px;
  border-radius: 8px;
}

.preview-health-card--active {
  background: rgba(120, 190, 255, 0.1);
  border: 1px solid rgba(120, 190, 255, 0.2);
}

.preview-health-card--inactive {
  background: rgba(250, 246, 238, 0.04);
  border: 1px solid rgba(250, 246, 238, 0.06);
}

.preview-music-mark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(200, 130, 255, 0.14);
  border-color: rgba(200, 130, 255, 0.3);
}

.preview-music-dot {
  background: rgba(200, 130, 255, 0.7);
  width: 36px;
  height: 36px;
}

.preview-sweets-mark {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: rgba(255, 120, 160, 0.14);
  border-color: rgba(255, 120, 160, 0.3);
}

.preview-sweets-dot {
  background: rgba(255, 120, 160, 0.7);
  width: 36px;
  height: 36px;
}


/* ==========================================
   Responsive
   ========================================== */

@media (max-width: 1024px) {
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-values { max-width: 640px; }
  .about-note { flex-direction: row-reverse; flex-wrap: wrap; align-items: center; }
  .work-list { grid-template-columns: 1fr; }
  .work-entry:first-child { grid-column: auto; }
}

@media (max-width: 768px) {
  .hero { padding: 6.5rem 0 3rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-doodle { margin-top: 2.5rem; }
  .pillar { flex-direction: column; gap: 0.6rem; }
  .pillar-number { min-width: auto; }
  .about-values { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .work-entry-preview { aspect-ratio: 16/9; }
}

@media (max-width: 480px) {
  .nav-actions .btn-primary { display: none; }
  .preview-health-layout { flex-direction: column; gap: 1rem; }
}