:root {
  --teal-dark:   #1a3540;
  --teal-mid:    #2c5364;
  --teal-light:  #3d7a8a;
  --sand:        #b5a898;
  --sand-light:  #d6cec6;
  --cream:       #f7f4f0;
  --cream-dark:  #ede8e2;
  --white:       #ffffff;
  --footer-bg:   #0f2028;
}

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

html { scroll-behavior: smooth; }

#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  display: block;
}

html, body {
  font-family: 'Inter', Helvetica, sans-serif;
  color: var(--teal-dark);
  background: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 88px;
  background: rgba(247, 244, 240, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(181, 168, 152, 0.2);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  z-index: 500;
  box-shadow: 0 4px 32px rgba(26, 53, 64, 0.06);
  transition: background 0.6s ease, border-color 0.6s ease, box-shadow 0.6s ease;
  gap: 2rem;
}

.nav-logo {
  display: none;
}

.nav-home {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  position: relative;
}

.nav-home-label {
  white-space: nowrap;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-home-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 1;
  transition: opacity 0.6s ease;
}

nav.nav-hero .nav-home-img {
  opacity: 0;
}

.nav-logo img {
  height: 72px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--teal-dark);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
  position: relative;
  transition: opacity 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 1px;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { transform: scaleX(1); }

nav.nav-hero {
  background: rgba(0,0,0,0);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: rgba(255,255,255,0.1);
  box-shadow: none;
}

nav.nav-hero .nav-links a { color: rgba(255,255,255,0.75); }
nav.nav-hero .nav-links a:hover { color: #fff; opacity: 1; }
nav.nav-hero .nav-links a::after { background: rgba(255,255,255,0.5); }
nav.nav-hero .nav-cta { background: rgba(255,255,255,0.15); color: #fff; box-shadow: none; border: 1px solid rgba(255,255,255,0.35); }
nav.nav-hero .nav-cta:hover { background: rgba(255,255,255,0.25); }
nav.nav-hero .nav-logo img { filter: brightness(0) invert(1); }

.nav-cta {
  background: var(--teal-dark);
  color: var(--cream);
  border: none;
  border-radius: 2px;
  padding: 0.625rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 2px 12px rgba(26, 53, 64, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, opacity 0.3s ease;
}

.nav-cta.cta-visible {
  opacity: 1;
  pointer-events: auto;
}

.nav-cta:hover {
  background: var(--teal-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(26, 53, 64, 0.35);
}

.nav-cta:active { transform: translateY(0); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--teal-dark);
  color: var(--cream);
  border: none;
  border-radius: 2px;
  padding: 0.625rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 2px 12px rgba(26, 53, 64, 0.18);
  transition: background 0.2s ease, transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
}

.btn-primary:hover {
  background: var(--teal-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(26, 53, 64, 0.28);
}

.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible { outline: 2px solid var(--teal-light); outline-offset: 3px; }

.btn-primary.light {
  background: rgba(255,255,255,0.12);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: none;
}

.btn-primary.light:hover {
  background: rgba(255,255,255,0.2);
  box-shadow: none;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247, 244, 240, 0.55);
  border-radius: 2px;
  padding: 0.625rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline:hover {
  background: rgba(247, 244, 240, 0.12);
  border-color: rgba(247, 244, 240, 0.8);
  transform: translateY(-1px);
}

.btn-outline:active { transform: translateY(0); }

.btn-outline.dark {
  color: var(--teal-dark);
  border-color: rgba(26, 53, 64, 0.35);
}

.btn-outline.dark:hover {
  background: var(--teal-dark);
  color: var(--cream);
  border-color: var(--teal-dark);
}

/* ── SECTION LABELS ── */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.25rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--sand);
  flex-shrink: 0;
}

/* ── HERO NEW (full-bleed cinematic) ── */
.hero-new {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(22%);
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(237, 232, 226, 0.42) 0%,
    rgba(44, 83, 100, 0.35)   45%,
    rgba(26, 53, 64, 0.88)    100%
  );
  z-index: 1;
}

.hero-logo-wrap {
  position: absolute;
  top: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-logo-wrap img {
  height: 140px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
}

.hero-scroll-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.9) 60%, transparent 100%);
  animation: scroll-travel 1.9s cubic-bezier(0.4,0,0.6,1) infinite;
}

