/*
 * ============================================================
 * LISA JAMES — FROM AUSTIN TO ACRES
 * Global Design System
 * ============================================================
 * HOW TO USE IN BRIZY.IO:
 * Go to Project Settings → Custom CSS → paste this entire file.
 * Then apply the custom class names (e.g., "lj-section", "lj-btn-primary")
 * to your Brizy elements via the Advanced → CSS Class field.
 * ============================================================
 */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Yeseva+One&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Nunito+Sans:opsz,wght@6..12,300;6..12,400;6..12,600;6..12,700&display=swap');

/* ══════════════════════════════════════════
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
══════════════════════════════════════════ */
:root {
  /* Colors */
  --cream:          #F5EAD4;
  --cream-light:    #FBF5E8;
  --cream-dark:     #EDD9B2;
  --terracotta:     #C4622D;
  --terracotta-dark:#A3501F;
  --terracotta-light:#D97C4A;
  --sage:           #4A6741;
  --sage-dark:      #334B2D;
  --sage-light:     #6A9160;
  --gold:           #C9913A;
  --gold-light:     #E8B86D;
  --espresso:       #1E1510;
  --espresso-mid:   #3D2E23;
  --warm-gray:      #8C7B6B;
  --tan:            #D4BC94;
  --tan-light:      #EAD9BE;
  --white:          #FFFFFF;

  /* Typography */
  --font-display:   'Yeseva One', Georgia, serif;
  --font-heading:   'Lora', Georgia, serif;
  --font-body:      'Nunito Sans', 'Segoe UI', sans-serif;

  /* Font Sizes */
  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-md:    1.125rem;
  --text-lg:    1.25rem;
  --text-xl:    1.5rem;
  --text-2xl:   2rem;
  --text-3xl:   2.75rem;
  --text-4xl:   3.5rem;
  --text-5xl:   4.5rem;
  --text-hero:  clamp(3rem, 8vw, 6rem);

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2rem;
  --space-xl:   3rem;
  --space-2xl:  5rem;
  --space-3xl:  8rem;

  /* Layout */
  --container-max:  1200px;
  --container-wide: 1400px;
  --section-pad:    clamp(4rem, 8vw, 8rem);

  /* Borders & Radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-pill: 999px;
  --border-tan:  1px solid var(--tan);
  --border-gold: 2px solid var(--gold);

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(30, 21, 16, 0.08);
  --shadow-md:  0 6px 24px rgba(30, 21, 16, 0.12);
  --shadow-lg:  0 16px 48px rgba(30, 21, 16, 0.18);
  --shadow-xl:  0 32px 80px rgba(30, 21, 16, 0.24);

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --transition: 0.3s var(--ease-out);
}

/* ══════════════════════════════════════════
   2. BASE RESET & GLOBALS
══════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--espresso);
  background-color: var(--cream-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--terracotta-dark);
}

ul, ol {
  list-style: none;
}

/* ══════════════════════════════════════════
   3. TYPOGRAPHY
══════════════════════════════════════════ */

/* Display — hero titles */
.lj-display,
h1.lj-display {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--espresso);
}

/* Section headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--espresso);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-md); }

p {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.75;
  color: var(--espresso-mid);
}

/* Eyebrow — small label above headings */
.lj-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.lj-eyebrow--sage { color: var(--sage); }
.lj-eyebrow--terra { color: var(--terracotta); }

/* Lead paragraph */
.lj-lead {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--espresso-mid);
}

/* Decorative rule */
.lj-rule {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.lj-rule::before,
.lj-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--tan);
}

.lj-rule span {
  font-size: var(--text-lg);
  color: var(--gold);
}

/* ══════════════════════════════════════════
   4. LAYOUT CONTAINERS
══════════════════════════════════════════ */
.lj-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.lj-container--wide {
  max-width: var(--container-wide);
}

.lj-container--narrow {
  max-width: 800px;
}

