/* ============================================================
   RIVER TRAIL RANCH — REDESIGN
   Warm earthy editorial · Cormorant Garamond + Inter + JetBrains Mono
   Palette: bone, parchment, clay, deep moss, ink, cream
   ============================================================ */

.rtr-app {
  --rtr-bone:      #F4EDE2;
  --rtr-parchment: #EAE0CE;
  --rtr-cream:     #FCF8F1;
  --rtr-clay:      #B5704A;
  --rtr-clay-d:    #8E552F;
  --rtr-moss:      #3D4A35;
  --rtr-moss-d:    #2A3324;
  --rtr-ink:       #1F1B16;
  --rtr-rule:      rgba(31,27,22,.16);
  --rtr-rule-soft: rgba(31,27,22,.08);

  --rtr-serif: "Cormorant Garamond", "Times New Roman", serif;
  --rtr-sans:  "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --rtr-mono:  "JetBrains Mono", ui-monospace, monospace;

  --rtr-pad: clamp(20px, 4vw, 64px);
  --rtr-maxw: 1440px;
  --rtr-ease: cubic-bezier(.2,.7,.2,1);
}

.rtr-app, .rtr-app *, .rtr-app *::before, .rtr-app *::after { box-sizing: border-box; }
.rtr-app {
  background: var(--rtr-bone);
  color: var(--rtr-ink);
  font-family: var(--rtr-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: clip;
}
.rtr-app img { max-width: 100%; display: block; }
.rtr-app a { color: inherit; text-decoration: none; }
.rtr-app em { font-family: var(--rtr-serif); font-style: italic; font-weight: 400; }

/* ============================================================
   THEME ARMOR — direct selectors so host theme rules
   (Divi/WP styling h1, h2, a, p, button, etc.) cannot win
   on specificity. Defaults below are deliberately reset; section
   styles further down override with intent.
   ============================================================ */
.rtr-app h1,
.rtr-app h2,
.rtr-app h3,
.rtr-app h4,
.rtr-app h5,
.rtr-app h6 {
  color: inherit;
  font-family: var(--rtr-serif);
  font-weight: 400;
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.rtr-app p,
.rtr-app li,
.rtr-app span,
.rtr-app figcaption,
.rtr-app blockquote,
.rtr-app label,
.rtr-app input,
.rtr-app textarea,
.rtr-app button,
.rtr-app select {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.rtr-app a,
.rtr-app a:link,
.rtr-app a:visited,
.rtr-app a:hover,
.rtr-app a:focus,
.rtr-app a:active {
  color: inherit;
  font-family: inherit;
  text-decoration: none;
  background: transparent;
  box-shadow: none;
}
.rtr-app ul,
.rtr-app ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.rtr-app figure,
.rtr-app blockquote {
  margin: 0;
}
.rtr-app button {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
/* Re-assert wrapper-level color/font in case a theme styles a wrapping
   .et_pb_code or div with !important — these only target our root. */
.rtr-app.rtr-app {
  color: var(--rtr-ink);
  font-family: var(--rtr-sans);
}

/* ============================================================
   DIVI CONTAINER ESCAPE
   Lift the app out of the surrounding .et_pb_section / _row /
   _column / _code, which otherwise cap the width to ~1080px and
   add 4–10% padding. Targets only the ancestors of .rtr-app —
   other Divi sections on the same page are untouched.
   :has() support: Chrome 105+, Safari 15.4+, Firefox 121+.
   ============================================================ */
.et_pb_section:has(.rtr-app) {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
}
.et_pb_row:has(.rtr-app),
.et_pb_row_inner:has(.rtr-app) {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
.et_pb_column:has(.rtr-app) {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
.et_pb_module:has(.rtr-app),
.et_pb_code:has(.rtr-app),
.et_pb_code_inner:has(.rtr-app) {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ----------- GRAIN OVERLAY ------------- */
.rtr-app .grain {
  position: fixed; inset: 0;
  z-index: 9999; pointer-events: none;
  opacity: .035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='1'/></svg>");
}

/* ----------- REVEAL ------------- */
.rtr-app .reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--rtr-ease) var(--rtr-d, 0s), transform .9s var(--rtr-ease) var(--rtr-d, 0s); }.rtr-app .reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
.rtr-app NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--rtr-pad);
  color: var(--rtr-cream);
  transition: background .4s var(--rtr-ease), color .4s var(--rtr-ease), backdrop-filter .4s var(--rtr-ease), border-color .4s var(--rtr-ease);
  border-bottom: 1px solid transparent;
}.rtr-app .nav.is-scrolled {
  background: rgba(244,237,226,.86);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  color: var(--rtr-ink);
  border-bottom-color: var(--rtr-rule-soft);
}.rtr-app .nav__brand { display: flex; align-items: center; gap: 14px; margin-left: -10px; }.rtr-app .nav__logo-svg {
  height: 28px;
  width: auto;
  display: block;
  transition: transform .5s var(--rtr-ease);
}.rtr-app .nav__brand:hover .nav__logo-svg { transform: translateX(2px); }.rtr-app .nav__mark { width: 44px; height: 44px; flex: 0 0 44px; }.rtr-app .nav__links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  letter-spacing: .04em;
}.rtr-app .nav__links a {
  position: relative;
  padding: 6px 0;
  opacity: .85;
  transition: opacity .25s var(--rtr-ease);
}.rtr-app .nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 2px;
  height: 1px; background: currentColor;
  transition: right .35s var(--rtr-ease);
}.rtr-app .nav__links a:hover { opacity: 1; }.rtr-app .nav__links a:hover::after { right: 0; }.rtr-app .nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .02em;
  transition: background .3s var(--rtr-ease), color .3s var(--rtr-ease), border-color .3s var(--rtr-ease);
}.rtr-app .nav.is-scrolled .nav__cta { border-color: var(--rtr-ink); }.rtr-app .nav__cta:hover {
  background: var(--rtr-clay);
  border-color: var(--rtr-clay);
  color: var(--rtr-cream);
}.rtr-app .nav__cta svg { width: 14px; height: 14px; }
@media (max-width: 880px) {.rtr-app .nav__links { display: none; }.rtr-app .nav__tag { display: none; }
}

