/* ============================================
   Braceman P&O — Premium Site Styles
   Inspired by ClarityCare / Framer wellness
   ============================================ */

@font-face {
  font-family: 'Visual Sans';
  src: url('assets/visual-sans.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}

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

:root {
  --orange: #ff7248;
  --orange-hover: #e5623c;
  --orange-light: #fff0eb;
  --orange-glow: rgba(255, 114, 72, 0.12);
  --dark: #1a1a1a;
  --dark-soft: #2a2a2a;
  --cream: #faf7f4;
  --white: #ffffff;
  --gray: #6b6b6b;
  --gray-light: #a0a0a0;
  --border: rgba(0, 0, 0, 0.08);
  --font-serif: 'Visual Sans', 'Work Sans', sans-serif;
  --font-sans: 'Work Sans', system-ui, -apple-system, sans-serif;
  --nav-transition: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-lg: 40px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --radius-pill: 50px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 12px rgba(0,0,0,0.04), 0 12px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 8px 16px rgba(0,0,0,0.04), 0 20px 56px rgba(0,0,0,0.12);
  --container: 1200px;
  --gradient-icon: linear-gradient(135deg, var(--orange-light) 0%, rgba(255, 114, 72, 0.15) 100%);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100dvh;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

/* ---- UTILITIES ---- */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.section {
  padding: 100px 0;
}

.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-sub { color: var(--gray-light); }
.section-dark .section-label {
  background: rgba(255, 114, 72, 0.15);
  color: var(--orange);
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: var(--orange-light);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 560px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: none;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 114, 72, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--dark);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.25s ease;
}

.btn-outline:hover {
  border-color: var(--orange);
  background: var(--orange-light);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.25s ease;
}

.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: box-shadow 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
  box-shadow: var(--shadow-sm);
}

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

/* ---- DECORATORS ---- */

.decorator-dots {
  position: absolute;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, var(--orange) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.15;
  pointer-events: none;
}

.decorator-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.06;
  filter: blur(40px);
  pointer-events: none;
}

/* ---- ANIMATIONS ---- */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.4s; }

/* ---- NAVBAR ---- */

.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 24px 0;
  pointer-events: none;
}

.navbar {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px 12px 32px;
  pointer-events: auto;
  background: rgba(90, 83, 80, 0.8);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  backdrop-filter: blur(24px) saturate(200%);
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    max-width var(--nav-transition),
    padding var(--nav-transition),
    background var(--nav-transition),
    box-shadow var(--nav-transition),
    transform var(--nav-transition);
}

