/*
Theme Name:  Event Partners
Theme URI:   https://eventpartnersmke.com
Author:      Event Partners
Description: Custom WordPress theme for Event Partners — full-service event planning in Wisconsin & Beyond. Rose/champagne palette, Cormorant Garamond + Jost typography.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: event-partners
*/

/* ============================================================
   EVENT PARTNERS — CUSTOM WORDPRESS THEME
   Palette: Ivory / Champagne / Rose / Espresso
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

/* ── TOKENS ── */
:root {
  --ivory:       #FDF8F6;
  --cream:       #F5EDEA;
  --champagne:   #E8C9C0;
  --rose:        #C2847A;
  --rose-deep:   #8A5450;
  --rose-light:  #CFA49E;
  --noir:        #111009;
  --charcoal:    #1E1C17;
  --espresso:    #2E2A22;
  --text:        #28251D;
  --text-muted:  #7A7467;
  --text-faint:  #C0AFAA;
  --border:      #E2CFC9;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --max-w: 1240px;
  --section-pad: 6rem 2rem;
  --radius: 2px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
  margin-bottom: 1rem;
}
.serif-italic { font-style: italic; }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
section { padding: var(--section-pad); }

/* ── DIVIDERS ── */
.rose-rule {
  width: 48px;
  height: 1px;
  background: var(--rose);
  display: block;
  margin: 1.5rem auto;
}
.rose-rule.left { margin-left: 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid currentColor;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-rose {
  background: var(--rose);
  color: var(--ivory);
  border-color: var(--rose);
}
.btn-rose:hover { background: var(--rose-deep); border-color: var(--rose-deep); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline:hover { background: var(--text); color: var(--ivory); }
.btn-outline-ivory {
  background: transparent;
  color: var(--ivory);
  border-color: var(--ivory);
}
.btn-outline-ivory:hover { background: var(--ivory); color: var(--charcoal); }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0 2rem;
  background: rgba(253, 248, 246, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--border);
}
#nav.scrolled {
  background: rgba(253, 248, 246, 0.97);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo svg { height: 42px; width: auto; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--espresso);
  text-transform: uppercase;
}
.nav-logo-tag {
  font-family: var(--font-body);
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}
.nav-links a {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--rose); }
.nav-cta {
  background: var(--charcoal);
  color: var(--ivory) !important;
  padding: 0.65rem 1.6rem;
  font-size: 0.62rem !important;
  letter-spacing: 0.2em !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--rose) !important; color: var(--ivory) !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  width: 24px; height: 1px;
  background: var(--espresso);
  transition: var(--transition);
  display: block;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--ivory);
  border-top: 1px solid var(--border);
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.04);
  transition: transform 8s ease-out;
  filter: blur(2px) brightness(0.85);
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,10,10,0.62) 0%,
    rgba(20,10,10,0.55) 40%,
    rgba(20,10,10,0.70) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem 5rem;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1.2rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  max-width: 780px;
}
.hero-title em { font-style: italic; font-weight: 300; }
.hero-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--champagne);
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
  max-width: 460px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: var(--champagne);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); transform-origin: top; }
}

/* ══════════════════════════════════════════
   SERVICES SLIDESHOW
══════════════════════════════════════════ */
#services-showcase {
  background: var(--espresso);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.showcase-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.showcase-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.showcase-img {
  position: relative;
  overflow: hidden;
}
.showcase-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.showcase-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.showcase-content .eyebrow { color: var(--rose-light); }
.showcase-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.showcase-title em { font-style: italic; }
.showcase-desc {
  font-size: 0.88rem;
  color: var(--champagne);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  max-width: 380px;
}
.showcase-from {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--rose-light);
  margin-bottom: 1.5rem;
}
.showcase-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}
.showcase-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(232,217,188,0.3);
  cursor: pointer;
  transition: background 0.3s;
  border: none;
  padding: 0;
}
.showcase-dot.active { background: var(--champagne); }
.showcase-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
  z-index: 10;
}
.showcase-arrow {
  pointer-events: all;
  background: rgba(253,248,246,0.1);
  border: 1px solid rgba(253,248,246,0.2);
  color: var(--ivory);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}
.showcase-arrow:hover { background: rgba(253,248,246,0.2); }

/* ══════════════════════════════════════════
   INTRO STRIP
══════════════════════════════════════════ */
#intro {
  background: var(--charcoal);
  padding: 3rem 2rem;
  text-align: center;
}
.intro-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 300;
  font-style: italic;
  color: var(--champagne);
  letter-spacing: 0.04em;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════ */
#services { background: var(--ivory); text-align: center; }
.section-header { margin-bottom: 4rem; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--espresso);
}
.section-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 1rem auto 0;
  line-height: 1.8;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.service-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: left;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-last-child(-n+3) { border-bottom: none; }
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--cream); }
.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 1rem;
}
.service-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 0.75rem;
}
.service-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  transition: gap var(--transition);
}
.service-link:hover { gap: 0.85rem; }
.service-link::after { content: '→'; }

