@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Work+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@500&display=swap');

:root {
  --ink: #16213E;
  --ink-soft: #3E4C74;
  --paper: #F1F4EC;
  --paper-raised: #FFFFFF;
  --marigold: #F2A93B;
  --marigold-deep: #C97F1B;
  --teal: #2F8F7E;
  --coral: #E8604C;
  --violet: #7C6FC4;
  --sky: #3E92CC;
  --line: #D9DECB;
  --danger: #B3402A;

  --display: 'Fraunces', serif;
  --body: 'Work Sans', sans-serif;
  --mono: 'IBM Plex Mono', monospace;

  --radius: 20px;
  --shadow: 0 8px 24px rgba(22, 33, 62, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

h1, h2, h3 { font-family: var(--display); margin: 0 0 0.4em; line-height: 1.1; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: inherit; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-block;
  margin-bottom: 0.6em;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-3px) rotate(-1deg); }
.btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }

.btn-primary { background: var(--marigold); color: var(--ink); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--marigold-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--paper); border: 1.5px solid rgba(241,244,236,0.5); }
.btn-ghost:hover { border-color: var(--marigold); color: var(--marigold); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--teal); }

.card {
  background: var(--paper-raised);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

label { font-size: 0.85rem; font-weight: 600; color: var(--ink); display: block; margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 0.98rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(47,143,126,0.15);
}
.field { margin-bottom: 18px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
