/* ============================================================
   POOCH PURRFECT MOBILE PET GROOMING
   Design System — Full 22-Section CSS
   Palette: Deep Navy + Soft Teal + Warm Pink
   Fonts: Baloo 2 (headings) + Barlow (body)
   ============================================================ */

/* 1. CSS VARIABLES & RESET
   ============================================================ */
:root {
  --navy:       #1a2332;
  --navy-light: #243044;
  --teal:       #4ecdc4;
  --teal-dark:  #3ab5ac;
  --teal-light: #b2ece8;
  --pink:       #e8789a;
  --pink-dark:  #d45f83;
  --pink-light: #fae0ea;
  --cream:      #fdf9f7;
  --cream-dark: #f5ede8;
  --white:      #ffffff;
  --text-dark:  #1e2d3d;
  --text-mid:   #4a5568;
  --text-light: #718096;
  --border:     #e8e0dc;
  --shadow-sm:  0 2px 8px rgba(26,35,50,0.08);
  --shadow-md:  0 8px 24px rgba(26,35,50,0.12);
  --shadow-lg:  0 20px 48px rgba(26,35,50,0.16);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-head:  'Baloo 2', sans-serif;
  --font-body:  'Barlow', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* 2. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.text-teal    { color: var(--teal); }
.text-pink    { color: var(--pink); }
.text-navy    { color: var(--navy); }
.text-white   { color: var(--white); }
.text-center  { text-align: center; }
.text-lead    { font-size: 1.2rem; color: var(--text-mid); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.75rem;
}

/* 3. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

section { position: relative; }

.section-pad         { padding: 96px 0; }
.section-pad--sm     { padding: 64px 0; }
.section-pad--lg     { padding: 120px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-start  { display: flex; align-items: center; justify-content: flex-start; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

.bg-cream    { background: var(--cream); }
.bg-white    { background: var(--white); }
.bg-navy     { background: var(--navy); }
.bg-teal-lt  { background: var(--teal-light); }
.bg-pink-lt  { background: var(--pink-light); }
.bg-dark     { background: var(--navy-light); }

/* 4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232,120,154,0.35);
}
.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,120,154,0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(78,205,196,0.35);
}
.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(78,205,196,0.45);
}

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

.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 24px; font-size: 0.875rem; }

.btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* 5. NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

.site-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
}

.site-nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(26,35,50,0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--teal);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  transition: color var(--transition);
}

.nav-logo-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--teal-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav.hero-mode .nav-logo-name { color: var(--white); }
.site-nav.hero-mode .nav-logo-sub  { color: var(--teal-light); }
.site-nav.scrolled .nav-logo-name  { color: var(--navy); }
.site-nav.scrolled .nav-logo-sub   { color: var(--teal-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
  color: var(--white);
}

.site-nav.scrolled .nav-links a { color: var(--text-dark); }
.nav-links a:hover,
.nav-links a.active {
  background: rgba(78,205,196,0.15);
  color: var(--teal-dark) !important;
}

.nav-cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  font-weight: 600;
  box-shadow: 0 3px 12px rgba(232,120,154,0.35);
}
.nav-cta:hover {
  background: var(--pink-dark) !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.site-nav.scrolled .nav-hamburger span { background: var(--navy); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-weight: 500;
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  transition: var(--transition);
}
.nav-mobile a:hover { background: var(--cream-dark); color: var(--teal-dark); }
.nav-mobile .nav-cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  margin-top: 8px;
  text-align: center;
  display: block;
}

/* 6. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,35,50,0.82) 0%,
    rgba(26,35,50,0.55) 50%,
    rgba(78,205,196,0.15) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(78,205,196,0.2);
  border: 1px solid rgba(78,205,196,0.4);
  color: var(--teal-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-badge svg { width: 14px; height: 14px; }

.hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.hero h1 span { color: var(--teal); }

.hero-subtitle {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}

.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  margin-bottom: 40px;
  font-style: italic;
}

.hero-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.hero-area-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* 7. INNER PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
  margin-top: 72px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,35,50,0.8) 0%, rgba(26,35,50,0.5) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.page-hero-content h1 { color: var(--white); margin-bottom: 12px; }
.page-hero-content p  { color: rgba(255,255,255,0.8); font-size: 1.1rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--teal-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb svg { width: 12px; height: 12px; }

/* 8. FEATURE PILLARS
   ============================================================ */
.features {
  background: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.feature-item {
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}

.feature-item:last-child { border-right: none; }

.feature-item:hover {
  background: var(--cream);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal-light), var(--pink-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, var(--teal), var(--pink));
  transform: scale(1.08) rotate(3deg);
}

.feature-icon svg { width: 28px; height: 28px; }
.feature-item:hover .feature-icon svg path,
.feature-item:hover .feature-icon svg circle,
.feature-item:hover .feature-icon svg rect { fill: var(--white); }

.feature-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* 9. OFFERINGS GRID
   ============================================================ */
.offerings { background: var(--cream); }

.offerings-header {
  text-align: center;
  margin-bottom: 56px;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.offering-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.offering-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.offering-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.offering-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.offering-card:hover .offering-img img { transform: scale(1.06); }

.offering-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.offering-body {
  padding: 24px;
}

.offering-body h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.offering-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.offering-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.offering-icon svg { width: 18px; height: 18px; }

/* 10. BRAND STORY / SPLIT SECTION
   ============================================================ */
.brand-story {
  background: var(--white);
}

.brand-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brand-story-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
}

.brand-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-story-img::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--teal);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
}

