/* Plan Disney World — storybook-clean, warm cream + twilight navy + dusty rose */
:root {
  --ink: #223052;
  --ink-soft: #5b6785;
  --bg: #fdf9f2;
  --card: #ffffff;
  --rose: #c76d8e;
  --gold: #c9a227;
  --line: #eadfce;
  --maxw: 1040px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Nunito Sans", -apple-system, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.06rem;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; border-radius: 10px; }
a { color: var(--rose); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header { text-align: center; padding: 3rem 1rem 0; }
.site-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  color: var(--ink);
  letter-spacing: .01em;
}
.site-title:hover { text-decoration: none; color: var(--rose); }
.site-tagline {
  margin: .3rem 0 1rem;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.1rem;
}
.site-nav { display: flex; gap: 1.6rem; justify-content: center; flex-wrap: wrap; }
.site-nav a {
  color: var(--ink);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.site-nav a:hover { color: var(--rose); text-decoration: none; }
.divider { color: var(--gold); margin: 1.6rem auto; font-size: .8rem; letter-spacing: .5em; }

main { max-width: var(--maxw); margin: 0 auto; padding: 0 1.2rem 3rem; }

/* featured latest post */
.featured-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(34, 48, 82, .07);
}
.featured-card:hover { text-decoration: none; box-shadow: 0 14px 40px rgba(34, 48, 82, .12); }
.featured-img { min-height: 320px; max-height: 480px; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.featured-text { padding: 2rem 2.2rem; align-self: center; }
.kicker {
  color: var(--gold);
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin: 0 0 .4rem;
}
.featured-text h2 { font-family: var(--serif); font-size: 1.8rem; margin: 0 0 .3rem; line-height: 1.25; }
.readmore { color: var(--rose); font-weight: 700; }
.date { color: var(--ink-soft); font-size: .88rem; margin: .1rem 0 .6rem; }

/* grid of older posts */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
  margin-top: 1.6rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  color: var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { text-decoration: none; transform: translateY(-3px); box-shadow: 0 10px 26px rgba(34, 48, 82, .1); }
.card-img { height: 180px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.card-img-empty {
  display: flex; align-items: center; justify-content: center;
  height: 180px; color: var(--gold); font-size: 1.6rem;
  background: linear-gradient(135deg, #f6efe2, #fdf9f2);
}
.card-body { padding: 1rem 1.2rem 1.2rem; }
.card-body h3 { font-family: var(--serif); font-size: 1.15rem; margin: 0 0 .2rem; line-height: 1.3; }

/* single post */
.post { max-width: 720px; margin: 0 auto; }
.post h1 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.2;
  margin: .4rem 0 .2rem;
}
.post-body h2, .post-body h3 { font-family: var(--serif); line-height: 1.3; }
.post-body img { margin: .6rem 0; box-shadow: 0 6px 18px rgba(34, 48, 82, .12); }
.post-body figure { margin: 1rem 0; }
.post-body figcaption { color: var(--ink-soft); font-size: .85rem; text-align: center; }
.post-body blockquote {
  border-left: 3px solid var(--gold);
  margin: 1rem 0; padding: .2rem 0 .2rem 1.1rem;
  color: var(--ink-soft); font-style: italic;
}
.backlink { margin-top: 2.4rem; }

.site-footer { text-align: center; color: var(--ink-soft); padding: 0 1rem 2.4rem; font-size: .92rem; }
.fineprint { font-size: .8rem; }
.fineprint a { color: var(--ink-soft); }

@media (max-width: 760px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-img { min-height: 0; height: 260px; }
  .featured-text { padding: 1.4rem 1.4rem 1.6rem; }
  .site-header { padding-top: 2rem; }
}
