/* ============================================
   DAVISON REFINED DESIGN — Premium CSS v2
   Nicole's Brand: Charcoal · Cream · Burnt Orange · Olive · Gold
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&family=Dancing+Script:wght@600;700&family=Playfair+Display:ital,wght@0,400;0,500;1,400&display=swap');

/* --- CSS Variables: Nicole's Brand Palette --- */
:root {
  /* Primary: Charcoal (replaces navy) */
  --charcoal:       #2C2C2C;
  --charcoal-light: #3A3A3A;
  --charcoal-deep:  #1C1C1C;

  /* Accent: Burnt Orange / Dark Orange */
  --orange:         #C4622D;
  --orange-light:   #D97C4A;
  --orange-dark:    #A34E22;
  --orange-muted:   #E8C4A8;

  /* Warm Neutrals: Cream & Stone */
  --cream:          #F5F0E8;
  --cream-dark:     #EDE5D8;
  --stone:          #D9D0C4;
  --warm-white:     #FAF7F3;

  /* Olive / Green (from Instagram feel) */
  --olive:          #6B7C5C;
  --olive-light:    #8A9B78;
  --olive-dark:     #505E42;

  /* Gold (warm, not cool) */
  --gold:           #C9A55A;
  --gold-light:     #DFC085;
  --gold-dark:      #A8843A;

  /* Text */
  --text-dark:      #1E1E1E;
  --text-mid:       #4A4440;
  --text-light:     #7A736B;

  /* Fonts */
  --font-serif:     'Cormorant Garamond', Georgia, serif;
  --font-sans:      'Montserrat', Arial, sans-serif;
  --font-script:    'Dancing Script', cursive;

  --transition:     all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-soft:    0 8px 40px rgba(44,44,44,0.10);
  --shadow-medium:  0 16px 60px rgba(44,44,44,0.18);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 500; }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 500; }
p { font-size: 0.95rem; line-height: 1.85; color: var(--text-mid); }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--cream-dark);
  padding: 11px 24px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1001;
}
.announcement-bar a { color: var(--charcoal); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.announcement-bar a:hover { color: var(--orange); }
.announcement-bar-close {
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  font-size: 1.1rem; cursor: pointer;
  color: var(--text-light);
  line-height: 1;
  padding: 2px 6px;
}
.announcement-bar-close:hover { color: var(--charcoal); }

/* ============================================
   LOGO WORDMARK — Nicole's Style
   "Davison" block · "Refined" script · "Design" block
   ============================================ */
.logo-davison {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}
.logo-refined {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--orange-light);
  line-height: 1;
  display: block;
  margin: -2px 0;
}
.logo-design {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}
.logo-tagline {
  font-family: var(--font-sans);
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 4px;
  display: block;
}

/* Footer logo variant */
.logo-refined.footer-script { color: var(--orange-light); }
.logo-davison.footer-block,
.logo-design.footer-block { color: #fff; }

/* ============================================
   NAVIGATION — Susan Hill-inspired: centered logo, clean nav below
   ============================================ */

/* Top header: white background, centered logo */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
/* On homepage hero, header becomes transparent then solidifies on scroll */
.site-header.over-hero {
  background: rgba(255,255,255,0.0);
  box-shadow: none;
}
.site-header.over-hero .nav-logo-wordmark .logo-davison,
.site-header.over-hero .nav-logo-wordmark .logo-design { color: rgba(255,255,255,0.92); }
.site-header.over-hero .nav-logo-wordmark .logo-refined { color: #fff; }
.site-header.over-hero .nav-logo-wordmark .logo-tagline { color: rgba(255,255,255,0.55); }
.site-header.over-hero .nav-links > li > a { color: rgba(255,255,255,0.88); }
.site-header.over-hero .nav-links > li > a:hover { color: #fff; }
.site-header.over-hero .header-cta { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.4); }
.site-header.over-hero .header-cta:hover { background: var(--orange); border-color: var(--orange); }
.site-header.over-hero .nav-hamburger span { background: #fff; }
.site-header.scrolled {
  background: rgba(255,255,255,0.98) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

/* Logo centered area */
.header-logo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px 0;
  position: relative;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 0;
}
.nav-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transition: var(--transition);
}
.site-header.scrolled .nav-logo-img { width: 44px; height: 44px; }

/* OG logo — homepage only: bigger, no wordmark, just the image */
.nav-logo-img--og {
  width: 110px;
  height: 110px;
  filter: drop-shadow(0 2px 8px rgba(196,98,45,0.18));
}
.site-header.over-hero .nav-logo-img--og {
  filter: brightness(1.1) drop-shadow(0 2px 12px rgba(255,255,255,0.25));
}
.site-header.scrolled .nav-logo-img--og {
  width: 72px;
  height: 72px;
}
.nav-logo-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2px;
}
.nav-logo-wordmark .logo-davison {
  color: var(--charcoal);
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  display: block;
}
.nav-logo-wordmark .logo-refined {
  color: var(--orange);
  font-size: 2.1rem;
  line-height: 1;
  display: block;
  margin: -4px 0;
}
.nav-logo-wordmark .logo-design {
  color: var(--charcoal);
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  display: block;
}
.nav-logo-wordmark .logo-tagline {
  color: var(--text-light);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  margin-top: 3px;
  display: block;
}

/* Book consult button in header corner */
.header-cta {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--orange);
  color: #fff !important;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 22px;
  transition: var(--transition);
  white-space: nowrap;
}
.header-cta:hover { background: var(--orange-dark); transform: translateY(-50%) translateY(-1px); }

