/* Warm safe-space clinic — layered over styles.css */
:root {
  /* Warm sage / olive — inviting, not clinical mint */
  --brand-900: #243528;
  --brand-800: #2f4533;
  --brand-700: #3d5a42;
  --brand-500: #6b8f71;
  --brand-300: #d8e2d4;
  --brand-100: #eef2ea;
  /* Soft honey accent for CTA warmth (not terracotta cliché) */
  --accent: #c4a574;
  --accent-soft: #f0e6d4;
  --ink-900: #2a2620;
  --ink-700: #4a453c;
  --ink-500: #6e675c;
  --ink-300: #91897c;
  --paper: #f7f4ef;
  --paper-deep: #efe8dc;
  --line: rgba(61, 90, 66, 0.14);
  --soft-shadow: 0 18px 40px rgba(42, 38, 32, 0.07);
  --radius: 16px;
  --section-gap: clamp(72px, 9vw, 120px);
  --content-max: 1120px;
  --line-max: 62ch;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse at 12% 0%, rgba(196, 165, 116, 0.14), transparent 46%),
    radial-gradient(ellipse at 88% 18%, rgba(107, 143, 113, 0.12), transparent 42%),
    linear-gradient(180deg, #f8f5f0 0%, #f1ebe3 48%, #eef2ea 100%);
  color: var(--ink-700);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4,
.nav-brand-name,
.hero-brand,
.section-header h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--brand-900);
  text-align: left;
}

.container {
  max-width: var(--content-max);
}

.section-header {
  max-width: 720px;
  margin: 0 0 2.5rem;
  text-align: left;
}

.container.narrow .section-header {
  max-width: none;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.65rem;
  text-align: left;
}

/* Cormorant draws hyphens very low — lift them in display titles */
.title-hyphen {
  display: inline-block;
  transform: translateY(-0.14em);
}

.section-header p {
  color: var(--ink-500);
  font-size: 1.05rem;
  margin: 0;
}

/* ===== Slim top bar ===== */
.navbar,
.navbar.scrolled {
  height: 58px !important;
  min-height: 58px !important;
  padding: 0 !important;
  transform: none !important;
  overflow: visible !important;
  background: rgba(247, 244, 239, 0.9) !important;
  backdrop-filter: blur(14px);
  box-shadow: none !important;
  border-bottom: 1px solid var(--line);
}

.navbar.navbar-hidden {
  transform: translateY(-110%) !important;
}

.navbar .nav-container {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.75rem !important;
  height: 58px !important;
  min-height: 58px !important;
  width: min(1120px, calc(100% - 1.5rem)) !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  position: relative !important;
}

.navbar .nav-brand {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 0 !important;
  max-width: 240px;
  text-decoration: none !important;
}

.navbar .nav-brand-name {
  margin: 0 !important;
  color: var(--brand-900) !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
  text-align: left !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.navbar .nav-brand-title {
  margin: 0 !important;
  color: var(--ink-300) !important;
  font-family: var(--font-body) !important;
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  text-align: left !important;
  white-space: nowrap;
  background: none !important;
}

.navbar .nav-menu {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 0.15rem !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 100% !important;
  list-style: none !important;
  background: transparent !important;
  position: static !important;
  border: 0 !important;
  box-shadow: none !important;
}

.navbar .nav-menu li {
  margin: 0 !important;
  padding: 0 !important;
}

.navbar .nav-link,
.navbar a.nav-link {
  display: inline-flex !important;
  align-items: center !important;
  height: 32px !important;
  min-height: 32px !important;
  max-height: 32px !important;
  min-width: 0 !important;
  padding: 0 0.45rem !important;
  border-radius: 8px !important;
  background: transparent !important;
  color: var(--ink-700) !important;
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  box-shadow: none !important;
}

.navbar .nav-link::before,
.navbar .nav-link::after {
  display: none !important;
  content: none !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active,
.navbar .nav-link:focus-visible {
  color: var(--brand-700) !important;
  background: rgba(45, 90, 39, 0.07) !important;
}

.navbar .nav-actions {
  display: flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
}

.navbar .language-selector {
  margin: 0 !important;
  order: 0 !important;
  grid-column: auto !important;
}

.navbar .lang-dropdown-btn {
  height: 32px !important;
  min-height: 32px !important;
  min-width: 46px !important;
  padding: 0 10px !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: none !important;
  font-family: var(--font-body) !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  color: var(--ink-700) !important;
}

.navbar .lang-dropdown-btn i {
  font-size: 0.65rem;
  opacity: 0.7;
}

.navbar .current-lang {
  font-style: normal;
}

.navbar .nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: space-between;
}

.navbar .nav-toggle-bar {
  display: block;
  height: 2px;
  border-radius: 99px;
  background: var(--brand-700);
}

.navbar .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.navbar .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 960px) {
  .navbar .nav-toggle {
    display: inline-flex !important;
  }

  .navbar .nav-menu {
    display: none !important;
  }

  .navbar .nav-menu.is-open {
    display: flex !important;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    right: 0 !important;
    flex-direction: column !important;
    gap: 0.15rem !important;
    height: auto !important;
    padding: 0.5rem !important;
    background: #fff !important;
    border: 1px solid var(--line) !important;
    border-radius: 12px !important;
    box-shadow: var(--soft-shadow) !important;
    z-index: 1200;
  }

  .navbar .nav-menu.is-open .nav-link {
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: none !important;
    justify-content: flex-start !important;
    padding: 0 0.85rem !important;
    font-size: 0.92rem !important;
  }
}

