/*
Theme Name: Echo Park Houses
Theme URI: https://echoparkhouses.com
Author: Echo Park Houses
Author URI: https://echoparkhouses.com
Description: A fresh, nature-inspired new home construction theme for Orlando, Florida.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: echo-park-houses
Tags: home-builder, orlando, florida, sage, modern, construction
*/

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  /* Palette */
  --cream:        #FAFAF5;
  --cream-dark:   #F2F0E8;
  --cream-deep:   #E8E4D8;
  --sage:         #4A7C59;
  --sage-light:   #6A9E78;
  --sage-pale:    #EBF3EE;
  --sage-dark:    #2F5239;
  --coral:        #E07A4A;
  --coral-light:  #F09060;
  --coral-pale:   #FBF0EB;
  --charcoal:     #1E2A1E;
  --ink:          #2C3A2C;
  --ink-mid:      #4A5A4A;
  --ink-light:    #7A8C7A;
  --border:       #D8D4C8;
  --border-light: #E8E4DA;
  --white:        #FFFFFF;

  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Manrope', 'Helvetica Neue', sans-serif;
  --font-accent:  'Caveat', cursive;

  /* Motion */
  --ease:        cubic-bezier(0.35, 0, 0.25, 1);
  --transition:  all 0.3s var(--ease);
  --trans-fast:  all 0.18s ease;

  /* Layout */
  --max-w:    1340px;
  --gutter:   clamp(1.25rem, 5vw, 5rem);
  --radius:   8px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 100px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink-mid);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; }
a    { color: var(--sage); text-decoration: none; transition: var(--trans-fast); }
a:hover { color: var(--sage-dark); }
ul, ol { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem, 6.5vw, 6.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 2.2rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  display: inline-block;
  margin-bottom: 0.8rem;
}
.tag--coral { color: var(--coral); }
.tag--white { color: rgba(255,255,255,0.75); }

.handwritten {
  font-family: var(--font-accent);
  font-size: 1.4em;
  color: var(--coral);
  font-weight: 400;
  display: block;
  line-height: 1.2;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}
.section     { padding: clamp(4rem, 9vw, 9rem) 0; }
.section--sm { padding: clamp(3rem, 6vw, 6rem) 0; }
.section--xs { padding: clamp(2rem, 4vw, 4rem) 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.88rem 1.85rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-sage {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-sage:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74,124,89,0.32);
}

.btn-coral {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-coral:hover {
  background: var(--coral-light);
  border-color: var(--coral-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224,122,74,0.32);
}

.btn-outline-sage {
  background: transparent;
  color: var(--sage);
  border-color: var(--sage);
}
.btn-outline-sage:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-cream {
  background: var(--cream);
  color: var(--sage);
  border-color: var(--cream);
}
.btn-cream:hover {
  background: var(--white);
  color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.btn-lg  { padding: 1.05rem 2.25rem; font-size: 0.9rem; }
.btn-sm  { padding: 0.6rem 1.2rem; font-size: 0.75rem; }

.btn-arrow::after {
  content: '→';
  transition: transform 0.2s ease;
  display: inline-block;
}
.btn-arrow:hover::after { transform: translateX(5px); }

/* =============================================
   IMAGE PLACEHOLDERS
   ============================================= */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream-deep) 100%);
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 24px,
      rgba(74,124,89,0.05) 24px,
      rgba(74,124,89,0.05) 25px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 24px,
      rgba(74,124,89,0.05) 24px,
      rgba(74,124,89,0.05) 25px
    );
}
.img-placeholder-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-light);
  opacity: 0.55;
  z-index: 1;
  text-align: center;
  padding: 1rem;
  line-height: 1.8;
}

/* =============================================
   SITE HEADER
   ============================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
#site-header.scrolled {
  background: rgba(250, 250, 245, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border-light), 0 4px 20px rgba(30,42,30,0.06);
  padding: 0.9rem var(--gutter);
}
#site-header.on-dark { /* on dark hero sections */ }
#site-header.on-dark.scrolled {
  background: rgba(250, 250, 245, 0.97);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-leaf {
  width: 36px; height: 36px;
  background: var(--sage);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--trans-fast);
}
.logo-leaf::before {
  content: '';
  width: 14px; height: 14px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  transform: rotate(45deg) translate(2px, -2px);
}
.site-logo:hover .logo-leaf { background: var(--sage-dark); }

.logo-txt { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-mid);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--sage); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--sage-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.42s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.mobile-nav a:hover { color: var(--coral); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
}