/* Navigation bar below logo */
.header-nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px 14px;
  gap: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: var(--transition);
  position: relative;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: var(--transition);
}
.nav-links > li > a:hover { color: var(--orange); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { width: 100%; }
.nav-links > li > a.active { color: var(--orange); }

/* Services dropdown */
.nav-has-dropdown > a .nav-chevron {
  font-size: 0.55rem;
  opacity: 0.6;
  transition: transform 0.3s ease;
}
.nav-has-dropdown:hover > a .nav-chevron { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 100;
}
.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 13px 24px;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: var(--transition);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { color: var(--orange); background: var(--cream); padding-left: 30px; }

/* Keep old .site-nav alias for scrolled state compatibility */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  transition: var(--transition);
}
.site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 10px 24px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  transition: var(--transition) !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; }
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.nav-hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  /* margin-top is set inline per page to account for header + ann bar */
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s ease, transform 7s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1.0);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28,28,28,0.55) 0%,
    rgba(28,28,28,0.3) 60%,
    rgba(28,28,28,0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin-left: 10vw;
  padding: 0 24px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--orange);
}
.hero-title {
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.hero-title .script-accent {
  font-family: var(--font-script);
  font-size: 1.15em;
  color: var(--orange-light);
  font-weight: 600;
}
.hero-subtitle {
  color: rgba(255,255,255,0.82);
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 10px;
}
.hero-tagline {
  color: rgba(255,255,255,0.62);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  margin-bottom: 38px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 34px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,98,45,0.35); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 33px;
  border: 1px solid rgba(255,255,255,0.45);
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--orange-light); color: var(--orange-light); transform: translateY(-2px); }

.hero-badge {
  position: absolute;
  bottom: 52px;
  right: 64px;
  z-index: 2;
  background: rgba(28,28,28,0.88);
  border: 1px solid var(--orange);
  padding: 20px 28px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.hero-badge .badge-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--orange-light);
  line-height: 1;
}
.hero-badge .badge-label {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2.2s infinite;
}
.hero-scroll svg { width: 18px; opacity: 0.55; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.slide-dots {
  position: absolute;
  bottom: 32px;
  left: 10vw;
  z-index: 3;
  display: flex;
  gap: 10px;
}
.slide-dot {
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}
.slide-dot.active { background: var(--orange-light); width: 42px; }

/* ============================================
   SECTION BASICS
   ============================================ */
section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--orange);
}
.section-title { color: var(--charcoal); margin-bottom: 14px; }
.section-subtitle {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  max-width: 560px;
}
.divider-orange {
  width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  margin: 18px 0 38px;
}
/* keep gold alias for backward compat */
.divider-gold { width: 56px; height: 2px; background: linear-gradient(90deg, var(--orange), var(--gold)); margin: 18px 0 38px; }

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
  background: var(--charcoal);
  padding: 15px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 40px;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.marquee-item span { color: var(--orange-light); font-size: 0.95rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   AUDIENCE PATH SECTION (3 Doors)
   ============================================ */
.audience-section {
  background: var(--warm-white);
  padding: 100px 0;
  border-top: 1px solid var(--stone);
}
.audience-header { text-align: center; margin-bottom: 64px; }
.audience-header .divider-orange { margin: 18px auto 0; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--stone);
}
.audience-card {
  background: var(--warm-white);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: block;
}
.audience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-medium); }
.audience-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.audience-card:hover .audience-card-img { transform: scale(1.04); }
.audience-card-body {
  padding: 36px 32px;
  border-top: 3px solid transparent;
  transition: var(--transition);
}
.audience-card:hover .audience-card-body { border-top-color: var(--orange); }
.audience-card-tag {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.audience-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.audience-card p { font-size: 0.87rem; color: var(--text-mid); margin-bottom: 20px; }
.audience-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  transition: var(--transition);
}
.audience-card-link:hover { gap: 14px; }