/* ============================================================
.rtr-app HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--rtr-cream);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}.rtr-app .hero__media {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
  will-change: transform;
}.rtr-app .hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(.92) contrast(1.02);
}.rtr-app .hero__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, transparent 0%, rgba(15,12,8,.28) 60%, rgba(15,12,8,.55) 100%),
    linear-gradient(180deg, rgba(15,12,8,.38) 0%, rgba(15,12,8,.05) 30%, rgba(15,12,8,.05) 55%, rgba(15,12,8,.78) 100%);
}.rtr-app .hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px var(--rtr-pad) 40px;
  max-width: var(--rtr-maxw);
  margin: 0 auto;
  width: 100%;
}.rtr-app .hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--rtr-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .9;
  margin-bottom: 28px;
}.rtr-app .hero__eyebrow .dot {
  width: 6px; height: 6px; background: var(--rtr-clay); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(181,112,74,.6);
  animation: pulse 2.4s var(--rtr-ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(181,112,74,.6); }
  60% { box-shadow: 0 0 0 12px rgba(181,112,74,0); }
}.rtr-app .hero__title {
  font-family: var(--rtr-serif);
  font-weight: 400;
  font-size: clamp(48px, 9vw, 132px);
  line-height: .96;
  letter-spacing: -0.025em;
  margin: 0 0 48px;
  max-width: 14ch;
}.rtr-app .hero__title .line {
  display: block;
  overflow: hidden;
}.rtr-app .hero__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  max-width: 980px;
}.rtr-app .hero__lede {
  font-size: 17px;
  line-height: 1.6;
  max-width: 44ch;
  opacity: .92;
}.rtr-app .hero__lede strong { font-weight: 500; color: var(--rtr-cream); }.rtr-app .hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-self: end; }
@media (max-width: 720px) {.rtr-app .hero__meta { grid-template-columns: 1fr; gap: 24px; }.rtr-app .hero__ctas { justify-self: start; }
}.rtr-app .hero__bottom {
  position: relative; z-index: 2;
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px;
  padding: 0 var(--rtr-pad) 28px;
  max-width: var(--rtr-maxw);
  margin: 0 auto;
  width: 100%;
}.rtr-app .hero__triplet {
  display: flex; gap: clamp(20px, 4vw, 64px);
  border-top: 1px solid rgba(252,248,241,.25);
  padding-top: 18px;
  flex: 1;
  max-width: 720px;
}.rtr-app .hero__triplet > div { display: flex; flex-direction: column; gap: 2px; }.rtr-app .hero__num {
  font-family: var(--rtr-serif);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}.rtr-app .hero__lbl {
  font-family: var(--rtr-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .8;
  max-width: 18ch;
}.rtr-app .hero__scroll {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--rtr-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; opacity: .8;
}.rtr-app .hero__scroll svg { width: 12px; height: 36px; animation: scrollDrift 2.6s var(--rtr-ease) infinite; }
@keyframes scrollDrift {
  0%, 100% { transform: translateY(0); opacity: .7; }
  50% { transform: translateY(6px); opacity: 1; }
}
@media (max-width: 720px) {.rtr-app .hero__scroll { display: none; }
}

/* ============================================================
.rtr-app BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .03em;
  transition: transform .35s var(--rtr-ease), background .3s var(--rtr-ease), color .3s var(--rtr-ease), border-color .3s var(--rtr-ease);
  cursor: pointer;
}.rtr-app .btn svg { width: 14px; height: 14px; transition: transform .35s var(--rtr-ease); }.rtr-app .btn:hover svg { transform: translateX(4px); }.rtr-app .btn--primary { background: var(--rtr-clay); color: var(--rtr-cream); border: 1px solid var(--rtr-clay); }.rtr-app .btn--primary:hover { background: var(--rtr-clay-d); border-color: var(--rtr-clay-d); }.rtr-app .btn--ghost { background: transparent; color: currentColor; border: 1px solid currentColor; }.rtr-app .btn--ghost:hover { background: rgba(252,248,241,.1); }.rtr-app .btn--cream { background: var(--rtr-cream); color: var(--rtr-ink); border: 1px solid var(--rtr-cream); }.rtr-app .btn--rtr-cream:hover { background: transparent; color: var(--rtr-cream); }.rtr-app .btn--outline-cream { background: transparent; color: var(--rtr-cream); border: 1px solid rgba(252,248,241,.5); }.rtr-app .btn--outline-cream:hover { border-color: var(--rtr-cream); background: rgba(252,248,241,.06); }.rtr-app .link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--rtr-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap .3s var(--rtr-ease), color .3s var(--rtr-ease);
}.rtr-app .link svg { width: 12px; height: 12px; transition: transform .3s var(--rtr-ease); }.rtr-app .link:hover { color: var(--rtr-clay); gap: 12px; }.rtr-app .link:hover svg { transform: translateX(2px); }

/* ============================================================
.rtr-app MARQUEE
   ============================================================ */
