/* Sweet Year Studio — site chrome. Warm, joyful, print-shop-adjacent. */
:root {
  --cream: #FFF9EF;
  --cream-deep: #FBF0DA;
  --honey: #D9932E;
  --honey-deep: #B9761A;
  --plum: #7A3B54;
  --plum-deep: #5B2A3E;
  --sage: #7C9473;
  --ink: #2E2320;
  --ink-soft: #5B4C46;
  --line: #E9D9BE;
  --white: #FFFFFF;
  --radius: 14px;
  --shadow: 0 6px 20px rgba(122, 59, 84, 0.10);
  --serif: Georgia, 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a { color: var(--plum); }
a:hover { color: var(--honey-deep); }

h1, h2, h3 { font-family: var(--serif); color: var(--plum-deep); line-height: 1.25; margin: 0 0 0.5em; }
h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ---- header / nav ---- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 20;
}
.site-header .bar {
  max-width: 1080px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--plum-deep); text-decoration: none; }
.brand svg { width: 30px; height: 30px; flex: none; }
.site-nav { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.site-nav a { text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: 0.96rem; }
.site-nav a:hover { color: var(--plum); }
.site-nav a.cta {
  background: var(--honey); color: #fff; padding: 9px 16px; border-radius: 999px;
}
.site-nav a.cta:hover { background: var(--honey-deep); color: #fff; }

/* ---- hero ---- */
.hero {
  padding: 64px 0 48px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, var(--cream-deep), var(--cream) 70%);
}
.hero .kicker {
  display: inline-block; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  font-size: 0.78rem; color: var(--sage); background: rgba(124,148,115,0.14);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.hero p.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 620px; margin: 0 auto 28px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 13px 26px; border-radius: 999px; font-weight: 700;
  text-decoration: none; font-size: 1rem; border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--honey); color: #fff; }
.btn-primary:hover { background: var(--honey-deep); color: #fff; }
.btn-outline { background: transparent; color: var(--plum); border-color: var(--plum); }
.btn-outline:hover { background: var(--plum); color: #fff; }

/* ---- sections / cards ---- */
section { padding: 44px 0; }
.section-title { text-align: center; max-width: 640px; margin: 0 auto 34px; }
.section-title p { color: var(--ink-soft); }

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 6px; }
.card p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 12px; }
.card .tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 8px;
}
.card a.open { font-weight: 700; text-decoration: none; }
.card a.open::after { content: " →"; }

.icon-badge {
  width: 46px; height: 46px; border-radius: 12px; background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.icon-badge svg { width: 26px; height: 26px; }

.callout {
  background: var(--cream-deep); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 26px; margin: 20px 0;
}
.callout strong { color: var(--plum-deep); }

.split-note {
  background: #F3EDE0; border-left: 4px solid var(--sage); border-radius: 8px;
  padding: 14px 18px; font-size: 0.94rem; color: var(--ink-soft);
}

table.compare { width: 100%; border-collapse: collapse; margin: 20px 0; }
table.compare th, table.compare td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
table.compare th { color: var(--plum-deep); font-family: var(--serif); }

/* ---- footer ---- */
.site-footer { border-top: 1px solid var(--line); padding: 34px 0; margin-top: 40px; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: center; }
.site-footer nav { display: flex; gap: 18px; flex-wrap: wrap; }
.site-footer a { color: var(--ink-soft); text-decoration: none; font-size: 0.92rem; }
.site-footer a:hover { color: var(--plum); }
.site-footer small { color: var(--ink-soft); display: block; margin-top: 10px; font-size: 0.82rem; }

/* ---- printable browser chrome (not printed) ---- */
.print-toolbar {
  position: sticky; top: 0; z-index: 30; background: var(--plum-deep); color: #fff;
  padding: 12px 0;
}
.print-toolbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.print-toolbar a { color: #fff; text-decoration: none; font-weight: 600; font-size: 0.92rem; }
.print-toolbar a:hover { color: var(--cream-deep); }
.print-toolbar button.btn-primary { border: none; }
.print-toolbar .locked-badge {
  background: var(--honey); color: #fff; font-size: 0.75rem; font-weight: 700;
  padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.03em;
}

.deluxe-hub-item { display: flex; align-items: center; justify-content: space-between; gap: 14px; }

@media (max-width: 640px) {
  .site-header .bar { flex-direction: column; align-items: flex-start; }
}
