:root{
  /* Quick-match knobs (adjust these 3–6 values to match your site precisely) */
  --rr-forest: #2f4f3e;    /* deep forest green */
  --rr-bark:   #4e2a1e;    /* bark / brown (you’ve used this tone before) */
  --rr-gold:   #c8a24a;    /* muted gold accent */
  --rr-ink:    #1f2a24;    /* body text */
  --rr-paper:  #ffffff;    /* card background */
  --rr-sand:   #f4f1ea;    /* page background */
  --rr-line:   rgba(31,42,36,.15);
  --rr-shadow: 0 10px 30px rgba(0,0,0,.12);

  --rr-radius: 10px;
  --rr-max: 1120px;
}

/* Base */
*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--rr-ink);
  background: var(--rr-sand);
  line-height: 1.5;
}
a{ color: var(--rr-forest); text-decoration:none; }
a:hover{ text-decoration:underline; }

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

/* Hero */
.rr-hero{
  /* Replace with your site banner image if you have one */
  background:
    linear-gradient(90deg, rgba(31,42,36,.85), rgba(31,42,36,.35)),
    url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?auto=format&fit=crop&w=2400&q=70");
  background-size: cover;
  background-position: center;
  border-bottom: 6px solid var(--rr-bark);
}
.rr-hero__overlay{
  padding: 56px 0 42px;
}
.rr-hero__kicker{
  color: rgba(255,255,255,.9);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}
.rr-hero__title{
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 750;
  text-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.rr-hero__sub{
  margin: 0;
  max-width: 60ch;
  color: rgba(255,255,255,.92);
}

/* Layout */
.rr-main{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  padding: 22px 0 34px;
}
@media (max-width: 920px){
  .rr-main{ grid-template-columns: 1fr; }
}

/* Cards */
.rr-card{
  background: var(--rr-paper);
  border: 1px solid var(--rr-line);
  border-radius: var(--rr-radius);
  box-shadow: var(--rr-shadow);
  padding: 22px;
}
.rr-card__title{
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 750;
  color: var(--rr-bark);
}

/* Form */
.rr-form label{
  display:block;
  font-weight: 650;
  margin: 0 0 6px;
}
.rr-form input,
.rr-form textarea,
.rr-form select{
  width: 100%;
  padding: 11px 12px;
  border-radius: 8px;
  border: 1px solid var(--rr-line);
  background: #fff;
  font-size: 15px;
  outline: none;
}
.rr-form input:focus,
.rr-form textarea:focus,
.rr-form select:focus{
  border-color: rgba(47,79,62,.55);
  box-shadow: 0 0 0 4px rgba(47,79,62,.12);
}

.rr-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 640px){
  .rr-grid{ grid-template-columns: 1fr; }
}
.rr-field--full{ grid-column: 1 / -1; }

.rr-actions{
  display:flex;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  flex-wrap: wrap;
}
.rr-btn{
  appearance:none;
  border: none;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 750;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(180deg, var(--rr-forest), #244033);
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}
.rr-btn:hover{
  filter: brightness(1.03);
}
.rr-note{
  margin:0;
  color: rgba(31,42,36,.72);
  font-size: 13px;
}

/* Honeypot hidden field */
.rr-hp{ display:none !important; }

/* Side card */
.rr-contactlist{ display:grid; gap: 12px; }
.rr-contactlabel{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(31,42,36,.65);
}
.rr-contactvalue{ font-weight: 650; }
.rr-divider{
  height: 1px;
  background: var(--rr-line);
  margin: 16px 0;
}
.rr-small{
  margin: 0;
  color: rgba(31,42,36,.72);
  font-size: 14px;
}

/* Footer */
.rr-footer{
  background: #1b2620;
  color: rgba(255,255,255,.85);
  border-top: 4px solid var(--rr-gold);
}
.rr-footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 16px 0;
  flex-wrap: wrap;
}
.rr-footer a{ color: rgba(255,255,255,.85); }
.rr-footer__title{ font-weight: 800; color:#fff; }
.rr-footer__meta{ font-size: 13px; opacity:.9; }
.rr-footer__dot{ opacity:.6; padding: 0 6px; }