.lj-section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.lj-section--cream    { background-color: var(--cream); }
.lj-section--light    { background-color: var(--cream-light); }
.lj-section--dark     { background-color: var(--espresso); color: var(--cream); }
.lj-section--espresso { background-color: var(--espresso-mid); color: var(--cream); }
.lj-section--sage     { background-color: var(--sage); color: var(--cream); }
.lj-section--terra    { background-color: var(--terracotta); color: var(--cream-light); }

/* Grain texture overlay on sections */
.lj-section--textured::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.lj-section--textured > * {
  position: relative;
  z-index: 2;
}

/* Grid utilities */
.lj-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.lj-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.lj-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }

@media (max-width: 1024px) {
  .lj-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .lj-grid-2,
  .lj-grid-3,
  .lj-grid-4 { grid-template-columns: 1fr; }
}

/* Flex utilities */
.lj-flex        { display: flex; }
.lj-flex-center { display: flex; align-items: center; justify-content: center; }
.lj-flex-between{ display: flex; align-items: center; justify-content: space-between; }
.lj-flex-col    { display: flex; flex-direction: column; }
.lj-gap-sm      { gap: var(--space-sm); }
.lj-gap-md      { gap: var(--space-md); }
.lj-gap-lg      { gap: var(--space-lg); }

/* Text alignment */
.lj-text-center { text-align: center; }
.lj-text-left   { text-align: left; }

/* ══════════════════════════════════════════
   5. BUTTONS
══════════════════════════════════════════ */
.lj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.lj-btn:hover {
  transform: translateY(-2px);
}

.lj-btn:active {
  transform: translateY(0);
}

/* Primary — Terracotta */
.lj-btn-primary {
  background: var(--terracotta);
  color: var(--cream-light);
  box-shadow: 0 4px 16px rgba(196, 98, 45, 0.35);
}

.lj-btn-primary:hover {
  background: var(--terracotta-dark);
  box-shadow: 0 8px 24px rgba(196, 98, 45, 0.45);
  color: var(--cream-light);
}

/* Secondary — Sage */
.lj-btn-secondary {
  background: var(--sage);
  color: var(--cream-light);
  box-shadow: 0 4px 16px rgba(74, 103, 65, 0.3);
}

.lj-btn-secondary:hover {
  background: var(--sage-dark);
  color: var(--cream-light);
}

/* Outline */
.lj-btn-outline {
  background: transparent;
  color: var(--terracotta);
  border: 2px solid var(--terracotta);
}

.lj-btn-outline:hover {
  background: var(--terracotta);
  color: var(--cream-light);
}

/* Ghost — for dark backgrounds */
.lj-btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(245, 234, 212, 0.6);
}

.lj-btn-ghost:hover {
  background: rgba(245, 234, 212, 0.15);
  border-color: var(--cream);
  color: var(--cream);
}

/* Gold */
.lj-btn-gold {
  background: var(--gold);
  color: var(--espresso);
}

.lj-btn-gold:hover {
  background: var(--gold-light);
  color: var(--espresso);
}

/* Button group */
.lj-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

/* ══════════════════════════════════════════
   6. NAVIGATION
══════════════════════════════════════════ */
.lj-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.lj-nav--scrolled {
  background: var(--espresso);
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  box-shadow: var(--shadow-md);
}

.lj-nav__logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--cream);
  text-decoration: none;
  line-height: 1;
}

.lj-nav__logo span {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}

.lj-nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.lj-nav__links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.lj-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.lj-nav__links a:hover { color: var(--gold); }
.lj-nav__links a:hover::after { width: 100%; }

.lj-nav__cta {
  padding: 0.625rem 1.5rem;
  font-size: var(--text-xs);
}

/* Mobile nav */
.lj-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  z-index: 1001;
  position: relative;
}

.lj-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
  transform-origin: center;
}

/* Animated X when menu is open */
.lj-nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lj-nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.lj-nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  /* No hamburger — horizontal scrolling nav links */
  .lj-nav__hamburger { display: none; }
  .lj-nav__cta { display: none !important; }
  .lj-nav__links {
    display: flex;
    flex-direction: row;
    position: static;
    background: transparent;
    gap: 0;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    max-width: calc(100vw - 130px);
  }
  .lj-nav__links::-webkit-scrollbar { display: none; }
  .lj-nav__links li { flex-shrink: 0; }
  .lj-nav__links a {
    font-size: 0.6rem;
    padding: 0 0.6rem;
    white-space: nowrap;
    letter-spacing: 0.04em;
  }
}