@media (min-width: 961px) {
  .navbar .nav-toggle {
    display: none !important;
  }

  .navbar .nav-menu {
    display: flex !important;
    flex-direction: row !important;
    position: static !important;
  }
}

/* Global soft CTAs */
.btn {
  border-radius: 999px !important;
  font-family: var(--font-body) !important;
  letter-spacing: 0.01em;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease !important;
}

.btn-primary,
.btn.btn-primary {
  background: var(--brand-700) !important;
  color: #f8f5f0 !important;
  border: 1px solid transparent !important;
  box-shadow: none !important;
}

.btn-primary:hover,
.btn.btn-primary:hover {
  background: var(--brand-800) !important;
  color: #fff !important;
  transform: none !important;
}

.btn-secondary,
.btn.btn-secondary {
  background: transparent !important;
  color: var(--brand-800) !important;
  border: 1px solid rgba(61, 90, 66, 0.35) !important;
}

.btn-secondary:hover,
.btn.btn-secondary:hover {
  background: rgba(61, 90, 66, 0.06) !important;
  color: var(--brand-900) !important;
}

/* ===== Hero =====
   Desktop: centered composition (max-width) + narrower portrait
   Mobile: full-bleed photo with text overlay
*/
.hero {
  position: relative;
  min-height: clamp(560px, 78dvh, 740px);
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: clamp(1.75rem, 4.5vh, 3.25rem) clamp(1.25rem, 4vw, 2.5rem) !important;
  margin-top: 58px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 12% 20%, rgba(196, 165, 116, 0.16), transparent 48%),
    radial-gradient(ellipse at 88% 70%, rgba(107, 143, 113, 0.12), transparent 42%),
    linear-gradient(180deg, #f7f4ef 0%, #efe8dc 100%) !important;
}

.hero::before,
.hero::after {
  display: none !important;
}

.hero-container {
  position: relative;
  inset: auto;
  width: min(1140px, 100%);
  height: auto;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0;
}

.hero-content {
  display: grid !important;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 400px);
  align-items: stretch;
  width: 100%;
  min-height: clamp(460px, 58vh, 600px);
  margin: 0;
  padding: 0;
  max-width: none;
  overflow: hidden;
}

.hero-image {
  position: relative !important;
  inset: auto !important;
  order: 2;
  width: 100% !important;
  height: 100% !important;
  min-height: 100%;
  max-width: none !important;
  margin: 0 !important;
  border-radius: 22px !important;
  aspect-ratio: auto !important;
  overflow: hidden;
  z-index: 0;
  background: #2a3226;
}

.hero-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image::before {
  content: none;
  display: none;
}

.profile-photo,
.hero-image img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: 50% 28%;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  animation: none !important;
  transform: none !important;
  display: block !important;
}

.profile-photo:hover {
  transform: none !important;
  box-shadow: none !important;
}

.hero-text {
  position: relative;
  z-index: 2;
  order: 1;
  width: auto;
  height: auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.95rem;
  padding: clamp(1.25rem, 3vw, 2.25rem) clamp(1.25rem, 3.5vw, 2.75rem) clamp(1.25rem, 3vw, 2.25rem) 0;
  color: var(--ink-700);
  background: transparent;
  animation: heroCopyIn 850ms ease both;
}

.hero-text .hero-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 4.4vw, 3.7rem);
  font-weight: 600;
  line-height: 1.02;
  color: var(--brand-900);
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.hero-text .welcome-badge {
  display: none !important;
}