/* Left — content panel */
.hero__left {
  background: var(--charcoal);
  padding: clamp(6rem, 10vw, 10rem) var(--gutter) clamp(4rem, 8vw, 8rem) clamp(2rem, 8vw, 9rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

/* subtle organic texture on left */
.hero__left::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(74,124,89,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(224,122,74,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Leaf pattern watermark */
.hero__left::after {
  content: '🌿';
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  font-size: 18rem;
  opacity: 0.04;
  transform: rotate(-20deg);
  pointer-events: none;
  line-height: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(74,124,89,0.15);
  border: 1px solid rgba(74,124,89,0.3);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.hero__eyebrow-pulse {
  width: 7px; height: 7px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.8); opacity: 0.6; }
}
.hero__eyebrow-text {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.hero__title {
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  color: var(--cream);
  line-height: 1.0;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.hero__title .accent { color: var(--sage-light); font-style: italic; }

.hero__desc {
  color: rgba(255,255,255,0.62);
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hero__metrics {
  display: flex;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.hero__metric {}
.hero__metric-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  display: block;
}
.hero__metric-val .c { color: var(--coral); }
.hero__metric-label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
  display: block;
}

/* Right — stacked photo panels */
.hero__right {
  display: grid;
  grid-template-rows: 60% 40%;
  gap: 0;
  position: relative;
}
.hero__photo-top {
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
}
.hero__photo-bottom {
  overflow: hidden;
  background: var(--sage);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  gap: 0.75rem;
}
.hero__photo-bottom .img-placeholder {
  position: absolute;
  inset: 0;
  opacity: 0.35;
}
.hero__quick-facts {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__quick-fact {
  text-align: center;
}
.hero__quick-fact-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  display: block;
  line-height: 1;
}
.hero__quick-fact-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-top: 0.2rem;
}
.hero__quick-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  align-self: center;
}

/* Floating card on hero right */
.hero__floating-card {
  position: absolute;
  top: 50%;
  left: -2rem;
  transform: translateY(-50%);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 12px 40px rgba(30,42,30,0.15);
  z-index: 3;
  min-width: 200px;
}
.hero__floating-card-icon { font-size: 1.5rem; margin-bottom: 0.4rem; }
.hero__floating-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}
.hero__floating-card-sub {
  font-size: 0.72rem;
  color: var(--ink-light);
  margin-top: 0.2rem;
  font-family: var(--font-body);
}

/* =============================================
   TICKER STRIP
   ============================================= */
.ticker-strip {
  background: var(--sage);
  padding: 0.85rem 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: tickerMove 40s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.ticker-item::after { content: '✦'; font-size: 0.45rem; opacity: 0.5; }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================
   HOME MODELS
   ============================================= */
.models-section { background: var(--cream); }

.section-intro {
  max-width: 680px;
  margin-bottom: 3.5rem;
}

.model-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}
.model-card:hover {
  box-shadow: 0 20px 56px rgba(30,42,30,0.1);
  transform: translateY(-6px);
  border-color: transparent;
}
.model-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
  flex-shrink: 0;
}
.model-card__img .img-placeholder { transition: transform 0.5s var(--ease); }
.model-card:hover .model-card__img .img-placeholder { transform: scale(1.06); }

.model-card__pill {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--sage);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: var(--radius-pill);
}
.model-card__pill--coral { background: var(--coral); }
.model-card__pill--charcoal { background: var(--charcoal); }

.model-card__body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.model-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.model-card__specs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.spec {
  font-size: 0.78rem;
  color: var(--ink-light);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 500;
}
.model-card__desc {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}
.model-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.model-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sage);
}
.model-card__price span {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-light);
  font-family: var(--font-body);
}

/* =============================================
   COMMUNITY / NEIGHBORHOOD SECTION
   ============================================= */
.community-section { background: var(--sage-pale); }

.community-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.community-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.community-card:hover::before { transform: scaleX(1); }
.community-card:hover { box-shadow: 0 12px 36px rgba(30,42,30,0.08); transform: translateY(-3px); border-color: transparent; }
.community-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.community-card h4 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.community-card p { font-size: 0.88rem; color: var(--ink-light); line-height: 1.65; margin: 0; }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section { background: var(--white); }

.about-img-wrap {
  position: relative;
}
.about-img-main {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--cream-dark);
}
.about-img-thumb {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 52%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 5px solid var(--cream);
  box-shadow: 0 12px 36px rgba(30,42,30,0.12);
}
.about-badge {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  background: var(--coral);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px rgba(224,122,74,0.3);
  text-align: center;
}
.about-badge-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}
.about-badge-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  display: block;
  margin-top: 0.2rem;
}