/* ══════════════════════════════════════════
   SEASONAL CALENDAR
══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   UPCOMING POP-UP DATES
══════════════════════════════════════════ */
#upcoming-dates {
  background: var(--cream);
  text-align: center;
}

/* Cards stack vertically, one per date */
.popdate-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 2px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  text-align: left;
  transition: box-shadow 0.3s ease;
}
.popdate-card:hover {
  box-shadow: 0 8px 32px rgba(138,84,80,0.10);
}
.popdate-card:last-of-type { margin-bottom: 0; }

/* Left panel — date identity */
.popdate-left {
  padding: 2.5rem 2.8rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory);
}
.popdate-season {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.4rem;
}
.popdate-label {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.popdate-label em { font-style: italic; }
.popdate-date {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--rose-deep);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.popdate-divider {
  width: 2.5rem;
  height: 1px;
  background: var(--rose);
  margin-bottom: 1.2rem;
  opacity: 0.5;
}
.popdate-venue {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 0.3rem;
}
.popdate-county {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}
.popdate-county svg {
  flex-shrink: 0;
  color: var(--rose);
}
.popdate-setting {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-style: italic;
}

/* Right panel — slots */
.popdate-right {
  padding: 2.5rem 2.8rem;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.popdate-slots-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 1rem;
}
.popdate-slots {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.popdate-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: var(--surface, #FDFBF9);
  transition: border-color 0.2s, background 0.2s;
}
.popdate-slot.avail:hover {
  border-color: var(--rose);
  background: #FDF5F3;
}
.popdate-slot.full {
  opacity: 0.45;
  pointer-events: none;
}
.slot-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.slot-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--espresso);
  letter-spacing: 0.04em;
}
.slot-time {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.slot-btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--rose-deep);
  color: var(--ivory);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.slot-btn:hover { background: var(--rose); color: var(--ivory); }
.slot-full {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Footer note */
.popdate-footer-note {
  margin-top: 2rem;
  font-size: 0.73rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.popdate-footer-note a {
  color: var(--rose);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.popdate-footer-note a:hover { color: var(--rose-deep); }

/* Responsive */
@media (max-width: 768px) {
  .popdate-card {
    grid-template-columns: 1fr;
  }
  .popdate-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 2rem 1.5rem;
  }
  .popdate-right {
    padding: 1.5rem 1.5rem 2rem;
  }
  .popdate-label { font-size: 1.6rem; }
}

/* ══════════════════════════════════════════
   PRICING SECTIONS
══════════════════════════════════════════ */
.pricing-section {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.pricing-section.dark { background: var(--charcoal); }
.pricing-section.light { background: var(--cream); }
.pricing-image {
  position: relative;
  overflow: hidden;
}
.pricing-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.pricing-image:hover img { transform: scale(1.03); }
.pricing-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pricing-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.pricing-section.light .pricing-title { color: var(--espresso); }
.pricing-title em { font-style: italic; }
.pricing-desc {
  font-size: 0.88rem;
  color: var(--champagne);
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 420px;
}
.pricing-section.light .pricing-desc { color: var(--text-muted); }
.packages-list { margin-bottom: 2.5rem; }
.pkg-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(232,201,192,0.15);
}
.pricing-section.light .pkg-row { border-bottom: 1px solid var(--border); }
.pkg-row:first-child { border-top: 1px solid rgba(232,201,192,0.15); }
.pricing-section.light .pkg-row:first-child { border-top: 1px solid var(--border); }
.pkg-info { flex: 1; }
.pkg-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ivory);
}
.pricing-section.light .pkg-name { color: var(--espresso); }
.pkg-desc {
  font-size: 0.72rem;
  color: var(--text-faint);
  margin-top: 0.2rem;
  letter-spacing: 0.04em;
}
.pkg-includes-inline {
  list-style: none;
  margin-top: 0.35rem;
}
.pkg-includes-inline li {
  font-size: 0.68rem;
  color: rgba(232,201,192,0.65);
  display: inline;
}
.pkg-includes-inline li::before { content: '· '; }
.pkg-includes-inline li:first-child::before { content: ''; }
.pkg-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--rose-light);
  white-space: nowrap;
  margin-left: 1rem;
}
.pricing-section.light .pkg-price { color: var(--rose-deep); }

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
#process { background: var(--charcoal); text-align: center; }
#process .section-title { color: var(--ivory); }
#process .section-sub { color: var(--champagne); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.process-step { text-align: center; }
.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(194,132,122,0.3);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: 0.82rem;
  color: var(--text-faint);
  line-height: 1.75;
}