.hero-text h1 {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--brand-800);
  text-align: left;
  text-shadow: none;
  animation: none;
}

.hero-text > p:not(.hero-brand) {
  margin: 0;
  max-width: 34ch;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-500);
  text-shadow: none;
  animation: none;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
  animation: none;
}

.hero-buttons .btn {
  width: auto;
  min-width: 0;
  max-width: none;
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: none;
  transform: none !important;
}

.hero-buttons .btn::before {
  display: none;
}

.hero-buttons .btn-primary {
  background: var(--brand-700) !important;
  color: #f8f5f0 !important;
}

.hero-buttons .btn-primary:hover {
  background: var(--brand-800) !important;
  color: #fff !important;
}

.hero-buttons .btn-secondary {
  background: transparent !important;
  border: 1px solid rgba(61, 90, 66, 0.35) !important;
  color: var(--brand-800) !important;
}

.hero-buttons .btn-secondary:hover {
  background: rgba(61, 90, 66, 0.08) !important;
  color: var(--brand-900) !important;
}

@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile / tablet: keep the photo-led overlay that already looks good */
@media (max-width: 960px) {
  .hero {
    display: block !important;
    align-items: stretch;
    justify-content: stretch;
    min-height: clamp(560px, 84dvh, 740px);
    padding: 0 !important;
    background: #2a3226 !important;
  }

  .hero-container {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
  }

  .hero-content {
    display: block !important;
    min-height: 100%;
    grid-template-columns: none;
  }

  .hero-image {
    position: absolute !important;
    inset: 0 !important;
    order: 0;
    border-radius: 0 !important;
    min-height: 100%;
  }

  .hero-image::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(36, 30, 24, 0.1) 0%, rgba(36, 30, 24, 0.22) 42%, rgba(36, 30, 24, 0.9) 100%);
  }

  .profile-photo,
  .hero-image img {
    object-position: 58% 18%;
  }

  .hero-text {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: auto;
    justify-content: flex-end;
    padding: 1.5rem 1.15rem 1.75rem;
    gap: 0.7rem;
    color: #f4f8f4;
    background: transparent;
  }

  .hero-text .hero-brand {
    font-size: clamp(2.35rem, 9vw, 3rem);
    max-width: none;
    color: #ffffff;
  }

  .hero-text h1 {
    font-size: 1.25rem;
    max-width: 22ch;
    color: rgba(255, 255, 255, 0.92);
  }

  .hero-text > p:not(.hero-brand) {
    font-size: 0.95rem;
    max-width: 36ch;
    color: rgba(244, 248, 244, 0.88);
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons .btn {
    flex: 1 1 auto;
    justify-content: center;
    min-width: calc(50% - 0.4rem);
    padding: 0.7rem 1rem;
    font-size: 0.88rem;
  }

  .hero-buttons .btn-primary {
    background: #f3ebe0 !important;
    color: var(--brand-900) !important;
  }

  .hero-buttons .btn-primary:hover {
    background: #fff8ef !important;
    color: var(--brand-900) !important;
  }

  .hero-buttons .btn-secondary {
    background: transparent !important;
    border: 1px solid rgba(255, 248, 239, 0.5) !important;
    color: #fff8ef !important;
  }

  .hero-buttons .btn-secondary:hover {
    background: rgba(255, 248, 239, 0.12) !important;
    color: #fff !important;
  }
}

@media (max-width: 480px) {
  .hero-buttons .btn {
    min-width: 100%;
  }
}

/* ===== Sections below hero ===== */
.container.narrow {
  max-width: 760px;
}

.about,
.work,
.topics,
.services,
.online-practice,
.schedule,
.contact,
.faq {
  padding-block: var(--section-gap);
  background: transparent !important;
}

.work,
.services,
.online-practice,
.faq {
  background: rgba(255, 250, 244, 0.55) !important;
}

.topics .topic-grid {
  max-width: 760px;
}

.about::before,
.work::before,
.topics::before,
.services::before,
.online-practice::before,
.schedule::before,
.faq::before,
.contact::before,
.urgency::before,
.footer::before {
  display: none !important;
}

.about-description {
  font-size: 1.08rem;
  color: var(--ink-700);
  margin-bottom: 1.1rem;
}

.cred-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 2.25rem 0 0;
  border-top: 1px solid var(--line);
}