.promise-list { display: flex; flex-direction: column; gap: 1.1rem; margin: 2rem 0; }
.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.promise-item:hover { background: var(--sage-pale); border-color: rgba(74,124,89,0.2); }
.promise-icon {
  width: 40px; height: 40px;
  background: var(--sage-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.promise-title { font-weight: 700; font-size: 0.9rem; color: var(--charcoal); margin-bottom: 0.15rem; }
.promise-desc  { font-size: 0.82rem; color: var(--ink-light); line-height: 1.55; margin: 0; }

/* =============================================
   PROCESS STEPS
   ============================================= */
.process-section { background: var(--charcoal); position: relative; overflow: hidden; }
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 10% 50%, rgba(74,124,89,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 50%, rgba(224,122,74,0.08) 0%, transparent 60%);
}
.process-section .container { position: relative; z-index: 1; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 28px);
  right: calc(10% + 28px);
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-bubble {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  transition: var(--transition);
}
.step:hover .step-bubble {
  background: var(--sage);
  border-color: var(--sage);
}
.step-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--cream); }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 12px 36px rgba(30,42,30,0.08);
  transform: translateY(-4px);
  border-color: transparent;
}
.testimonial-stars { font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 1rem; color: #F5A623; }
.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.t-name  { font-weight: 700; font-size: 0.9rem; color: var(--charcoal); display: block; }
.t-detail { font-size: 0.72rem; color: var(--ink-light); }

/* =============================================
   BLOG / RESOURCES
   ============================================= */
.blog-section { background: var(--cream-dark); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.blog-card:hover {
  box-shadow: 0 12px 36px rgba(30,42,30,0.08);
  transform: translateY(-4px);
  border-color: transparent;
}
.blog-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--cream-dark);
  flex-shrink: 0;
}
.blog-card__img .img-placeholder { transition: transform 0.5s var(--ease); }
.blog-card:hover .blog-card__img .img-placeholder { transform: scale(1.05); }
.blog-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card__cat {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  line-height: 1.25;
  transition: color 0.2s;
}
.blog-card:hover .blog-card__title { color: var(--sage); }
.blog-card__excerpt { font-size: 0.85rem; color: var(--ink-light); line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.blog-card__meta {
  font-size: 0.72rem;
  color: var(--ink-light);
  border-top: 1px solid var(--border-light);
  padding-top: 0.75rem;
  margin-top: auto;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-band {
  background: var(--sage);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -5%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 5%;
  width: 300px; height: 300px;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-band h2 { color: var(--cream); font-size: clamp(1.8rem, 3vw, 2.8rem); }
.cta-band p  { color: rgba(255,255,255,0.75); margin-top: 0.4rem; }

/* =============================================
   PAGE HERO (interior pages)
   ============================================= */
.page-hero {
  background: var(--charcoal);
  padding: clamp(7rem, 12vw, 12rem) 0 clamp(3.5rem, 6vw, 6rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(74,124,89,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(224,122,74,0.06) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--cream); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,0.62); max-width: 580px; font-size: 1.05rem; margin: 0; }
.breadcrumb {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--sage-light); }
.breadcrumb span { margin: 0 0.5rem; opacity: 0.3; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.value-card {
  padding: 2rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.value-card:hover { background: var(--white); box-shadow: 0 8px 28px rgba(30,42,30,0.07); }
.value-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.value-card h4 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.value-card p  { font-size: 0.87rem; color: var(--ink-light); margin: 0; line-height: 1.65; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  text-align: center;
}
.team-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--cream-dark);
  margin-bottom: 1.25rem;
}
.team-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.25rem; }
.team-role { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.75rem; }
.team-bio  { font-size: 0.85rem; color: var(--ink-light); line-height: 1.65; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: start;
}
.contact-detail-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}
.contact-detail-block:last-of-type { border: none; }
.c-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 0.4rem;
}
.c-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.4;
}
.c-value a { color: var(--charcoal); }
.c-value a:hover { color: var(--sage); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 24px rgba(30,42,30,0.05);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-mid);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--charcoal);
  padding: 0.78rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(74,124,89,0.1);
  background: var(--white);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A7C59' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: var(--cream);
  padding-right: 2.5rem;
}
.form-success {
  background: var(--sage-pale);
  border: 1.5px solid var(--sage);
  color: var(--sage-dark);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* =============================================
   BLOG ARCHIVE
   ============================================= */
.blog-featured-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--border-light);
}
.blog-featured-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--cream-dark);
}

/* =============================================
   POST CONTENT
   ============================================= */
.post-content-wrap { max-width: 780px; margin: 0 auto; padding: 4rem var(--gutter); }
.post-content-wrap h2 { margin: 2.5rem 0 1rem; font-size: 1.75rem; }
.post-content-wrap h3 { margin: 2rem 0 0.75rem; font-size: 1.35rem; }
.post-content-wrap p  { line-height: 1.9; margin-bottom: 1.5rem; }
.post-content-wrap ul, .post-content-wrap ol {
  margin: 1.5rem 0 1.5rem 1.5rem;
  line-height: 1.85;
  color: var(--ink-mid);
}
.post-content-wrap ul { list-style: disc; }
.post-content-wrap ol { list-style: decimal; }
.post-content-wrap blockquote {
  border-left: 4px solid var(--sage);
  padding: 1.25rem 1.75rem;
  background: var(--sage-pale);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  margin: 2rem 0;
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--charcoal);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo-name { color: var(--cream); }
.footer-brand .logo-sub  { color: rgba(255,255,255,0.35); }
.footer-brand p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.87rem; color: rgba(255,255,255,0.42); transition: color 0.2s; }
.footer-col a:hover { color: var(--sage-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.28); margin: 0; }
.footer-lic { font-size: 0.72rem; color: rgba(255,255,255,0.22); }

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.09s; }
.fade-up:nth-child(3) { transition-delay: 0.18s; }
.fade-up:nth-child(4) { transition-delay: 0.27s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero__right { min-height: 360px; aspect-ratio: 16/9; }
  .hero__floating-card { display: none; }
  .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .blog-featured-wrap { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .blog-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
}