@keyframes scroll-travel {
  0%   { top: -50%; }
  100% { top: 150%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-line::after { animation: none; opacity: 0.5; top: 25%; }
}

.hero-content {
  position: absolute;
  bottom: 3.5rem;
  left: 0;
  right: 0;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
  gap: 2rem;
}

.hero-display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin: 0;
  max-width: 50%;
}

.hero-display .hero-accent {
  font-style: italic;
  color: var(--sand-light);
  display: inline-block;
  position: relative;
}

.hero-display .hero-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.08em;
  width: 100%;
  height: 2px;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: left;
  animation: accent-underline 1.4s ease-out 0.6s forwards;
}

@keyframes accent-underline { to { transform: scaleX(1); } }

@media (prefers-reduced-motion: reduce) {
  .hero-display .hero-accent::after { animation: none; transform: scaleX(1); }
}

.hero-ctas {
  display: flex;
  flex-direction: row;
  gap: 0.875rem;
  align-items: center;
  flex-shrink: 0;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream);
  color: var(--teal-dark);
  text-decoration: none;
  border: none;
  border-radius: 2px;
  padding: 0.95rem 1.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.btn-hero-primary:hover {
  background: var(--sand-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

.btn-hero-primary:active { transform: translateY(0); }

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--cream);
  text-decoration: none;
  border-radius: 2px;
  border: 1.5px solid rgba(247, 244, 240, 0.45);
  padding: 0.875rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}

.btn-hero-ghost:hover {
  background: rgba(247, 244, 240, 0.12);
  border-color: var(--cream);
  transform: translateY(-1px);
}

.btn-hero-ghost:active { transform: translateY(0); }

/* ── SCROLL ANIMATION ── */
.anim-el {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-el.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-el[data-delay="1"] { transition-delay: 0.09s; }
.anim-el[data-delay="2"] { transition-delay: 0.18s; }
.anim-el[data-delay="3"] { transition-delay: 0.27s; }
.anim-el[data-delay="4"] { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .anim-el { opacity: 1; transform: none; transition: none; }
  .hero-display .hero-accent::after { animation: none; }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: rgba(237,232,226,0.82);
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(26, 53, 64, 0.1);
  border-bottom: 1px solid rgba(26, 53, 64, 0.1);
  position: relative;
  z-index: 1;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 53, 64, 0.65);
  white-space: nowrap;
}

.trust-sep {
  width: 4px;
  height: 4px;
  background: rgba(26, 53, 64, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── SERVICES SECTION ── */
.services-section {
  background: rgba(247,244,240,0.38);
  padding: 7rem 2rem;
  position: relative;
  z-index: 1;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 3rem;
}

.section-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.section-desc {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(26, 53, 64, 0.68);
}

.cards-slider-wrap {
  position: relative;
}

.cards-grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.cards-grid::-webkit-scrollbar { display: none; }

.carousel-dots { display: none; }

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: none;
  background: var(--teal-dark);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease, background 0.2s ease;
}

.slider-btn:hover { background: var(--teal-mid); }
.slider-btn.slider-hidden { opacity: 0; pointer-events: none; }
.slider-btn-prev { left: -1.375rem; }
.slider-btn-next { right: -1.375rem; }

.service-card {
  flex: 0 0 calc(25% - 1.125rem);
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  cursor: pointer;
  box-shadow:
    0 2px 8px rgba(26, 53, 64, 0.08),
    0 1px 2px rgba(26, 53, 64, 0.05);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 40px rgba(26, 53, 64, 0.12),
    0 4px 8px rgba(26, 53, 64, 0.07);
}

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

.service-card:focus-visible {
  outline: 2px solid var(--teal-light);
  outline-offset: 3px;
}

.service-card:active { transform: translateY(-1px); }

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,53,64,0.78) 0%, rgba(26,53,64,0.15) 55%, transparent 75%);
}

.service-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  color: var(--cream);
}

