/* Tierra Firme — shared site styles
   Palette from the official brand guide: paper + ink, with the three
   seat colors — Ground (terracotta / Murphy), Build (teal / Shawn),
   Read (gold / Todd) — used consistently for seat coding. */
:root{
  --paper: #f6f0e1;
  --paper-alt: #efe6cf;
  --surface: #fffcf4;
  --surface-2: #f2ead4;
  --border: #ddd0ac;
  --ink: #1c1612;
  --muted: #6b5d4d;
  --muted-2: #8c7f6a;
  --gold: #9c7d2e;
  --gold-light: #b6934a;
  --terracotta: #bc6239;
  --teal: #2e8b6e;
  --radius: 14px;
  --shadow: 0 18px 40px rgba(28,22,18,.12);
  --maxw: 1120px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'Inter', -apple-system, sans-serif;
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:'Fraunces', Georgia, serif;
  font-weight:600;
  line-height:1.15;
  margin:0 0 .5em;
  color:var(--ink);
}
h1{font-size:clamp(2.4rem,5vw,4rem); font-weight:700;}
h2{font-size:clamp(1.9rem,3.4vw,2.6rem);}
h3{font-size:1.35rem;}
p{margin:0 0 1em; color:var(--muted);}
a{color:inherit;}
.container{max-width:var(--maxw); margin:0 auto; padding:0 28px;}
.eyebrow{
  display:inline-block;
  font-family:'Inter',sans-serif;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:14px;
}
.lede{font-size:1.15rem; color:var(--muted); max-width:640px;}

/* Meridian coordinate strip — the "Dallas / Bogota" motif from the brand guide */
.meridian{
  display:flex; align-items:center; gap:14px;
  font-family:'Inter',sans-serif; font-size:.72rem; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase;
  color:var(--muted-2); margin-top:28px; flex-wrap:wrap;
}
.meridian .pt{color:var(--terracotta);}
.meridian .pt.end{color:var(--teal);}
.meridian .line{flex:1; min-width:60px; height:1px; background:repeating-linear-gradient(90deg, var(--border) 0 6px, transparent 6px 11px); position:relative;}
.meridian .line::after{content:'→'; position:absolute; right:-2px; top:-9px; color:var(--gold); font-size:.85rem;}

/* Seat badges — Ground / Build / Read */
.seat{display:inline-flex; align-items:center; gap:6px; font-size:.68rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:5px 12px; border-radius:999px; color:#fff;}
.seat-ground{background:var(--terracotta);}
.seat-build{background:var(--teal);}
.seat-read{background:var(--gold);}
.seat-all{background:var(--ink);}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 28px;
  border-radius:999px;
  font-weight:600;
  font-size:.95rem;
  text-decoration:none;
  cursor:pointer;
  border:1px solid transparent;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px);}
