/* ============ Plains Beautification Committee ============ */

:root {
  /* Summer (default) */
  --bee: #F4C430;
  --bee-deep: #E0AE1C;
  --cap: #2E6FB5;
  --cap-deep: #1F5490;
  --accent: #2E6FB5;
  --accent-soft: #BFD6EE;
  --leaf: #4F7A3A;
  --sky-1: #E9F2FB;
  --sky-2: #FFF6D6;

  --paper: #FBF6EC;
  --paper-2: #F3ECDD;
  --ink: #1A1A1A;
  --ink-2: #3a3a3a;
  --muted: #6b6458;
  --rule: #E7DFCE;

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(26, 26, 26, 0.06), 0 2px 6px rgba(26, 26, 26, 0.04);
  --shadow-md: 0 6px 18px rgba(26, 26, 26, 0.08), 0 2px 4px rgba(26, 26, 26, 0.04);
  --shadow-lg: 0 20px 50px rgba(26, 26, 26, 0.12);
}

/* Seasonal palettes */
[data-season="spring"] {
  --bee: #F4C430;
  --cap: #7AAE5B;
  --cap-deep: #5C8B42;
  --accent: #F4561F;
  --accent-soft: #FBD2C2;
  --leaf: #7AAE5B;
  --sky-1: #F1F7EC;
  --sky-2: #FFE4D6;
  --paper: #FDFAF3;
  --paper-2: #F4EEDD;
}
[data-season="fall"] {
  --bee: #E5A227;
  --cap: #C95B1E;
  --cap-deep: #9C4616;
  --accent: #C95B1E;
  --accent-soft: #EED4BB;
  --leaf: #4B6B2E;
  --sky-1: #F7EEDD;
  --sky-2: #F1DDB7;
  --paper: #F8EFDC;
  --paper-2: #EFE1C4;
  --ink: #201912;
  --rule: #D8C6A2;
}

/* Type pairings */
[data-type="playfair"] {
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Work Sans", system-ui, sans-serif;
}
[data-type="dm"] {
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; margin: 0; }
h1 { font-size: clamp(44px, 7vw, 104px); line-height: 0.98; letter-spacing: -0.03em; }
h2 { font-size: clamp(32px, 4.2vw, 56px); line-height: 1.02; letter-spacing: -0.02em; }
h3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.15; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ========== Nav ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--paper) 92%, transparent);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px !important;
  min-height: 120px;
}
.nav-brand {
  display: flex; align-items: center; gap: 16px;
  text-decoration: none; color: var(--ink);
}
.nav-brand img { height: 90px !important; width: 90px !important; object-fit: contain; border-radius: 50%; background: white; box-shadow: 0 2px 8px rgba(0,0,0,0.08); flex-shrink: 0; }
.nav-brand-text { line-height: 1; }
.nav-brand-text .name { font-family: var(--font-display); font-size: 16px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.05; }
.nav-brand-text .sub { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  text-decoration: none;
  font-size: 14.5px;
  padding: 8px 14px;
  border-radius: 10px;
  color: var(--ink-2);
  transition: all 0.15s;
}
.nav-links a:hover { background: var(--paper-2); color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  letter-spacing: -0.005em;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-yellow {
  background: var(--bee);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}
.btn-yellow:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }

.btn-blue,
.nav-links a.btn-blue {
  background: #005FCC;
  color: #fff;
  border: 1.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}
.btn-blue:hover,
.nav-links a.btn-blue:hover {
  background: #004FAA;
  color: #fff;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink);
}

/* ========== Section scaffolding ========== */
section { padding: 96px 0; position: relative; }
/* (eyebrow kicker removed — do not re-add) */

/* ========== Utility ========== */
.tag {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.tag.yellow { background: var(--bee); color: var(--ink); }
.tag.blue { background: var(--cap); color: white; }

.divider-wavy {
  height: 40px;
  background-image: radial-gradient(circle at 20px 40px, var(--paper) 20px, transparent 21px);
  background-size: 40px 40px;
  background-color: var(--paper-2);
}

/* ========== Footer ========== */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 0 40px;
}
footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
footer h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: #a39b8c; margin-bottom: 18px; font-weight: 600; }
footer a { color: var(--paper); text-decoration: none; opacity: 0.8; display: block; padding: 4px 0; font-size: 15px; }
footer a:hover { opacity: 1; color: var(--bee); }
footer .foot-bottom { grid-column: 1 / -1; margin-top: 48px; padding-top: 28px; border-top: 1px solid #333; font-size: 13px; color: #8c8374; display: flex; justify-content: space-between; }

@media (max-width: 840px) {
  .nav-links a.nav-page-link { display: none; }
  footer .container { grid-template-columns: 1fr 1fr; }
}