.service-card-tag {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-light);
  margin-bottom: 0.375rem;
}

.service-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* ── FEATURE SECTION ── */
.feature-section {
  background: rgba(237,232,226,0.42);
  padding: 7rem 2rem;
  position: relative;
  z-index: 1;
}

.feature-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.feature-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.14;
  margin-bottom: 1.375rem;
}

.feature-desc {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(26, 53, 64, 0.68);
  margin-bottom: 2rem;
}

.feature-image {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  box-shadow:
    0 8px 40px rgba(26, 53, 64, 0.14),
    0 2px 8px rgba(26, 53, 64, 0.07);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(12%);
}

.feature-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,53,64,0.2) 0%, transparent 55%);
}

/* ── DARK FEATURE SECTION ── */
.dark-section {
  background: rgba(26,53,64,0.92);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.dark-section::before {
  content: '';
  position: absolute;
  top: -15%;
  left: -5%;
  width: 55%;
  height: 130%;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(44, 83, 100, 0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 25%, rgba(61, 122, 138, 0.25) 0%, transparent 50%);
  pointer-events: none;
}

.dark-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.dark-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dark-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--sand);
  flex-shrink: 0;
}

.dark-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--cream);
}

.dark-headline em {
  font-style: italic;
  color: var(--sand-light);
}

.dark-desc {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cream);
  opacity: 0.65;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.dark-image {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  box-shadow:
    0 8px 48px rgba(0, 0, 0, 0.35),
    0 2px 8px rgba(0, 0, 0, 0.2);
}

.dark-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%);
}

.dark-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,53,64,0.45) 0%, transparent 60%);
}


/* ── GOOGLE REVIEWS SECTION ── */
.google-reviews-section {
  background: rgba(247,244,240,0.38);
  padding: 7rem 2rem;
  position: relative;
  z-index: 1;
}

.google-reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.google-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.google-reviews-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 26rem;
}

.google-rating-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid rgba(26, 53, 64, 0.1);
  border-radius: 2px;
  padding: 1.25rem 1.75rem;
  box-shadow: 0 2px 12px rgba(26, 53, 64, 0.07);
  flex-shrink: 0;
}

.google-rating-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.google-rating-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--teal-dark);
}

.google-stars-row {
  display: flex;
  gap: 1px;
  line-height: 1;
}

.star { color: #FBBC04; font-size: 1.0625rem; }

.google-rating-count {
  font-size: 0.6875rem;
  font-weight: 400;
  color: rgba(26, 53, 64, 0.55);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.google-rating-divider {
  width: 1px;
  height: 2.75rem;
  background: rgba(26, 53, 64, 0.15);
  flex-shrink: 0;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--teal-dark);
  border: 1.5px solid rgba(26, 53, 64, 0.25);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  min-height: 44px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn-google:hover {
  background: var(--teal-dark);
  color: var(--cream);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
}

.btn-google:focus-visible { outline: 2px solid var(--teal-light); outline-offset: 3px; }

.google-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.google-review-card {
  background: var(--white);
  border: 1px solid rgba(26, 53, 64, 0.08);
  border-radius: 2px;
  padding: 1.75rem;
  width: calc(33.333% - 1rem);
  min-width: 260px;
  box-shadow: 0 2px 12px rgba(26, 53, 64, 0.06);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.google-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(26, 53, 64, 0.12);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-card-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--teal-dark);
  line-height: 1.2;
}

.review-date {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(26, 53, 64, 0.5);
  margin-top: 0.1rem;
}

.review-text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(26, 53, 64, 0.75);
  flex: 1;
}

.reviews-widget-placeholder {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(26, 53, 64, 0.18);
  border-radius: 12px;
  margin-top: 2.5rem;
  padding: 2rem;
  text-align: center;
}

.reviews-placeholder-text {
  font-size: 1.0625rem;
  color: rgba(26, 53, 64, 0.42);
  font-style: italic;
  line-height: 1.9;
}

.reviews-google-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(26, 53, 64, 0.45);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.reviews-google-link:hover { color: var(--teal-dark); }

