/*
  Oasis Counseling Services — Premium Redesign v2
  A Place of Comfort and Healing
*/

/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  /* Color Palette */
  --clr-dark-brown: #4B352A;
  --clr-terracotta: #CA7842;
  --clr-terracotta-hover: #b06535;
  --clr-terracotta-glow: rgba(202, 120, 66, 0.25);
  --clr-sage-green: #B2CD9C;
  --clr-sage-dark: #8ba773;
  --clr-pale-yellow: #F0F2BD;
  --clr-cream: #F8F3D9;
  --clr-beige: #EBE5C2;
  --clr-khaki: #B9B28A;
  --clr-olive: #504B38;
  --clr-text: #5E4D42;
  --clr-bg: #FEFBF4;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --container-max: 1240px;
  --section-pad: clamp(4rem, 8vw, 8rem);
  --gap: clamp(1.5rem, 3vw, 3rem);

  /* Shape */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 9999px;
  --radius-arch: 200px 200px 0 0;

  /* Effects */
  --shadow-soft: 0 4px 24px rgba(75, 53, 42, 0.06);
  --shadow-card: 0 8px 40px rgba(75, 53, 42, 0.08);
  --shadow-hover: 0 16px 48px rgba(75, 53, 42, 0.14);
  --shadow-glow: 0 0 40px var(--clr-terracotta-glow);

  --ease-out: cubic-bezier(0.25, 0.8, 0.25, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --trans-fast: 0.3s var(--ease-out);
  --trans-med: 0.5s var(--ease-out);
  --trans-slow: 0.8s var(--ease-out);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--clr-dark-brown);
  background-color: var(--clr-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--trans-fast);
}

ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

::selection {
  background: rgba(202, 120, 66, 0.2);
  color: var(--clr-dark-brown);
}

/* ═══════════════════════════════════════════════
   NOISE TEXTURE OVERLAY
═══════════════════════════════════════════════ */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--clr-beige);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--clr-dark-brown);
  letter-spacing: 0.03em;
  animation: breathe 2.5s infinite ease-in-out;
}

@keyframes breathe {
  0%, 100% { opacity: 0.4; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.01); }
}

/* ═══════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--clr-dark-brown);
  font-weight: 500;
  line-height: 1.15;
}

h1.title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  letter-spacing: -0.015em;
  font-weight: 400;
}

h2.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

h2.subtitle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--clr-terracotta);
}

p {
  font-size: 1.05rem;
  color: var(--clr-text);
  margin-bottom: 1.25rem;
  font-weight: 300;
  line-height: 1.8;
}

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

.section-padding {
  padding: var(--section-pad) 0;
}

.section-padding-lg {
  padding: calc(var(--section-pad) * 1.3) 0;
}

.relative { position: relative; }

.bg-cream { background-color: var(--clr-cream); }
.bg-beige { background-color: var(--clr-beige); }
.bg-sage { background-color: var(--clr-sage-green); }
.bg-dark { background-color: var(--clr-dark-brown); color: var(--clr-cream); }
.bg-primary { background-color: var(--clr-bg); }

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--trans-fast);
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-25deg);
  transition: none;
}

.btn:hover::before {
  animation: btnShine 0.8s ease-out;
}

@keyframes btnShine {
  from { left: -100%; }
  to { left: 200%; }
}

.btn-primary {
  background: var(--clr-terracotta);
  color: #fff;
  border-color: var(--clr-terracotta);
}

.btn-primary:hover {
  background: var(--clr-terracotta-hover);
  border-color: var(--clr-terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--clr-terracotta-glow);
}

.btn-outline {
  background: transparent;
  border-color: var(--clr-terracotta);
  color: var(--clr-terracotta);
}

.btn-outline:hover {
  background: var(--clr-terracotta);
  color: #fff;
  transform: translateY(-2px);
}

.btn-light {
  border-color: var(--clr-cream);
  color: var(--clr-cream);
}

.btn-light:hover {
  background: var(--clr-cream);
  color: var(--clr-dark-brown);
}

.btn-text {
  background: transparent;
  color: var(--clr-dark-brown);
  padding: 0.75rem 0;
  gap: 0.5rem;
  border-radius: 0;
  border: none;
  border-bottom: 1.5px solid transparent;
  font-weight: 400;
}

.btn-text:hover {
  color: var(--clr-terracotta);
  gap: 0.8rem;
  border-bottom-color: var(--clr-terracotta);
}

.btn-sm {
  padding: 0.7rem 1.5rem;
  font-size: 0.82rem;
}

/* ═══════════════════════════════════════════════
   HEADER & NAVIGATION
═══════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--trans-med);
}

.header.scrolled {
  padding: 0.8rem 0;
  background: rgba(254, 251, 244, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(75, 53, 42, 0.06);
  box-shadow: var(--shadow-soft);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5%, 3rem);
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-dark-brown);
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-khaki);
  font-weight: 400;
}

.nav-list {
  display: flex;
  gap: 2.2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--clr-text);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1.5px;
  bottom: -4px;
  left: 0;
  background: var(--clr-terracotta);
  transition: width var(--trans-fast);
}

.nav-link:hover {
  color: var(--clr-terracotta);
}

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

.nav-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--clr-dark-brown);
}

.mobile-only { display: none; }

/* ═══════════════════════════════════════════════
   DECORATIVE ELEMENTS
═══════════════════════════════════════════════ */
.subtitle-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.subtitle-wrapper.centered {
  justify-content: center;
}

