/* ═══════════════════════════════════════════════════════════
   THE RANCHY RN — Design System
   Brand: Trachelle Rodgers | China Spring, TX
   Palette: Saddle Brown · Turquoise · Gold · Cream · Dark Walnut
   ═══════════════════════════════════════════════════════════ */

/* ─── Custom Properties ─────────────────────────────────── */
:root {
  /* Brand Colors */
  --rr-brown:       #8B5E3C;   /* saddle brown — primary */
  --rr-brown-dark:  #5C3A1E;   /* dark walnut */
  --rr-brown-light: #C4956A;   /* warm tan */
  --rr-teal:        #3D8B8B;   /* turquoise/teal — accent */
  --rr-teal-light:  #6BBFBF;
  --rr-gold:        #C9A84C;   /* antique gold */
  --rr-gold-light:  #E8C97A;
  --rr-cream:       #F9F4EC;   /* warm cream */
  --rr-cream-dark:  #EDE4D3;
  --rr-text:        #2C1A0E;   /* dark espresso */
  --rr-text-mid:    #5C3A1E;
  --rr-text-light:  #8B6B4A;
  --rr-white:       #FFFFFF;

  /* Typography */
  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(44,26,14,.08), 0 1px 2px rgba(44,26,14,.06);
  --shadow-md: 0 4px 16px rgba(44,26,14,.12), 0 2px 6px rgba(44,26,14,.08);
  --shadow-lg: 0 12px 40px rgba(44,26,14,.16), 0 4px 12px rgba(44,26,14,.10);
  --shadow-xl: 0 24px 64px rgba(44,26,14,.20);

  /* Transitions */
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--rr-text);
  background: var(--rr-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rr-teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rr-brown); }
ul { list-style: none; }

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--rr-brown-dark);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); }
p  { color: var(--rr-text-mid); line-height: 1.75; }

.accent-teal  { color: var(--rr-teal); }
.accent-gold  { color: var(--rr-gold); }
.accent-brown { color: var(--rr-brown); }
em { font-style: italic; }

/* ─── Layout ────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: var(--space-2xl) 0;
}
.section-sm { padding: var(--space-xl) 0; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--rr-brown);
  color: var(--rr-white);
  border-color: var(--rr-brown);
}
.btn-primary:hover {
  background: var(--rr-brown-dark);
  border-color: var(--rr-brown-dark);
  color: var(--rr-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-teal {
  background: var(--rr-teal);
  color: var(--rr-white);
  border-color: var(--rr-teal);
}
.btn-teal:hover {
  background: #2d7070;
  border-color: #2d7070;
  color: var(--rr-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--rr-gold);
  color: var(--rr-brown-dark);
  border-color: var(--rr-gold);
}
.btn-gold:hover {
  background: var(--rr-gold-light);
  border-color: var(--rr-gold-light);
  color: var(--rr-brown-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--rr-brown);
  border-color: var(--rr-brown);
}
.btn-outline:hover {
  background: var(--rr-brown);
  color: var(--rr-white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--rr-white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--rr-white);
  color: var(--rr-white);
}

/* ─── Section Labels ────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rr-teal);
  background: rgba(61,139,139,.1);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1rem;
}
.section-label-gold {
  color: var(--rr-gold);
  background: rgba(201,168,76,.12);
}

/* ─── Navigation ────────────────────────────────────────── */
.rr-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(249,244,236,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139,94,60,.12);
  transition: box-shadow var(--transition);
}
.rr-nav.scrolled {
  box-shadow: var(--shadow-md);
}
.rr-nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.rr-nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.rr-nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.rr-nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--rr-brown-dark);
}
.rr-nav-brand-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rr-teal);
}
.rr-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.rr-nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--rr-text-mid);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.rr-nav-links a:hover,
.rr-nav-links a.active {
  color: var(--rr-brown);
  background: rgba(139,94,60,.08);
}
.rr-nav-cta { margin-left: 0.5rem; }

