:root {
  --ink: #161513;
  --paper: #e9e6e0;
  --paper-alt: #dfdbd3;
  --paper-deep: #f2f0ea;
  --orange: #e8641b;
  --orange-dark: #c24f0e;
  --orange-light: #ff7a2e;
  --muted: #6b675f;
  --muted-2: #9a958b;
  --body-text: #3d3a34;
  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

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

input, textarea, select { font-family: var(--font-body); }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 48px);
  padding-right: clamp(16px, 4vw, 48px);
}

.nav-link:hover, .tel-link:hover { color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-primary-alt:hover { background: var(--orange-light); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.perk-row:hover { background: var(--paper-deep); }
.faq-q:hover { background: #f6f4ef; }
.type-btn:hover { background: var(--ink); color: #fff; }
.reset-btn:hover { border-color: var(--orange); color: var(--orange); }

@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 100, 27, .5); }
  70% { box-shadow: 0 0 0 18px rgba(232, 100, 27, 0); }
}
@keyframes rise { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }
@keyframes slideL { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: none; } }

.anim-rise { animation: rise .7s both; animation-timeline: view(); animation-range: entry 0% entry 30%; }
.anim-slideL { animation: slideL .7s both; animation-timeline: view(); animation-range: entry 0% entry 30%; }
.anim-pulse { animation: pulse 2.4s infinite; }
.anim-floaty { animation: floaty 4s ease-in-out infinite; }
.anim-marq { animation: marq 18s linear infinite; }

.image-slot {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg, #d8d4cb, #d8d4cb 10px, #cfcbc0 10px, #cfcbc0 20px);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  padding: 12px;
}