/* ── CTA SECTION ── */
.cta-section {
  background: rgba(44,83,100,0.90);
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(181, 168, 152, 0.25) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  max-width: 40rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 1.375rem;
  color: var(--cream);
}

.cta-desc {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(247,244,240,0.65);
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn-outline { color: var(--cream); border-color: rgba(247,244,240,0.35); }
.cta-actions .btn-outline:hover { background: var(--teal-dark); color: var(--cream); border-color: var(--teal-dark); }

/* ── FOOTER ── */
footer {
  background: var(--footer-bg);
  color: var(--cream);
  padding: 5rem 2rem 2.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(181, 168, 152, 0.15);
}

.footer-brand img {
  height: 110px;
  filter: brightness(0) invert(1);
  margin-bottom: 1.25rem;
  object-fit: contain;
  display: block;
}

.footer-tagline {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--cream);
  opacity: 0.5;
  max-width: 20rem;
}

.footer-col-title {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0.7;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.footer-links a:hover { opacity: 1; }
.footer-links a:focus-visible { outline: 1px solid rgba(181,168,152,0.5); outline-offset: 2px; border-radius: 1px; }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--cream);
  opacity: 0.3;
  letter-spacing: 0.03em;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.75rem;
  color: var(--cream);
  opacity: 0.3;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s ease;
}

.footer-legal a:hover { opacity: 0.65; }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 11px;
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--teal-dark);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 498;
  background: var(--cream);
  flex-direction: column;
  padding: 7rem 2rem 2rem;
  gap: 0;
}
.mobile-menu-overlay.open { display: flex; }
.mobile-menu-overlay > a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--teal-dark);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--sand-light);
  letter-spacing: -0.01em;
}
.mobile-menu-overlay > a:hover { color: var(--teal-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .service-card { flex: 0 0 calc(50% - 0.75rem); }
  .feature-inner { grid-template-columns: 1fr; gap: 3rem; }
  .feature-inner.reverse { direction: ltr; }
  .feature-image { height: auto; aspect-ratio: 3/2; }
  .dark-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-logo-wrap img { height: 110px; }
  .google-reviews-header { align-items: flex-start; }
  .google-review-card { width: calc(50% - 0.75rem); min-width: 0; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-content { flex-direction: column; align-items: flex-start; bottom: 2.5rem; padding: 0 1.5rem; gap: 1.5rem; }
  .hero-display { font-size: clamp(2.75rem, 10vw, 4.5rem); max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .btn-hero-primary, .btn-hero-ghost { justify-content: center; text-align: center; min-height: 44px; }
  .hero-logo-wrap img { height: 80px; }

  /* Trust bar – wrap text, hide separators */
  .trust-sep { display: none; }
  .trust-bar-inner { gap: 0.375rem 1rem; justify-content: center; flex-wrap: wrap; }
  .trust-item { font-size: 0.8125rem; text-align: center; white-space: normal; }

  /* Services – horizontal scroll-snap carousel */
  .services-section { padding: 5rem 0; }
  .google-reviews-section { padding: 5rem 1.5rem; }
  .services-header { padding: 0 1.5rem; }
  .cards-slider-wrap { padding: 0; }
  .cards-grid {
    flex-direction: row;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding: 0 20px 20px 20px;
  }
  .cards-grid::after {
    content: '';
    flex: 0 0 20px;
    display: block;
  }
  .service-card {
    flex: 0 0 85vw;
    max-width: 85vw;
    aspect-ratio: 3/4;
    scroll-snap-align: start;
  }
  .slider-btn { display: none; }
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 0 20px;
  }
  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(44, 83, 100, 0.35);
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
    padding: 0;
    flex-shrink: 0;
  }
  .carousel-dot.active {
    background: var(--teal-mid);
    transform: scale(1.3);
  }

  /* Konzept dark section */
  .feature-section, .dark-section { padding: 5rem 1.5rem; }
  .dark-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-image { height: auto; aspect-ratio: 4/3; }
  .dark-image { aspect-ratio: 3/2; }
  .dark-section .btn-primary {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
    min-height: 44px;
  }

  /* Google reviews placeholder */
  .google-reviews-header { gap: 2rem; }
  .reviews-widget-placeholder { min-height: 200px; }
  .reviews-placeholder-text { font-size: 1rem; }

  /* CTA */
  .cta-section { padding: 5rem 1.5rem; }
  .cta-headline { font-size: clamp(1.4rem, 6vw, 2.2rem); }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 1rem; }
  .cta-actions a { width: 100%; box-sizing: border-box; justify-content: center; text-align: center; min-height: 44px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: center; text-align: center; }
  .footer-brand img { height: 75px; }
  .footer-top > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; }
  .footer-links a { padding: 0.625rem 0; min-height: 44px; display: flex; align-items: center; }
}

