/* ===========================
   PRIVÉ HOME STAFFING
   Champagne Luxury Theme
   =========================== */

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

:root {
  --champagne:       #F7E7CE;
  --champagne-light: #FDF5E8;
  --champagne-deep:  #E8C98A;
  --gold:            #C9A84C;
  --gold-dark:       #A07830;
  --brown-warm:      #5C3D2E;
  --brown-dark:      #2E1A0E;
  --cream:           #FAF6F0;
  --white:           #FFFFFF;
  --text-dark:       #2E1A0E;
  --text-mid:        #6B4E35;
  --text-light:      #9C7A5A;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', sans-serif;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-soft: 0 8px 40px rgba(92, 61, 46, 0.12);
  --shadow-card: 0 4px 20px rgba(92, 61, 46, 0.10);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  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; }

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  --nav-logo-h: 48px;
  --nav-logo-max-w: min(240px, 42vw);
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: var(--transition);
}
.nav.scrolled {
  padding: 0.8rem 4rem;
  box-shadow: 0 2px 30px rgba(92,61,46,0.1);
}

/* Transparent nav on home hero (matches design mockup) */
.nav--hero {
  background: transparent;
  border-bottom-color: rgba(247, 231, 206, 0.15);
  backdrop-filter: none;
}
.nav--hero .nav-links a { color: rgba(255, 255, 255, 0.88); }
.nav--hero .nav-links a:hover { color: var(--champagne); }
.nav--hero .nav-hamburger span { background: var(--champagne); }
.nav--hero .nav-cta {
  background: transparent;
  color: var(--champagne) !important;
  border: 1px solid rgba(247, 231, 206, 0.55);
  padding: 0.6rem 1.5rem;
}
.nav--hero .nav-cta:hover {
  background: rgba(247, 231, 206, 0.12) !important;
  color: var(--champagne) !important;
}
.nav--hero.scrolled {
  background: rgba(250, 246, 240, 0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(201, 168, 76, 0.2);
}
.nav--hero.scrolled .nav-links a { color: var(--text-mid); }
.nav--hero.scrolled .nav-hamburger span { background: var(--brown-warm); }
.nav--hero.scrolled .nav-cta {
  background: var(--brown-warm);
  color: var(--champagne) !important;
  border-color: transparent;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
  max-width: var(--nav-logo-max-w);
}
.nav-logo-img {
  display: block;
  height: var(--nav-logo-h);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
/* Hero nav: stack both logos in one slot (no layout shift on scroll) */
.nav--hero .nav-logo {
  display: inline-grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-items: start;
}
.nav--hero .nav-logo-img {
  grid-area: 1 / 1;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.nav--hero .nav-logo-img--dark {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.nav--hero.scrolled .nav-logo-img--light {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.nav--hero.scrolled .nav-logo-img--dark {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .nav--hero .nav-logo-img { transition: none; }
}
.nav-links {
  display: flex; gap: 2.5rem; align-items: center;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--brown-warm); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.is-active { color: var(--gold-dark); }
.nav-links a.is-active::after { transform: scaleX(1); }
.nav--hero .nav-links a.is-active { color: var(--champagne-deep); }
.nav--hero.scrolled .nav-links a.is-active { color: var(--gold-dark); }
.nav-cta {
  background: var(--brown-warm);
  color: var(--champagne) !important;
  padding: 0.65rem 1.6rem;
  border: none;
  font-size: 0.75rem !important;
  letter-spacing: 0.14em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--brown-dark) !important; color: var(--champagne-deep) !important; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 10px;
  z-index: 1102; position: relative;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger span {
  width: 24px; height: 1.5px; background: var(--brown-warm); 
  transition: var(--transition); display: block;
  pointer-events: none;
}
body.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
body.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
body.nav-open .nav--hero .nav-hamburger span { background: var(--brown-warm); }

.nav-backdrop {
  position: fixed; inset: 0; z-index: 1090;
  background: rgba(46, 26, 14, 0.55);
  border: none; padding: 0; margin: 0;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.nav-backdrop.open {
  opacity: 1; visibility: visible;
}

.nav-mobile {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 1100;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.25rem;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0; visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
}
.nav-mobile.open {
  opacity: 1; visibility: visible;
  pointer-events: auto;
}
body.nav-open { overflow: hidden; }
.nav-mobile a {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 400;
  color: var(--brown-warm);
  transition: color var(--transition);
  padding: 0.35rem 0.5rem;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .btn { margin-top: 0.5rem; font-size: 0.75rem; }
.nav-close {
  position: fixed; top: 1rem; right: 1rem;
  z-index: 1101;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; line-height: 1;
  cursor: pointer; color: var(--brown-warm);
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  -webkit-tap-highlight-color: transparent;
}
.nav-close:hover { color: var(--gold-dark); border-color: var(--gold); }

/* ===========================
   HERO SLIDER
   =========================== */
.hero {
  position: relative; width: 100%; height: 100vh;
  min-height: 600px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.slider {
  position: absolute; inset: 0;
  display: flex;
}
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; }
.slide-bg {
  width: 100%; height: 100%;
  object-fit: cover;
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(46,26,14,0.78) 0%, rgba(92,61,46,0.45) 55%, rgba(46,26,14,0.25) 100%);
}

.hero-watermark {
  position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
  font-family: var(--ff-display); font-size: clamp(14rem, 28vw, 22rem);
  font-weight: 600; color: rgba(247, 231, 206, 0.06);
  line-height: 1; pointer-events: none; z-index: 5;
  user-select: none;
}

.hero-scroll {
  position: absolute; bottom: 5.5rem; left: 50%; transform: translateX(-50%);
  z-index: 12; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(247, 231, 206, 0.45);
  color: var(--champagne);
  display: flex; align-items: center; justify-content: center;
  background: rgba(46, 26, 14, 0.25);
  transition: var(--transition);
  animation: bounceScroll 2.2s ease-in-out infinite;
}
.hero-scroll:hover {
  background: rgba(201, 168, 76, 0.25);
  border-color: var(--champagne-deep);
}
@keyframes bounceScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.hero-content {
  position: relative; z-index: 10;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 2rem;
  animation: fadeUp 1.2s ease forwards;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  margin-bottom: 1.2rem;
  opacity: 0.9;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-title em { color: var(--champagne-deep); font-style: italic; }
.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.88;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* Slider controls */
.slider-dots {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.6rem; z-index: 10;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(247,231,206,0.4);
  cursor: pointer; transition: var(--transition);
  border: none;
}
.dot.active { background: var(--champagne-deep); width: 28px; border-radius: 4px; }

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(247,231,206,0.15);
  border: 1px solid rgba(247,231,206,0.3);
  color: var(--champagne);
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); font-size: 1.2rem;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: rgba(201,168,76,0.3); }
.slider-arrow.prev { left: 2rem; }
.slider-arrow.next { right: 2rem; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--brown-dark);
}
.btn-primary:hover { background: var(--champagne-deep); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--champagne);
  border: 1px solid rgba(247,231,206,0.6);
}
.btn-outline:hover { background: rgba(247,231,206,0.12); border-color: var(--champagne); }
.btn-dark {
  background: var(--brown-warm);
  color: var(--champagne);
}
.btn-dark:hover { background: var(--brown-dark); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-gold-outline:hover { background: var(--gold); color: var(--brown-dark); }

/* ===========================
   SECTIONS
   =========================== */
section { padding: 7rem 0; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--brown-warm);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-rule {
  width: 60px; height: 1px; background: var(--gold);
  margin-bottom: 1.5rem;
}
.section-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 520px;
}

/* ===========================
   TRUST BAR
   =========================== */
.trust-bar {
  background: var(--champagne);
  padding: 1.4rem 0;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.trust-items {
  display: flex; align-items: center; justify-content: center;
  gap: 3.5rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--brown-warm); text-transform: uppercase;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ===========================
   MEDIA CARDS (image on top)
   =========================== */
.services-section { background: var(--champagne-light); }
.services-grid,
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 4rem;
}
.media-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(201,168,76,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.media-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}
.media-card-img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  display: block;
}
.media-card-body {
  padding: 1.35rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.media-card h3 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--brown-warm);
  margin-bottom: 0.55rem;
}
.media-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1rem;
  flex: 1;
}
.media-card .media-card-price {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  color: var(--gold-dark);
  margin-bottom: 0.35rem;
}
.media-card--featured {
  border-color: var(--gold);
  box-shadow: 0 6px 28px rgba(201,168,76,0.2);
}
/* Home services: 3 per row */
.cards-grid--home {
  grid-template-columns: repeat(3, 1fr);
}