.cred-item {
  padding: 1.1rem 1rem 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.cred-item:nth-child(even) {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.cred-item dt {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-700);
  margin-bottom: 0.3rem;
}

.cred-item dd {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.98rem;
  line-height: 1.45;
}

.about-format {
  margin: 1.35rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink-500);
  letter-spacing: 0.01em;
}

.work-content p {
  font-size: 1.08rem;
  color: var(--ink-700);
  margin-bottom: 1.75rem;
}

.detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.detail-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-700);
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-500);
}

.topic-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.5rem;
}

.topic-grid li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1rem;
  color: var(--ink-700);
  border-bottom: 1px solid rgba(45, 90, 39, 0.08);
}

.topic-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-500);
}

.services .container {
  max-width: 900px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid var(--line);
  animation: none !important;
}

.service-card {
  background: transparent !important;
  border: 0 !important;
  border-top: 1px solid var(--line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 1.5rem 1.25rem 1.5rem 0 !important;
  text-align: left !important;
  transform: none !important;
  animation: none !important;
}

.service-card:nth-child(even) {
  padding-left: 1.25rem !important;
  border-left: 1px solid var(--line) !important;
}

.service-card:hover,
.contact-card:hover,
.schedule-card:hover,
.online-card:hover {
  transform: none !important;
  box-shadow: none !important;
}

.service-icon {
  display: none !important;
}

.service-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
  text-align: left;
  color: var(--brand-900);
}

.service-card p,
.service-card li {
  color: var(--ink-500);
  text-align: left;
}

.service-card ul {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
}

.service-card li {
  position: relative;
  padding: 0.25rem 0 0.25rem 0.95rem;
}

.service-card li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--brand-500);
}

.online-points {
  display: grid;
  gap: 1.75rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.online-point h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 600;
  color: var(--brand-900);
  line-height: 1.25;
}

.online-point p {
  margin: 0;
  max-width: 54ch;
  color: var(--ink-500);
  line-height: 1.7;
}

.schedule-plain {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.schedule-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 1rem;
  font-size: 1.15rem;
  color: var(--ink-700);
}

.schedule-line strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--brand-900);
}

.schedule-note {
  margin: 0;
  color: var(--ink-500);
  max-width: 52ch;
}

/* Soft reassurance band after hero */
.safety-band {
  padding: 1.1rem 0;
  background: linear-gradient(90deg, rgba(240, 230, 212, 0.75), rgba(232, 236, 226, 0.85));
  border-block: 1px solid var(--line);
}

.safety-band p {
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-500);
  letter-spacing: 0.02em;
}

.safety-band strong {
  color: var(--brand-800);
  font-weight: 600;
}

.urgency {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(196, 165, 116, 0.22), transparent 50%),
    linear-gradient(135deg, #e9e2d6 0%, #dde6d8 55%, #d2ddcf 100%) !important;
  color: var(--ink-700);
  padding-block: clamp(56px, 7vw, 84px);
  border-block: 1px solid var(--line);
}

.urgency-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.urgency-text h2 {
  color: var(--brand-900) !important;
  text-align: left;
  font-size: clamp(1.9rem, 3.5vw, 2.55rem);
  text-shadow: none;
  margin-bottom: 0.65rem;
}

.urgency-text p {
  color: var(--ink-500);
  max-width: 46ch;
  margin: 0;
  text-shadow: none;
}

.urgency-btn {
  flex: 0 0 auto;
  transform: none !important;
  animation: none !important;
  background: var(--brand-700) !important;
  color: #f8f5f0 !important;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  box-shadow: none !important;
  white-space: nowrap;
}

.urgency-btn:hover {
  background: var(--brand-800) !important;
  color: #fff !important;
}

.contact {
  background: transparent !important;
  color: var(--ink-700) !important;
  padding-block: var(--section-gap);
}

.contact .section-header h2 {
  color: var(--brand-900) !important;
  text-shadow: none !important;
}

.contact .section-header p {
  color: var(--ink-500) !important;
  text-shadow: none !important;
}

.contact-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.25rem 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.contact-row:hover:not(.static) {
  background: rgba(196, 165, 116, 0.08);
}

.contact-row.static {
  cursor: default;
}

.contact-label {
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-700);
}

.contact-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--brand-900);
  font-weight: 600;
}

.contact-hint {
  color: var(--ink-500);
  font-size: 0.95rem;
}


.faq-item {
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(42, 38, 32, 0.1) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0;
  overflow: hidden;
}

.faq-item:first-child {
  border-top: 1px solid rgba(42, 38, 32, 0.1) !important;
}