/* ══════════════════════════════════════════
   7. CARDS
══════════════════════════════════════════ */
.lj-card {
  background: var(--cream-light);
  border: 1px solid var(--tan-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.lj-card--warm {
  background: var(--cream);
  border-color: var(--tan);
}

.lj-card--outlined {
  background: transparent;
  border: 2px solid var(--tan);
}

.lj-card--dark {
  background: var(--espresso-mid);
  border-color: rgba(212, 188, 148, 0.15);
  color: var(--cream);
}

.lj-card__icon {
  width: 56px;
  height: 56px;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.75rem;
}

.lj-card__icon--terra { background: rgba(196, 98, 45, 0.12); }
.lj-card__icon--sage  { background: rgba(74, 103, 65, 0.12); }
.lj-card__icon--gold  { background: rgba(201, 145, 58, 0.15); }

.lj-card h3,
.lj-card h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
}

.lj-card p {
  font-size: var(--text-base);
}

/* Area / Town card */
.lj-town-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.lj-town-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.lj-town-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-out);
}

.lj-town-card:hover .lj-town-card__bg {
  transform: scale(1.05);
}

.lj-town-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 21, 16, 0.82) 40%, rgba(30, 21, 16, 0.1) 100%);
}

.lj-town-card__body {
  position: relative;
  z-index: 2;
  padding: var(--space-lg);
  color: var(--cream);
}

.lj-town-card__body h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.lj-town-card__body p {
  font-size: var(--text-sm);
  color: rgba(245, 234, 212, 0.8);
  line-height: 1.5;
}

.lj-town-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--espresso);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-xs);
}

/* Testimonial card */
.lj-testimonial {
  background: var(--cream);
  border: 1px solid var(--tan);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.lj-testimonial__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--espresso-mid);
  margin-bottom: var(--space-md);
}

.lj-testimonial__quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.75rem;
  margin-right: 0.1em;
  opacity: 0.7;
}

.lj-testimonial__author {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--terracotta);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lj-testimonial__role {
  font-size: var(--text-xs);
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════
   8. HERO SECTION
══════════════════════════════════════════ */
.lj-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--espresso);
}

.lj-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.lj-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 21, 16, 0.85) 0%,
    rgba(30, 21, 16, 0.5) 60%,
    rgba(74, 103, 65, 0.3) 100%
  );
}

.lj-hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.lj-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: var(--space-lg);
  max-width: 14ch;
}

.lj-hero__title em {
  font-style: normal;
  color: var(--gold);
}

.lj-hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-md), 2.5vw, var(--text-xl));
  font-style: italic;
  color: rgba(245, 234, 212, 0.85);
  max-width: 540px;
  margin-bottom: var(--space-xl);
  line-height: 1.65;
}

.lj-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 145, 58, 0.2);
  border: 1px solid rgba(201, 145, 58, 0.5);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--space-md);
}

/* ══════════════════════════════════════════
   9. SECTION DIVIDERS & DECORATIVE ELEMENTS
══════════════════════════════════════════ */

/* Diagonal edge divider */
.lj-divider--diagonal-down {
  position: relative;
}

.lj-divider--diagonal-down::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--cream-light);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 3;
}

.lj-divider--diagonal-up {
  position: relative;
}

.lj-divider--diagonal-up::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: inherit;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: 3;
}

/* Texas star decorative element */
.lj-star-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: var(--space-md) 0;
}

.lj-star-divider::before,
.lj-star-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--tan), transparent);
}

.lj-star-divider span {
  color: var(--gold);
  font-size: 1.25rem;
}

/* Section title block */
.lj-section-title {
  margin-bottom: var(--space-2xl);
}