/* ============================================
   ABOUT STRIP (Nicole solo)
   ============================================ */
.about-strip {
  background: var(--warm-white);
  padding: 100px 0;
}
.about-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-medium);
}
.about-img-accent {
  position: absolute;
  bottom: -36px;
  right: -36px;
  width: 52%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--warm-white);
  box-shadow: var(--shadow-soft);
}
.about-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 24px;
  border-left: 3px solid var(--orange);
  padding-left: 22px;
}
.about-stats {
  display: flex;
  gap: 44px;
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid var(--stone);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
}
.stat-num span { color: var(--orange); }
.stat-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-section {
  background: var(--cream);
  padding: 100px 0;
  border-top: 1px solid var(--stone);
}
.services-section .section-eyebrow { color: var(--orange-dark) !important; }
.services-section .section-eyebrow::before { background: var(--orange) !important; }
.services-section .section-title { color: var(--charcoal) !important; }
.services-section .section-subtitle { color: var(--text-light) !important; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: transparent;
  margin-top: 56px;
}
.service-card {
  background: #fff;
  padding: 44px 32px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--stone);
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: var(--transition);
}
.service-card:hover::before { width: 100%; }
.service-card:hover { background: var(--cream); box-shadow: var(--shadow-soft); }
.service-icon { font-size: 1.9rem; margin-bottom: 18px; opacity: 0.9; }
.service-card h4 { font-family: var(--font-serif); font-size: 1.15rem; color: var(--charcoal); margin-bottom: 10px; }
.service-card p { color: var(--text-mid); font-size: 0.84rem; line-height: 1.8; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  transition: var(--transition);
}
.service-link:hover { gap: 14px; }

/* ============================================
   PORTFOLIO PREVIEW
   ============================================ */
.portfolio-preview {
  background: var(--cream);
  padding: 100px 0;
}
.portfolio-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
}
.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 14px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.portfolio-item:nth-child(1) { grid-row: span 2; }
.portfolio-item:nth-child(4) { grid-column: span 2; }
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 250px;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(28,28,28,0.88) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 26px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-label { color: #fff; font-family: var(--font-serif); font-size: 1.05rem; font-style: italic; }
.portfolio-label small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-light);
  font-style: normal;
  margin-top: 4px;
}

/* ============================================
   BEFORE / AFTER SECTION
   ============================================ */