.faq-item:hover {
  transform: none !important;
  box-shadow: none !important;
}

.faq-question,
.faq-question:hover,
.faq-question:focus,
.faq-question:active,
.faq-item.active .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent !important;
  background-image: none !important;
  color: var(--brand-900) !important;
  padding: 1.1rem 0 !important;
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.faq-question h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-900) !important;
  text-shadow: none !important;
  text-align: left;
}

.faq-icon {
  color: var(--ink-500) !important;
  text-shadow: none !important;
  font-size: 1.35rem;
  line-height: 1;
  transform: none !important;
}

.faq-item.active .faq-icon {
  transform: none !important;
}

.faq-answer,
.faq-item.active .faq-answer {
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-top: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
  padding: 0.15rem 0 1.15rem !important;
}

.faq-answer p {
  color: var(--ink-500);
  margin: 0;
  max-width: 60ch;
}

.footer {
  background: linear-gradient(180deg, #2a3226 0%, #243528 100%) !important;
  padding: clamp(48px, 6vw, 72px) 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  font-family: var(--font-display);
  color: #fff !important;
  text-shadow: none !important;
  text-align: left;
  margin-bottom: 0.75rem;
}

.footer-section p,
.footer-bottom,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.78) !important;
  text-shadow: none !important;
  text-align: left;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
}

.scroll-progress {
  height: 2px !important;
  background: linear-gradient(90deg, var(--brand-500), var(--accent)) !important;
  z-index: 11000;
}

.btn::before,
.btn:hover::before {
  content: none !important;
  display: none !important;
}

.service-card li::before {
  content: "–" !important;
  color: var(--brand-500) !important;
  font-weight: 400 !important;
}

.translating,
.translated {
  opacity: 1 !important;
  transform: none !important;
}

.navbar .nav-link.active,
.nav-link.active {
  color: var(--brand-700) !important;
}

.nav-link.active::after {
  background: var(--brand-500) !important;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fffaf4;
  color: var(--brand-700);
  box-shadow: var(--soft-shadow);
  cursor: pointer;
  font-size: 1rem;
  transform: none !important;
  transition: background 0.2s ease, color 0.2s ease;
}

.back-to-top.is-visible {
  display: flex;
}

.back-to-top:hover {
  background: var(--brand-100);
  color: var(--brand-900);
  transform: none !important;
}

/* Sticky WhatsApp — mobile / tablet only */
.wa-fab {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1110;
  align-items: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.7rem 1rem 0.7rem 0.85rem;
  border-radius: 999px;
  background: #2f6b4f;
  color: #f7fbf8;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(36, 58, 42, 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}

.wa-fab-icon {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
}

.wa-fab:hover {
  background: #275a43;
  color: #fff;
}

.wa-fab:focus-visible {
  outline: 2px solid var(--brand-700);
  outline-offset: 3px;
}

@media (max-width: 960px) {
  .wa-fab {
    display: inline-flex;
  }

  .back-to-top,
  .back-to-top.is-visible {
    bottom: 78px;
  }

  body:has(.cookie-banner.show) .wa-fab {
    bottom: 118px;
  }

  body:has(.cookie-banner.show) .back-to-top,
  body:has(.cookie-banner.show) .back-to-top.is-visible {
    bottom: 180px;
  }
}

@media (min-width: 961px) {
  body:has(.cookie-banner.show) .back-to-top {
    bottom: 110px;
  }
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  max-width: 520px;
  background: #ffffff;
  color: var(--ink-700);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  padding: 16px 18px;
  display: none;
  z-index: 12000;
}

.cookie-banner.show {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.cookie-banner p {
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--brand-700);
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-body);
}

.cookie-btn.primary {
  background: var(--brand-700);
  color: #ffffff;
  border-color: var(--brand-700);
}

/* Motion: quiet reveal */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  .cred-list,
  .topic-grid,
  .services-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .cred-item:nth-child(even),
  .service-card:nth-child(even) {
    padding-left: 0 !important;
    border-left: 0 !important;
  }

  .service-card {
    padding: 1.35rem 0 !important;
  }

  .urgency-content {
    display: grid;
    gap: 1.5rem;
  }

  .urgency-btn {
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .contact-label {
    grid-row: auto;
    margin-bottom: 0.15rem;
  }

  .schedule-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .btn {
    width: auto;
    max-width: none;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .section-header,
  .section-header h2 {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-text,
  .hero-image,
  .fade-in {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
