/* Durward's Glen Retreat Center - WIX Import Styles */
/* Color Palette: Earth tones reflecting the natural beauty of the Glen */

:root {
  --primary-green: #2d5a3d;
  --secondary-green: #4a7c59;
  --accent-gold: #c9a227;
  --cream: #f5f1e8;
  --dark-brown: #3d2914;
  --light-brown: #8b7355;
  --white: #ffffff;
  --text-dark: #333333;
  --text-light: #666666;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', 'Georgia', serif;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  color: var(--secondary-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-gold);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.phone-number {
  color: var(--accent-gold);
  font-weight: bold;
  font-size: 1.1rem;
}

.donate-btn {
  background-color: var(--accent-gold);
  color: var(--dark-brown);
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.donate-btn:hover {
  background-color: var(--white);
  color: var(--primary-green);
}

/* Navigation */
.nav {
  padding: 15px 0;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.nav-item a {
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  padding: 5px 10px;
}

.nav-item a:hover {
  color: var(--accent-gold);
}

.nav-item.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border-radius: 5px;
  overflow: hidden;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--cream);
}

.dropdown-menu a:hover {
  background-color: var(--cream);
  color: var(--primary-green);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-glen.jpg');
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero-content h1 {
  color: var(--white);
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-size: 1.8rem;
  color: var(--white);
  font-style: italic;
  margin-bottom: 2rem;
}

.hero-cta {
  display: inline-block;
  background-color: var(--accent-gold);
  color: var(--dark-brown);
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 5px;
}

.hero-cta:hover {
  background-color: var(--white);
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-gold);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  margin-bottom: 10px;
}

.card-content p {
  font-size: 0.95rem;
}