.lj-section-title h2 {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
  margin-bottom: var(--space-sm);
}

.lj-section-title p {
  font-size: var(--text-md);
  max-width: 600px;
  margin: 0 auto;
}

.lj-section-title.lj-text-center p {
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   10. FORMS & INPUTS
══════════════════════════════════════════ */
.lj-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.lj-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

@media (max-width: 600px) {
  .lj-form-row { grid-template-columns: 1fr; }
}

.lj-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.lj-field label {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--espresso);
}

.lj-field input,
.lj-field select,
.lj-field textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--espresso);
  background: var(--cream-light);
  border: 1.5px solid var(--tan);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.lj-field input:focus,
.lj-field select:focus,
.lj-field textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196, 98, 45, 0.12);
}

.lj-field textarea {
  min-height: 140px;
  resize: vertical;
}

/* ══════════════════════════════════════════
   11. FOOTER
══════════════════════════════════════════ */
.lj-footer {
  background: var(--espresso);
  color: var(--cream);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.lj-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
  .lj-footer__grid { grid-template-columns: 1fr; }
}

.lj-footer__brand h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--cream);
  margin-bottom: var(--space-xs);
}

.lj-footer__brand p {
  font-size: var(--text-sm);
  color: rgba(245, 234, 212, 0.6);
  line-height: 1.6;
}

.lj-footer__heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.lj-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.lj-footer__links a {
  font-size: var(--text-sm);
  color: rgba(245, 234, 212, 0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.lj-footer__links a:hover {
  color: var(--gold);
}

.lj-footer__bottom {
  border-top: 1px solid rgba(245, 234, 212, 0.1);
  padding-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.lj-footer__bottom p {
  font-size: var(--text-xs);
  color: rgba(245, 234, 212, 0.4);
}

.lj-footer__license {
  font-size: var(--text-xs);
  color: rgba(245, 234, 212, 0.4);
}

/* ══════════════════════════════════════════
   12. UTILITY CLASSES
══════════════════════════════════════════ */

/* Spacing */
.lj-mt-sm { margin-top: var(--space-sm); }
.lj-mt-md { margin-top: var(--space-md); }
.lj-mt-lg { margin-top: var(--space-lg); }
.lj-mt-xl { margin-top: var(--space-xl); }
.lj-mb-sm { margin-bottom: var(--space-sm); }
.lj-mb-md { margin-bottom: var(--space-md); }
.lj-mb-lg { margin-bottom: var(--space-lg); }
.lj-mb-xl { margin-bottom: var(--space-xl); }

/* Colors */
.lj-text-gold     { color: var(--gold); }
.lj-text-terra    { color: var(--terracotta); }
.lj-text-sage     { color: var(--sage); }
.lj-text-cream    { color: var(--cream); }
.lj-text-muted    { color: var(--warm-gray); }
.lj-text-espresso { color: var(--espresso); }

/* Background fills */
.lj-bg-cream  { background: var(--cream); }
.lj-bg-light  { background: var(--cream-light); }
.lj-bg-terra  { background: var(--terracotta); }
.lj-bg-sage   { background: var(--sage); }
.lj-bg-gold   { background: var(--gold); }
.lj-bg-dark   { background: var(--espresso); }

/* Border accents */
.lj-border-gold  { border-color: var(--gold); }
.lj-border-terra { border-color: var(--terracotta); }

/* Visibility */
.lj-hidden { display: none; }

/* Aspect ratios */
.lj-aspect-video  { aspect-ratio: 16/9; }
.lj-aspect-square { aspect-ratio: 1/1; }
.lj-aspect-3-2    { aspect-ratio: 3/2; }

/* Object fit */
.lj-cover  { object-fit: cover; width: 100%; height: 100%; }

/* Border radius */
.lj-rounded    { border-radius: var(--radius-md); }
.lj-rounded-lg { border-radius: var(--radius-lg); }
.lj-pill       { border-radius: var(--radius-pill); }

/* ══════════════════════════════════════════
   13. ANIMATIONS
══════════════════════════════════════════ */

/* Fade up on load */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Scroll-triggered fade (JS adds .lj-visible) */
.lj-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.lj-animate.lj-visible {
  opacity: 1;
  transform: translateY(0);
}

.lj-animate--delay-1 { transition-delay: 0.1s; }
.lj-animate--delay-2 { transition-delay: 0.2s; }
.lj-animate--delay-3 { transition-delay: 0.3s; }
.lj-animate--delay-4 { transition-delay: 0.4s; }
.lj-animate--delay-5 { transition-delay: 0.5s; }

/* Hero specific animations */
.lj-hero-animate {
  animation: fadeUp 0.9s var(--ease-out) both;
}

.lj-hero-animate--1 { animation-delay: 0.1s; }
.lj-hero-animate--2 { animation-delay: 0.3s; }
.lj-hero-animate--3 { animation-delay: 0.5s; }
.lj-hero-animate--4 { animation-delay: 0.7s; }

/* ══════════════════════════════════════════
   14. STAT / CREDENTIAL BADGES
══════════════════════════════════════════ */
.lj-stat {
  text-align: center;
  padding: var(--space-lg);
}

.lj-stat__number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.lj-stat__label {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* ══════════════════════════════════════════
   15. PROCESS / STEPS
══════════════════════════════════════════ */
.lj-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: relative;
}

.lj-steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--tan), transparent);
}