.decorative-line {
  height: 1.5px;
  width: 36px;
  background: var(--clr-terracotta);
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -8%;
  width: 55%;
  height: 75%;
  background: radial-gradient(ellipse, rgba(178, 205, 156, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 35%;
  height: 45%;
  background: radial-gradient(ellipse, rgba(202, 120, 66, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 560px;
  z-index: 2;
}

.hero .title {
  margin-bottom: 0.5rem;
}

.hero .title em {
  font-style: italic;
  color: var(--clr-terracotta);
}

.hero .description {
  font-size: 1.1rem;
  margin: 1.5rem 0 2rem;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-arch);
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-arch);
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 2;
}

.hero-image-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 55%;
  height: 55%;
  background: var(--clr-sage-green);
  border-radius: var(--radius-arch);
  z-index: 1;
  opacity: 0.6;
}

/* Hero floating badge */
.hero-badge {
  position: absolute;
  bottom: 3rem;
  right: -1.5rem;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
  animation: floatGentle 6s ease-in-out infinite;
}

.hero-badge .badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(178, 205, 156, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hero-badge .badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--clr-dark-brown);
  line-height: 1.3;
}

.hero-badge .badge-text span {
  display: block;
  font-weight: 300;
  color: var(--clr-text);
  font-size: 0.68rem;
}

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

/* ═══════════════════════════════════════════════
   SUB-PAGE HERO
═══════════════════════════════════════════════ */
.sub-hero {
  min-height: 55vh;
  padding-top: 10rem;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.sub-hero .title {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  max-width: 850px;
  margin: 0 auto;
  font-weight: 400;
}

.sub-hero .subtitle {
  margin-bottom: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--clr-terracotta);
}

/* ═══════════════════════════════════════════════
   WELCOME / SCRIPTURE SECTION
═══════════════════════════════════════════════ */
.welcome-section {
  text-align: left;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.welcome-section .welcome-text {
  max-width: none;
  margin: 0;
}

.welcome-section .welcome-text p {
  font-size: 1.1rem;
  line-height: 1.9;
}

.welcome-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.scripture-block {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(75, 53, 42, 0.1);
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  text-align: center;
}

.scripture-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.scripture-block blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-style: italic;
  color: var(--clr-dark-brown);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.scripture-block cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-terracotta);
}

/* Atmosphere image strip */
.atmosphere-strip {
  width: 100%;
  overflow: hidden;
  max-height: 400px;
}

.atmosphere-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* Leaf divider */
.leaf-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.leaf-divider::before,
.leaf-divider::after {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--clr-khaki);
}