.marquee {
  background: var(--rtr-moss);
  color: var(--rtr-cream);
  overflow: hidden;
  border-top: 1px solid rgba(252,248,241,.08);
  border-bottom: 1px solid rgba(252,248,241,.08);
}.rtr-app .marquee__track {
  display: inline-flex;
  gap: 36px;
  align-items: center;
  white-space: nowrap;
  padding: 22px 0;
  font-family: var(--rtr-serif);
  font-size: clamp(20px, 2.6vw, 30px);
  letter-spacing: -0.01em;
  animation: marquee 48s linear infinite;
}.rtr-app .marquee__track .sep {
  font-size: 14px; opacity: .5; color: var(--rtr-clay);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
.rtr-app COMMON SECTION CHROME
   ============================================================ */
section { position: relative; }.rtr-app .mission__marker {
  display: inline-flex; align-items: baseline; gap: 14px;
  font-family: var(--rtr-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 32px;
}.rtr-app .marker__num {
  font-family: var(--rtr-serif);
  font-style: italic;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--rtr-clay);
  font-weight: 400;
}.rtr-app .marker__label { opacity: .7; }

/* ============================================================
.rtr-app MISSION
   ============================================================ */
.mission {
  padding: clamp(80px, 10vw, 140px) var(--rtr-pad);
  max-width: var(--rtr-maxw);
  margin: 0 auto;
}.rtr-app .mission__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-areas: "title figure" "body  figure";
  gap: 48px clamp(48px, 6vw, 96px);
  align-items: start;
}.rtr-app .mission__title {
  grid-area: title;
  font-family: var(--rtr-serif);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 16ch;
}.rtr-app .mission__title span { display: block; }.rtr-app .mission__body { grid-area: body; max-width: 52ch; }.rtr-app .mission__body p {
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 18px;
  color: rgba(31,27,22,.84);
}.rtr-app .mission__values {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  border-top: 1px solid var(--rtr-rule);
}.rtr-app .mission__values li {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--rtr-rule);
  gap: 16px;
}.rtr-app .mission__values span {
  font-family: var(--rtr-serif);
  font-size: 26px;
  letter-spacing: -0.01em;
}.rtr-app .mission__values i {
  font-style: normal;
  font-family: var(--rtr-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(31,27,22,.62);
}.rtr-app .mission__figure {
  grid-area: figure;
  margin: 0;
  position: sticky;
  top: 110px;
}.rtr-app .mission__img {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/5;
  background: var(--rtr-parchment);
  position: relative;
}.rtr-app .mission__img img {
  width: 100%; height: 110%;
  object-fit: cover;
  will-change: transform;
}.rtr-app .mission__figure figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-family: var(--rtr-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(31,27,22,.6);
}.rtr-app .cap__num { color: var(--rtr-clay); }

@media (max-width: 920px) {.rtr-app .mission__grid {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "figure" "body";
  }.rtr-app .mission__figure { position: static; }.rtr-app .mission__img { aspect-ratio: 4/3; }
}

/* ============================================================
.rtr-app SERVICES
   ============================================================ */
.services {
  padding: clamp(80px, 10vw, 140px) var(--rtr-pad);
  max-width: var(--rtr-maxw);
  margin: 0 auto;
  border-top: 1px solid var(--rtr-rule);
}.rtr-app .services__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  margin-bottom: clamp(48px, 7vw, 96px);
  align-items: end;
}.rtr-app .services__title {
  font-family: var(--rtr-serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
@media (max-width: 760px) {.rtr-app .services__head { grid-template-columns: 1fr; gap: 24px; } }.rtr-app .program {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding: clamp(40px, 6vw, 80px) 0;
  border-top: 1px solid var(--rtr-rule);
}.rtr-app .program:last-of-type { border-bottom: 1px solid var(--rtr-rule); }.rtr-app .program--reverse { direction: rtl; }.rtr-app .program--reverse > * { direction: ltr; }.rtr-app .program__media {
  overflow: hidden;
  border-radius: 2px;
  background: var(--rtr-parchment);
  aspect-ratio: 5/4;
  position: relative;
}.rtr-app .program__img { position: absolute; inset: -6%; }.rtr-app .program__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--rtr-ease);
  will-change: transform;
}.rtr-app .program:hover .program__img img { transform: scale(1.04); }.rtr-app .program__copy { max-width: 52ch; }.rtr-app .program__num {
  font-family: var(--rtr-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rtr-clay);
  display: block;
  margin-bottom: 18px;
}.rtr-app .program__copy h3 {
  font-family: var(--rtr-serif);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}.rtr-app .program__copy p {
  font-size: 16.5px;
  line-height: 1.65;
  margin: 0 0 22px;
  color: rgba(31,27,22,.84);
}.rtr-app .program__tags {
  list-style: none; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 0 0 28px;
}.rtr-app .program__tags li {
  font-family: var(--rtr-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--rtr-rule);
  border-radius: 999px;
  color: rgba(31,27,22,.7);
}
@media (max-width: 820px) {.rtr-app .program, .rtr-app .program--reverse { direction: ltr; grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
.rtr-app TESTIMONIALS
   ============================================================ */
.testify {
  background: var(--rtr-parchment);
  padding: clamp(80px, 10vw, 140px) var(--rtr-pad);
}.rtr-app .testify .mission__marker { margin-bottom: 56px; }.rtr-app .testify__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
  max-width: var(--rtr-maxw);
  margin: 0 auto;
}.rtr-app .quote {
  margin: 0;
  padding: 36px 0 0;
  border-top: 1px solid rgba(31,27,22,.2);
  position: relative;
}.rtr-app .quote::before {
  content: "“";
  position: absolute;
  top: -12px; left: -8px;
  font-family: var(--rtr-serif);
  font-size: 80px;
  color: var(--rtr-clay);
  line-height: 1;
}.rtr-app .quote blockquote {
  margin: 0 0 24px;
  font-family: var(--rtr-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  font-weight: 400;
}.rtr-app .quote figcaption {
  font-family: var(--rtr-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(31,27,22,.6);
}
@media (max-width: 880px) {.rtr-app .testify__grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
.rtr-app TEAM
   ============================================================ */
.team {
  padding: clamp(80px, 10vw, 140px) var(--rtr-pad);
  max-width: var(--rtr-maxw);
  margin: 0 auto;
}.rtr-app .team__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}.rtr-app .team__head .mission__marker { grid-column: 1 / -1; }.rtr-app .team__title {
  font-family: var(--rtr-serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}.rtr-app .team__lede {
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(31,27,22,.78);
  max-width: 44ch;
  margin: 0;
}
@media (max-width: 820px) {.rtr-app .team__head { grid-template-columns: 1fr; gap: 24px; } }.rtr-app .team__grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border-top: 1px solid var(--rtr-rule);
  border-left: 1px solid var(--rtr-rule);
}.rtr-app .team__cell {
  position: relative;
  padding: 24px 22px 22px;
  border-right: 1px solid var(--rtr-rule);
  border-bottom: 1px solid var(--rtr-rule);
  display: flex; flex-direction: column; gap: 16px;
  transition: background .35s var(--rtr-ease);
  min-height: 320px;
  background: var(--rtr-bone);
}.rtr-app .team__cell:hover { background: var(--rtr-cream); }.rtr-app .team__avatar {
  aspect-ratio: 1;
  background: var(--rtr-parchment);
  border-radius: 50%;
  width: 100%;
  max-width: 220px;
  overflow: hidden;
  position: relative;
  align-self: center;
}.rtr-app .team__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.95);
  transition: transform 1.2s var(--rtr-ease);
}.rtr-app .team__cell:hover .team__avatar img { transform: scale(1.04); }.rtr-app .team__avatar--placeholder {
  background:
    radial-gradient(circle at 50% 35%, var(--rtr-cream) 0%, var(--rtr-parchment) 60%, #d9ccb3 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--rtr-serif);
  font-style: italic;
  font-size: clamp(48px, 6vw, 80px);
  color: var(--rtr-clay);
  letter-spacing: -0.04em;
}.rtr-app .team__avatar--placeholder::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 95%, rgba(61,74,53,.18) 0%, transparent 55%);
}.rtr-app .team__info { display: flex; flex-direction: column; gap: 4px; margin-top: auto; }.rtr-app .team__num {
  font-family: var(--rtr-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--rtr-clay);
}.rtr-app .team__name {
  font-family: var(--rtr-serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}.rtr-app .team__role {
  font-family: var(--rtr-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(31,27,22,.6);
}

@media (max-width: 1100px) {.rtr-app .team__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  {.rtr-app .team__grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
.rtr-app RANCH MOSAIC
   ============================================================ */
.ranch {
  padding: clamp(80px, 10vw, 140px) var(--rtr-pad);
  background: var(--rtr-moss);
  color: var(--rtr-cream);
}.rtr-app .ranch .mission__marker { color: var(--rtr-cream); }.rtr-app .ranch .marker__num { color: #D89870; }.rtr-app .ranch__head {
  max-width: var(--rtr-maxw);
  margin: 0 auto clamp(48px, 6vw, 80px);
}.rtr-app .ranch__title {
  font-family: var(--rtr-serif);
  font-weight: 300;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 18ch;
}.rtr-app .ranch__mosaic {
  max-width: var(--rtr-maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}.rtr-app .tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: rgba(252,248,241,.04);
  border-radius: 2px;
  aspect-ratio: 4 / 5;
}.rtr-app .tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.8s var(--rtr-ease), filter .6s var(--rtr-ease);
  will-change: transform;
  filter: saturate(.85) brightness(.95);
}.rtr-app .tile:hover img { transform: scale(1.04); filter: saturate(1) brightness(1); }.rtr-app .tile figcaption {
  position: absolute; left: 16px; bottom: 14px;
  font-family: var(--rtr-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(15,12,8,.55);
  padding: 6px 10px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s var(--rtr-ease), transform .4s var(--rtr-ease);
}.rtr-app .tile:hover figcaption { opacity: 1; transform: none; }.rtr-app .tile--a, .rtr-app .tile--b, .rtr-app .tile--c, .rtr-app .tile--d, .rtr-app .tile--e { grid-column: span 1; }

@media (max-width: 880px) {.rtr-app .ranch__mosaic { grid-template-columns: repeat(2, 1fr); }.rtr-app .tile--a, .rtr-app .tile--b, .rtr-app .tile--c, .rtr-app .tile--d, .rtr-app .tile--e { grid-column: span 1; }.rtr-app .tile--a { grid-column: span 2; }
}

/* ============================================================
.rtr-app GIVE / DONATION
   ============================================================ */
.give {
  background: var(--rtr-ink);
  color: var(--rtr-cream);
  padding: clamp(80px, 10vw, 140px) var(--rtr-pad);
  position: relative;
  overflow: hidden;
}.rtr-app .give::before {
  content: "";
  position: absolute;
  inset: -10% -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(181,112,74,.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(61,74,53,.25) 0%, transparent 50%);
  pointer-events: none;
}.rtr-app .give__inner {
  position: relative;
  max-width: var(--rtr-maxw);
  margin: 0 auto;
}.rtr-app .give__title {
  font-family: var(--rtr-serif);
  font-weight: 300;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  max-width: 22ch;
}.rtr-app .give__lede {
  font-size: 17px;
  line-height: 1.65;
  max-width: 56ch;
  opacity: .85;
  margin: 0 0 36px;
}.rtr-app .give__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: clamp(48px, 6vw, 80px); }.rtr-app .give__split {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  border-top: 1px solid rgba(252,248,241,.18);
  padding-top: 44px;
}.rtr-app .give__qr {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  background: var(--rtr-cream);
  padding: 16px;
  border-radius: 2px;
  width: fit-content;
}.rtr-app .give__qr img { width: 140px; height: 140px; }.rtr-app .give__qr span {
  font-family: var(--rtr-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rtr-ink);
}.rtr-app .give__bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 36px;
}.rtr-app .give__bullets > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: baseline;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(252,248,241,.12);
}.rtr-app .give__bullets strong {
  font-family: var(--rtr-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  color: #D89870;
}.rtr-app .give__bullets span {
  font-size: 13px;
  letter-spacing: .01em;
  opacity: .82;
}
@media (max-width: 880px) {.rtr-app .give__split { grid-template-columns: 1fr; }.rtr-app .give__bullets { grid-template-columns: 1fr; }
}

/* ============================================================
.rtr-app VISIT / CONTACT
   ============================================================ */
.visit {
  padding: clamp(80px, 10vw, 140px) var(--rtr-pad);
  max-width: var(--rtr-maxw);
  margin: 0 auto;
}.rtr-app .visit__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}.rtr-app .visit__head .mission__marker { grid-column: 1 / -1; }.rtr-app .visit__title {
  font-family: var(--rtr-serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
}.rtr-app .visit__lede {
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(31,27,22,.78);
  margin: 0;
  max-width: 38ch;
}
@media (max-width: 760px) {.rtr-app .visit__head { grid-template-columns: 1fr; gap: 24px; } }.rtr-app .visit__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border-top: 1px solid var(--rtr-rule);
  border-left: 1px solid var(--rtr-rule);
  margin-bottom: 56px;
}.rtr-app .visit__card {
  background: var(--rtr-bone);
  padding: 32px 28px;
  border-right: 1px solid var(--rtr-rule);
  border-bottom: 1px solid var(--rtr-rule);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 240px;
  transition: background .3s var(--rtr-ease);
}.rtr-app .visit__card:hover { background: var(--rtr-cream); }.rtr-app .visit__lbl {
  font-family: var(--rtr-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rtr-clay);
}.rtr-app .visit__card p {
  font-family: var(--rtr-serif);
  font-size: 22px;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.01em;
}.rtr-app .visit__card a { transition: color .25s var(--rtr-ease); }.rtr-app .visit__card a:hover { color: var(--rtr-clay); }.rtr-app .visit__card--cta { background: var(--rtr-moss); color: var(--rtr-cream); }.rtr-app .visit__card--cta:hover { background: var(--rtr-moss-d); }.rtr-app .visit__card--cta .visit__lbl { color: #D89870; }.rtr-app .visit__card--cta p { font-family: var(--rtr-sans); font-size: 14px; line-height: 1.6; opacity: .85; }.rtr-app .visit__card--cta .btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 1000px) {.rtr-app .visit__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  {.rtr-app .visit__grid { grid-template-columns: 1fr; } }.rtr-app .visit__map {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  background: var(--rtr-parchment);
  aspect-ratio: 5/2;
  border: 1px solid var(--rtr-rule);
}.rtr-app .map__crop { position: absolute; inset: 0; }.rtr-app .map__crop iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(.7) hue-rotate(-15deg) contrast(.95);
}.rtr-app .map__pin {
  position: absolute;
  left: 32px; bottom: 32px;
  background: var(--rtr-cream);
  padding: 16px 20px;
  border-radius: 2px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 14px 40px rgba(31,27,22,.18);
  max-width: 320px;
}.rtr-app .map__pin strong {
  font-family: var(--rtr-serif);
  font-size: 20px;
  font-weight: 500;
  display: block;
  letter-spacing: -0.01em;
}.rtr-app .map__pin span {
  font-family: var(--rtr-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(31,27,22,.6);
}.rtr-app .map__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--rtr-clay);
  flex: 0 0 14px;
  position: relative;
  box-shadow: 0 0 0 4px rgba(181,112,74,.18);
}.rtr-app .map__dot::after {
  content: "";
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--rtr-clay);
  animation: ping 2s var(--rtr-ease) infinite;
}
@keyframes ping {
  0% { transform: scale(.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (max-width: 720px) {.rtr-app .visit__map { aspect-ratio: 4/3; }.rtr-app .map__pin { left: 16px; bottom: 16px; padding: 12px 14px; }
}

/* ============================================================
.rtr-app FOOTER
   ============================================================ */
.foot {
  background: var(--rtr-moss-d);
  color: var(--rtr-cream);
  padding: clamp(60px, 7vw, 100px) var(--rtr-pad) 0;
  position: relative;
  overflow: hidden;
}.rtr-app .foot__top {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  max-width: var(--rtr-maxw);
  margin: 0 auto;
  padding-bottom: 56px;
}.rtr-app .foot__brand { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }.rtr-app .foot__logo-svg {
  width: 200px;
  height: auto;
  display: block;
  color: var(--rtr-cream);
}.rtr-app .foot__mark { width: 44px; height: 44px; }.rtr-app .foot__word {
  font-family: var(--rtr-serif);
  font-size: 32px;
  letter-spacing: -0.015em;
}.rtr-app .foot__motto {
  font-family: var(--rtr-serif);
  font-style: italic;
  font-size: 18px;
  opacity: .8;
  width: 200px;
  text-align: center;
}.rtr-app .foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}.rtr-app .foot__cols > div { display: flex; flex-direction: column; gap: 10px; }.rtr-app .foot__lbl {
  font-family: var(--rtr-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #D89870;
  margin-bottom: 6px;
}.rtr-app .foot__cols a {
  font-size: 14px;
  opacity: .82;
  transition: opacity .25s var(--rtr-ease), color .25s var(--rtr-ease);
  word-break: break-word;
}.rtr-app .foot__cols a:hover { opacity: 1; color: #D89870; }.rtr-app .foot__rule { height: 1px; background: rgba(252,248,241,.15); max-width: var(--rtr-maxw); margin: 0 auto; }.rtr-app .foot__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  max-width: var(--rtr-maxw);
  margin: 0 auto;
  padding: 24px 0 32px;
  font-family: var(--rtr-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .7;
}.rtr-app .foot__big {
  pointer-events: none;
  text-align: center;
  font-family: var(--rtr-serif);
  font-size: clamp(60px, 18vw, 280px);
  line-height: .82;
  letter-spacing: -0.04em;
  font-weight: 300;
  color: rgba(252,248,241,.07);
  white-space: nowrap;
  overflow: hidden;
  margin-top: 12px;
  user-select: none;
}
@media (max-width: 880px) {.rtr-app .foot__top { grid-template-columns: 1fr; }.rtr-app .foot__cols { grid-template-columns: 1fr 1fr; }
}