.btn-gold{background:linear-gradient(135deg,var(--gold-light),var(--gold)); color:#fffcf4; box-shadow:0 10px 24px rgba(156,125,46,.28);}
.btn-outline{background:transparent; color:var(--ink); border-color:var(--border);}
.btn-outline:hover{border-color:var(--gold);}
.btn-row{display:flex; gap:14px; flex-wrap:wrap;}

/* Nav */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(246,240,225,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.nav-wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
  font-family:'Fraunces',serif;
  font-weight:700;
  font-size:1.15rem;
  color:var(--ink);
  letter-spacing:.01em;
}
.brand-mark{
  width:34px; height:34px; border-radius:50%;
  background:radial-gradient(circle at 35% 30%, var(--gold-light), var(--gold) 70%);
  display:flex; align-items:center; justify-content:center;
  font-family:'Fraunces',serif; font-weight:700; color:#fffcf4; font-size:.95rem;
  flex:none;
}
.main-nav{display:flex; align-items:center; gap:6px;}
.main-nav a{
  text-decoration:none;
  color:var(--muted);
  font-size:.92rem;
  font-weight:600;
  padding:9px 14px;
  border-radius:999px;
  transition:color .15s, background .15s;
}
.main-nav a:hover, .main-nav a.active{color:var(--ink); background:var(--surface-2);}
.nav-toggle{
  display:none; background:none; border:1px solid var(--border); color:var(--ink);
  width:40px; height:40px; border-radius:8px; font-size:1.1rem; cursor:pointer;
}

@media (max-width:860px){
  .nav-toggle{display:block;}
  .main-nav{
    position:absolute; top:100%; left:0; right:0;
    flex-direction:column; align-items:stretch; gap:2px;
    background:var(--paper-alt); border-bottom:1px solid var(--border);
    padding:10px 16px 18px;
    display:none;
  }
  .main-nav.open{display:flex;}
  .main-nav a{padding:12px 14px; text-align:left;}
}

/* Hero */
.hero{
  position:relative;
  padding:100px 0 70px;
  overflow:hidden;
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(156,125,46,.10), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 10%, rgba(46,139,110,.08), transparent 55%),
    var(--paper);
  border-bottom:1px solid var(--border);
}
.hero-grid{display:grid; grid-template-columns:1fr; gap:20px;}
.hero .lede{font-size:1.2rem;}
.hero-fine{margin-top:22px; font-size:.82rem; color:var(--muted-2);}
.globe-lines{
  position:absolute; right:-140px; top:-80px; width:520px; height:520px;
  border-radius:50%; border:1px solid var(--border); opacity:.6;
  background:
    repeating-linear-gradient(0deg, transparent 0 38px, var(--border) 38px 39px),
    repeating-linear-gradient(90deg, transparent 0 38px, var(--border) 38px 39px);
  -webkit-mask-image:radial-gradient(circle, #000 60%, transparent 72%);
          mask-image:radial-gradient(circle, #000 60%, transparent 72%);
  pointer-events:none;
}

/* Sections */
section{padding:78px 0;}
.section-alt{background:var(--paper-alt); border-top:1px solid var(--border); border-bottom:1px solid var(--border);}
.section-head{max-width:640px; margin-bottom:44px;}

/* Cards grid */
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
.grid-2{display:grid; grid-template-columns:1fr 1fr; gap:22px;}
@media (max-width:860px){.grid-3{grid-template-columns:1fr;} .grid-2{grid-template-columns:1fr;}}

.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:30px 26px;
  box-shadow:var(--shadow);
}
.card-num{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:50%;
  background:var(--surface-2); color:var(--gold);
  font-family:'Fraunces',serif; font-weight:700; font-size:1rem;
  margin-bottom:16px;
}
.card.seat-card-ground .card-num{color:var(--terracotta); background:rgba(188,98,57,.14);}
.card.seat-card-build .card-num{color:var(--teal); background:rgba(46,139,110,.14);}
.card.seat-card-read .card-num{color:var(--gold); background:rgba(156,125,46,.14);}
.card h3{margin-bottom:10px;}
.card p{margin-bottom:0; font-size:.96rem;}
.tag{
  display:inline-block; font-size:.72rem; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; color:var(--teal); background:rgba(46,139,110,.12);
  border:1px solid rgba(46,139,110,.35); border-radius:999px; padding:5px 12px; margin-bottom:14px;
}
.tag.gold{color:var(--gold); background:rgba(156,125,46,.12); border-color:rgba(156,125,46,.35);}

/* Ladder */
.ladder{display:flex; flex-direction:column; gap:16px; max-width:760px;}
.ladder-step{
  display:flex; gap:20px; align-items:flex-start;
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  padding:24px 26px;
}
.ladder-step .step-mark{
  flex:none; width:42px; height:42px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:'Fraunces',serif; font-weight:700; color:#fffcf4;
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
}
.ladder-step.locked .step-mark{background:var(--surface-2); color:var(--muted); border:1px solid var(--border);}
.ladder-step h3{margin-bottom:4px; display:flex; align-items:center; gap:10px;}
.pill-soon{font-size:.68rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--muted-2); background:var(--surface-2); border:1px solid var(--border); border-radius:999px; padding:3px 10px;}