.navbar.scrolled {
  transform: translateY(-8px);
  padding: 10px 24px 10px 28px;
  background: rgba(90, 83, 80, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: height var(--nav-transition);
}

.navbar.scrolled .logo-img {
  height: 32px;
}

.footer .logo-img {
  height: 40px;
  filter: brightness(0) invert(1);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.25s ease;
  white-space: nowrap;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.navbar.scrolled .nav-links {
  gap: 20px;
}

.navbar.scrolled .nav-links a {
  font-size: 0.85rem;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.nav-phone:hover {
  color: var(--white);
}

.nav-phone svg {
  flex-shrink: 0;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.9rem;
  transition: background 0.25s ease, padding var(--nav-transition), font-size var(--nav-transition);
}

.navbar.scrolled .nav-cta {
  padding: 8px 18px;
  font-size: 0.825rem;
}

.navbar.scrolled .nav-phone {
  font-size: 0.82rem;
}

.navbar.scrolled .nav-phone svg {
  width: 13px;
  height: 13px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  pointer-events: auto;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--dark);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.mobile-menu a:hover { opacity: 1; }

.mobile-menu .mobile-cta {
  margin-top: 12px;
  padding: 14px 36px;
  font-size: 1rem;
}

/* ---- HERO ---- */

.hero {
  position: relative;
  padding: 100px 0 0;
  overflow: hidden;
}

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

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.hero-bento {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding: 40px 0 48px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 12px;
  animation: fadeUp 0.7s ease-out 0.1s both;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 22px;
}

.headline-pill {
  display: inline-block;
  background: #554B46;
  color: #ffffff;
  padding: 10px 40px;
  border-radius: 60px;
  line-height: 1.1;
  margin-top: 10px;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-cta {
  gap: 10px;
  padding: 16px 36px;
  font-size: 1rem;
  width: fit-content;
}

.hero-cta .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transition: background 0.25s ease;
}

.hero-cta:hover .arrow { background: rgba(255, 255, 255, 0.35); }

.tagline-group {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.hero-tagline {
  font-size: 0.95rem;
  color: var(--gray);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  animation: fadeUp 0.7s ease-out 0.25s both;
}

.hero-image-wrapper {
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: var(--white);
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
  z-index: 1;
  pointer-events: none;
}

.hero-image-wrapper img, .hero-image-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
  position: relative;
  z-index: 0;
  opacity: 0.8;
}

.hero-image-wrapper:hover img, .hero-image-wrapper:hover video {
  transform: scale(1.03);
}

/* ---- CINEMATIC OVERRIDE ---- */

/* ---- HERO SLIDESHOW ---- */

.hero-slideshow {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream);
}

.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

.hero-slideshow .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slideshow .top-badge {
  top: 20px;
  left: 20px;
  animation: fadeUp 0.6s ease-out 0.3s both;
}

.hero-slideshow .bottom-badge {
  bottom: 60px;
  right: -12px;
  animation: fadeUp 0.6s ease-out 0.5s both;
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
}

.slide-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.dot.active {
  background: var(--white);
  transform: scale(1.25);
}

.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: 40px;
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  white-space: nowrap;
  z-index: 5;
  animation: scaleIn 0.5s ease-out 0.6s both;
  display: inline-flex;
  align-items: center;
}

.top-badge { top: -20px; left: 32px; animation-delay: 0.5s; }
.bottom-badge { bottom: -24px; right: -32px; animation-delay: 0.7s; padding: 24px 32px; box-shadow: 0 20px 48px rgba(0,0,0,0.12); flex-direction: column; align-items: center; }

.hero-badge .badge-icon {
  display: inline-flex;
  color: var(--orange);
  margin-right: 8px;
}

.bottom-badge .stars {
  color: var(--orange);
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

.bottom-badge .stat-number {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--dark);
  line-height: 1.2;
}

.bottom-badge .stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.tag {
  padding: 10px 24px;
  background: #FFF1EA;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  white-space: nowrap;
  transition: transform 0.25s ease;
}

.tag:hover {
  transform: translateY(-2px);
}

/* ---- TRUSTED BRANDS ROW ---- */

.hero-brands {
  grid-column: 1 / -1;
  margin-top: 48px;
  margin-bottom: 24px;
  text-align: center;
}

.brands-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a39c98;
  margin-bottom: 32px;
}

.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 56px;
}

.brand-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: rgba(90, 83, 80, 0.6);
  font-weight: 600;
  transition: color 0.3s ease;
}

.brand-logo:hover {
  color: rgba(90, 83, 80, 0.9);
}

/* ---- CITY FLIPPER ---- */

.city-flipper {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
  height: 1.15em;
  background: linear-gradient(135deg, rgba(45, 35, 30, 0.92), rgba(65, 50, 42, 0.88));
  color: var(--white);
  padding: 0.02em 0.35em;
  border-radius: 0.2em;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.city-flip-inner {
  display: flex;
  flex-direction: column;
  animation: cityFlip 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.city-flip-inner span {
  display: block;
  height: 1.15em;
  line-height: 1.15em;
}

@keyframes cityFlip {
  0%, 28% { transform: translateY(0); }
  33%, 61% { transform: translateY(-1.15em); }
  66%, 94% { transform: translateY(-2.3em); }
  100% { transform: translateY(0); }
}

/* ---- LOGO MARQUEE (inside hero) ---- */

/* ---- LOGO MARQUEE (inside hero) ---- */

.logo-marquee {
  position: relative;
  z-index: 1;
  padding: 20px 0 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.marquee-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-light);
  margin-bottom: 14px;
  text-align: center;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-logos {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 0 32px;
}

.marquee-logos img {
  height: 110px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.marquee-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .marquee-logos { gap: 40px; }
  .marquee-logos img { height: 72px; }
  .city-flipper { padding: 0.02em 0.25em; border-radius: 0.15em; }
}

/* ---- STATS BAR ---- */

.stats-bar {
  padding: 56px 0;
}

.stats-bar-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  box-shadow: var(--shadow-sm);
}

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

.stat-item {
  padding: 12px 24px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 56px;
  background: var(--border);
}

.stat-item .stat-value {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 4vw, 4.5rem);
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.stat-item .stat-desc {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 8px;
  font-weight: 500;
}

/* ---- ABOUT PREVIEW (homepage) ---- */

.about-preview {
  padding: 100px 0;
}

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

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-images img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo);
}

