/* ==========================================================================
   Dining with Dale — Santa Fe-inspired, bright & uncluttered
   Palette: cream adobe background, chile red, turquoise, marigold
   ========================================================================== */

:root {
  --cream: #fdf9f1;
  --paper: #ffffff;
  --ink: #33291f;
  --ink-soft: #6b5d4f;
  --chile: #c0392b;
  --chile-dark: #9e2f22;
  --turquoise: #2a9d8f;
  --turquoise-dark: #1f7a70;
  --marigold: #e9a319;
  --terracotta: #d97742;
  --sage: #8a9a5b;
  --line: #ecdfc8;
  --radius: 14px;
  --shadow: 0 2px 14px rgba(51, 41, 31, 0.08);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}

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

a { color: var(--turquoise-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --- Top stripe: a nod to Santa Fe textiles --- */
.stripe {
  height: 6px;
  background: linear-gradient(
    to right,
    var(--chile) 0 25%,
    var(--marigold) 25% 50%,
    var(--turquoise) 50% 75%,
    var(--terracotta) 75% 100%
  );
}

/* --- Header / nav --- */
header.site {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.masthead {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.4rem 0 1.1rem;
}

.masthead .brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.masthead .brand a { color: inherit; }
.masthead .brand a:hover { text-decoration: none; }
.masthead .brand .with { color: var(--chile); font-style: italic; }

.tagline {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

nav.site {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding-bottom: 1rem;
}

nav.site a {
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
}
nav.site a:hover { background: var(--cream); text-decoration: none; }
nav.site a.active { background: var(--chile); color: #fff; }

/* --- Hero --- */
.hero {
  padding: 3.2rem 0 3rem;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 600;
  line-height: 1.15;
  max-width: 21ch;
  margin: 0 auto 1rem;
}

.hero h1 em { color: var(--turquoise-dark); font-style: italic; }

.hero p {
  max-width: 56ch;
  margin: 0 auto 1.6rem;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.btn {
  display: inline-block;
  background: var(--chile);
  color: #fff;
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--chile-dark); text-decoration: none; color: #fff; }
.btn.alt { background: var(--turquoise); }
.btn.alt:hover { background: var(--turquoise-dark); }

/* --- Section headings --- */
section.band { padding: 2.6rem 0; }
section.band.tint { background: #f7efdf; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
}

.section-head .more { font-weight: 700; white-space: nowrap; }

.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.4rem;
}

/* --- Cards --- */
.grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card .body { padding: 1.15rem 1.25rem 1.35rem; }

.card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.45rem;
}
.card h3 a { color: var(--ink); }
.card h3 a:hover { color: var(--chile); text-decoration: none; }

.card p { color: var(--ink-soft); font-size: 0.99rem; }

.card .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}
.tag.recipe { background: #fdecea; color: var(--chile-dark); }
.tag.santafe { background: #e2f3f1; color: var(--turquoise-dark); }
.tag.tips { background: #fdf3d9; color: #9a6b00; }
.tag.kitchen { background: #efe9dc; color: var(--ink-soft); }

/* --- Photo placeholders (swap for real photos) --- */
.photo {
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.photo span { max-width: 24ch; }
.photo.p-chile { background: linear-gradient(135deg, #c0392b, #e9a319); }
.photo.p-turq { background: linear-gradient(135deg, #2a9d8f, #7fc8bf); }
.photo.p-adobe { background: linear-gradient(135deg, #d97742, #e9a319); }
.photo.p-sage { background: linear-gradient(135deg, #8a9a5b, #c9d1a0); color: #3b4223; }
.photo.p-plum { background: linear-gradient(135deg, #7d4a63, #c98da9); }
.photo.tall { aspect-ratio: 4 / 5; }
.photo.wide { aspect-ratio: 21 / 9; border-radius: var(--radius); }
img.photo { object-fit: cover; padding: 0; }

.place-info {
  color: var(--ink-soft);
  font-size: 0.92em;
}

/* --- Article / recipe pages --- */
article.post {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 780px;
  margin: 2.5rem auto 3rem;
  padding: clamp(1.5rem, 4vw, 3rem);
}

article.post h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0.3rem 0 0.7rem;
}

article.post .meta {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

article.post h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 2rem 0 0.7rem;
}

article.post p { margin-bottom: 1rem; }

article.post ul, article.post ol { margin: 0 0 1rem 1.4rem; }
article.post li { margin-bottom: 0.45rem; }

article.post .photo { border-radius: 10px; margin: 1.4rem 0; }

.recipe-box {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.3rem 1.4rem;
  margin: 1.5rem 0;
}
.recipe-box h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.altitude-note {
  border-left: 4px solid var(--turquoise);
  background: #eef7f6;
  border-radius: 0 10px 10px 0;
  padding: 0.9rem 1.2rem;
  margin: 1.5rem 0;
}
.altitude-note strong { color: var(--turquoise-dark); }

/* --- About page --- */
.about-lead {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  align-items: start;
  margin: 2.5rem 0;
}
.about-lead .photo { border-radius: var(--radius); }
@media (max-width: 720px) {
  .about-lead { grid-template-columns: 1fr; }
}

.timeline { list-style: none; margin: 1.5rem 0 0; }
.timeline li {
  position: relative;
  padding: 0 0 1.3rem 1.6rem;
  border-left: 3px solid var(--line);
  margin-left: 0.4rem;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -8.5px;
  top: 0.42em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--marigold);
  border: 3px solid var(--cream);
}
.timeline li strong { display: block; font-size: 1.05rem; }
.timeline li span { color: var(--ink-soft); font-size: 0.98rem; }

/* --- Footer --- */
footer.site {
  margin-top: 3rem;
  background: var(--ink);
  color: #e8ddcf;
  padding: 2.2rem 0 2.6rem;
  text-align: center;
}
footer.site .brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.4rem;
}
footer.site .brand .with { color: var(--marigold); font-style: italic; }
footer.site p { font-size: 0.92rem; opacity: 0.85; }
footer.site nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 0.9rem 0 0.6rem;
}
footer.site nav a { color: #f3ead9; font-weight: 600; font-size: 0.95rem; }