.before-after-section {
  background: var(--warm-white);
  padding: 100px 0;
  border-top: 1px solid var(--stone);
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
}
.ba-project {}
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 20px;
  position: relative;
}
.ba-label {
  position: absolute;
  top: 12px;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  z-index: 2;
}
.ba-label.before { left: 12px; background: rgba(44,44,44,0.85); color: rgba(255,255,255,0.75); }
.ba-label.after { right: 12px; background: var(--orange); color: #fff; }
.ba-images img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ba-project h4 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--charcoal); margin-bottom: 6px; }
.ba-project p { font-size: 0.83rem; color: var(--text-mid); }
.ba-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.ba-tag {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(196,98,45,0.1);
  color: var(--orange-dark);
  border: 1px solid rgba(196,98,45,0.28);
  padding: 4px 12px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--cream);
  padding: 100px 0;
  border-top: 1px solid var(--stone);
}
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .divider-orange { margin: 18px auto 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--cream);
  padding: 38px 32px;
  border-top: 3px solid var(--orange);
}
.testimonial-card .quote-mark {
  font-family: var(--font-serif);
  font-size: 3.6rem;
  color: var(--orange-muted);
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.5;
}
.testimonial-card p {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 22px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--orange-light);
  font-style: italic;
}
.author-name { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; color: var(--charcoal); }
.author-location { font-size: 0.68rem; color: var(--text-light); margin-top: 2px; }
.stars { color: var(--orange); font-size: 0.72rem; letter-spacing: 2px; margin-bottom: 5px; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--charcoal-deep) 0%, var(--charcoal) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,98,45,0.15) 0%, transparent 70%);
}
.cta-band .section-eyebrow { justify-content: center; color: var(--orange-light); }
.cta-band .section-eyebrow::before { background: var(--orange-light); }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.58); max-width: 540px; margin: 0 auto 38px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--charcoal-deep);
  color: rgba(255,255,255,0.58);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-logo-img {
  width: 52px; height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(196,98,45,0.35)) brightness(1.05);
}
.footer-brand p { font-size: 0.84rem; line-height: 1.85; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-link:hover { border-color: var(--orange); color: var(--orange-light); }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.84rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--orange-light); padding-left: 5px; }
.footer-contact-item { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-item i { color: var(--orange); margin-top: 2px; font-size: 0.88rem; min-width: 15px; }
.footer-contact-item span { font-size: 0.84rem; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.74rem; }
.footer-bottom a:hover { color: var(--orange-light); }
.footer-tagline { font-family: var(--font-serif); font-style: italic; font-size: 0.88rem; color: rgba(255,255,255,0.32); }

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  height: 52vh;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  position: relative;
  margin-top: 155px;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,28,28,0.38) 0%, rgba(28,28,28,0.78) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.page-hero-content .section-eyebrow { color: var(--orange-light); }