/* Quote */
.pull-quote{
  border-left:3px solid var(--gold);
  padding:6px 0 6px 26px;
  font-family:'Fraunces',serif; font-size:1.3rem; color:var(--ink); font-weight:500;
  max-width:720px;
}

/* Host / seat cards */
.host-card{background:var(--surface); border:1px solid var(--border); border-top:4px solid var(--gold); border-radius:var(--radius); padding:30px; text-align:left; box-shadow:var(--shadow); display:flex; gap:26px; align-items:flex-start;}
.host-card.seat-ground{border-top-color:var(--terracotta);}
.host-card.seat-build{border-top-color:var(--teal);}
.host-card.seat-read{border-top-color:var(--gold);}
@media (max-width:640px){.host-card{flex-direction:column;}}
.host-photo{
  width:120px; height:120px; border-radius:50%; object-fit:cover;
  flex:none; border:3px solid var(--gold);
}
.host-photo.seat-ground{border-color:var(--terracotta);}
.host-photo.seat-build{border-color:var(--teal);}
.host-photo.seat-read{border-color:var(--gold);}
.host-photo-placeholder{
  width:120px; height:120px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:var(--surface-2); border:3px solid var(--border);
  color:var(--muted-2); font-size:2.2rem; flex:none;
}
.host-avatar{
  width:64px; height:64px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:var(--surface-2); border:1px solid var(--border);
  color:var(--gold); margin-bottom:18px; font-size:1.4rem;
}
.host-card h3{margin-bottom:2px;}
.host-role{color:var(--gold); font-size:.85rem; font-weight:600; margin-bottom:4px; display:block;}
.host-loc{color:var(--muted-2); font-size:.8rem; margin-bottom:14px; display:block;}

/* Episode cards */
.ep-card{
  display:grid; grid-template-columns:90px 1fr; gap:24px;
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  padding:28px; margin-bottom:18px; align-items:start;
  box-shadow:var(--shadow);
}
.ep-num{
  font-family:'Fraunces',serif; font-size:2.1rem; font-weight:700; color:var(--surface-2);
  -webkit-text-stroke:1.5px var(--gold);
  line-height:1;
}
.ep-meta{display:flex; align-items:center; gap:10px; margin-bottom:8px; flex-wrap:wrap;}
.ep-date{font-size:.78rem; color:var(--muted-2); font-weight:600;}
@media (max-width:640px){.ep-card{grid-template-columns:1fr;} .ep-num{font-size:1.6rem;}}

/* Disclaimer */
.disclaimer{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  padding:22px 26px; font-size:.85rem; color:var(--muted-2); max-width:760px;
}
.disclaimer strong{color:var(--ink);}

/* Subscribe form */
.subscribe-form{display:flex; gap:12px; flex-wrap:wrap; max-width:480px;}
.subscribe-form input[type=email]{
  flex:1; min-width:220px;
  background:var(--surface); border:1px solid var(--border); color:var(--ink);
  padding:14px 16px; border-radius:999px; font-size:.95rem; font-family:inherit;
}
.subscribe-form input[type=email]:focus{outline:none; border-color:var(--gold);}
.form-note{font-size:.8rem; color:var(--muted-2); margin-top:12px;}
.form-success{display:none; color:var(--teal); font-weight:600; margin-top:14px;}

/* Footer */
footer{border-top:1px solid var(--border); padding:44px 0 30px; background:var(--paper-alt);}
.footer-grid{display:flex; justify-content:space-between; flex-wrap:wrap; gap:24px; align-items:flex-start;}
.footer-nav{display:flex; gap:22px; flex-wrap:wrap;}
.footer-nav a{text-decoration:none; color:var(--muted); font-size:.88rem;}
.footer-nav a:hover{color:var(--gold);}
.footer-legal{margin-top:26px; font-size:.78rem; color:var(--muted-2);}

.text-center{text-align:center; margin-left:auto; margin-right:auto;}