@media (max-width: 480px) {
  .hero-content { bottom: 2rem; }
  .trust-item { font-size: 0.75rem; }
  .service-card { flex: 0 0 85vw; max-width: 85vw; aspect-ratio: 3/4; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }
}

/* ── LEISTUNGEN PAGE SPECIFIC ── */

/* service sections from leistungen.html */
.service-section {
  padding: 6rem 2rem;
}
.service-section:nth-child(odd) { background: rgba(255,255,255,0.40); }
.service-section:nth-child(even) { background: rgba(247,244,240,0.38); }

.service-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.service-inner.reverse { direction: rtl; }
.service-inner.reverse > * { direction: ltr; }

.service-image {
  position: relative;
}
.service-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(10%) brightness(0.97);
}
.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 53, 64, 0.15), transparent 60%);
  border-radius: 2px;
  pointer-events: none;
}
.service-image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 45%;
  height: 45%;
  border: 1px solid var(--sand-light);
  border-radius: 2px;
  pointer-events: none;
  z-index: -1;
}
.service-inner.reverse .service-image-accent {
  right: auto;
  left: -1.5rem;
}

.service-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--teal-dark);
  margin-bottom: 1.25rem;
}
.service-content h2 em {
  font-style: italic;
  color: var(--teal-light);
}

.divider {
  width: 3rem;
  height: 1px;
  background: var(--sand);
  margin: 1.25rem 0 1.5rem;
}

.service-content p {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 1rem;
}

.benefit-list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.benefit-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: rgba(61, 122, 138, 0.1);
  border: 1px solid rgba(61, 122, 138, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-check svg { width: 10px; height: 10px; stroke: var(--teal-light); stroke-width: 2.5; }
.benefit-item span {
  font-size: 0.875rem;
  font-weight: 400;
  color: #374151;
  line-height: 1.55;
}

.service-cta {
  margin-top: 2.25rem;
}

/* ── CTA BAND (leistungen) ── */
.cta-band {
  background: var(--teal-dark);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(61, 122, 138, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(181, 168, 152, 0.06) 0%, transparent 55%);
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1rem;
}
.cta-band h2 em {
  font-style: italic;
  color: var(--sand-light);
}
.cta-band p {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(247, 244, 240, 0.6);
  margin-bottom: 2rem;
}

/* breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(214, 206, 198, 0.5);
  margin-bottom: 2rem;
}
.breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--sand-light); }
.breadcrumb span { color: var(--sand-light); }

/* page-hero override for leistungen */
.page-hero {
  background: var(--teal-dark);
  padding: 10rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 122, 138, 0.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 168, 152, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--cream);
  max-width: 600px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--sand-light);
}
.page-hero-sub {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(247, 244, 240, 0.6);
  max-width: 520px;
}

/* nav-links active */
.nav-links a.active { opacity: 1; color: var(--teal-light); }
.nav-links a.active::after { transform: scaleX(1); }

@media (max-width: 1024px) {
  .service-inner { grid-template-columns: 1fr; gap: 3rem; }
  .service-inner.reverse { direction: ltr; }
}
@media (max-width: 768px) {
  .page-hero { padding: 7rem 1.5rem 3rem; }
  .service-section { padding: 4rem 1.5rem; }
  .service-image-accent { display: none; }
  .service-image { height: 300px; }
  .cta-band { padding: 4rem 1.5rem; }
}
@media (max-width: 480px) {
  .service-image { height: 240px; }
}