.brand-story-img::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  background: var(--pink-light);
  border-radius: 50%;
  z-index: -1;
}

.brand-story-text { padding: 20px 0; }

.brand-quote {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  border-left: 4px solid var(--teal);
  padding-left: 24px;
  margin: 24px 0 28px;
}

/* 11. STATS ROW
   ============================================================ */
.stats { background: var(--navy); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 56px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 6px;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-icon {
  width: 44px;
  height: 44px;
  background: rgba(78,205,196,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.stat-icon svg { width: 22px; height: 22px; }

/* 12. SOCIAL CTA / FOOTER CTA
   ============================================================ */
.social-cta {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--navy) 100%);
  text-align: center;
}

.social-cta h2 { color: var(--white); margin-bottom: 12px; }
.social-cta p  { color: rgba(255,255,255,0.75); margin-bottom: 36px; }

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid transparent;
}

.social-link-wa {
  background: #25d366;
  color: var(--white);
}
.social-link-wa:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}

.social-link-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
}
.social-link-ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220,39,67,0.4);
}

.social-link-fb {
  background: #1877f2;
  color: var(--white);
}
.social-link-fb:hover {
  background: #166fe5;
  transform: translateY(-2px);
}

.social-link svg { width: 20px; height: 20px; }

/* 13. PHOTO FEED / MINI GALLERY
   ============================================================ */
.photo-feed { background: var(--cream-dark); }
.photo-feed-header { text-align: center; margin-bottom: 48px; }

.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.feed-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
}

.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feed-item:hover img { transform: scale(1.08); }

.feed-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,35,50,0.4);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feed-item:hover .feed-item-overlay { opacity: 1; }
.feed-item-overlay svg { width: 28px; height: 28px; color: var(--white); }

/* 14. ABOUT PAGE COMPONENTS
   ============================================================ */
.about-intro {
  background: var(--white);
}

.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-stack {
  position: relative;
  height: 480px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 88%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: 52%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.about-img-main img,
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 48px;
  right: 0;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.3;
  z-index: 2;
}

.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.philosophy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.philosophy-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.philosophy-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.philosophy-icon svg { width: 32px; height: 32px; }

.values-list { counter-reset: values; }

.value-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  counter-increment: values;
}

.value-item:last-child { border-bottom: none; }

.value-number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal-light);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}

.value-text h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.1rem; }
.value-text p  { font-size: 0.95rem; }

.timeline { position: relative; }

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--pink));
}

.timeline-item {
  display: flex;
  gap: 32px;
  padding: 0 0 40px 0;
  position: relative;
}

