/* ======================================
   RELATIONAL ROOTS™ VERSION 3
   BRAND STYLE SYSTEM
====================================== */


/* ======================================
   01. CSS VARIABLES
====================================== */

:root {
  /* Brand Colors */
  --rr-cream: #F7F2E8;
  --rr-soft-cream: #FBF8F1;
  --rr-warm-white: #FFFDF8;

  --rr-root-green: #4F6F52;
  --rr-deep-green: #2F4733;
  --rr-sage: #A8B89A;
  --rr-soft-sage: #E8EEE3;

  --rr-earth-brown: #4B3A2F;
--rr-dark-earth: #3A2C24;
  --rr-clay: #B98B68;
  --rr-gold: #C7A76C;

  --rr-charcoal: #2E2E2A;
  --rr-body: #5F564D;
  --rr-muted: #8A8178;

  --rr-border: #E4D8C7;

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Montserrat", sans-serif;
  --font-accent: "Montserrat", serif;

  /* Layout */
  --section-padding: 75px;
  --container-width: 1180px;

  /* Border Radius */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-soft: 0 18px 45px rgba(47, 71, 51, 0.08);
  --shadow-card: 0 12px 32px rgba(47, 71, 51, 0.10);

  /* Transitions */
  --transition: all 0.25s ease;
}


/* ======================================
   02. RESET
====================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* ======================================
   03. GLOBAL HTML / BODY
====================================== */

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--rr-soft-cream);
  color: var(--rr-body);
  line-height: 1.7;
}


/* ======================================
   04. GLOBAL CONTAINER
====================================== */

.container {
  width: min(90%, var(--container-width));
  margin: 0 auto;
}


/* ======================================
   05. GLOBAL SECTION SPACING
====================================== */

section {
  padding: var(--section-padding) 0;
}


/* ======================================
   06. TYPOGRAPHY
====================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--rr-deep-green);
  line-height: 1.1;
  font-weight: 600;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  letter-spacing: -1.5px;
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  letter-spacing: -1px;
}

h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  font-size: 1rem;
  color: var(--rr-body);
}

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

ul {
  list-style: none;
}


/* ======================================
   07. TEXT UTILITY CLASSES
====================================== */

.section-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--rr-root-green);
  margin-bottom: 16px;
}

.section-intro {
  max-width: 720px;
  margin-top: 18px;
  font-size: 1.08rem;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--rr-muted);
}

.text-green {
  color: var(--rr-root-green);
}


/* ======================================
   08. BUTTONS
====================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--rr-root-green);
  color: var(--rr-warm-white);
}

.btn-primary:hover {
  background: var(--rr-deep-green);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--rr-deep-green);
  border-color: var(--rr-root-green);
}

.btn-secondary:hover {
  background: var(--rr-soft-sage);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--rr-warm-white);
  color: var(--rr-deep-green);
}

.btn-light:hover {
  background: var(--rr-cream);
  transform: translateY(-2px);
}

/* ======================================
   COMING SOON BUTTON
====================================== */

.btn-disabled {
    background: #D9D9D9;
    color: #777777;
    border: 1px solid #C8C8C8;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.75;
}

.btn-disabled:hover {
    transform: none;
    box-shadow: none;
}

/* ======================================
   09. CARDS
====================================== */

.card {
  background: var(--rr-warm-white);
  border: 1px solid var(--rr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--rr-body);
}


/* ======================================
   10. GRID SYSTEM
====================================== */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ======================================
   GRID SYSTEM - FOUR COLUMN
====================================== */

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ======================================
   11. BRAND SECTION BACKGROUNDS
====================================== */

.section-cream {
  background: var(--rr-cream);
}

.section-soft-cream {
  background: var(--rr-soft-cream);
}

.section-white {
  background: var(--rr-warm-white);
}

.section-green {
  background: var(--rr-deep-green);
  color: var(--rr-warm-white);
}

.section-green h1,
.section-green h2,
.section-green h3,
.section-green h4,
.section-green p,
.section-green .section-label {
  color: var(--rr-warm-white);
}


/* ======================================
   12. IMAGE DEFAULTS
====================================== */

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


/* ======================================
   13. FORM ELEMENTS
====================================== */

input,
textarea,
select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid var(--rr-border);
  border-radius: var(--radius-md);
  background: var(--rr-warm-white);
  color: var(--rr-body);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--rr-root-green);
  box-shadow: 0 0 0 3px rgba(79, 111, 82, 0.12);
}


/* ======================================
   14. SMALL BRAND ELEMENTS
====================================== */

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rr-root-green);
  margin-bottom: 14px;
}

.divider {
  width: 64px;
  height: 2px;
  background: var(--rr-gold);
  margin: 24px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--rr-soft-sage);
  color: var(--rr-deep-green);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ======================================
   15. SECTION HEADERS
====================================== */

.section-header {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-bottom: 18px;
}

.section-header p {
  font-size: 1.08rem;
}


/* ======================================
   16. FEATURE CARDS
====================================== */

.feature-card {
  background: var(--rr-warm-white);
  border: 1px solid var(--rr-border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--rr-body);
}


/* ======================================
   17. ASSESSMENT CARDS
====================================== */

.assessment-card {
  background: var(--rr-warm-white);
  border: 1px solid var(--rr-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);

  /* New */
  display: flex;
  flex-direction: column;
}

.assessment-card:hover {
  transform: translateY(-4px);
  border-color: var(--rr-sage);
  box-shadow: var(--shadow-card);
}

.assessment-card .pill {
  margin-bottom: 18px;
}

.assessment-card h3 {
  margin-bottom: 14px;
}

.assessment-card p {
  margin-bottom: 24px;

  /* New */
  flex-grow: 1;
}

.assessment-card .btn {
  align-self: flex-start;
}


/* ======================================
   18. CTA BANNERS
====================================== */

.cta-banner {
  background:
    linear-gradient(135deg, var(--rr-deep-green), var(--rr-root-green));
  border-radius: var(--radius-lg);
  padding: 56px;
  color: var(--rr-warm-white);
  box-shadow: var(--shadow-card);
}

.cta-banner h2,
.cta-banner p {
  color: var(--rr-warm-white);
}

.cta-banner p {
  max-width: 680px;
  margin-top: 16px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}


/* ======================================
   19. QUOTE BLOCKS
====================================== */

.quote-block {
  border-left: 4px solid var(--rr-gold);
  padding-left: 24px;
  max-width: 760px;
}

.quote-block p {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.2;
  color: var(--rr-deep-green);
}


/* ======================================
   20. SOFT DIVIDER SECTION
====================================== */

.soft-divider {
  height: 1px;
  width: 100%;
  background: var(--rr-border);
}