/* ───────────────────────────────────────────────────────────
   SOMĀYA · Design Tokens (HCA landing edition)
   ─────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  /* ─── BACKGROUNDS ─── */
  --bg:            #FDFAF0;
  --bg-secondary:  #EFEEC7;
  --bg-cream-2:    #FCF8E0;
  --white:         #FFFEF8;

  /* ─── ACENTOS CÁLIDOS ─── */
  --terracotta:    #CA5D37;
  --orange:        #CE7F46;

  /* ─── NEUTROS TERROSOS ─── */
  --blush:         #E3CBBA;
  --camel:         #9F7055;
  --gray-blue:     #B4BBC6;

  /* ─── VERDES OLIVA ─── */
  --olive:         #969E86;
  --olive-dark:    #7E8672;

  /* ─── MARRONES ─── */
  --brown:         #732F1C;
  --brown-deep:    #523524;

  /* ─── TEXTO ─── */
  --text:          #3D2E22;
  --text-mid:      #7A6556;

  /* ─── SEMÁNTICOS ─── */
  --fg-1:          var(--text);
  --fg-2:          var(--text-mid);
  --fg-3:          var(--camel);
  --fg-on-dark:    var(--white);
  --fg-link:       var(--olive);

  --bg-1:          var(--bg);
  --bg-2:          var(--bg-cream-2);
  --bg-3:          var(--bg-secondary);
  --surface:       var(--white);

  --border-soft:   #E3CBBA40;
  --border:        #E3CBBA;
  --border-strong: #9F705540;

  /* ─── TYPOGRAPHY ─── */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ─── ANIMATION ─── */
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:  140ms;
  --dur:       220ms;
  --dur-slow:  420ms;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

::selection { background: var(--olive); color: var(--white); }