.leaf-divider svg {
  width: 18px;
  height: 18px;
  fill: var(--clr-sage-green);
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════
   OVERVIEW / SPLIT SECTION
═══════════════════════════════════════════════ */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
}

.elegant-list {
  margin-top: 1.5rem;
}

.elegant-list li {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  padding: 1rem 0;
  border-bottom: 1px solid var(--clr-khaki);
  color: var(--clr-dark-brown);
  transition: all var(--trans-fast);
  cursor: default;
}

.elegant-list li:hover {
  color: var(--clr-terracotta);
  padding-left: 0.75rem;
}

/* ═══════════════════════════════════════════════
   WHO WE SERVE (Card Grid)
═══════════════════════════════════════════════ */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.serve-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--radius-md);
  background: var(--clr-bg);
  border: 1px solid rgba(75, 53, 42, 0.05);
  transition: all var(--trans-fast);
}

.serve-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(202, 120, 66, 0.12);
}

.serve-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.serve-card:nth-child(1) .serve-card-icon { background: rgba(178, 205, 156, 0.25); }
.serve-card:nth-child(2) .serve-card-icon { background: rgba(202, 120, 66, 0.12); }
.serve-card:nth-child(3) .serve-card-icon { background: rgba(240, 242, 189, 0.45); }
.serve-card:nth-child(4) .serve-card-icon { background: rgba(185, 178, 138, 0.25); }
.serve-card:nth-child(5) .serve-card-icon { background: rgba(178, 205, 156, 0.25); }

.serve-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════
   PROCESS / GETTING STARTED
═══════════════════════════════════════════════ */
.process-section {
  position: relative;
  overflow: hidden;
}

.process-header {
  max-width: 600px;
}

.light-text { color: var(--clr-dark-brown); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.step-line {
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-dark-brown) 0%, rgba(75,53,42,0.15) 100%);
  z-index: 1;
}

.step {
  position: relative;
  z-index: 2;
}

.step-num {
  width: 60px;
  height: 60px;
  background: var(--clr-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-terracotta);
  margin-bottom: 1.5rem;
  border: 2px solid rgba(202, 120, 66, 0.25);
  transition: all var(--trans-fast);
}

.step:hover .step-num {
  background: var(--clr-terracotta);
  color: #fff;
  border-color: var(--clr-terracotta);
}

.step-content h4 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.step-content p {
  font-size: 0.92rem;
  color: rgba(75, 53, 42, 0.75);
}

/* ═══════════════════════════════════════════════
   QUOTE / PARALLAX SECTION
═══════════════════════════════════════════════ */
.quote-section {
  position: relative;
  padding: 8rem 0;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(248, 243, 217, 0.88);
}

.faith-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-style: italic;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.35;
  color: var(--clr-dark-brown);
}

.quote-author {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 1.5rem;
  color: var(--clr-terracotta);
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════ */
.about-container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.portrait-wrapper {
  position: relative;
  border-radius: var(--radius-arch);
  position: sticky;
  top: 120px;
}

.portrait-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-arch);
  box-shadow: var(--shadow-card);
}

.floating-card {
  position: absolute;
  bottom: -24px;
  right: -20px;
  background: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  max-width: 240px;
}

.badge {
  display: inline-block;
  background: var(--clr-sage-green);
  color: var(--clr-dark-brown);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

.floating-card p {
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
  color: var(--clr-dark-brown);
}

.prose p {
  font-size: 1.08rem;
  line-height: 1.85;
}

.approach-box {
  background: var(--clr-cream);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(185, 178, 138, 0.25);
}

.subsection-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}

.methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.method-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
}

.method-item::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-sage-green);
  flex-shrink: 0;
}

.method-item span {
  font-size: 0.9rem;
  color: var(--clr-text);
}

.highlight-quote {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--clr-terracotta);
  border-left: 3px solid var(--clr-terracotta);
  padding-left: 1.5rem;
  margin-top: 2rem;
  line-height: 1.5;
}

.faith-note {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  background: rgba(202, 120, 66, 0.06);
  border-left: 3px solid var(--clr-terracotta);
}

.faith-note p {
  font-style: italic;
  font-size: 0.95rem;
  margin: 0;
}

