:root {

  /* === PRIMARY HERITAGE COLORS === */

  /* deep pine / ranch timber */
  --ranch-green: #24382f;

  /* aged barn wood red (muted, not bright) */
  --ranch-red: #6b3a2f;

  /* antique brass (less yellow, more aged metal) */
  --ranch-gold: #a88b52;

  /* === SURFACES === */

  /* warm aged plaster / museum wall */
  --parchment: #f3eee3;

  /* slightly darker aged paper for contrast panels */
  --parchment-dark: #e6dccb;

  /* foggy limestone / stone foundation */
  --stone: #d2c9b8;

  /* === TEXT === */

  /* softened black (less harsh than #000 or #2d2d2d) */
  --ink: #2a2622;

  /* secondary muted ink */
  --ink-muted: #5a524a;

  /* === ACCENTS (VERY IMPORTANT FOR VICTORIAN FEEL) === */

  /* oxidized bronze highlight */
  --patina: #7f8f7a;

  /* faded ink blue (for links only if needed) */
  --heritage-blue: #4f6472;
}

body {
  font-family: "Source Serif 4", serif;
  color: var(--ink);
  line-height: 1.75;
  letter-spacing: 0.2px;
  font-weight: 400;
}

h1,h2,h3,h4,h5 {
    font-family: var(--heading-font);
    font-weight: 600;
}

.section {
    padding: 6rem 0;
}

.bg-parchment {
    background: var(--parchment);
}

.btn-ranch {
  background: var(--ranch-green);
  color: var(--parchment);
  border: 1px solid var(--ranch-gold);
  letter-spacing: 0.5px;
}

.btn-ranch:hover {
  background: #1e2f27;
}

.gold-divider {
    width: 120px;
    height: 2px;
    background: var(--ranch-gold);
    margin: 1rem auto;
}


.hero-title {
    color: var(--ranch-green);
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-subtitle {
    color: var(--ranch-gold);
    font-size: 1.5rem;
    font-style: italic;
}

.hero-text {
    color: var(--charcoal);
    font-size: 1.1rem;
    line-height: 1.8;
}

.btn-ranch {
    background: var(--ranch-green);
    color: white;
    padding: .8rem 1.5rem;
}

.gold-divider {
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--ranch-gold),
    transparent
  );
  opacity: 0.9;
}

.card {
  background: var(--parchment);
  border: 1px solid var(--stone);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  color: var(--ranch-green);
  letter-spacing: 1px;
  font-weight: 600;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: 2px;
}

h2 {
  font-size: 2.25rem;
  letter-spacing: 1.5px;
}

h3 {
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.victorian-subtitle {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--ranch-gold);
  letter-spacing: 0.5px;
  font-size: 1.25rem;
}

p {
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.dropcap::first-letter {
  float: left;
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  line-height: 1;
  padding-right: 10px;
  padding-top: 4px;
  color: var(--ranch-green);
  font-weight: 600;
}

.section-title {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* =========================
   HERO
========================= */

.hero-row {
    min-height: 90vh;
}

.hero-section {
    min-height: 90vh;
}

.hero-image {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    display: block;
}

.hero-content {
    background: var(--parchment);
    min-height: 90vh;

    padding: 4rem;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-left: 3px solid var(--ranch-gold);
}

.hero-title {
    font-family: "Playfair Display", serif;
    color: var(--ranch-green);

    font-size: clamp(2.75rem, 4vw, 4.5rem);

    line-height: 1.05;
    letter-spacing: 2px;

    margin-bottom: 0;
}

/* =========================
   NAVBAR
========================= */

.ranch-navbar {
    background: rgba(243, 238, 227, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border-bottom: 1px solid rgba(168, 139, 82, 0.15);

    padding: 0.75rem 0;

    transition: all 0.3s ease;
}

.ranch-brand {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    letter-spacing: 2px;

    color: var(--ranch-green) !important;
}

.nav-link {
    font-family: "Source Serif 4", serif;

    color: var(--ink) !important;

    letter-spacing: 1px;

    margin-left: 1rem;

    position: relative;
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 4px;

    width: 0;
    height: 1px;

    background: var(--ranch-gold);

    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.event-card {
    overflow: hidden;
    transition: all .25s ease;
}

.event-card:hover {
    transform: translateY(-4px);
}

.event-image {
    height: 260px;
    object-fit: cover;
}

.event-date {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ranch-gold);
    font-size: .8rem;
}

.event-title {
    margin-top: .5rem;
    margin-bottom: .5rem;
}

.event-location {
    color: var(--ink-muted);
}

/* =========================
   EVENT CONTENT
========================= */

.event-content {
    max-width: 800px;
}

.event-content h2,
.event-content h3 {
    margin-top: 2rem;
}

.event-content ul {
    margin-bottom: 1.5rem;
}

.event-content li {
    margin-bottom: 0.5rem;
}

.event-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

/* =========================
   HISTORY PAGE
========================= */

.history-content {
    max-width: 850px;
}

.history-content h1 {
    margin-bottom: 2rem;
}

.history-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--stone);
    padding-bottom: 0.5rem;
}

.history-content img {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
}

.history-content blockquote {
    border-left: 4px solid var(--ranch-gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--ink-muted);
}

.history-content table {
    width: 100%;
    margin: 2rem 0;
}