/* Hamburger */
.rr-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.rr-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--rr-brown-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.rr-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rr-hamburger.open span:nth-child(2) { opacity: 0; }
.rr-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.rr-mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--rr-cream);
  border-bottom: 1px solid rgba(139,94,60,.15);
  padding: 1.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: var(--shadow-lg);
}
.rr-mobile-nav.open { display: flex; }
.rr-mobile-nav ul { display: flex; flex-direction: column; gap: 0.25rem; }
.rr-mobile-nav a {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--rr-text-mid);
  border-radius: var(--radius-sm);
  font-size: 1rem;
}
.rr-mobile-nav a:hover { background: rgba(139,94,60,.08); color: var(--rr-brown); }
.rr-mobile-nav .btn { margin-top: 1rem; justify-content: center; }

/* ─── Hero Section ──────────────────────────────────────── */
.rr-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.rr-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
}
.rr-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(44,26,14,.75) 0%,
    rgba(44,26,14,.45) 55%,
    rgba(44,26,14,.15) 100%
  );
  z-index: 1;
}
.rr-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: var(--space-2xl) 0;
}
.rr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,.2);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--rr-gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
}
.rr-hero h1 {
  color: var(--rr-white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.rr-hero h1 em {
  font-style: italic;
  color: var(--rr-gold-light);
}
.rr-hero p {
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.rr-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.rr-hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.rr-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,.75);
  font-size: 0.8rem;
  font-weight: 500;
}
.rr-hero-trust-item svg { color: var(--rr-gold-light); flex-shrink: 0; }

/* ─── Stats Strip ───────────────────────────────────────── */
.rr-stats {
  background: linear-gradient(135deg, var(--rr-brown-dark) 0%, var(--rr-brown) 100%);
  padding: 3rem 0;
}
.rr-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.rr-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--rr-gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.rr-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

/* ─── Products Section ──────────────────────────────────── */
.rr-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.rr-product-card {
  background: var(--rr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(139,94,60,.1);
  transition: all var(--transition);
}
.rr-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(139,94,60,.2);
}
.rr-product-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--rr-cream-dark);
}
.rr-product-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--rr-cream-dark) 0%, var(--rr-cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.rr-product-body {
  padding: 1.5rem;
}
.rr-product-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rr-teal);
  margin-bottom: 0.5rem;
}
.rr-product-body h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--rr-brown-dark);
  margin-bottom: 0.5rem;
}
.rr-product-body p {
  font-size: 0.875rem;
  color: var(--rr-text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.rr-product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.rr-product-feature {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--rr-brown);
  background: rgba(139,94,60,.08);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-xl);
}

/* ─── About / Story Section ─────────────────────────────── */
.rr-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.rr-story-img-wrap {
  position: relative;
}
.rr-story-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.rr-story-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--rr-gold);
  color: var(--rr-brown-dark);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.rr-story-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.rr-story-badge-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rr-story-content h2 { margin-bottom: 1.25rem; }
.rr-story-content p { margin-bottom: 1.25rem; }
.rr-story-quote {
  border-left: 4px solid var(--rr-gold);
  padding: 1rem 1.5rem;
  background: var(--rr-cream);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--rr-brown-dark);
  font-size: 1.05rem;
}
.rr-story-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.rr-story-value {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.rr-story-value-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(61,139,139,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rr-teal);
}
.rr-story-value h5 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--rr-brown-dark);
  margin-bottom: 0.2rem;
}
.rr-story-value p {
  font-size: 0.8rem;
  color: var(--rr-text-light);
  line-height: 1.5;
}

/* ─── Charity / Giving Section ──────────────────────────── */
.rr-giving {
  background: linear-gradient(135deg, var(--rr-teal) 0%, #2d7070 100%);
  padding: 5rem 0;
  text-align: center;
}
.rr-giving h2 { color: var(--rr-white); margin-bottom: 1rem; }
.rr-giving p  { color: rgba(255,255,255,.85); max-width: 640px; margin: 0 auto 2rem; font-size: 1.05rem; }
.rr-giving-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--rr-white);
}