/* ═══════════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: #fff;
  padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2.5vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: all var(--trans-med);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--clr-terracotta);
  opacity: 0;
  transition: opacity var(--trans-fast);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(202, 120, 66, 0.12);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card .card-icon {
  width: 56px;
  height: 56px;
  background: var(--clr-beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--clr-terracotta);
  margin-bottom: 1.5rem;
  transition: all var(--trans-fast);
}

.service-card:hover .card-icon {
  background: var(--clr-terracotta);
  color: #fff;
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.93rem;
  margin: 0;
  line-height: 1.7;
}

.highlight-card {
  background: var(--clr-dark-brown);
  color: var(--clr-cream);
}

.highlight-card h3 { color: var(--clr-cream); }
.highlight-card p { color: var(--clr-beige); }
.highlight-card .card-icon {
  background: rgba(255,255,255,0.08);
  color: var(--clr-sage-green);
}
.highlight-card:hover .card-icon {
  background: var(--clr-sage-green);
  color: var(--clr-dark-brown);
}

/* ═══════════════════════════════════════════════
   SERVICE ROWS (Alternating Layout)
═══════════════════════════════════════════════ */
.svc-list {
  padding: 0;
}

.svc-row {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  border-bottom: 1px solid rgba(75, 53, 42, 0.07);
}

.svc-row--alt {
  background: var(--clr-cream);
}

.svc-row--featured {
  background: var(--clr-dark-brown);
  border-bottom: none;
}

.svc-row__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.svc-row__inner--reverse {
  direction: rtl;
}

.svc-row__inner--reverse > * {
  direction: ltr;
}

.svc-row__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 0.25rem;
}

.svc-row__icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all var(--trans-fast);
}

.svc-row__icon-wrap--sage {
  background: rgba(178, 205, 156, 0.2);
  color: var(--clr-sage-dark);
}

.svc-row__icon-wrap--copper {
  background: rgba(202, 120, 66, 0.12);
  color: var(--clr-terracotta);
}

.svc-row__icon-wrap--light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--clr-sage-green);
}

.svc-row:hover .svc-row__icon-wrap--sage {
  background: var(--clr-sage-green);
  color: var(--clr-dark-brown);
}

.svc-row:hover .svc-row__icon-wrap--copper {
  background: var(--clr-terracotta);
  color: #fff;
}

.svc-row:hover .svc-row__icon-wrap--light {
  background: var(--clr-sage-green);
  color: var(--clr-dark-brown);
}

.svc-row__num {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-khaki);
  letter-spacing: 0.05em;
}

.svc-row__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
  font-weight: 400;
}

.svc-row__content p {
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 580px;
}

.svc-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.svc-row__tags span {
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--clr-text);
  background: rgba(75, 53, 42, 0.04);
  border: 1px solid rgba(75, 53, 42, 0.1);
  transition: all var(--trans-fast);
}

.svc-row--alt .svc-row__tags span {
  background: rgba(255, 255, 255, 0.6);
}

.svc-row:hover .svc-row__tags span {
  border-color: rgba(202, 120, 66, 0.2);
  color: var(--clr-dark-brown);
}

.svc-row__image {
  margin-top: 1.5rem;
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.svc-row__checklist {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.6rem;
}

.svc-row__checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: rgba(248, 243, 217, 0.8);
}

.svc-row__checklist li::before {
  content: '✓';
  color: var(--clr-sage-green);
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   INSURANCE / DETAILS
═══════════════════════════════════════════════ */
.details-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
}

.mini-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-terracotta);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pill {
  background: #fff;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  color: var(--clr-olive);
  border: 1px solid var(--clr-khaki);
  transition: all var(--trans-fast);
}

.pill:hover {
  border-color: var(--clr-terracotta);
  color: var(--clr-terracotta);
  box-shadow: var(--shadow-soft);
}

/* ═══════════════════════════════════════════════
   ACCORDION (FAQ)
═══════════════════════════════════════════════ */
.accordion-item {
  border-bottom: 1px solid rgba(75, 53, 42, 0.1);
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--clr-dark-brown);
  cursor: pointer;
  text-align: left;
  transition: color var(--trans-fast);
}