.page-hero-content .section-eyebrow::before { background: var(--orange-light); }
.page-hero-content h1 { color: #fff; }

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-section { background: var(--warm-white); padding: 80px 0 100px; }
.gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 44px; }
.filter-btn {
  background: transparent;
  border: 1px solid var(--stone);
  color: var(--text-mid);
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 20px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--orange-light);
}
.gallery-masonry { columns: 3; column-gap: 14px; }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,28,28,0.72);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay .overlay-inner { text-align: center; color: #fff; }
.gallery-item-overlay .overlay-icon { font-size: 1.8rem; color: var(--orange-light); margin-bottom: 7px; }
.gallery-item-overlay h4 { font-family: var(--font-serif); font-size: 0.95rem; font-style: italic; color: #fff; margin-bottom: 3px; }
.gallery-item-overlay small { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-light); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,10,10,0.96);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 1000px;
  max-height: 90vh;
  padding: 0 60px;
  width: 100%;
}
.lightbox-inner img { max-height: 80vh; max-width: 100%; object-fit: contain; margin: 0 auto; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox-close { position: absolute; top: -48px; right: 60px; color: rgba(255,255,255,0.65); font-size: 1.9rem; cursor: pointer; transition: var(--transition); background: none; border: none; line-height: 1; }
.lightbox-close:hover { color: var(--orange-light); transform: rotate(90deg); }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.65); font-size: 1.3rem; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }
.lightbox-prev:hover, .lightbox-next:hover { border-color: var(--orange); color: var(--orange-light); }
.lightbox-caption { text-align: center; margin-top: 14px; font-family: var(--font-serif); font-style: italic; color: rgba(255,255,255,0.55); font-size: 0.92rem; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story { padding: 100px 0; background: var(--warm-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-image-stack { position: relative; }
.about-img-primary { width: 100%; aspect-ratio: 3/4; object-fit: cover; box-shadow: var(--shadow-medium); }
.about-img-secondary { position: absolute; bottom: -44px; right: -32px; width: 54%; aspect-ratio: 4/3; object-fit: cover; border: 6px solid var(--warm-white); box-shadow: var(--shadow-soft); }
.about-bio { margin-bottom: 18px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 38px; }
.value-item { background: var(--cream); padding: 22px 18px; border-left: 3px solid var(--orange); }
.value-item h5 { font-family: var(--font-serif); font-size: 0.98rem; color: var(--charcoal); margin-bottom: 5px; }
.value-item p { font-size: 0.8rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { padding: 100px 0; background: var(--warm-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-detail { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 22px; }
.contact-detail-icon { width: 42px; height: 42px; background: var(--charcoal); display: flex; align-items: center; justify-content: center; color: var(--orange-light); font-size: 0.95rem; flex-shrink: 0; }
.contact-detail h5 { font-family: var(--font-sans); font-size: 0.67rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); margin-bottom: 3px; }
.contact-detail p { font-size: 0.88rem; color: var(--charcoal); margin: 0; }
.contact-form { background: var(--cream); padding: 46px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--stone); background: #fff; font-family: var(--font-sans); font-size: 0.88rem; color: var(--text-dark); outline: none; transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(196,98,45,0.1); }
.form-group textarea { resize: vertical; min-height: 115px; }

/* ============================================
   SERVICES DETAIL PAGE
   ============================================ */
.services-page { padding: 100px 0; background: var(--warm-white); }
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-bottom: 90px; padding-bottom: 90px; border-bottom: 1px solid var(--stone); }
.service-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-detail.reversed { direction: rtl; }
.service-detail.reversed > * { direction: ltr; }
.service-detail-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-medium); }
.service-includes { margin: 24px 0; background: var(--cream); padding: 22px 26px; border-left: 3px solid var(--orange); }
.service-includes h5 { font-family: var(--font-sans); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 12px; }
.service-includes ul li { font-size: 0.86rem; color: var(--text-mid); padding: 4px 0; display: flex; align-items: center; gap: 9px; }
.service-includes ul li::before { content: '✦'; color: var(--orange); font-size: 0.58rem; }
.pricing-section { background: var(--cream); padding: 100px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.pricing-card { background: #fff; padding: 42px 34px; text-align: center; position: relative; border: 1px solid var(--stone); transition: var(--transition); }
.pricing-card.featured { background: var(--charcoal); border-color: var(--charcoal); transform: translateY(-10px); }
.pricing-card:hover { box-shadow: var(--shadow-medium); }
.pricing-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-family: var(--font-sans); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 16px; white-space: nowrap; }
.pricing-tier { font-family: var(--font-sans); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange-dark); margin-bottom: 10px; }
.pricing-card.featured .pricing-tier { color: var(--orange-light); }
.pricing-price { font-family: var(--font-serif); font-size: 2.7rem; font-weight: 400; color: var(--charcoal); line-height: 1; margin-bottom: 7px; }
.pricing-card.featured .pricing-price { color: #fff; }
.pricing-price span { font-size: 1.1rem; color: var(--text-light); }
.pricing-card.featured .pricing-price span { color: rgba(255,255,255,0.4); }
.pricing-description { font-size: 0.8rem; color: var(--text-light); margin-bottom: 26px; line-height: 1.7; }
.pricing-card.featured .pricing-description { color: rgba(255,255,255,0.5); }
.pricing-features { text-align: left; margin-bottom: 28px; }
.pricing-features li { font-size: 0.83rem; color: var(--text-mid); padding: 6px 0; border-bottom: 1px solid var(--stone); display: flex; align-items: center; gap: 9px; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--orange); font-size: 0.72rem; }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.08); }
.pricing-cta { display: block; background: var(--charcoal); color: #fff; padding: 12px 0; font-family: var(--font-sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; text-align: center; transition: var(--transition); }
.pricing-cta:hover { background: var(--charcoal-light); }
.pricing-card.featured .pricing-cta { background: var(--orange); color: #fff; }
.pricing-card.featured .pricing-cta:hover { background: var(--orange-light); }

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--warm-white); padding: 100px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 52px; }
.faq-item { background: var(--cream); padding: 26px 28px; cursor: pointer; border-left: 3px solid transparent; transition: var(--transition); }
.faq-item.open { border-left-color: var(--orange); }
.faq-question { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-question h5 { font-family: var(--font-serif); font-size: 1.02rem; color: var(--charcoal); font-weight: 500; }
.faq-icon { color: var(--orange); font-size: 1.15rem; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding-top: 12px; font-size: 0.86rem; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #fff; z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 400; color: var(--charcoal); transition: var(--transition); }
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu-close { position: absolute; top: 26px; right: 30px; background: none; border: none; color: var(--text-mid); font-size: 1.7rem; cursor: pointer; }

/* ============================================
   NEIGHBORHOOD TAGS
   ============================================ */
.neighborhood-tag {
  background: rgba(196,98,45,0.1);
  border: 1px solid rgba(196,98,45,0.28);
  color: var(--orange-dark);
  font-family: var(--font-sans);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 18px;
  transition: var(--transition);
}
.neighborhood-tag:hover { background: rgba(196,98,45,0.18); border-color: var(--orange); }

/* Dark bg neighborhood tags */
.neighborhood-tag-dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(196,98,45,0.28);
  color: var(--orange-light);
  font-family: var(--font-sans);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 18px;
  transition: var(--transition);
}
.neighborhood-tag-dark:hover { background: rgba(196,98,45,0.15); }

/* ============================================
   NICOLE'S FAVORITES SECTION
   ============================================ */
.favorites-section {
  padding: 110px 0;
  background: var(--charcoal-deep);
  color: #fff;
}
.favorites-header {
  text-align: center;
  margin-bottom: 64px;
}
.favorites-header .section-eyebrow {
  color: var(--orange-light);
  justify-content: center;
  letter-spacing: 0.22em;
}
.favorites-header .section-title {
  color: #fff;
  margin-bottom: 16px;
}
.favorites-header .divider-orange {
  margin: 0 auto 22px;
}
.favorites-header .section-subtitle {
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
}

/* Shared overlay on all fav items */
.fav-hero-item,
.fav-trio-item,
.fav-duo-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.fav-hero-item img,
.fav-trio-item img,
.fav-duo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.fav-hero-item:hover img,
.fav-trio-item:hover img,
.fav-duo-item:hover img {
  transform: scale(1.05);
}
.fav-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,0.92) 0%, rgba(28,28,28,0.25) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.fav-hero-item:hover .fav-overlay,
.fav-trio-item:hover .fav-overlay,
.fav-duo-item:hover .fav-overlay {
  opacity: 1;
}
/* Always show overlay bottom on large feature items */
.fav-hero-large .fav-overlay,
.fav-hero-tall .fav-overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(28,28,28,0.85) 0%, rgba(28,28,28,0.1) 50%, transparent 100%);
}
.fav-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 8px;
}
.fav-overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}
.fav-overlay p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}