/* ─── SMS Opt-In ────────────────────────────────────────── */
.rr-sms-section {
  background: var(--rr-cream);
  padding: var(--space-2xl) 0;
}
.rr-sms-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--rr-white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(139,94,60,.1);
}
.rr-sms-header {
  text-align: center;
  margin-bottom: 2rem;
}
.rr-sms-header h3 { margin-bottom: 0.5rem; }
.rr-sms-header p  { font-size: 0.9rem; color: var(--rr-text-light); }
.rr-sms-disclosure {
  background: var(--rr-cream);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: var(--rr-text-mid);
}
.rr-sms-disclosure p { margin-bottom: 0.4rem; font-size: 0.8rem; }
.rr-sms-disclosure strong { color: var(--rr-brown-dark); }
.rr-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.rr-form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.rr-form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rr-brown-dark);
  letter-spacing: 0.02em;
}
.rr-form-group input,
.rr-form-group select,
.rr-form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(139,94,60,.2);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--rr-text);
  background: var(--rr-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.rr-form-group input:focus,
.rr-form-group select:focus,
.rr-form-group textarea:focus {
  outline: none;
  border-color: var(--rr-teal);
  box-shadow: 0 0 0 3px rgba(61,139,139,.12);
}
.rr-form-full { grid-column: 1 / -1; }
.rr-consent-box {
  background: rgba(61,139,139,.06);
  border: 1.5px solid rgba(61,139,139,.2);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 1.25rem 0;
}
.rr-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}
.rr-consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--rr-teal);
  cursor: pointer;
}
.rr-consent-text {
  font-size: 0.8rem;
  color: var(--rr-text-mid);
  line-height: 1.6;
}
.rr-consent-text strong { color: var(--rr-brown-dark); }
.rr-consent-text a { color: var(--rr-teal); font-weight: 600; }
.rr-form-legal {
  font-size: 0.72rem;
  color: var(--rr-text-light);
  line-height: 1.6;
  margin-top: 1rem;
  text-align: center;
}
.rr-form-legal a { color: var(--rr-teal); }

/* ─── Page Hero (inner pages) ───────────────────────────── */
.rr-page-hero {
  background: linear-gradient(135deg, var(--rr-brown-dark) 0%, var(--rr-brown) 100%);
  padding: 7rem 0 4rem;
  text-align: center;
}
.rr-page-hero h1 { color: var(--rr-white); margin-bottom: 1rem; }
.rr-page-hero p  { color: rgba(255,255,255,.8); max-width: 600px; margin: 0 auto; }

/* ─── Breadcrumb ────────────────────────────────────────── */
.rr-breadcrumb {
  background: var(--rr-cream-dark);
  border-bottom: 1px solid rgba(139,94,60,.1);
  padding: 0.75rem 0;
}
.rr-breadcrumb-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--rr-text-light);
}
.rr-breadcrumb-inner a { color: var(--rr-teal); font-weight: 500; }
.rr-breadcrumb-inner svg { color: var(--rr-text-light); }