.accordion-header:hover {
  color: var(--clr-terracotta);
}

.accordion-header ion-icon {
  font-size: 1.1rem;
  color: var(--clr-terracotta);
  transition: transform var(--trans-fast);
  flex-shrink: 0;
}

.accordion-item.active .accordion-header ion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.accordion-item.active .accordion-content {
  padding-bottom: 1.25rem;
}

.accordion-content p {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════════ */
.contact-form-card {
  background: #fff;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.contact-form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--clr-text);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(75, 53, 42, 0.12);
  border-radius: var(--radius-sm);
  background: var(--clr-bg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--clr-dark-brown);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--clr-terracotta);
  box-shadow: 0 0 0 3px rgba(202, 120, 66, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  font-size: 0.75rem;
  color: var(--clr-khaki);
  font-style: italic;
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════
   CLIENT PORTAL BANNER
═══════════════════════════════════════════════ */
.portal-section {
  text-align: center;
}

.portal-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem 0 3rem;
}

.portal-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
  color: rgba(248, 243, 217, 0.9);
}

.portal-item::before {
  content: '✓';
  color: var(--clr-sage-green);
  font-weight: 600;
  font-size: 0.75rem;
}

.portal-section .btn-portal {
  background: var(--clr-cream);
  color: var(--clr-dark-brown);
  border-color: var(--clr-cream);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.portal-section .btn-portal:hover {
  background: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   BLOG CARDS
═══════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--clr-cream);
  border: 1px solid rgba(75, 53, 42, 0.04);
  transition: all var(--trans-fast);
}

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

.blog-card-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--clr-beige), rgba(178, 205, 156, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--clr-khaki);
  font-weight: 400;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-terracotta);
  margin-bottom: 0.5rem;
  display: block;
}