.lj-step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.lj-step__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--cream-light);
}

.lj-step__content h4 {
  font-size: var(--text-xl);
  margin-bottom: 0.4rem;
}

.lj-step__content p {
  font-size: var(--text-base);
  color: var(--warm-gray);
}

/* ══════════════════════════════════════════
   16. CTA BANNER
══════════════════════════════════════════ */
.lj-cta-banner {
  background: var(--sage);
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lj-cta-banner::before {
  content: '★';
  position: absolute;
  font-size: 20rem;
  color: rgba(255,255,255,0.03);
  top: -4rem;
  left: -2rem;
  font-family: var(--font-display);
  pointer-events: none;
}

.lj-cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
  color: var(--cream);
  margin-bottom: var(--space-sm);
}

.lj-cta-banner p {
  color: rgba(245, 234, 212, 0.8);
  font-size: var(--text-md);
  max-width: 560px;
  margin: 0 auto var(--space-lg);
}

/* ══════════════════════════════════════════
   17. PAGE HERO (inner pages)
══════════════════════════════════════════ */
.lj-page-hero {
  padding: calc(var(--space-3xl) + 4rem) 0 var(--space-2xl);
  background: var(--espresso);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.lj-page-hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(201, 145, 58, 0.04) 0px,
      rgba(201, 145, 58, 0.04) 1px,
      transparent 1px,
      transparent 60px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(201, 145, 58, 0.04) 0px,
      rgba(201, 145, 58, 0.04) 1px,
      transparent 1px,
      transparent 60px
    );
}

.lj-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 6vw, var(--text-5xl));
  color: var(--cream);
  position: relative;
  z-index: 2;
  margin-bottom: var(--space-md);
}

.lj-page-hero p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--text-xl);
  color: rgba(245, 234, 212, 0.75);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ══════════════════════════════════════════
   18. RESPONSIVE UTILITIES
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .lj-hide-mobile { display: none; }
  .lj-section { padding: clamp(3rem, 6vw, 5rem) 0; }
}

@media (min-width: 769px) {
  .lj-hide-desktop { display: none; }
}

/* ══════════════════════════════════════════
   19. BRIZY.IO INTEGRATION OVERRIDES
══════════════════════════════════════════ */
/*
 * When building in Brizy, you may need to override some of
 * Brizy's default padding/margin on sections. Use these helpers:
 */
.brz-section.lj-reset-pad .brz-section__content {
  padding: 0 !important;
}

/* Force full-width on hero sections in Brizy */
.brz-section.lj-full-width .brz-container {
  max-width: 100% !important;
  padding: 0 !important;
}

/* Ensure custom fonts load properly in Brizy preview */
.brz * {
  -webkit-font-smoothing: antialiased;
}