.timeline-dot {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 3px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.timeline-dot svg { width: 22px; height: 22px; }

.timeline-content {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  flex: 1;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.timeline-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.timeline-content h3 { font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.timeline-content p  { font-size: 0.9rem; }

/* 15. SERVICES PAGE
   ============================================================ */
.services-disclaimer {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  margin-bottom: 48px;
}
.services-disclaimer p {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}

.service-cat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.service-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}

.service-tab.active,
.service-tab:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.service-tab svg { width: 16px; height: 16px; }

.service-section {
  margin-bottom: 64px;
  display: none;
}

.service-section.active { display: block; }

.service-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding: 28px 36px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.service-section-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-section-icon svg { width: 32px; height: 32px; }

.service-section-meta h2 { font-size: 1.6rem; color: var(--navy); }
.service-section-meta p  { font-size: 0.9rem; color: var(--text-light); }

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.service-list-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-list-item:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.service-check {
  width: 32px;
  height: 32px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-check svg { width: 16px; height: 16px; }

.service-list-text h4 { color: var(--navy); margin-bottom: 4px; font-size: 1rem; }
.service-list-text p  { font-size: 0.875rem; color: var(--text-light); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.area-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.area-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.area-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.area-icon svg { width: 22px; height: 22px; }
.area-card h3 { font-size: 1rem; color: var(--navy); }
.area-card p  { font-size: 0.82rem; color: var(--text-light); margin-top: 4px; }

/* 16. GALLERY PAGE
   ============================================================ */
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.masonry-grid {
  columns: 3;
  column-gap: 20px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.masonry-item:hover img { transform: scale(1.04); }

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,35,50,0.5);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay svg { width: 32px; height: 32px; color: var(--white); }
.masonry-overlay span {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.masonry-item[data-category] { transition: opacity 0.3s, transform 0.3s; }
.masonry-item.hidden { opacity: 0; transform: scale(0.95); pointer-events: none; display: none; }

/* 17. LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,15,24,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open { display: flex; }

.lightbox-img-wrap {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 85vh;
}

.lightbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
  max-height: 80vh;
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-close svg { width: 18px; height: 18px; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav svg  { width: 22px; height: 22px; }
.lightbox-prev     { left: -64px; }
.lightbox-next     { right: -64px; }

/* 18. CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: flex-start;
}

.contact-info-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--teal-light), var(--pink-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }

.contact-info-text strong { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); display: block; margin-bottom: 4px; }
.contact-info-text span,
.contact-info-text a { font-size: 1rem; font-weight: 600; color: var(--navy); }
.contact-info-text a:hover { color: var(--teal-dark); }

.contact-map-placeholder {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--pink-light) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  border: 2px dashed var(--teal);
  margin-bottom: 24px;
}

.contact-map-placeholder h3 { color: var(--navy); margin-bottom: 12px; }
.contact-map-placeholder p  { font-size: 0.9rem; }

.areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.area-tag {
  background: var(--white);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid var(--teal);
}

/* 19. CONTACT FORM
   ============================================================ */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.contact-form h2 { font-size: 1.6rem; color: var(--navy); margin-bottom: 8px; }
.contact-form > p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 32px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group label .req { color: var(--pink); margin-left: 3px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(78,205,196,0.15);
}

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

.form-group select { appearance: none; cursor: pointer; }

.form-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 12px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: var(--teal-light);
  border-radius: var(--radius-md);
  margin-top: 24px;
}
.form-success.show { display: block; }
.form-success svg { width: 48px; height: 48px; margin: 0 auto 16px; }
.form-success h3  { color: var(--navy); margin-bottom: 8px; }
.form-success p   { font-size: 0.9rem; }

/* 20. FAQ SECTION
   ============================================================ */
.faq { background: var(--cream); }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open { border-color: var(--teal); box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  background: none;
  font-family: var(--font-body);
}

.faq-question span {
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--navy);
  flex: 1;
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-icon svg { width: 16px; height: 16px; transition: transform var(--transition); }
.faq-item.open .faq-icon { background: var(--teal); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-item.open .faq-icon svg path { stroke: var(--white); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 0.93rem; color: var(--text-mid); }

/* 21. FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--teal);
}

.footer-brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
}

.footer-brand-sub {
  font-size: 0.7rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-about p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social-icon:hover { background: var(--teal); }
.footer-social-icon svg { width: 18px; height: 18px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--teal); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.footer-contact-item svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span,
.footer-contact-item a { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.footer-contact-item a:hover { color: var(--teal); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a { color: var(--teal); }

.footer-tagline {
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
}
.footer-tagline span { color: var(--pink); }

/* 22. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-item:nth-child(3) { border-right: none; }
  .feature-item:nth-child(4) { border-top: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.08); }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .grid-2, .brand-story-inner, .about-intro-inner,
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }

  .offerings-grid { grid-template-columns: 1fr 1fr; }
  .philosophy-cards { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .masonry-grid { columns: 2; }
  .form-row { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }

  .brand-story-inner > *:first-child { display: none; }

  .about-img-stack { height: 360px; }
  .brand-story-img { height: 320px; display: block; }

  .service-list { grid-template-columns: 1fr; }

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

@media (max-width: 600px) {
  .section-pad   { padding: 64px 0; }
  .section-pad--lg { padding: 80px 0; }

  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .feature-item:nth-child(4) { border-right: none; }
  .feature-item:nth-child(5) { border-top: 1px solid var(--border); grid-column: 1 / -1; }

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

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 36px 20px; }

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

  .hero-content { padding: 100px 20px 72px; }
  .page-hero { height: 280px; }

  .lightbox-prev { left: -4px; }
  .lightbox-next { right: -4px; }

  .social-links { flex-direction: column; align-items: center; }

  .contact-form { padding: 24px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Scroll-triggered animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 500;
  opacity: 0;
  transform: translateY(12px);
  transition: var(--transition);
  pointer-events: none;
}
.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top:hover { background: var(--teal-dark); transform: translateY(-2px); }

/* Progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--pink));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}
