/* ═══════════════════════════════════════════
   RUMBO A TU SER — Global Stylesheet
   Tipografía: Cormorant Garamond + Jost
═══════════════════════════════════════════ */

@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&family=Jost:wght@300;400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  --olive:        #4a5c2f;
  --olive-mid:    #5f7540;
  --olive-light:  #7a9152;
  --olive-pale:   #edf0e2;
  --cream:        #f9f6ef;
  --warm-white:   #fdfbf7;
  --sand:         #ede8db;
  --sand-mid:     #d9d1bb;
  --gold:         #b5a265;
  --gold-light:   #e8dfc0;
  --text-dark:    #2c2c28;
  --text-mid:     #5a5749;
  --text-soft:    #8a8474;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', sans-serif;
  --r:            16px;
  --ease:         cubic-bezier(.4,0,.2,1);
  --nav-h:        66px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--warm-white);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── NAV ── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: var(--nav-h);
  background: rgba(253,251,247,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand-mid);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.2rem,4vw,3rem);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 2.5rem; font-weight: 600; letter-spacing: .01em;
  color: var(--olive);
}
.nav-links { display: flex; gap: 1.6rem; list-style: none; }
.nav-links a {
  font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-mid); font-weight: 400;
  padding-bottom: 2px; border-bottom: 1.5px solid transparent;
  transition: color .25s, border-color .25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--olive); border-bottom-color: var(--gold); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--text-mid); transition: .3s; }
.mob-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 290;
  background: var(--warm-white); border-bottom: 1px solid var(--sand-mid);
  flex-direction: column;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-mid); font-weight: 400;
  padding: .85rem clamp(1.2rem,4vw,3rem);
  border-bottom: 1px solid var(--sand-mid);
  transition: color .2s, background .2s;
}
.mob-nav a:hover,
.mob-nav a.active { color: var(--olive); background: var(--olive-pale); }

/* ── PAGE SHELL ── */
.page { padding-top: var(--nav-h); min-height: 100vh; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; cursor: pointer;
  font-family: var(--font-sans); font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
  border-radius: 50px; padding: .82rem 2.2rem;
  border: 1.5px solid transparent;
  transition: all .28s var(--ease);
}
.btn-solid  { background: var(--olive);   color: var(--cream); border-color: var(--olive); }
.btn-solid:hover  { background: var(--olive-mid); border-color: var(--olive-mid); transform: translateY(-2px); }
.btn-ghost  { background: transparent; color: var(--olive); border-color: var(--olive); }
.btn-ghost:hover  { background: var(--olive); color: var(--cream); transform: translateY(-2px); }
.btn-light  { background: var(--cream); color: var(--olive); border-color: var(--cream); }
.btn-light:hover  { background: var(--warm-white); transform: translateY(-2px); }

/* ── TYPOGRAPHY HELPERS ── */
.lbl {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: .7rem;
}
.h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem,5vw,3.6rem);
  font-weight: 400; color: var(--olive);
  line-height: 1.15; margin-bottom: 1.2rem;
}
.h1 em { font-style: italic; font-weight: 300; }
.body-text { color: var(--text-mid); font-size: .94rem; line-height: 1.88; }
.divider    { width: 52px; height: 1.5px; background: var(--gold); margin: 1.3rem auto 2.5rem; }
.divider-l  { margin-left: 0; }
.centered   { text-align: center; }

/* ── LAYOUT ── */
.inner  { max-width: 1040px; margin: 0 auto; padding: 0 clamp(1.2rem,4vw,2.5rem); }
.sect   { padding: 5rem 0; }

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  background: linear-gradient(150deg, var(--olive-pale) 0%, var(--cream) 60%, var(--sand) 100%);
  padding: 5rem clamp(1.2rem,4vw,2.5rem) 4rem;
  text-align: center;
}
.page-hero .h1 { font-size: clamp(2.4rem,5vw,3.8rem); margin-bottom: 1.2rem; }
.page-hero p   { color: var(--text-mid); max-width: 580px; margin: 0 auto; font-size: .96rem; }

/* ── CARD ── */
.card {
  background: var(--cream); border-radius: var(--r);
  border: 1px solid var(--sand-mid); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(74,92,47,.1); }
.card img   { width: 100%; height: 220px; object-fit: cover; }
.card-body  { padding: 2rem; text-align: center; }
.card-body h3 { font-family: var(--font-serif); font-size: 1.65rem; color: var(--olive); font-weight: 500; margin-bottom: .5rem; }
.card-body p  { color: var(--text-mid); font-size: .92rem; margin-bottom: 1.5rem; }
.tag {
  display: inline-block; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  background: var(--olive-pale); color: var(--olive);
  padding: .22rem .85rem; border-radius: 50px; margin-bottom: 1rem; font-weight: 500;
}
.card-icon { font-size: 1.9rem; margin-bottom: .7rem; }

/* ── PILLS ── */
.pills  { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; margin: 1.3rem 0; }
.pill   {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: var(--text-mid);
  background: rgba(255,255,255,.65); padding: .35rem .9rem;
  border-radius: 50px; border: 1px solid var(--sand-mid);
}

/* ── PULLQUOTE ── */
.pq {
  font-family: var(--font-serif); font-size: 1.45rem; font-style: italic;
  color: var(--olive); border-left: 3px solid var(--gold);
  padding: 1rem 1.6rem; margin: 2rem 0; line-height: 1.5;
}

/* ── FORM ── */
.form-box { background: var(--warm-white); border-radius: var(--r); border: 1px solid var(--sand-mid); padding: 2.6rem; }
.form-box h3 { font-family: var(--font-serif); font-size: 1.65rem; color: var(--olive); font-weight: 400; margin-bottom: 1.6rem; }
.fg { margin-bottom: 1.15rem; }
.fg label { display: block; font-size: .73rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); margin-bottom: .4rem; font-weight: 500; }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: .8rem 1rem;
  border: 1px solid var(--sand-mid); border-radius: 8px;
  background: var(--cream); color: var(--text-dark);
  font-family: var(--font-sans); font-size: .91rem; font-weight: 300;
  outline: none; transition: border-color .25s; appearance: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--olive-light); }
.fg textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .77rem; color: var(--text-soft); font-style: italic; text-align: center; margin-top: 1rem; }

/* ── FOOTER ── */
footer {
  background: var(--olive); color: rgba(255,255,255,.85);
  padding: 3.5rem clamp(1.2rem,4vw,3rem) 2rem; text-align: center;
}
.ft-logo { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 400; font-style: italic; color: var(--cream); margin-bottom: .5rem; }
.ft-sub  { font-size: .82rem; opacity: .65; font-style: italic; margin-bottom: 2rem; }
.ft-contact { display: flex; justify-content: center; flex-wrap: wrap; gap: .5rem 2rem; margin-bottom: 1.8rem; }
.ft-contact a { font-size: .87rem; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: .45rem; transition: color .2s; }
.ft-contact a:hover { color: var(--gold-light); }
.ft-socials { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1.8rem; }
.soc { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.8); display: flex; align-items: center; justify-content: center; transition: all .3s; }
.soc:hover { border-color: var(--gold-light); color: var(--gold-light); }
.ft-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: .4rem 1.4rem; margin-bottom: 1.8rem; }
.ft-nav a { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); transition: color .2s; }
.ft-nav a:hover { color: rgba(255,255,255,.9); }
.ft-copy { font-size: .76rem; opacity: .4; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
}
@media (max-width: 640px) {
  .sect       { padding: 3.5rem 0; }
  .page-hero  { padding: 3.5rem clamp(1.2rem,4vw,2.5rem) 3rem; }
}
