:root {
  --coral: #f36f6d;
  --coral-dark: #d95559;
  --teal: #175c63;
  --teal-dark: #0d4247;
  --teal-light: #2f7f83;
  --cream: #fff8ef;
  --sand: #f6d5a9;
  --pink: #f58aaa;
  --ink: #17383b;
  --muted: #62797b;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(12, 66, 71, 0.14);
  --shadow-soft: 0 10px 28px rgba(23, 92, 99, 0.08);
  --radius: 22px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(243, 111, 109, 0.12);
  color: var(--coral-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
  border: 2px solid transparent;
}

.btn-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 10px 24px rgba(23, 92, 99, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--teal-dark);
}

.btn-secondary {
  background: var(--white);
  border-color: rgba(23, 92, 99, 0.18);
  color: var(--teal-dark);
}

.btn-secondary:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}