/* Hero 2-up row */
.fav-hero-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 6px;
  margin-bottom: 6px;
}
.fav-hero-large {
  height: 560px;
}
.fav-hero-tall {
  height: 560px;
}

/* Middle 3-up row */
.fav-trio-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 6px;
}
.fav-trio-item {
  height: 360px;
}

/* Bottom 2-up row */
.fav-duo-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.fav-duo-item {
  height: 440px;
}

/* Responsive favorites */
@media (max-width: 1024px) {
  .fav-hero-row { grid-template-columns: 1fr; }
  .fav-hero-large, .fav-hero-tall { height: 460px; }
  .fav-trio-row { grid-template-columns: repeat(2, 1fr); }
  .fav-trio-item:last-child { grid-column: span 2; }
  .fav-trio-item { height: 300px; }
  .fav-overlay { opacity: 1; }
}
@media (max-width: 768px) {
  .favorites-section { padding: 72px 0; }
  .fav-hero-row,
  .fav-trio-row,
  .fav-duo-row { grid-template-columns: 1fr; gap: 4px; margin-bottom: 4px; }
  .fav-hero-large, .fav-hero-tall { height: 340px; }
  .fav-trio-item { height: 280px; }
  .fav-trio-item:last-child { grid-column: span 1; }
  .fav-duo-item { height: 300px; }
  .fav-overlay h3 { font-size: 1.1rem; }
  .fav-overlay p { display: none; }
}

/* ── Portfolio Favorites Banner ── */
.fav-portfolio-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--charcoal-deep);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 18px 28px;
  margin-bottom: 6px;
  border-left: 4px solid var(--orange);
}
.fav-portfolio-star {
  color: var(--orange-light);
  font-size: 1rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .header-cta { display: none; }
  .about-strip-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-img-accent, .about-img-secondary { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .portfolio-masonry { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item:nth-child(1) { grid-row: span 1; }
  .portfolio-item:nth-child(4) { grid-column: span 1; }
  .gallery-masonry { columns: 2; }
  .audience-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .ba-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 36px; }
  .service-detail.reversed { direction: ltr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .header-logo-bar { padding: 14px 20px 0; }
  .header-nav-bar { display: none; }
  .header-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo-img { width: 50px; height: 50px; }
  .page-hero { margin-top: 120px; }
  section { padding: 68px 0; }
  .container { padding: 0 20px; }
  h1 { font-size: 2.3rem; }
  h2 { font-size: 1.85rem; }
  .hero-content { margin-left: 0; }
  .hero-badge { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-masonry { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .portfolio-intro { flex-direction: column; align-items: flex-start; }
  .about-stats { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
}