.blog-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.blog-card p {
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════════════════
   CRISIS BANNER
═══════════════════════════════════════════════ */
.crisis-banner {
  background: rgba(202, 120, 66, 0.07);
  padding: 1.5rem 0;
  text-align: center;
}

.crisis-banner p {
  font-size: 0.85rem;
  margin: 0 auto;
  max-width: 580px;
}

.crisis-banner strong {
  font-weight: 600;
  color: var(--clr-dark-brown);
}

/* ═══════════════════════════════════════════════
   EMERGENCY BANNER (Footer)
═══════════════════════════════════════════════ */
.emergency-banner {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: var(--radius-md);
  margin: 3rem 0;
  border-left: 4px solid var(--clr-terracotta);
}

.emergency-banner h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.emergency-banner .urgent-text {
  color: var(--clr-cream);
  font-weight: 500;
  margin-top: 0.75rem;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer {
  padding: var(--section-pad) 0 2rem;
}

.site-footer p { color: rgba(248, 243, 217, 0.65); }
.site-footer h2, .site-footer h3 { color: var(--clr-cream); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(248, 243, 217, 0.08);
}

.brand-name {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 0.4rem;
}

.brand-tagline {
  font-size: 0.95rem;
  color: rgba(178, 205, 156, 0.8);
  margin-bottom: 1.5rem;
}

.footer-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--clr-cream);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.contact-list ion-icon {
  font-size: 1.1rem;
  color: var(--clr-terracotta);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.contact-list a:hover { color: var(--clr-terracotta); }

.footer-nav a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.88rem;
  color: rgba(248, 243, 217, 0.5);
  transition: color var(--trans-fast);
}

.footer-nav a:hover { color: var(--clr-cream); }

.response-time {
  font-size: 0.82rem !important;
  font-style: italic;
  color: rgba(248, 243, 217, 0.4) !important;
  margin-top: 0.5rem;
}

.footer-links-row {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(248, 243, 217, 0.35);
  border-bottom: 1px solid rgba(248, 243, 217, 0.06);
}

.footer-links-row a {
  color: rgba(248, 243, 217, 0.5);
  margin: 0 0.5rem;
}

.footer-links-row a:hover { color: var(--clr-cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.82rem;
}

.footer-bottom p { font-size: 0.82rem; }

.legal-links a {
  color: inherit;
  margin: 0 0.4rem;
}

.legal-links a:hover {
  color: var(--clr-cream);
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translate(0, 0) !important;
}

.fade-up { transform: translateY(36px); }
.fade-down { transform: translateY(-36px); }
.fade-left { transform: translateX(36px); }
.fade-right { transform: translateX(-36px); }

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

/* ═══════════════════════════════════════════════
   CONTACT GRID
═══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container,
  .split-grid,
  .about-container,
  .details-container,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-image-wrapper {
    aspect-ratio: 16/9;
    margin-top: 2rem;
    border-radius: var(--radius-lg);
  }

  .hero-img {
    border-radius: var(--radius-lg);
  }

  .hero-image-accent { display: none; }
  .hero-badge { display: none; }

  .portrait-wrapper {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.5rem;
  }

  .step-line { display: none; }
  .serve-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background: var(--clr-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right var(--trans-med);
    box-shadow: -10px 0 30px rgba(0,0,0,0.08);
    z-index: 1001;
  }

  .nav-menu.active { right: 0; }

  .nav-list {
    flex-direction: column;
    text-align: center;
    gap: 1.75rem;
  }

  .nav-link { font-size: 1.1rem; }

  .mobile-only {
    display: block;
    margin-top: 2rem;
  }

  .desktop-only { display: none; }

  .services-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .methods-grid { grid-template-columns: 1fr; }

  /* Sub-hero text sizing on mobile */
  .sub-hero .title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  /* Hero section */
  .hero {
    padding-top: 7rem;
  }

  .hero .title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero .description {
    font-size: 1rem;
  }

  /* Welcome section */
  .welcome-grid {
    grid-template-columns: 1fr;
  }

  .welcome-image {
    aspect-ratio: 4 / 3;
    max-height: 350px;
    order: -1;
  }

  .welcome-section {
    text-align: center;
  }

  .welcome-section .subtitle-wrapper {
    justify-content: center;
  }

  /* Scripture block */
  .scripture-block {
    grid-template-columns: 1fr;
  }

  .scripture-image {
    height: 220px;
  }

  /* Split grid text */
  .split-grid {
    gap: 2rem;
  }

  .split-text .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  /* Process steps */
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-header .title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  /* About page */
  .about-container {
    gap: 2rem;
  }

  .portrait-wrapper {
    max-width: 300px;
  }

  .about-content-column .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  /* Service rows */
  .svc-row__inner,
  .svc-row__inner--reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    direction: ltr;
  }

  .svc-row__visual {
    flex-direction: row;
  }

  .svc-row__icon-wrap {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .svc-row__title {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
  }

  /* Contact page */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: clamp(1.5rem, 4vw, 2rem);
  }

  /* Insurance details */
  .details-container {
    grid-template-columns: 1fr;
  }

  /* Portal items */
  .portal-items {
    flex-direction: column;
    align-items: center;
  }

  /* Atmosphere image */
  .atmosphere-img {
    height: 250px;
  }

  /* Section padding reduction */
  .section-padding-lg {
    padding: clamp(3rem, 6vw, 5rem) 0;
  }
}

@media (max-width: 480px) {
  .serve-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: stretch; text-align: center; }
  .hero-buttons .btn { justify-content: center; }
  .portal-items { flex-direction: column; align-items: center; }

  /* Tighter padding on small screens */
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  .title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  /* Contact info card */
  .contact-grid > div:first-child > div {
    padding: 1.5rem;
  }

  /* Blog cards */
  .blog-card-body h4 {
    font-size: 1.1rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-contact,
  .footer-nav {
    text-align: center;
  }

  .contact-list li {
    justify-content: center;
  }

  /* Faith quote */
  .faith-quote {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    padding: 0 1rem;
  }

  /* Scripture block */
  .scripture-block blockquote {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
  }

  /* Nav actions in mobile menu */
  .nav-actions.mobile-only .btn {
    width: 100%;
    text-align: center;
  }
}