.about-images img:first-child {
  grid-row: 1 / 3;
  height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Overlapping offset images for depth */
.about-images img:nth-child(n+2) {
  position: relative;
  z-index: 2;
  margin-left: -20px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  border-radius: 12px 20px 20px 12px;
}

.about-images::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, var(--orange) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}

.about-images::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.06;
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}

.about-text .section-sub {
  margin-bottom: 28px;
}

/* ---- SERVICES ---- */

.services {
  padding: 100px 0;
}

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

.service-card {
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: box-shadow 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo), border-color 0.4s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-hover));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-light) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card .service-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-icon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 1.4rem;
  transition: transform 0.4s var(--ease-out-expo), background 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.08);
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--gray);
}

.service-card-image {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
  box-shadow: var(--shadow-sm);
}

.service-card-image img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  padding: 24px 32px 8px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  transition: transform 0.5s var(--ease-out-expo);
}

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

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

.service-card-image h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  padding: 20px 28px 6px;
}

.service-card-image p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gray);
  padding: 0 28px 28px;
}

/* ---- PROCESS ---- */

.process {
  padding: 100px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-light), var(--orange-glow), var(--orange-light));
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
  z-index: 1;
}

.process-step .step-num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 4vw, 4.5rem);
  color: var(--orange-light);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  transition: color 0.4s ease;
}

.process-step:hover .step-num {
  color: var(--orange);
}

.process-step::before {
  content: '';
  position: absolute;
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange-light);
  border: 2px solid var(--cream);
  z-index: 2;
  transition: background 0.3s ease, transform 0.3s ease;
}

.process-step:hover::before {
  background: var(--orange);
  transform: translateX(-50%) scale(1.3);
}

.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.process-step p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gray);
}

/* ---- TESTIMONIALS ---- */

.testimonials {
  padding: 100px 0;
}

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

.testimonial-card {
  padding: 36px 32px;
  border-left: 3px solid var(--orange);
  position: relative;
}

.testimonial-card:nth-child(even) {
  background: linear-gradient(135deg, var(--white), var(--orange-light));
}

.testimonial-card .quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.2;
  position: absolute;
  top: 16px;
  left: 24px;
  pointer-events: none;
}

.testimonial-card .stars-row {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 0.9rem;
}

.testimonial-card .quote {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card .reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--orange);
  flex-shrink: 0;
}

.reviewer-info .reviewer-name {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.reviewer-info .reviewer-title {
  font-size: 0.82rem;
  color: var(--gray-light);
  font-weight: 400;
}

.reviewer-info .reviewer-stars {
  color: var(--orange);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

/* ---- TEAM ---- */

.team {
  padding: 100px 0;
}

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

.team-header .section-sub {
  max-width: 480px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: end;
}

/* --- Team member card --- */

.team-member {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-member.featured {
  border-color: var(--orange-light);
}

/* Photo container */
.member-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #f5f0ec 0%, var(--orange-light) 100%);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s var(--ease-out-expo);
}

.team-member:hover .member-image img {
  transform: scale(1.03);
}

/* Overlay hidden — keeping it clean */
.member-overlay { display: none; }

/* Details below the image */
.member-details {
  padding: 24px 28px 28px;
  border-top: 3px solid var(--orange);
}

.member-details h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.member-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 10px;
}

.member-bio {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gray);
}

.team-card .team-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  font-size: 0.8rem;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.team-card .team-social-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-light);
}

/* ---- CTA BANNER ---- */

.cta-banner {
  padding: 100px 0;
}

.cta-banner-inner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.06;
  pointer-events: none;
}

.cta-banner-inner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.04;
  pointer-events: none;
}

.cta-banner-inner > * {
  position: relative;
  z-index: 1;
}

.cta-banner-inner .section-title {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 10px;
}