.card-btn {
  display: inline-block;
  margin-top: 15px;
  color: var(--secondary-green);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

/* Info Box */
.info-box {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}

.info-box h3 {
  color: var(--accent-gold);
}

.info-box p {
  color: var(--white);
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary-green);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.btn-primary:hover {
  background-color: var(--secondary-green);
}

.btn-secondary {
  background-color: var(--accent-gold);
  color: var(--dark-brown);
}

.btn-secondary:hover {
  background-color: var(--dark-brown);
  color: var(--white);
}

/* Donation Tiers */
.donation-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.tier {
  background-color: var(--white);
  border: 3px solid transparent;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.tier:hover {
  border-color: var(--accent-gold);
  transform: scale(1.02);
}

.tier.featured {
  border-color: var(--accent-gold);
  position: relative;
}

.tier.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-gold);
  color: var(--dark-brown);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.tier-name {
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-bottom: 10px;
}

.tier-price {
  font-size: 2.5rem;
  color: var(--accent-gold);
  font-weight: bold;
  margin-bottom: 20px;
}

.tier-price span {
  font-size: 1rem;
  color: var(--text-light);
}

.tier-benefits {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.tier-benefits li {
  padding: 10px 0;
  border-bottom: 1px solid var(--cream);
  padding-left: 25px;
  position: relative;
}

.tier-benefits li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--secondary-green);
  font-weight: bold;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Board Members */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.board-member {
  text-align: center;
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.board-member-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background-size: cover;
  background-position: center;
  border: 4px solid var(--accent-gold);
}

.board-member h4 {
  color: var(--primary-green);
  margin-bottom: 5px;
}

.board-member .position {
  color: var(--accent-gold);
  font-style: italic;
  margin-bottom: 15px;
}

/* Event Calendar */
.event-list {
  max-width: 800px;
  margin: 0 auto;
}

.event-item {
  display: flex;
  gap: 30px;
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.event-date {
  text-align: center;
  min-width: 80px;
}

.event-date .month {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 5px 15px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.event-date .day {
  background-color: var(--accent-gold);
  color: var(--dark-brown);
  font-size: 2rem;
  font-weight: bold;
  padding: 10px;
}

.event-details h4 {
  color: var(--primary-green);
  margin-bottom: 10px;
}

/* Footer */
.footer {
  background-color: var(--dark-brown);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer h4 {
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.footer p, .footer a {
  color: rgba(255,255,255,0.8);
}

.footer a:hover {
  color: var(--accent-gold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: var(--accent-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.3rem;
  }

  .nav-list {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .event-item {
    flex-direction: column;
    text-align: center;
  }

  .event-date {
    margin: 0 auto;
  }
}


/* ================================================================
   DESIGN: FRANCISCAN MODERN
   Clean, contemporary design inspired by Franciscan spirituality
   Based on fscenter.org aesthetic: sans-serif, spacious, minimal
   ================================================================ */

/* --- Typography --- */
body.design-franciscan {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
}

body.design-franciscan h1,
body.design-franciscan h2,
body.design-franciscan h3,
body.design-franciscan h4,
body.design-franciscan h5,
body.design-franciscan h6 {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

body.design-franciscan h1 { font-size: 2.8rem; font-weight: 700; }
body.design-franciscan h2 { font-size: 2.2rem; }
body.design-franciscan h3 { font-size: 1.4rem; }

/* --- Header --- */
body.design-franciscan .header {
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body.design-franciscan .header-top {
  padding-bottom: 8px;
}

body.design-franciscan .donate-btn {
  border-radius: 25px;
  text-transform: none;
  letter-spacing: 0;
  padding: 8px 22px;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* --- Navigation --- */
body.design-franciscan .nav-item a {
  text-transform: none;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

body.design-franciscan .dropdown-menu {
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

body.design-franciscan .dropdown-menu a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  padding: 12px 20px;
}

/* --- Hero --- */
body.design-franciscan .hero {
  height: 75vh;
}

body.design-franciscan .hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

body.design-franciscan .hero-tagline {
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

body.design-franciscan .hero-cta {
  border-radius: 30px;
  text-transform: none;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 16px 45px;
}

/* --- Sections --- */
body.design-franciscan .section {
  padding: 70px 0;
}

body.design-franciscan .section-title {
  margin-bottom: 40px;
}

body.design-franciscan .section-title h2::after {
  width: 50px;
  height: 2px;
  border-radius: 2px;
}

/* --- Cards --- */
body.design-franciscan .card {
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}

body.design-franciscan .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

body.design-franciscan .card-image {
  height: 220px;
}

body.design-franciscan .card-content h3 {
  font-size: 1.25rem;
}

body.design-franciscan .card-btn {
  text-transform: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

/* --- Info Boxes (bordered style instead of filled) --- */
body.design-franciscan .info-box {
  border-radius: 12px;
  background-color: transparent;
  border: 2px solid var(--primary-green);
  color: var(--text-dark);
}

body.design-franciscan .info-box h3 {
  color: var(--primary-green);
}

body.design-franciscan .info-box p {
  color: var(--text-dark);
}

body.design-franciscan .info-box .card-btn {
  color: var(--primary-green) !important;
}

/* --- Buttons --- */
body.design-franciscan .btn {
  border-radius: 25px;
  text-transform: none;
  letter-spacing: 0.5px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* --- Events --- */
body.design-franciscan .event-item {
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

body.design-franciscan .event-date .month {
  border-radius: 6px 6px 0 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

body.design-franciscan .event-date .day {
  border-radius: 0 0 6px 6px;
}

body.design-franciscan .event-details h4 {
  font-size: 1.15rem;
}

/* --- Footer --- */
body.design-franciscan .footer {
  padding: 50px 0 25px;
}

body.design-franciscan .footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

body.design-franciscan .social-links a {
  border-radius: 8px;
}

/* --- Donation tiers --- */
body.design-franciscan .tier {
  border-radius: 12px;
}

body.design-franciscan .tier-name {
  font-family: 'Montserrat', sans-serif;
}

body.design-franciscan .tier.featured::before {
  font-family: 'Montserrat', sans-serif;
  border-radius: 15px;
}

/* --- Board members --- */
body.design-franciscan .board-member {
  border-radius: 12px;
}

body.design-franciscan .board-member-photo {
  border-width: 3px;
}

body.design-franciscan .board-member h4 {
  font-family: 'Montserrat', sans-serif;
}

/* --- Gallery --- */
body.design-franciscan .gallery-item {
  border-radius: 12px;
}

/* --- Forms --- */
body.design-franciscan .form-group input,
body.design-franciscan .form-group textarea,
body.design-franciscan .form-group select {
  border-radius: 8px;
  border-width: 1px;
  font-family: 'Open Sans', sans-serif;
}

body.design-franciscan .form-group label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

/* --- Franciscan Modern Responsive --- */
@media (max-width: 768px) {
  body.design-franciscan .hero-content h1 {
    font-size: 2.4rem;
  }
  body.design-franciscan .hero-tagline {
    font-size: 1.1rem;
  }
}


/* ================================================================
   DESIGN: GLEN FUSION
   Hybrid: traditional Cinzel headings + modern sans-serif body
   Gradient accents, dramatic effects, contemporary spacing
   ================================================================ */

/* --- Typography --- */
body.design-fusion {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.65;
}

body.design-fusion h1,
body.design-fusion h2,
body.design-fusion h3,
body.design-fusion h4,
body.design-fusion h5,
body.design-fusion h6 {
  font-family: 'Cinzel', 'Georgia', serif;
}

/* --- Header (gradient background) --- */
body.design-fusion .header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  padding: 12px 0;
}

body.design-fusion .header-top {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

body.design-fusion .donate-btn {
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #e0b830 100%);
  letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

/* --- Navigation --- */
body.design-fusion .nav-item a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
}

body.design-fusion .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border-top: 3px solid var(--accent-gold);
}

body.design-fusion .dropdown-menu a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}

/* --- Hero (taller, dramatic) --- */
body.design-fusion .hero {
  height: 80vh;
}

body.design-fusion .hero-content h1 {
  font-size: 4rem;
  letter-spacing: 0.05em;
}

body.design-fusion .hero-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-style: normal;
  text-transform: uppercase;
}

body.design-fusion .hero-cta {
  border-radius: 3px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #e0b830 100%);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

body.design-fusion .hero-cta:hover {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

/* --- Sections --- */
body.design-fusion .section-title h2 {
  letter-spacing: 0.03em;
}

body.design-fusion .section-title h2::after {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
}

/* --- Cards (dramatic hover) --- */
body.design-fusion .card {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

body.design-fusion .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

body.design-fusion .card-image {
  height: 230px;
}

body.design-fusion .card-content h3 {
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

body.design-fusion .card-btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* --- Info Boxes (gradient with gold top border) --- */
body.design-fusion .info-box {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

body.design-fusion .info-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
}

/* --- Buttons (gradient fills) --- */
body.design-fusion .btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 3px;
}

body.design-fusion .btn-primary {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
}

body.design-fusion .btn-secondary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #e0b830 100%);
}

/* --- Events (gold left border accent) --- */
body.design-fusion .event-item {
  border-radius: 8px;
  border-left: 4px solid var(--accent-gold);
}

body.design-fusion .event-date .month {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
}

body.design-fusion .event-details h4 {
  letter-spacing: 0.01em;
}

/* --- Footer (gradient with accent top line) --- */
body.design-fusion .footer {
  background: linear-gradient(135deg, var(--dark-brown) 0%, #1a0e06 100%);
  position: relative;
}

body.design-fusion .footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--secondary-green), transparent);
}

body.design-fusion .footer h4 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

body.design-fusion .social-links a {
  border-radius: 6px;
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

body.design-fusion .social-links a:hover {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #e0b830 100%);
  border-color: transparent;
}

/* --- Donation Tiers --- */
body.design-fusion .tier {
  border-radius: 8px;
  border-width: 2px;
}

body.design-fusion .tier.featured {
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

body.design-fusion .tier-name {
  letter-spacing: 0.03em;
}

/* --- Board members --- */
body.design-fusion .board-member {
  border-radius: 8px;
}

/* --- Gallery --- */
body.design-fusion .gallery-item {
  border-radius: 8px;
}

/* --- Forms --- */
body.design-fusion .form-group input,
body.design-fusion .form-group textarea,
body.design-fusion .form-group select {
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
}

body.design-fusion .form-group label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

/* --- Glen Fusion Responsive --- */
@media (max-width: 768px) {
  body.design-fusion .hero-content h1 {
    font-size: 2.8rem;
  }
  body.design-fusion .hero-tagline {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
  }
}


/* ================================================================
   DESIGN: BLESSED SANCTUARY
   Sacred liturgical design evoking reverence and transcendence
   Cormorant Garamond headings, Lora body, ornamental gold accents,
   contemplative spacing, and decorative sacred borders
   ================================================================ */

/* --- Typography --- */
body.design-blessed {
  font-family: 'Lora', 'Georgia', 'Times New Roman', serif;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

body.design-blessed h1,
body.design-blessed h2,
body.design-blessed h3,
body.design-blessed h4,
body.design-blessed h5,
body.design-blessed h6 {
  font-family: 'Cormorant Garamond', 'Garamond', 'Georgia', serif;
  font-weight: 600;
  letter-spacing: 0.03em;
}

body.design-blessed h1 { font-size: 3.2rem; font-weight: 700; }
body.design-blessed h2 { font-size: 2.4rem; font-weight: 600; }
body.design-blessed h3 { font-size: 1.5rem; font-weight: 600; }

/* --- Header --- */
body.design-blessed .header {
  padding: 12px 0;
  border-bottom: 2px solid var(--accent-gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

body.design-blessed .header-top {
  padding-bottom: 10px;
}

body.design-blessed .donate-btn {
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 10px 28px;
  font-size: 0.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  border: 2px solid var(--accent-gold);
  background: transparent;
  color: var(--accent-gold);
}

body.design-blessed .donate-btn:hover {
  background: var(--accent-gold);
  color: var(--white);
}

/* --- Navigation --- */
body.design-blessed .nav {
  border-top: 1px solid rgba(255,255,255,0.15);
}

body.design-blessed .nav-item a {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}

body.design-blessed .dropdown-menu {
  border-radius: 2px;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

body.design-blessed .dropdown-menu a {
  font-family: 'Lora', serif;
  font-size: 0.88rem;
  padding: 13px 22px;
  letter-spacing: 0.02em;
}

/* --- Hero --- */
body.design-blessed .hero {
  height: 85vh;
}

body.design-blessed .hero::before {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.6) 100%
  );
}

body.design-blessed .hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-shadow: 0 3px 30px rgba(0,0,0,0.5);
  text-transform: none;
}

body.design-blessed .hero-tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

body.design-blessed .hero-cta {
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 18px 50px;
  border: 2px solid var(--accent-gold);
  background: var(--accent-gold);
  color: var(--white);
}

body.design-blessed .hero-cta:hover {
  background: transparent;
  border-color: var(--white);
}

/* --- Sections --- */
body.design-blessed .section {
  padding: 90px 0;
}

body.design-blessed .section-title {
  margin-bottom: 50px;
}

body.design-blessed .section-title h2 {
  text-transform: none;
}

body.design-blessed .section-title h2::after {
  content: '';
  width: 80px;
  height: 1px;
  background: var(--accent-gold);
  border-radius: 0;
}

body.design-blessed .section-alt {
  background-color: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* --- Ornamental divider (used as pseudo-element on sections) --- */
body.design-blessed .section-title h2::before {
  content: '\2726';
  display: block;
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-bottom: 12px;
  letter-spacing: 0.5em;
}

/* --- Cards --- */
body.design-blessed .card {
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.4s ease;
}

body.design-blessed .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

body.design-blessed .card-image {
  height: 240px;
}

body.design-blessed .card-content {
  padding: 28px 24px;
}

body.design-blessed .card-content h3 {
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

body.design-blessed .card-btn {
  text-transform: uppercase;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

/* --- Info Boxes (gold-accented) --- */
body.design-blessed .info-box {
  border-radius: 4px;
  border-left: 4px solid var(--accent-gold);
  border-top: none;
  border-right: none;
  border-bottom: none;
  background: var(--cream);
}

body.design-blessed .info-box h3 {
  color: var(--primary-green);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}

/* --- Buttons --- */
body.design-blessed .btn {
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 0.88rem;
}

body.design-blessed .btn-primary {
  border: 2px solid var(--primary-green);
}

body.design-blessed .btn-primary:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

/* --- Events --- */
body.design-blessed .event-item {
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

body.design-blessed .event-date .month {
  border-radius: 4px 4px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.design-blessed .event-date .day {
  border-radius: 0 0 4px 4px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

body.design-blessed .event-details h4 {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

/* --- Footer --- */
body.design-blessed .footer {
  padding: 60px 0 30px;
  border-top: 3px solid var(--accent-gold);
}

body.design-blessed .footer h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

body.design-blessed .footer p,
body.design-blessed .footer a,
body.design-blessed .footer-links a {
  font-family: 'Lora', serif;
  font-size: 0.92rem;
}

body.design-blessed .social-links a {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent-gold);
}

body.design-blessed .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

/* --- Donation tiers --- */
body.design-blessed .tier {
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.08);
}

body.design-blessed .tier:hover {
  border-color: var(--accent-gold);
}

body.design-blessed .tier-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  letter-spacing: 0.06em;
}

body.design-blessed .tier.featured {
  border: 2px solid var(--accent-gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

body.design-blessed .tier.featured::before {
  font-family: 'Cormorant Garamond', serif;
  border-radius: 2px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --- Board members --- */
body.design-blessed .board-member {
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.06);
}

body.design-blessed .board-member-photo {
  border-width: 3px;
  border-color: var(--accent-gold);
}

body.design-blessed .board-member h4 {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.04em;
}

body.design-blessed .board-member .role {
  font-family: 'Lora', serif;
  font-style: italic;
}

/* --- Gallery --- */
body.design-blessed .gallery-item {
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

body.design-blessed .gallery-item:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* --- Forms --- */
body.design-blessed .form-group input,
body.design-blessed .form-group textarea,
body.design-blessed .form-group select {
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,0.15);
  font-family: 'Lora', serif;
  padding: 14px 16px;
}

body.design-blessed .form-group input:focus,
body.design-blessed .form-group textarea:focus,
body.design-blessed .form-group select:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 2px rgba(197, 151, 44, 0.15);
}

body.design-blessed .form-group label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

/* --- Blessed Sanctuary Responsive --- */
@media (max-width: 768px) {
  body.design-blessed .hero-content h1 {
    font-size: 2.6rem;
    letter-spacing: 0.03em;
  }
  body.design-blessed .hero-tagline {
    font-size: 1.05rem;
    letter-spacing: 0.03em;
  }
  body.design-blessed .section {
    padding: 60px 0;
  }
}


/* ================================================================
   DESIGN: ARTISAN PRAIRIE
   Inspired by Frank Lloyd Wright's Prairie School architecture.
   Horizontal emphasis, zero border-radius, organic simplicity,
   Playfair Display headings, Raleway thin body, architectural signage.
   ================================================================ */

/* --- Typography --- */
body.design-prairie {
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  letter-spacing: 0.015em;
  font-weight: 300;
}

body.design-prairie h1,
body.design-prairie h2,
body.design-prairie h3,
body.design-prairie h4,
body.design-prairie h5,
body.design-prairie h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

body.design-prairie h1 { font-size: 3rem; font-weight: 800; }
body.design-prairie h2 { font-size: 2.2rem; font-weight: 700; }
body.design-prairie h3 { font-size: 1.4rem; font-weight: 600; }
body.design-prairie h4 { font-size: 1.15rem; font-weight: 600; }

body.design-prairie p {
  font-weight: 300;
  line-height: 1.75;
}

/* --- Header --- */
body.design-prairie .header {
  padding: 0;
  box-shadow: none;
  border-bottom: 3px solid var(--accent-gold);
}

body.design-prairie .header-top {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

body.design-prairie .logo a span {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.5rem !important;
}

body.design-prairie .phone-number a {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}

body.design-prairie .donate-btn {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 10px 28px;
  font-size: 0.75rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  border: 2px solid var(--accent-gold);
  background: transparent;
  color: var(--accent-gold);
  transition: all 0.3s ease;
}

body.design-prairie .donate-btn:hover {
  background: var(--accent-gold);
  color: var(--dark-brown);
}

/* --- Navigation --- */
body.design-prairie .nav {
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

body.design-prairie .nav-item a {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  padding: 14px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background-color 0.25s ease, color 0.25s ease;
}

body.design-prairie .nav-item:first-child a {
  border-left: 1px solid rgba(255,255,255,0.08);
}

body.design-prairie .nav-item a:hover {
  background-color: rgba(255,255,255,0.08);
}

body.design-prairie .dropdown-menu {
  border-radius: 0;
  border: none;
  border-top: 3px solid var(--accent-gold);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

body.design-prairie .dropdown-menu a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  padding: 12px 24px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}

body.design-prairie .dropdown-menu a:hover {
  background-color: var(--cream);
  color: var(--primary-green);
  padding-left: 30px;
}

/* --- Hero (Left-Aligned) --- */
body.design-prairie .hero {
  height: 75vh;
}

body.design-prairie .hero::before {
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.15) 100%
  );
}

body.design-prairie .hero-content {
  text-align: left;
  align-items: flex-start;
  max-width: 650px;
  margin-left: 60px;
  margin-right: auto;
}

body.design-prairie .hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: none;
  line-height: 1.08;
  border-left: 4px solid var(--accent-gold);
  padding-left: 24px;
}

body.design-prairie .hero-tagline {
  font-family: 'Raleway', sans-serif;
  font-style: normal;
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.85;
  padding-left: 28px;
}

body.design-prairie .hero-cta {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 16px 44px;
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  margin-left: 28px;
  margin-top: 8px;
}

body.design-prairie .hero-cta:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--dark-brown);
}

/* --- Sections --- */
body.design-prairie .section {
  padding: 90px 0;
  position: relative;
}

body.design-prairie .section-alt {
  background-color: var(--cream);
}

body.design-prairie .section + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--accent-gold) 20%,
    var(--accent-gold) 80%,
    transparent 100%
  );
}

body.design-prairie .section-title {
  margin-bottom: 50px;
}

body.design-prairie .section-title h2 {
  text-transform: none;
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
}

body.design-prairie .section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 0;
}

body.design-prairie .section-title h2::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent-gold);
  margin-bottom: 14px;
}

/* --- Cards --- */
body.design-prairie .card {
  border-radius: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: none;
  border-left: 4px solid var(--accent-gold);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

body.design-prairie .card:hover {
  transform: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  border-left-color: var(--primary-green);
}

body.design-prairie .card-image {
  height: 200px;
}

body.design-prairie .card-content {
  padding: 28px 30px;
}

body.design-prairie .card-content h3 {
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

body.design-prairie .card-content p {
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 300;
}

body.design-prairie .card-btn {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary-green);
  position: relative;
  padding-bottom: 3px;
}

body.design-prairie .card-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

body.design-prairie .card-btn:hover::after {
  width: 100%;
}

/* --- Info Boxes (top-border lintel) --- */
body.design-prairie .info-box {
  border-radius: 0;
  background-color: var(--white);
  color: var(--text-dark);
  border: none;
  border-top: 4px solid var(--primary-green);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  text-align: left;
  padding: 36px 32px;
}

body.design-prairie .info-box h3 {
  color: var(--primary-green);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
}

body.design-prairie .info-box p {
  color: var(--text-dark);
  font-weight: 300;
}

body.design-prairie .info-box .card-btn {
  color: var(--primary-green) !important;
}

/* --- Buttons --- */
body.design-prairie .btn {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 14px 36px;
  transition: all 0.3s ease;
}

body.design-prairie .btn-primary {
  background-color: var(--primary-green);
  color: var(--white);
  border: 2px solid var(--primary-green);
}

body.design-prairie .btn-primary:hover {
  background-color: transparent;
  color: var(--primary-green);
}

/* --- Events --- */
body.design-prairie .event-item {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: none;
  background: transparent;
}

body.design-prairie .event-date .month {
  border-radius: 0;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

body.design-prairie .event-date .day {
  border-radius: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.2rem;
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--accent-gold);
  border-top: none;
}

body.design-prairie .event-details h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
}

/* --- Footer --- */
body.design-prairie .footer {
  padding: 70px 0 30px;
  position: relative;
}

body.design-prairie .footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gold);
}

body.design-prairie .footer h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--accent-gold);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 20px;
}

body.design-prairie .footer p,
body.design-prairie .footer a,
body.design-prairie .footer-links a {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

body.design-prairie .social-links a {
  border-radius: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
}

body.design-prairie .social-links a:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

body.design-prairie .footer-bottom {
  border-top: 2px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}

body.design-prairie .footer-bottom p {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
}

/* --- Donation Tiers --- */
body.design-prairie .tier {
  border-radius: 0;
  border: 1px solid rgba(0,0,0,0.1);
  border-top: 4px solid var(--accent-gold);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

body.design-prairie .tier:hover {
  border-top-color: var(--primary-green);
  transform: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

body.design-prairie .tier.featured {
  border-top-color: var(--primary-green);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

body.design-prairie .tier.featured::before {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.65rem;
  border-radius: 0;
}

body.design-prairie .tier-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* --- Board Members --- */
body.design-prairie .board-member {
  border-radius: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border-top: 3px solid var(--accent-gold);
}

body.design-prairie .board-member-photo {
  border-radius: 0;
  border: 3px solid var(--accent-gold);
}

body.design-prairie .board-member h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

body.design-prairie .board-member .position {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

/* --- Gallery --- */
body.design-prairie .gallery-item {
  border-radius: 0;
  border: none;
}

/* --- Forms --- */
body.design-prairie .form-group input,
body.design-prairie .form-group textarea,
body.design-prairie .form-group select {
  border-radius: 0;
  border: 1px solid rgba(0,0,0,0.15);
  border-bottom: 2px solid rgba(0,0,0,0.2);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  padding: 14px 16px;
  transition: border-color 0.3s ease;
}

body.design-prairie .form-group input:focus,
body.design-prairie .form-group textarea:focus,
body.design-prairie .form-group select:focus {
  border-color: var(--accent-gold);
  border-bottom-color: var(--primary-green);
  box-shadow: none;
}

body.design-prairie .form-group label {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

/* --- Artisan Prairie Responsive --- */
@media (max-width: 768px) {
  body.design-prairie .hero-content {
    text-align: center;
    align-items: center;
    margin-left: auto;
    max-width: 100%;
    padding: 0 20px;
  }

  body.design-prairie .hero::before {
    background: rgba(0,0,0,0.55);
  }

  body.design-prairie .hero-content h1 {
    font-size: 2.4rem;
    border-left: none;
    padding-left: 0;
    border-bottom: 3px solid var(--accent-gold);
    padding-bottom: 12px;
  }

  body.design-prairie .hero-tagline {
    padding-left: 0;
    font-size: 0.95rem;
  }

  body.design-prairie .hero-cta {
    margin-left: 0;
  }

  body.design-prairie .nav-item a {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  body.design-prairie .nav-item:first-child a {
    border-left: none;
  }

  body.design-prairie .section {
    padding: 60px 0;
  }
}