/* ─── Legal Pages ───────────────────────────────────────── */
.rr-legal-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.rr-legal-highlight {
  background: rgba(61,139,139,.08);
  border-left: 4px solid var(--rr-teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.rr-legal-highlight p { font-size: 0.9rem; color: var(--rr-text-mid); }
.rr-legal-warning {
  background: rgba(201,168,76,.1);
  border-left: 4px solid var(--rr-gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.rr-legal-warning p { font-size: 0.9rem; color: var(--rr-text-mid); }
.rr-legal-toc {
  background: var(--rr-cream);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.rr-legal-toc h4 { margin-bottom: 1rem; color: var(--rr-brown-dark); }
.rr-legal-toc ol { padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; }
.rr-legal-toc li { font-size: 0.875rem; color: var(--rr-text-mid); list-style: decimal; }
.rr-legal-toc a { color: var(--rr-teal); }
.rr-legal-section {
  margin: 2.5rem 0;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(139,94,60,.1);
}
.rr-legal-section:last-of-type { border-bottom: none; }
.rr-legal-section h3 {
  font-size: 1.2rem;
  color: var(--rr-brown-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(201,168,76,.3);
}
.rr-legal-section p { margin-bottom: 1rem; font-size: 0.9rem; }
.rr-legal-section ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.rr-legal-section ul li {
  font-size: 0.9rem;
  color: var(--rr-text-mid);
  list-style: disc;
  line-height: 1.6;
}
.rr-legal-section a { color: var(--rr-teal); font-weight: 500; }

/* ─── Footer ────────────────────────────────────────────── */
.rr-footer {
  background: var(--rr-brown-dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}
.rr-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.rr-footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.rr-footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rr-white);
}
.rr-footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.rr-footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.rr-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,.6);
}
.rr-footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--rr-gold); }
.rr-footer-contact-item a { color: rgba(255,255,255,.75); }
.rr-footer-contact-item a:hover { color: var(--rr-gold-light); }
.rr-footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rr-gold);
  margin-bottom: 1rem;
}
.rr-footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.rr-footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.rr-footer-col a:hover { color: var(--rr-gold-light); }
.rr-footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.5rem;
}
.rr-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.rr-footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
}
.rr-footer-legal a { color: rgba(255,255,255,.55); }
.rr-footer-legal a:hover { color: var(--rr-gold-light); }
.rr-footer-sms-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,.35);
  max-width: 420px;
  line-height: 1.6;
  text-align: right;
}

/* ─── Shop Coming Soon ──────────────────────────────────── */
.rr-countdown {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}
.rr-countdown-unit {
  text-align: center;
  background: var(--rr-white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  min-width: 90px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(139,94,60,.1);
}
.rr-countdown-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--rr-brown-dark);
  display: block;
  line-height: 1;
}
.rr-countdown-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rr-text-light);
  margin-top: 0.4rem;
}

/* ─── Contact Page ──────────────────────────────────────── */
.rr-contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.rr-contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.rr-contact-card {
  background: var(--rr-cream);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid rgba(139,94,60,.1);
}
.rr-contact-card h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rr-teal);
  margin-bottom: 1rem;
}
.rr-contact-card p, .rr-contact-card a {
  font-size: 0.875rem;
  color: var(--rr-text-mid);
  line-height: 1.6;
}
.rr-contact-card a:hover { color: var(--rr-brown); }
.rr-contact-form-wrap {
  background: var(--rr-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(139,94,60,.1);
}

/* ─── Page Content wrapper ──────────────────────────────── */
.page-content { padding-top: 72px; }

/* ─── Utility ───────────────────────────────────────────── */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
.bg-cream { background: var(--rr-cream); }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .rr-story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .rr-story-badge { bottom: -1rem; right: 1rem; }
  .rr-footer-grid { grid-template-columns: 1fr 1fr; }
  .rr-contact-grid { grid-template-columns: 1fr; }
  .rr-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .rr-nav-links, .rr-nav-cta { display: none; }
  .rr-hamburger { display: flex; }
  .rr-hero-content { max-width: 100%; }
  .rr-products-grid { grid-template-columns: 1fr; }
  .rr-form-row { grid-template-columns: 1fr; }
  .rr-story-values { grid-template-columns: 1fr; }
  .rr-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .rr-footer-bottom { flex-direction: column; }
  .rr-footer-sms-note { text-align: left; }
  .rr-sms-wrap { padding: 2rem 1.5rem; }
  .rr-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 480px) {
  .rr-hero-ctas { flex-direction: column; }
  .rr-stats-grid { grid-template-columns: 1fr 1fr; }
  .rr-countdown { gap: 0.75rem; }
  .rr-countdown-unit { min-width: 70px; padding: 1rem; }
  .rr-countdown-num { font-size: 2rem; }
}