.cta-banner-inner .section-sub {
  color: var(--gray-light);
}

.cta-banner-ctas {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.cta-banner .btn-primary {
  padding: 18px 40px;
  font-size: 1.02rem;
  flex-shrink: 0;
}

/* ---- CONSULTATION FORM ---- */

.consultation {
  padding: 100px 0;
}

.consultation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.consult-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

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

.consult-form .btn-primary {
  padding: 16px 36px;
  font-size: 0.98rem;
  width: fit-content;
  margin-top: 8px;
}

/* ---- LOCATIONS ---- */

.locations {
  padding: 100px 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.location-card {
  padding: 0;
  overflow: hidden;
}

.location-card-header {
  height: 6px;
  background: linear-gradient(90deg, var(--orange), var(--orange-hover));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.location-card-body {
  padding: 36px 32px;
}

.location-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.location-card .loc-detail {
  display: flex;
  align-items: start;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.55;
}

.location-card .loc-icon {
  flex-shrink: 0;
  width: 20px;
  color: var(--orange);
  margin-top: 2px;
}

.location-card .loc-directions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  transition: gap 0.25s ease;
}

.location-card .loc-directions:hover {
  gap: 10px;
}

/* ---- BRANDS ---- */

.brands {
  padding: 56px 0 100px;
}

.brands-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  text-align: center;
  margin-bottom: 28px;
}

.brands-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.brands-list span {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gray-light);
  opacity: 0.65;
  transition: opacity 0.3s ease;
}

.brands-list span:hover {
  opacity: 1;
}

/* ---- PAGE HERO (for inner pages) ---- */

.page-hero {
  padding: 48px 0 0;
}

.page-hero-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 72px 56px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.page-hero-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner > * {
  position: relative;
}

.page-hero-inner .section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

.page-hero-inner .section-sub {
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--orange);
  transition: opacity 0.2s ease;
}

.breadcrumb a:hover {
  opacity: 0.7;
}

.breadcrumb .sep {
  opacity: 0.4;
}

/* ---- ABOUT PAGE ---- */

.about-story {
  padding: 100px 0;
}

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

.about-story-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 18px;
}

.about-story-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-story-images img {
  border-radius: var(--radius-md);
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo);
}

.about-story-images img:first-child {
  grid-row: 1 / 3;
  height: 100%;
  min-height: 320px;
  box-shadow: var(--shadow-lg);
}

.about-story-images img:not(:first-child) {
  height: 160px;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-story-images::before {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, var(--orange) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.12;
  pointer-events: none;
}

.about-values {
  padding: 0 0 100px;
}

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

.value-card {
  text-align: center;
  padding: 48px 28px;
}

.value-card .value-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-icon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--orange);
  font-size: 1.5rem;
  transition: transform 0.4s var(--ease-out-expo);
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(-5deg);
}

.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gray);
}

/* ---- CONTACT PAGE ---- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 100px 0;
}

.contact-info-section h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.contact-detail {
  display: flex;
  align-items: start;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-detail .c-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gradient-icon);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: transform 0.3s ease;
}

.contact-detail:hover .c-icon {
  transform: scale(1.08);
}

.contact-detail .c-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.contact-detail .c-text span {
  font-size: 0.9rem;
  color: var(--gray);
}

.contact-detail .c-text a {
  font-size: 0.9rem;
  color: var(--orange);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-detail .c-text a:hover {
  opacity: 0.75;
}

.contact-form-card {
  padding: 44px 40px;
}

.hours-card {
  margin-top: 28px;
  padding: 28px 32px;
}

.hours-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 14px;
}

.hours-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-link {
  width: 42px;
  height: 42px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--orange);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- BLOG ---- */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.blog-card {
  padding: 0;
  overflow: hidden;
}

.blog-card .blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo);
}

.blog-card:hover .blog-img {
  transform: scale(1.04);
}

.blog-card .blog-img-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.blog-card .blog-body {
  padding: 28px 28px 32px;
}

.blog-card .blog-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 10px;
}

.blog-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.blog-card h3 a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card h3 a:hover {
  color: var(--orange);
}

.blog-card .blog-excerpt {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gray);
  margin-bottom: 18px;
}

.blog-card .blog-meta {
  font-size: 0.8rem;
  color: var(--gray-light);
}