.services-cta-block {
  margin-top: 3rem;
  padding: 2.25rem 2.5rem;
  background: linear-gradient(135deg, var(--brown-warm) 0%, var(--brown-dark) 100%);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}
.services-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.services-cta-block h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--champagne);
  margin-bottom: 0.5rem;
}
.services-cta-block p {
  font-size: 0.95rem;
  color: rgba(247, 231, 206, 0.78);
  max-width: 520px;
  line-height: 1.75;
  margin: 0;
}
.services-cta-block .btn { flex-shrink: 0; }

.service-link {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap var(--transition);
  margin-top: auto;
}
.service-link:hover { gap: 0.8rem; }

/* ===========================
   POLICY PAGES
   =========================== */
.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 320px) 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
.policy-card .media-card-img { height: 120px; }
.policy-content {
  max-width: 720px;
}
.policy-content h2 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--brown-warm);
  margin: 2rem 0 0.75rem;
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p,
.policy-content li {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
}
.policy-content ul {
  list-style: none;
  margin: 0.75rem 0 1.25rem;
  padding: 0;
}
.policy-content li {
  padding: 0.35rem 0 0.35rem 1.2rem;
  position: relative;
}
.policy-content li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
  top: 0.55rem;
}
.policy-updated {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* ===========================
   SPLIT SECTION (Image + Text)
   =========================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0; min-height: 580px;
}
.split-image {
  position: relative; overflow: hidden; min-height: 400px;
}
.split-image img,
.split-image .img-placeholder {
  width: 100%; height: 100%; object-fit: cover;
}
.img-placeholder {
  background: linear-gradient(135deg, var(--champagne) 0%, var(--gold) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--ff-display);
  font-size: 1.2rem; letter-spacing: 0.1em; text-align: center;
  padding: 2rem; flex-direction: column; gap: 0.5rem;
}
.img-placeholder .img-icon { font-size: 3rem; opacity: 0.6; }
.split-content {
  background: var(--cream);
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.split.reverse .split-image { order: 2; }
.split.reverse .split-content { order: 1; }

/* ===========================
   WHY CHOOSE US
   =========================== */
.why-section { background: var(--brown-dark); }
.why-section .section-title { color: var(--champagne); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 4rem;
}
.why-item {
  padding: 2rem;
  border: 1px solid rgba(247,231,206,0.12);
  transition: var(--transition);
}
.why-item:hover { border-color: rgba(201,168,76,0.4); background: rgba(247,231,206,0.04); }
.why-num {
  font-family: var(--ff-display);
  font-size: 3rem; font-weight: 300;
  color: var(--gold); opacity: 0.5;
  line-height: 1; margin-bottom: 1rem;
}
.why-item h4 {
  font-family: var(--ff-display);
  font-size: 1.3rem; font-weight: 500;
  color: var(--champagne);
  margin-bottom: 0.6rem;
}
.why-item p { font-size: 0.88rem; color: rgba(247,231,206,0.65); line-height: 1.8; }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-section { background: var(--champagne-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}
.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1.2rem; letter-spacing: 0.1em; }
.testimonial-text {
  font-family: var(--ff-display);
  font-size: 1.15rem; font-weight: 400; font-style: italic;
  color: var(--text-dark);
  line-height: 1.7; margin-bottom: 1.5rem;
}
.testimonial-author {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-light);
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: linear-gradient(135deg, var(--brown-warm) 0%, var(--brown-dark) 100%);
  text-align: center; padding: 7rem 2rem;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: 'P';
  position: absolute; top: -20px; right: 5%;
  font-family: var(--ff-display); font-size: 20rem; font-weight: 700;
  color: rgba(247,231,206,0.04); line-height: 1; pointer-events: none;
}
.cta-banner .section-title { color: var(--champagne); max-width: 600px; margin: 0 auto 1.5rem; }
.cta-banner .section-body { color: rgba(247,231,206,0.7); margin: 0 auto 2.5rem; }
.cta-banner .section-rule { margin: 0 auto 1.5rem; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--brown-dark);
  color: rgba(247,231,206,0.7);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand .nav-logo-img { height: 56px; max-width: 260px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 240px; }
