:root {
  --rp-forest: #12382f;
  --rp-pine: #1f5a46;
  --rp-moss: #6f8a4f;
  --rp-orange: #e97832;
  --rp-sand: #f6f1e8;
  --rp-stone: #e6e2da;
  --rp-charcoal: #202725;
  --rp-muted: #69736e;
  --rp-white: #fff;
  --rp-border: rgba(32, 39, 37, 0.12);
  --rp-shadow: 0 16px 42px rgba(18, 56, 47, 0.12);
  --rp-radius: 8px;
  --rp-container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--rp-charcoal);
  background: var(--rp-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  color: var(--rp-forest);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
}

h3 {
  font-size: 1.18rem;
}

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

button {
  cursor: pointer;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid var(--rp-border);
  padding: 0.85rem;
  text-align: left;
}

th {
  color: var(--rp-forest);
  background: var(--rp-sand);
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.6rem 1rem;
  background: var(--rp-forest);
  color: var(--rp-white);
  z-index: 9999;
}

.rp-container {
  width: min(100% - 2rem, var(--rp-container));
  margin-inline: auto;
}

.rp-narrow {
  max-width: 760px;
}

.rp-section {
  padding: 5rem 0;
}

.rp-section--sand {
  background: var(--rp-sand);
}

.rp-section--forest {
  color: var(--rp-white);
  background: var(--rp-forest);
}

.rp-section--forest h2,
.rp-section--forest h3,
.rp-section--forest .rp-kicker {
  color: var(--rp-white);
}

.rp-section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.rp-section-heading p {
  color: var(--rp-muted);
}

.rp-section--forest .rp-section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.rp-kicker {
  margin: 0 0 0.65rem;
  color: var(--rp-orange);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.rp-btn,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--rp-orange);
  border-radius: var(--rp-radius);
  background: var(--rp-orange);
  color: var(--rp-white);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.rp-btn:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  transform: translateY(-1px);
  background: #cf6427;
  border-color: #cf6427;
  color: var(--rp-white);
}

.rp-btn--secondary {
  color: var(--rp-forest);
  background: var(--rp-white);
  border-color: var(--rp-white);
}

.rp-btn--small {
  min-height: 38px;
  padding: 0.55rem 0.9rem;
  font-size: 0.92rem;
}

.rp-link-button,
.rp-text-link {
  color: var(--rp-forest);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--rp-orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.rp-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.rp-card {
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  background: var(--rp-white);
  box-shadow: 0 10px 30px rgba(18, 56, 47, 0.06);
  padding: 1.35rem;
}

.rp-content {
  max-width: 860px;
}

.rp-content a {
  color: var(--rp-pine);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rp-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
  color: var(--rp-muted);
  font-size: 0.9rem;
}

.rp-breadcrumbs a {
  color: var(--rp-pine);
}