/* ── SUBPAGE SHARED ── */
main { padding-top: 88px; }

/* ── PAGE HERO (narrow, dark) — subpages ── */
.page-hero-narrow {
  background: var(--teal-dark);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-narrow::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(44,83,100,0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 25%, rgba(61,122,138,0.2) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-narrow-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-narrow .section-label {
  justify-content: center;
  color: var(--sand);
}

.page-hero-narrow .section-label::before { background: var(--sand); }

.page-hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-top: 0.5rem;
}

/* ── CONTENT SECTIONS ── */
.content-section { padding: 5rem 2rem; position: relative; z-index: 1; }

.light-section { background: rgba(247,244,240,0.5); }

.content-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.content-inner.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.content-inner.two-col.reverse { direction: rtl; }
.content-inner.two-col.reverse > * { direction: ltr; }

.content-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--teal-dark);
}

.dark-section .content-text h2 { color: var(--cream); }

.content-text p {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(26,53,64,0.7);
}

.dark-section .content-text p { color: rgba(247,244,240,0.7); }

.content-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

/* ── SECTION CENTERED TITLES ── */
.section-centered-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-align: center;
  color: var(--teal-dark);
  margin-bottom: 3rem;
}

.section-centered-title.light { color: var(--cream); }

.section-centered-desc {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(247,244,240,0.7);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* ── PILLAR GRID (Konzept page) ── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(181,168,152,0.2);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(26,53,64,0.06);
}

.pillar-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  display: block;
}

.pillar-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--teal-dark);
  margin-bottom: 0.75rem;
}

.pillar-card p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(26,53,64,0.65);
}

/* ── TEAM GRID ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.team-img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--teal-dark);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(26,53,64,0.65);
}

/* ── PRAXIS GALLERY ── */
.praxis-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.praxis-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  aspect-ratio: 3/2;
  object-fit: cover;
}

/* ── CONTACT FORM ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

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

.form-group { display: flex; flex-direction: column; gap: 0.375rem; }

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.form-group .optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(26,53,64,0.45);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(181,168,152,0.45);
  border-radius: 2px;
  background: rgba(255,255,255,0.8);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--teal-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(44,83,100,0.12);
}

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

.form-checkbox { flex-direction: row; align-items: flex-start; gap: 0.75rem; }

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--teal-dark);
}

.form-checkbox label {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 300;
  font-size: 0.875rem;
  color: rgba(26,53,64,0.7);
  line-height: 1.5;
}

.form-checkbox label a {
  color: var(--teal-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-info-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--teal-dark);
  margin-bottom: 1.75rem;
}

.contact-info-block { margin-bottom: 1.5rem; }

.contact-info-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.375rem;
}

.contact-info-block p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(26,53,64,0.75);
  line-height: 1.6;
}

/* ── FAQ ACCORDION ── */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(247,244,240,0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--cream);
  text-align: left;
  gap: 1rem;
  transition: color 0.2s ease;
}

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

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.25rem; }

.faq-answer p {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(247,244,240,0.65);
}

/* ── LEGAL PAGES ── */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.legal-page h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--teal-dark);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.legal-page h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--teal-dark);
  margin: 2rem 0 0.75rem;
}

.legal-page p {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(26,53,64,0.75);
  margin-bottom: 0.75rem;
}

/* ── NAV ACTIVE STATE ── */
.nav-links a.active { opacity: 1; }

/* ── MOBILE RESPONSIVE for new pages ── */
@media (max-width: 768px) {
  .page-hero-narrow { padding: 4rem 1.5rem 3rem; }

  .content-section { padding: 4rem 1.5rem; }

  .content-inner.two-col { grid-template-columns: 1fr; gap: 2rem; }
  .content-inner.two-col.reverse { direction: ltr; }

  .pillar-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .team-grid { grid-template-columns: 1fr; gap: 2rem; }

  .praxis-gallery { grid-template-columns: 1fr; gap: 1rem; }

  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }

  .form-row { grid-template-columns: 1fr; }

  .section-centered-title { font-size: clamp(1.5rem, 6vw, 2.25rem); }
}