.footer-col h5 {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--champagne-deep); margin-bottom: 1.2rem;
}
.footer-col a {
  display: block; font-size: 0.88rem;
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--champagne); }
.footer-bottom {
  border-top: 1px solid rgba(247,231,206,0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
}
.footer-bottom-main {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.footer-slogan {
  font-family: var(--ff-display);
  font-style: italic; color: var(--champagne-deep);
}
.footer-credit {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(247, 231, 206, 0.55);
}
.footer-credit a {
  color: var(--champagne-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.footer-credit a:hover { color: var(--champagne); }

.map-section { padding: 0; background: var(--champagne-light); line-height: 0; }
.map-embed {
  width: 100%;
  height: clamp(260px, 40vw, 380px);
  border: 0;
  display: block;
}

.wa-float {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 500;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  text-decoration: none; transition: transform 0.2s ease;
}
.wa-float svg {
  width: 28px;
  height: 28px;
  display: block;
}
.wa-float:hover { transform: scale(1.08); }

.split--flush { margin: 0 !important; }
.split--section { min-height: 480px; }
.split--section .split-image { min-height: 360px; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
  margin-top: 4rem;
}
.contact-info-card {
  background: var(--brown-warm);
  padding: 3rem 2.5rem;
  color: var(--champagne);
}
.contact-info-card h3 {
  font-family: var(--ff-display);
  font-size: 1.8rem; font-weight: 300;
  margin-bottom: 0.5rem; color: var(--champagne);
}
.contact-info-card p { font-size: 0.9rem; color: rgba(247,231,206,0.7); margin-bottom: 2rem; }
.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.6rem;
}
.contact-detail-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(247,231,206,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-detail-text strong {
  display: block; font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--champagne-deep);
  margin-bottom: 0.2rem;
}
.contact-detail-text span { font-size: 0.92rem; color: rgba(247,231,206,0.8); }
.contact-divider { height: 1px; background: rgba(247,231,206,0.12); margin: 2rem 0; }
.social-links { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(247,231,206,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--champagne-deep); font-size: 1rem;
  transition: var(--transition); text-decoration: none;
}
.social-link:hover { background: rgba(247,231,206,0.1); border-color: var(--champagne-deep); }
.success-msg {
  display: none;
  background: rgba(143,171,106,0.15);
  border: 1px solid rgba(143,171,106,0.4);
  padding: 1.2rem 1.5rem;
  color: #4A6741;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}
.service-banner-img {
  width: 100%;
  height: clamp(200px, 35vw, 320px);
  object-fit: cover;
  margin-bottom: 3rem;
  display: block;
}

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  background: linear-gradient(135deg, var(--brown-warm) 0%, var(--brown-dark) 100%);
  padding: 10rem 2rem 6rem;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: attr(data-letter);
  position: absolute; top: -10%; right: 3%;
  font-family: var(--ff-display); font-size: 18rem;
  font-weight: 700; color: rgba(247,231,206,0.05);
  line-height: 1; pointer-events: none;
}
.page-hero .section-eyebrow { color: var(--champagne-deep); }
.page-hero .section-title { color: var(--champagne); margin: 0 auto 1rem; max-width: 600px; }
.page-hero .section-body { color: rgba(247,231,206,0.7); margin: 0 auto; }
.page-hero .section-rule { margin: 0 auto 1rem; }

/* ===========================
   IMAGE GALLERY GRID
   =========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 1rem;
  margin-top: 4rem;
}
.gallery-item {
  overflow: hidden; position: relative;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img,
.gallery-item .img-placeholder { width: 100%; height: 100%; object-fit: cover; }
.gallery-item .img-placeholder {
  background: linear-gradient(135deg, var(--champagne) 0%, var(--gold) 70%, var(--brown-warm) 100%);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(46,26,14,0);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(46,26,14,0.45); }

/* ===========================
   FORM
   =========================== */
.form-section { background: var(--cream); }
.form-wrap {
  max-width: 700px; margin: 4rem auto 0;
  background: var(--white);
  padding: 3.5rem;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.4rem; display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(201,168,76,0.3);
  background: var(--champagne-light);
  font-family: var(--ff-body); font-size: 0.95rem; font-weight: 300;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 120px; }

/* ===========================
   TEAM / STAFF CARDS
   =========================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; margin-top: 4rem;
}
.team-card { text-align: center; }
.team-photo {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--champagne) 0%, var(--gold) 100%);
  margin-bottom: 1.2rem; overflow: hidden; position: relative;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo .img-placeholder { height: 100%; justify-content: flex-end; padding-bottom: 2rem; }
.team-name {
  font-family: var(--ff-display); font-size: 1.2rem;
  color: var(--brown-warm); margin-bottom: 0.2rem;
}
.team-role { font-size: 0.78rem; color: var(--text-light); letter-spacing: 0.1em; text-transform: uppercase; }

/* ===========================
   PROCESS STEPS
   =========================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0; margin-top: 5rem; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 28px; left: 10%; right: 10%;
  height: 1px; background: rgba(201,168,76,0.3);
  z-index: 0;
}
.step { text-align: center; position: relative; padding: 0 1.5rem; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--champagne); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--ff-display); font-size: 1.5rem;
  color: var(--gold-dark); font-weight: 500;
  position: relative; z-index: 1;
}
.step h4 {
  font-family: var(--ff-display); font-size: 1.1rem;
  color: var(--brown-warm); margin-bottom: 0.6rem;
}
.step p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* ===========================
   FADE IN ANIMATION
   =========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ===========================
   BREADCRUMB
   =========================== */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.78rem; color: var(--text-light); letter-spacing: 0.05em;
}
.breadcrumb a { color: var(--gold-dark); }
.breadcrumb span { margin: 0 0.5rem; }

/* ===========================
   ACCORDION (FAQ)
   =========================== */
.accordion { margin-top: 3rem; max-width: 720px; }
.acc-item {
  border-bottom: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
}
.acc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 0; cursor: pointer;
  font-family: var(--ff-display); font-size: 1.1rem;
  color: var(--brown-warm); font-weight: 500;
  transition: color var(--transition);
}
.acc-header:hover { color: var(--gold-dark); }
.acc-icon { font-size: 1.4rem; transition: transform var(--transition); color: var(--gold); }
.acc-item.open .acc-icon { transform: rotate(45deg); }
.acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 0.92rem; color: var(--text-mid); line-height: 1.8;
}
.acc-item.open .acc-body { max-height: 400px; padding-bottom: 1.4rem; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .nav {
    --nav-logo-h: 40px;
    --nav-logo-max-w: min(200px, calc(100vw - 5.5rem));
    padding: 1rem 1.25rem;
  }
  .nav.scrolled { padding: 0.75rem 1.25rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .container { padding: 0 1.25rem; }
  .split { grid-template-columns: 1fr; min-height: auto; }
  .split-image { min-height: 280px; }
  .split.reverse .split-image { order: 0; }
  .split.reverse .split-content { order: 0; }
  .split-content { padding: 3rem 1.5rem; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 2rem 1.5rem; margin-top: 2.5rem; }
  .policy-layout { grid-template-columns: 1fr; }
  .page-hero { padding: 8rem 1.25rem 4rem; }
  .page-hero::before { font-size: 12rem; }
  .trust-items { gap: 1.25rem 2rem; }
  .cards-grid--home { grid-template-columns: repeat(2, 1fr); }
  .services-cta-inner { flex-direction: column; align-items: flex-start; }
  .services-cta-block { padding: 1.75rem 1.5rem; }
  .cta-banner { padding: 5rem 1.25rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-info-card { padding: 2rem 1.5rem; }
  .split--section .split-image { min-height: 280px; }
}
@media (max-width: 600px) {
  .nav {
    --nav-logo-h: 34px;
    --nav-logo-max-w: min(168px, calc(100vw - 4.25rem));
    padding: 0.85rem 1rem;
  }
  .nav.scrolled { padding: 0.65rem 1rem; }
  .nav-hamburger { padding: 8px; margin-right: -4px; }
  section { padding: 3.5rem 0; }
  .hero { min-height: 100svh; height: auto; min-height: 520px; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .hero-subtitle { font-size: 0.92rem; margin-bottom: 1.75rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .process-steps { gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.tall { grid-row: span 1; }
  .slider-arrow { display: none; }
  .hero-scroll { bottom: 4.5rem; }
  .slider-dots { bottom: 1.8rem; }
  .hero-watermark { font-size: 8rem; right: -5%; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid--home { grid-template-columns: 1fr; }
  .nav-close { top: 0.75rem; right: 0.75rem; }
}