/* ---- NEWSLETTER ---- */

.newsletter {
  padding: 0 0 100px;
}

.newsletter-inner {
  background: linear-gradient(135deg, var(--white) 0%, var(--orange-light) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.newsletter-inner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.06;
  pointer-events: none;
}

.newsletter-inner > * {
  position: relative;
  z-index: 1;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  padding: 15px 24px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  width: 300px;
  background: var(--white);
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.newsletter-form .btn-primary {
  padding: 15px 32px;
  font-size: 0.92rem;
}

/* ---- FAQ SECTION ---- */

.faq-section {
  padding: 100px 0;
}

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
  text-align: left;
  transition: color 0.25s ease;
  gap: 16px;
}

.faq-question:hover {
  color: var(--orange);
}

.faq-item.active .faq-question {
  color: var(--orange);
}

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 300;
  transition: transform 0.35s var(--ease-out-expo), background 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--orange);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.4s var(--ease-out-expo);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gray);
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

/* ---- FOOTER ---- */

.footer {
  background: var(--dark);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 64px 0 32px;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  color: var(--white);
  font-size: 1.6rem;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gray-light);
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-col ul a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--gray-light);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.85rem;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.footer-socials a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 114, 72, 0.1);
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 900px) {
  .container { padding-left: 28px; padding-right: 28px; }
  .navbar { padding: 14px 28px; }
  .navbar.scrolled { max-width: 580px; }
  .nav-links { gap: 20px; }
  .hero-container { padding: 40px 36px 36px; gap: 36px; }
  .hero-headline { font-size: clamp(2rem, 4vw, 2.8rem); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .process-step::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: 56px 40px;
  }
  .cta-banner-inner .section-sub { max-width: 100%; }
  .cta-banner-ctas { justify-content: center; }
  .about-preview-inner { gap: 40px; }
  .about-story-inner { gap: 40px; }
  .consultation-inner { gap: 40px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-inner { flex-direction: column; text-align: center; padding: 48px 36px; }
  .stat-item .stat-value { font-size: clamp(2.2rem, 3.5vw, 3.5rem); }
}

@media (max-width: 768px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .section { padding: 64px 0; }

  .nav-wrapper { padding: 12px 16px 0; }
  .navbar {
    padding: 12px 20px;
    background: rgba(45, 35, 30, 0.92);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-pill);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
  }
  .navbar.scrolled { max-width: 100%; padding: 10px 20px; margin-top: 0; }
  .nav-links, .nav-cta, .nav-phone { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 80px 0 0; }
  .hero-container {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 28px;
  }
  .hero-container::before { width: 300px; height: 300px; }
  .hero-content { padding-top: 0; }
  .hero-headline { font-size: 2.2rem; }
  .hero-sub { font-size: 0.95rem; max-width: 100%; }
  .hero-tagline { margin-top: 28px; }
  .hero-image-wrapper { aspect-ratio: 3 / 4; }
  .hero-bento {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 32px;
    border-radius: 32px;
  }
  .hero-slideshow { aspect-ratio: 3 / 4; }
  .hero-slideshow .bottom-badge { right: 12px; bottom: 20px; }
  .hero-badge { display: none; }
  .stats-card { right: 12px; bottom: 16px; padding: 16px 20px; }
  .stats-card .stat-number { font-size: 1.4rem; }
  .hero-tags { gap: 8px; }
  .tag { padding: 7px 16px; font-size: 0.8rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stats-bar-inner { padding: 36px 28px; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-item .stat-value { font-size: 2.4rem; }

  .about-preview-inner { grid-template-columns: 1fr; }
  .about-images { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-member.featured { transform: none; }
  .team-member.featured:hover { transform: translateY(-6px); }
  .member-image { aspect-ratio: 1 / 1; }
  .consultation-inner { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .about-story-inner { grid-template-columns: 1fr; }
  .about-story-images { display: none; }
  .values-grid { grid-template-columns: 1fr; }

  .page-hero-inner { padding: 48px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { width: 100%; }

  .faq-question { padding: 18px 22px; font-size: 1rem; }
  .faq-answer-inner { padding: 0 22px 20px; }

  .cta-banner-ctas { flex-direction: column; width: 100%; }
  .cta-banner-ctas .btn-primary,
  .cta-banner-ctas .btn-outline-light { width: 100%; justify-content: center; }
}

@media (max-width: 420px) {
  .hero-headline { font-size: 1.85rem; }
  .hero-cta { width: 100%; justify-content: center; }
  .section-title { font-size: 1.75rem; }
  .stat-item .stat-value { font-size: 2rem; }
}

/* iOS safe areas */
@supports (padding: env(safe-area-inset-bottom)) {
  .nav-wrapper {
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
  }
  .container {
    padding-left: max(40px, env(safe-area-inset-left));
    padding-right: max(40px, env(safe-area-inset-right));
  }
  .footer { padding-bottom: max(32px, env(safe-area-inset-bottom)); }

  @media (max-width: 768px) {
    .nav-wrapper {
      padding-left: max(16px, env(safe-area-inset-left));
      padding-right: max(16px, env(safe-area-inset-right));
    }
    .container {
      padding-left: max(16px, env(safe-area-inset-left));
      padding-right: max(16px, env(safe-area-inset-right));
    }
  }
}
/* ---- MARQUEE ---- */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  padding: 40px 0;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  margin: 0 40px;
}
.marquee-inner {
  display: inline-flex;
  gap: 40px;
  padding-left: 40px;
}
.marquee-item {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 40px;
}
.marquee-item span {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- CONTACT STRIP ---- */

.contact-strip {
  padding: 48px 0 0;
}

.contact-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
}

.strip-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.strip-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--gradient-icon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: transform 0.3s ease, background 0.3s ease;
}

.strip-item:hover .strip-icon {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
  color: var(--white);
  transform: scale(1.08);
}

.strip-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.strip-item span {
  font-size: 0.88rem;
  color: var(--gray);
}

/* ---- LOCATION MAP ---- */

.location-map {
  overflow: hidden;
  line-height: 0;
}

.location-map iframe {
  display: block;
  filter: grayscale(40%) contrast(1.05);
  transition: filter 0.4s ease;
}

.location-card:hover .location-map iframe {
  filter: grayscale(0%) contrast(1);
}

/* ---- BLOG FEATURED ---- */

.blog-featured {
  padding: 48px 0 0;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
}

.blog-featured-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.blog-featured-img {
  overflow: hidden;
  position: relative;
  min-height: 360px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.blog-featured-card:hover .blog-featured-img img {
  transform: scale(1.04);
}

.blog-featured-content {
  padding: 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-content .blog-tag {
  display: inline-block;
  width: fit-content;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: var(--orange-light);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.blog-featured-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.blog-featured-content h2 a {
  text-decoration: none;
  transition: color 0.25s ease;
}

.blog-featured-content h2 a:hover {
  color: var(--orange);
}

.blog-featured-content > p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 28px;
}

.blog-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--orange);
  flex-shrink: 0;
}

.blog-author-name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
}

.blog-author-date {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-light);
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--orange);
  text-decoration: none;
  transition: gap 0.25s ease;
}

.blog-read-more:hover {
  gap: 10px;
}

/* ---- BLOG FILTERS ---- */

.blog-filters {
  padding: 36px 0 0;
}

.blog-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.filter-pill {
  padding: 10px 24px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-light);
}

.filter-pill.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* ---- BLOG CARD ENHANCEMENTS ---- */

.blog-img-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.blog-card .blog-tag {
  display: inline-block;
  width: fit-content;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: var(--orange-light);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

.blog-author-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
}

.blog-author-avatar-sm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.65rem;
  color: var(--orange);
  flex-shrink: 0;
}

/* ---- RESPONSIVE ADDITIONS ---- */

@media (max-width: 900px) {
  .contact-strip-inner { grid-template-columns: 1fr; }
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 240px; }
  .blog-featured-content { padding: 32px; }
}

@media (max-width: 768px) {
  .blog-featured-content { padding: 24px; }
  .blog-featured-content h2 { font-size: 1.3rem; }
  .blog-filter-pills { gap: 8px; }
  .filter-pill { padding: 8px 18px; font-size: 0.82rem; }
  .strip-item { padding: 20px 20px; }
  .blog-card-footer { flex-direction: column; align-items: flex-start; gap: 8px; }
}