/* ══════════════════════════════════════════
   BLOG PREVIEW
══════════════════════════════════════════ */
#blog { background: var(--cream); text-align: center; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  text-align: left;
}
.blog-card { background: var(--ivory); border: 1px solid var(--border); }
.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 1.75rem; }
.blog-card-cat {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.blog-card-excerpt {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.blog-card-link {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
}
.blog-card-link::after { content: ' →'; }

/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */
#cta-band {
  background: var(--noir);
  text-align: center;
  padding: 6rem 2rem;
}
.cta-eyebrow { color: var(--rose-light); }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}
.cta-title em { font-style: italic; }
.cta-sub {
  font-size: 0.9rem;
  color: var(--champagne);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
#footer {
  background: var(--charcoal);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(232,201,192,0.1);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(232,201,192,0.1);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}
.footer-brand-tag {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.2rem;
}
.footer-brand-desc {
  font-size: 0.8rem;
  color: var(--text-faint);
  line-height: 1.8;
  max-width: 260px;
}
.footer-col-title {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-faint);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--champagne); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.72rem; color: var(--text-faint); }
.footer-social { display: flex; gap: 1.5rem; }
.footer-social a {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--rose-light); }

/* ══════════════════════════════════════════
   BLOG ARCHIVE (blog.php / archive.php)
══════════════════════════════════════════ */
.blog-archive-header {
  background: var(--espresso);
  padding: 7rem 2rem 4rem;
  text-align: center;
}
.blog-archive-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--ivory);
  font-weight: 300;
}
.blog-archive-header p {
  font-size: 0.88rem;
  color: var(--champagne);
  margin-top: 0.8rem;
}
.blog-archive-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.wp-post-card { background: var(--ivory); border: 1px solid var(--border); }
.wp-post-card-img { aspect-ratio: 16/10; overflow: hidden; }
.wp-post-card-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
.wp-post-card:hover .wp-post-card-img img { transform:scale(1.04); }
.wp-post-card-body { padding: 1.75rem; }
.wp-post-card-cat { font-size:0.58rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--rose); font-weight:500; margin-bottom:0.6rem; }
.wp-post-card-title { font-family:var(--font-display); font-size:1.25rem; color:var(--espresso); line-height:1.3; margin-bottom:0.75rem; }
.wp-post-card-excerpt { font-size:0.82rem; color:var(--text-muted); line-height:1.7; margin-bottom:1.25rem; }
.wp-post-card-link { font-size:0.62rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--rose); font-weight:500; }
.wp-post-card-link:hover { opacity: 0.75; }

/* Single post */
.single-post-wrap { max-width: 780px; margin: 0 auto; padding: 7rem 2rem 6rem; }
.single-post-cat { font-size:0.6rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--rose); font-weight:500; margin-bottom:1rem; display:block; }
.single-post-title { font-family:var(--font-display); font-size:clamp(2rem,4vw,3.2rem); color:var(--espresso); line-height:1.15; margin-bottom:1rem; }
.single-post-meta { font-size:0.75rem; color:var(--text-muted); margin-bottom:2.5rem; }
.single-post-thumb { margin-bottom:2.5rem; border-radius:2px; overflow:hidden; }
.single-post-thumb img { width:100%; }
.single-post-content { font-size:0.95rem; line-height:1.85; color:var(--text); }
.single-post-content h2 { font-family:var(--font-display); font-size:1.8rem; margin:2rem 0 0.75rem; }
.single-post-content h3 { font-family:var(--font-display); font-size:1.4rem; margin:1.5rem 0 0.5rem; }
.single-post-content p { margin-bottom:1.25rem; }
.single-post-content ul { list-style:disc; padding-left:1.5rem; margin-bottom:1.25rem; }
.single-post-content blockquote { border-left:3px solid var(--rose); padding:1rem 1.5rem; margin:1.5rem 0; font-family:var(--font-display); font-style:italic; font-size:1.1rem; color:var(--espresso); }

/* ══════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════ */
.contact-wrap { max-width: 680px; margin: 0 auto; padding: 7rem 2rem 6rem; }
.contact-wrap h1 { font-family:var(--font-display); font-size:clamp(2rem,4vw,3rem); color:var(--espresso); margin-bottom:0.5rem; }
.contact-sub { font-size:0.88rem; color:var(--text-muted); margin-bottom:3rem; line-height:1.7; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .service-card:nth-child(2n) { border-right: none; }
  .seasons-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-archive-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 4rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .showcase-slide, .pricing-section { grid-template-columns: 1fr; }
  .showcase-img { height: 280px; }
  .pricing-image { height: 320px; }
  .pricing-content { padding: 3rem 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card:nth-child(n) { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .seasons-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-archive-grid { grid-template-columns: 1fr; }
  .showcase-content { padding: 3rem 2rem 4rem; }
}

@media (max-width: 480px) {
  .seasons-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
}