:root {
  --primary: #3F3F3F;
  --secondary: #C5A059;
  --bg: #F7F4EF;
  --bg-soft: #F3EFE8;
  --bg-alt: #EFEAE2;
  --accent: #C5A059;
  --accent-soft: #D4BC94;
  --accent-deep: #A88B55;
  --ink: #1D1D1D;
  --ink-soft: #5A5F5F;
  --soft: #EDE8E0;
  --white: #FFFFFF;
  --dark: #2A2A2A;
  --cream: #FBF8F3;
  --beige: #EFE6D8;
  --petrol: #3F3F3F;
  --neon: #C5A059;
  --neon-soft: rgba(197, 160, 89, 0.45);
  --neon-glow: rgba(197, 160, 89, 0.55);

  /* Compatibility aliases */
  --gold: var(--accent);
  --gold-soft: var(--accent-soft);
  --gold-deep: var(--accent-deep);
  --gold-mist: rgba(197, 160, 89, 0.16);
  --charcoal: var(--primary);
  --charcoal-deep: #2A2A2A;
  --navy: var(--primary);
  --navy-soft: var(--secondary);
  --teal: var(--secondary);
  --teal-deep: var(--accent-deep);
  --sky: #E8D9BE;
  --accent-2: var(--secondary);
  --bg-warm: var(--bg-alt);

  --line: rgba(63, 63, 63, 0.1);
  --line-strong: rgba(63, 63, 63, 0.16);
  --shadow: 0 18px 40px -18px rgba(42, 42, 42, 0.16);
  --shadow-lg: 0 28px 60px -24px rgba(42, 42, 42, 0.22);
  --radius: 22px;
  --radius-sm: 14px;
  --font-serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", "Segoe UI", sans-serif;
  --container: 1180px;
  --header-h: 104px;
  --section-y: clamp(1.35rem, 2.6vw, 2.25rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.25rem);
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: #F4EFE7;
  line-height: 1.7;
  font-size: 1.04rem;
  -webkit-font-smoothing: antialiased;
  position: relative;
  isolation: isolate;
}
/* legacy soft orbs — kept subtle under ambient */
body::before,
body::after { display: none; }

/* —— Site-wide ambient: faint distributed brains —— */
.site-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.site-ambient-grain { display: none; }
.sa-custom-bg,
.sa-custom-bg--b,
.hero-custom-bg,
.phd-custom-bg { display: none !important; }
.sa-brain {
  position: absolute;
  width: min(38vw, 360px);
  height: auto;
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
  filter: contrast(1.05);
}
.sa-brain--tl {
  top: 4%;
  left: -2%;
  width: min(42vw, 420px);
  opacity: 0.14;
}
.sa-brain--tr {
  top: 12%;
  right: -4%;
  width: min(34vw, 300px);
  opacity: 0.11;
  transform: scaleX(-1);
}
.sa-brain--tr.ill-float-b {
  animation-name: illFloatBFlip;
}
@keyframes illFloatBFlip {
  0%, 100% { transform: scaleX(-1) translateY(0) rotate(0deg); }
  50% { transform: scaleX(-1) translateY(8px) rotate(-1deg); }
}
.sa-brain--ml {
  top: 48%;
  left: -6%;
  width: min(30vw, 260px);
  opacity: 0.1;
}
.sa-brain--br {
  right: -3%;
  bottom: 8%;
  width: min(40vw, 380px);
  opacity: 0.13;
  transform: rotate(8deg);
}
.sa-brain--br.ill-float-d {
  animation-name: illFloatDRot;
}
@keyframes illFloatDRot {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-5px); }
}
.sa-brain--bl {
  left: 8%;
  bottom: -2%;
  width: min(28vw, 240px);
  opacity: 0.09;
  transform: scaleX(-1) rotate(-6deg);
}
.sa-brain--bl.ill-float-a {
  animation-name: illFloatAFlip;
}
@keyframes illFloatAFlip {
  0%, 100% { transform: scaleX(-1) rotate(-6deg) translateY(0); }
  50% { transform: scaleX(-1) rotate(-6deg) translateY(-8px); }
}
.sa-ill { display: none; }

/* Illustration float motion */
@keyframes illFloatA {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}
@keyframes illFloatB {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(8px) rotate(-1deg); }
}
@keyframes illFloatC {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(4px, -6px) rotate(.6deg); }
}
@keyframes illFloatD {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(-.5deg); }
}
.ill-float-a { animation: illFloatA 22s ease-in-out infinite; }
.ill-float-b { animation: illFloatB 24s ease-in-out infinite; }
.ill-float-c { animation: illFloatC 20s ease-in-out infinite; }
.ill-float-d { animation: illFloatD 26s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .ill-float-a, .ill-float-b, .ill-float-c, .ill-float-d { animation: none; }
}

.site-header,
main,
.site-footer,
.whatsapp-fab {
  z-index: 1;
}
.site-header { z-index: 50; }
.whatsapp-fab { z-index: 70; }
main { position: relative; }
.site-footer { position: relative; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin: 0 0 0.55em;
}
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link {
  position: absolute; left: 1rem; top: -4rem; background: var(--primary); color: #fff; padding: .75rem 1rem; z-index: 100; border-radius: 10px;
}
.skip-link:focus { top: 1rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 243, 0.72);
  backdrop-filter: blur(20px) saturate(1.05);
  -webkit-backdrop-filter: blur(20px) saturate(1.05);
  border-bottom: 1px solid transparent;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197,160,89,.15), rgba(197,160,89,.75), rgba(197,160,89,.15), transparent);
  box-shadow: 0 0 10px rgba(197,160,89,.35), 0 0 22px rgba(197,160,89,.18);
  opacity: .55;
  animation: headerNeonLine 4.5s ease-in-out infinite;
  pointer-events: none;
}
.site-header.is-scrolled {
  background: rgba(251, 248, 243, 0.96);
  border-bottom-color: rgba(197, 160, 89, 0.12);
  box-shadow: 0 18px 44px -30px rgba(42, 42, 42, 0.28), 0 0 24px -12px rgba(197, 160, 89, 0.22);
}
.site-header.is-scrolled::after {
  opacity: .9;
  left: 4%;
  right: 4%;
}
@keyframes headerNeonLine {
  0%, 100% { opacity: .4; filter: brightness(1); }
  50% { opacity: .95; filter: brightness(1.25); }
}
.header-inner {
  min-height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding-block: .45rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.brand:hover {
  border: 0;
  box-shadow: none;
}
.brand img,
.hero-logo,
.footer-brand img {
  display: block;
  background: transparent !important;
  mix-blend-mode: normal;
}
.footer-brand {
  background: transparent;
}
.brand img {
  width: clamp(270px, 28vw, 340px);
  height: auto;
}
.header-right {
  display: flex; align-items: center; gap: 1rem;
  min-width: 0;
}
.site-nav {
  display: flex; align-items: center; gap: 1.15rem;
  font-size: 0.9rem; font-weight: 600;
}
.site-nav > * + *::before {
  content: "";
  position: absolute;
  left: -.575rem;
  top: 50%;
  width: 1px;
  height: 16px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, transparent, rgba(197, 160, 89, .28), transparent);
  pointer-events: none;
}
.site-nav > a,
.site-nav .nav-parent {
  color: var(--ink-soft);
  transition: color .25s var(--ease), text-shadow .35s var(--ease);
  white-space: nowrap;
  position: relative;
  padding: .2rem 0;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.site-nav > a::after,
.site-nav .nav-parent::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -7px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  box-shadow: 0 0 8px var(--neon-glow), 0 0 16px rgba(197,160,89,.35);
  opacity: 0;
  transition: left .35s var(--ease), right .35s var(--ease), opacity .35s var(--ease);
}
.site-nav > a:hover,
.site-nav > a.is-active,
.site-nav .nav-parent:hover,
.site-nav .nav-parent.is-active,
.nav-item.has-submenu:hover > .nav-parent {
  color: var(--accent-deep);
  text-shadow:
    0 0 5px rgba(197, 160, 89, .55),
    0 0 14px rgba(197, 160, 89, .48),
    0 0 26px rgba(197, 160, 89, .28);
}
.site-nav > a:hover::after,
.site-nav > a.is-active::after,
.site-nav .nav-parent:hover::after,
.site-nav .nav-parent.is-active::after,
.nav-item.has-submenu:hover > .nav-parent::after {
  left: 0; right: 0; opacity: 1;
  box-shadow:
    0 0 8px rgba(197, 160, 89, .8),
    0 0 18px rgba(197, 160, 89, .55),
    0 0 30px rgba(197, 160, 89, .3);
}
.site-nav > a.is-active::after,
.site-nav .nav-parent.is-active::after {
  animation: navNeonPulse 2.6s ease-in-out infinite;
}
.nav-item.has-submenu {
  position: relative;
}
.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
}
.nav-caret {
  transition: transform .25s var(--ease);
  opacity: .75;
}
.nav-item.has-submenu:hover > .nav-parent .nav-caret,
.nav-item.is-open > .nav-parent .nav-caret {
  transform: rotate(180deg);
}
.nav-submenu {
  position: absolute;
  top: calc(100% + .55rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 168px;
  padding: .45rem;
  border-radius: 14px;
  background: rgba(255, 253, 249, 0.98);
  border: 1px solid rgba(197, 160, 89, 0.22);
  box-shadow: 0 18px 40px -22px rgba(42, 42, 42, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: 60;
}
.nav-submenu::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -.55rem;
  height: .55rem;
}
.nav-submenu a {
  display: block;
  padding: .65rem .85rem;
  border-radius: 10px;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-submenu a:hover,
.nav-submenu a.is-active {
  background: rgba(197, 160, 89, 0.12);
  color: var(--accent-deep);
  text-shadow: none;
}
.nav-submenu a::after { display: none !important; }
.nav-item.has-submenu:hover > .nav-submenu,
.nav-item.is-open > .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
@keyframes navNeonPulse {
  0%, 100% { box-shadow: 0 0 6px rgba(197,160,89,.4), 0 0 12px rgba(197,160,89,.2); opacity: .85; }
  50% { box-shadow: 0 0 12px rgba(197,160,89,.75), 0 0 24px rgba(197,160,89,.4); opacity: 1; }
}
.header-actions {
  display: flex; align-items: center; gap: 1rem;
  margin-left: 0;
  flex-shrink: 0;
}

/* Language switcher — sliding gold pill */
.lang-switch {
  --lang-pad: 3px;
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  width: 86px;
  height: 38px;
  padding: var(--lang-pad);
  margin: 0;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 242, 230, 0.92));
  border: 1px solid rgba(197, 160, 89, 0.38);
  box-shadow:
    0 8px 18px -14px rgba(70, 52, 20, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  overflow: hidden;
  isolation: isolate;
}
.lang-switch-track {
  position: absolute;
  top: var(--lang-pad);
  bottom: var(--lang-pad);
  left: var(--lang-pad);
  width: calc(50% - var(--lang-pad));
  border-radius: 999px;
  background: linear-gradient(135deg, #D4BC94 0%, #C5A059 48%, #A88B55 100%);
  box-shadow:
    0 6px 14px -8px rgba(168, 139, 85, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 0 14px rgba(197, 160, 89, 0.28);
  transition: transform .38s cubic-bezier(.22, 1, .36, 1);
  z-index: 0;
  pointer-events: none;
}
.lang-switch.is-en .lang-switch-track,
.lang-switch:has(.lang-switch-opt.is-active:last-of-type) .lang-switch-track,
html[lang="en"] .lang-switch-track {
  transform: translateX(100%);
}
.lang-switch-opt {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 32px;
  padding: 0;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  color: rgba(42, 42, 42, 0.55);
  transition: color .28s var(--ease), text-shadow .28s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.lang-switch-opt.is-active {
  color: #1D1D1D;
  text-shadow: 0 0 12px rgba(255, 248, 230, 0.55);
}
.lang-switch-opt:hover:not(.is-active) {
  color: var(--accent-deep);
}
.lang-switch-opt:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 0; background: transparent; cursor: pointer;
  padding: 0;
}
.nav-toggle span:not(.sr-only) {
  display: block; width: 22px; height: 1.6px; background: var(--primary); margin: 5px auto;
}
.header-phone {
  display: none;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  color: #2A2A2A;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none;
  transition: color .25s var(--ease);
}
.header-phone svg {
  flex-shrink: 0;
  color: #2A2A2A;
}
.header-phone:hover,
.header-phone:hover svg {
  color: var(--accent-deep);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 52px; padding: 0 1.5rem;
  border-radius: 999px; border: 1px solid transparent;
  font-family: var(--font-sans); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.01em; cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn:hover { transform: translateY(-2px) scale(1.015); }
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.btn-sm { min-height: 46px; padding: 0 1.2rem; font-size: 0.84rem; }
.btn-hero {
  min-height: 56px;
  padding: 0 1.75rem;
  font-size: 0.95rem;
}
.btn-gold,
.btn-primary,
.btn-dark,
.header-cta {
  background: linear-gradient(135deg, #D4BC94 0%, #C5A059 42%, #A88B55 100%) !important;
  color: #1D1D1D !important;
  border-color: rgba(197, 160, 89, 0.35) !important;
  box-shadow:
    0 14px 30px -12px rgba(168, 139, 85, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.25) inset,
    0 0 18px rgba(197, 160, 89, 0.28);
}
.btn-gold:hover,
.btn-primary:hover,
.btn-dark:hover,
.header-cta:hover {
  background: linear-gradient(135deg, #E0CBA6 0%, #C5A059 45%, #9A7A45 100%) !important;
  box-shadow:
    0 20px 38px -12px rgba(168, 139, 85, 0.6),
    0 0 28px rgba(197, 160, 89, 0.45);
}
.btn-wa {
  background: #fff;
  color: var(--accent-deep);
  border-color: rgba(197, 160, 89, 0.45);
  box-shadow: 0 10px 24px -16px rgba(168, 139, 85, 0.35);
}
.btn-wa:hover {
  background: #FFF9F1;
  border-color: rgba(197, 160, 89, 0.75);
  color: #3F3F3F;
  box-shadow: 0 14px 28px -14px rgba(168, 139, 85, 0.4), 0 0 16px rgba(197, 160, 89, 0.25);
}
.btn-online {
  background: rgba(63, 63, 63, 0.04);
  color: #3F3F3F;
  border-color: rgba(63, 63, 63, 0.18);
  box-shadow: 0 10px 24px -16px rgba(42, 42, 42, 0.2);
}
.btn-online:hover {
  background: #3F3F3F;
  color: #fff;
  border-color: #3F3F3F;
  box-shadow: 0 14px 28px -14px rgba(42, 42, 42, 0.35);
}
.btn-online svg { color: #C9A15A; }
.btn-online:hover svg { color: #E8D4A8; }
.btn-ghost {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(197, 160, 89, 0.28);
  color: var(--primary);
  box-shadow: var(--shadow);
}
.btn-ghost:hover {
  border-color: rgba(197, 160, 89, 0.55);
  color: var(--accent-deep);
  background: #fff;
}
.btn-ghost-light { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-outline {
  background: transparent;
  border-color: rgba(197, 160, 89, 0.45);
  color: var(--accent-deep);
}
.btn-outline:hover {
  background: var(--accent);
  color: #1D1D1D;
  border-color: var(--accent);
}
.text-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--accent-deep); font-weight: 700;
}
.text-link span { transition: transform .3s var(--ease); }
.text-link:hover span { transform: translateX(4px); }

/* Hero */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  min-height: 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 480px at 12% 18%, rgba(201, 168, 106, 0.04), transparent 58%),
    linear-gradient(165deg, rgba(251, 248, 243, 0.2) 0%, rgba(246, 241, 234, 0.08) 50%, transparent 100%);
  overflow: hidden;
  pointer-events: none;
}
.hero-grain {
  position: absolute; inset: 0;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: multiply;
  z-index: 1;
}
.hero-blob { display: none; }
.hb { display: none; }
.ill { display: none; }

/* Custom unique hero background art */
.hero-custom-bg {
  position: absolute;
  inset: -2% -4% -6% -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: center 40%;
  opacity: .38;
  max-width: none;
  pointer-events: none;
  z-index: 0;
}

/* Hero illustration placement (pack guide) */
.ill {
  position: absolute;
  pointer-events: none;
  height: auto;
  max-width: none;
}
.ill--tl {
  top: -3%; left: -2%;
  width: clamp(210px, 26vw, 360px);
  opacity: .2;
}
.ill--tr {
  top: 8%; right: -2%;
  width: clamp(120px, 13vw, 180px);
  opacity: .12;
}
.ill--bl {
  left: -2%; bottom: 8%;
  width: clamp(150px, 17vw, 220px);
  opacity: .16;
}
.ill--br {
  right: -2%; bottom: 2%;
  width: clamp(150px, 16vw, 220px);
  opacity: .12;
}
.ill--center {
  top: 6%; left: 32%;
  width: clamp(200px, 24vw, 320px);
  opacity: .08;
}
.ill--edge-l {
  top: 34%; left: 1%;
  width: clamp(200px, 28vw, 380px);
  opacity: .15;
}
.ill--edge-r {
  top: 46%; right: 6%;
  width: clamp(180px, 22vw, 320px);
  opacity: .13;
  transform: scaleX(-1);
}
.ill--edge-r.ill-float-c { animation-name: illFloatCFlip; }
@keyframes illFloatCFlip {
  0%, 100% { transform: scaleX(-1) translate(0, 0) rotate(0deg); }
  50% { transform: scaleX(-1) translate(4px, -6px) rotate(.6deg); }
}
.ill--dots-a {
  top: 5%; left: 18%;
  width: clamp(56px, 6.5vw, 96px);
  opacity: .16;
}
.ill--dots-b {
  top: 38%; left: 1%;
  width: clamp(48px, 5.5vw, 84px);
  opacity: .14;
}
.ill--dots-c {
  top: 10%; right: 18%;
  width: clamp(48px, 5.5vw, 84px);
  opacity: .14;
}
.ill--wave {
  bottom: 24%; left: 24%;
  width: clamp(240px, 32vw, 440px);
  opacity: .13;
}
.ill--neurons {
  top: 48%; left: 28%;
  width: clamp(180px, 24vw, 320px);
  opacity: .13;
}
.ill--focus {
  top: 56%; right: 28%;
  width: clamp(90px, 10vw, 150px);
  opacity: .12;
}
.ill--neural {
  top: 20%; left: 46%;
  width: clamp(120px, 13vw, 180px);
  opacity: .08;
}
.ill--calm {
  bottom: 8%; left: 38%;
  width: clamp(160px, 20vw, 260px);
  opacity: .09;
}
.hero-inner {
  position: relative; z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(1.5rem, 3.2vw, 2.5rem) 0 clamp(1.1rem, 2.2vw, 1.75rem);
}
.hero-copy { max-width: 520px; position: relative; z-index: 2; }
.hero-role {
  margin: 0 0 .45rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  color: var(--ink-soft);
  text-transform: none;
}
.hero-brand {
  font-size: clamp(2.75rem, 5.8vw, 4.4rem);
  font-weight: 600;
  line-height: .95;
  margin: 0 0 1rem;
  color: #3F3F3F;
  letter-spacing: -0.03em;
}
.hero-bio {
  margin-bottom: 1.25rem;
}
.hero-bio p {
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 .85rem;
  max-width: 44ch;
}
.hero-bio p:last-child { margin-bottom: 0; }
.hero-about-inline {
  display: inline;
  white-space: nowrap;
  font-size: inherit;
  font-weight: 700;
  margin-left: .15rem;
}
.hero-about-inline span {
  display: inline-block;
  transition: transform .3s var(--ease);
}
.hero-about-inline:hover span { transform: translateX(3px); }
.hero-about-link { display: none; }
.hero-lead { display: none; }
.hero-sub { display: none; }
.hero-rule { display: none; }
.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.15rem;
}
.hero-actions .btn-hero {
  min-height: 48px;
  padding: 0 1.05rem;
  font-size: 0.86rem;
  gap: .4rem;
  white-space: nowrap;
  flex: 0 1 auto;
}
.hero-actions .btn-hero svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: .85rem 1.35rem;
  align-items: center;
  margin: 0; padding: 0;
  color: var(--ink-soft);
  font-size: .9rem;
  list-style: none;
}
.hero-meta li { display: inline-flex; align-items: center; gap: .45rem; }
.hero-meta svg { flex-shrink: 0; color: var(--accent-deep); }
.hero-meta a { font-weight: 600; color: var(--primary); }
.hero-meta a:hover { color: var(--accent-deep); }

/* Hero photo — same as Hakkımda frame + neon glow */
.hero-visual-wrap {
  position: relative;
  justify-self: end;
  width: min(100%, 420px);
  aspect-ratio: 4 / 4.85;
  z-index: 1;
  padding: 0;
}
.hero-visual-wrap--clinic {
  width: min(100%, 560px);
  aspect-ratio: 16 / 10;
}
.hero-visual-block,
.hero-neon-glow,
.hero-visual-ring,
.hero-visual-aura,
.hero-frame-art,
.hero-leaf-accent { display: none !important; }

.hero-frame-gold {
  display: block;
  position: absolute;
  inset: -3.5% -4% -5% -3.5%;
  border: 1.5px solid rgba(201, 161, 90, 0.9);
  border-radius: 26px;
  z-index: 0;
  pointer-events: none;
  box-shadow:
    0 0 8px rgba(201, 161, 90, 0.55),
    0 0 22px rgba(201, 161, 90, 0.35),
    0 0 40px rgba(201, 161, 90, 0.18),
    inset 0 0 12px rgba(201, 161, 90, 0.1);
  animation: heroNeonFrame 3.2s ease-in-out infinite;
}
.hero-frame-gold::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(232, 212, 168, 0.55);
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(201, 161, 90, 0.25);
}
.hero-frame-gold::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 32px;
  border: 1px solid rgba(201, 161, 90, 0.25);
  box-shadow: 0 0 28px rgba(201, 161, 90, 0.2);
  pointer-events: none;
}
@keyframes heroNeonFrame {
  0%, 100% {
    border-color: rgba(201, 161, 90, 0.75);
    box-shadow:
      0 0 8px rgba(201, 161, 90, 0.45),
      0 0 18px rgba(201, 161, 90, 0.28),
      0 0 34px rgba(201, 161, 90, 0.14),
      inset 0 0 10px rgba(201, 161, 90, 0.08);
  }
  50% {
    border-color: rgba(232, 212, 168, 1);
    box-shadow:
      0 0 14px rgba(232, 212, 168, 0.85),
      0 0 32px rgba(201, 161, 90, 0.55),
      0 0 56px rgba(201, 161, 90, 0.3),
      inset 0 0 16px rgba(201, 161, 90, 0.14);
  }
}
.hero-frame-block {
  display: block;
  position: absolute;
  left: -7%;
  bottom: -6%;
  width: 68%;
  height: 52%;
  background: linear-gradient(155deg, #4A4A4A 0%, #2A2A2A 100%);
  border-radius: 22px;
  z-index: 0;
  box-shadow:
    0 24px 44px -24px rgba(42, 42, 42, 0.5),
    0 0 20px rgba(201, 161, 90, 0.16);
}
.hero-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  -webkit-mask-image: none;
  mask-image: none;
  animation: none;
  box-shadow:
    0 28px 56px -28px rgba(42, 42, 42, 0.35),
    0 0 0 1px rgba(201, 161, 90, 0.28),
    0 0 20px rgba(201, 161, 90, 0.2);
}
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 72%, rgba(42, 42, 42, 0.12));
  pointer-events: none;
  border-radius: inherit;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-frame-gold { animation: none; }
}

/* Trust band — removed from opening; keep unused safe */
.hero-trust,
.trust-band { display: none; }
.trust-band li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  min-width: 0;
  padding: .35rem .2rem;
}
.trust-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  color: var(--accent-deep);
  border-radius: 12px;
  background: rgba(200, 169, 119, 0.12);
}
.trust-icon svg { width: 20px; height: 20px; }
.trust-band strong {
  display: block;
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0;
  line-height: 1.25;
  margin: 0 0 .2rem;
}
.trust-band span {
  display: block;
  font-size: .76rem;
  line-height: 1.4;
  color: var(--ink-soft);
}

/* Legacy trust chips (unused on home, kept for safety) */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .65rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--primary);
  font-size: .84rem;
  font-weight: 600;
  box-shadow: 0 10px 24px -18px rgba(15, 61, 62, 0.2);
}
.trust-chip svg { width: 16px; height: 16px; color: var(--secondary); }

/* Sections */
.section {
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(520px 240px at 0% 0%, rgba(201, 161, 90, 0.1), transparent 60%),
    radial-gradient(480px 220px at 100% 100%, rgba(63, 63, 63, 0.05), transparent 55%),
    radial-gradient(360px 180px at 70% 30%, rgba(232, 220, 198, 0.35), transparent 65%);
  opacity: 1;
}
.section > .container { position: relative; z-index: 1; }
.section-soft,
.section-alt {
  background:
    radial-gradient(640px 280px at 100% 0%, rgba(201, 161, 90, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(243, 237, 228, 0.42) 0%, rgba(248, 244, 238, 0.28) 48%, rgba(245, 240, 232, 0.38) 100%);
}
.values-wash,
.about-wash,
.section-ink { display: none; }
.section-head { max-width: 640px; margin-bottom: 1.25rem; }
.section-head h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  letter-spacing: -0.025em;
  color: #3F3F3F;
}
.section-head p:last-child { color: var(--ink-soft); margin-bottom: 0; line-height: 1.65; }
.eyebrow {
  display: inline-block; margin: 0 0 .45rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: #B08A48;
  position: relative;
  padding-left: 1.6rem;
}
.eyebrow::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 1.1rem; height: 1px;
  background: linear-gradient(90deg, #C9A15A, transparent);
  transform: translateY(-50%);
}
.section-cta { margin-top: 1.35rem; text-align: center; }
.lede { font-size: 1.14rem; color: var(--ink); line-height: 1.75; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.1rem, 2.2vw, 1.65rem) 0 .35rem;
  background:
    radial-gradient(700px 300px at 100% 0%, rgba(201, 161, 90, 0.07), transparent 55%),
    linear-gradient(180deg, rgba(244, 239, 231, 0.35), rgba(244, 239, 231, 0.08));
}
.page-hero h1 { font-size: clamp(2rem, 3.6vw, 2.95rem); max-width: 18ch; color: #3F3F3F; margin-bottom: .35em; }
.page-lead { color: var(--ink-soft); max-width: 44ch; margin-bottom: 0; }
.page-hero .eyebrow a { color: var(--accent-deep); }
.page-hero-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  min-height: clamp(140px, 18vw, 200px);
}
.page-hero-copy { position: relative; z-index: 1; }
.services-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1rem;
}
.services-page-hero h1 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  letter-spacing: -0.04em;
}
.services-page-hero .page-lead {
  max-width: 56ch;
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(74, 74, 74, 0.78);
}
.services-hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 .85rem;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8F6E35;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(201, 161, 90, 0.28);
  box-shadow: 0 8px 22px -18px rgba(42, 42, 42, 0.24);
}
.tight-top { padding-top: .35rem !important; }

/* Inner page right-side décor — custom psychology bg */
.page-hero-deco {
  position: relative;
  height: clamp(140px, 20vw, 220px);
  pointer-events: none;
  overflow: hidden;
}
.phd-custom-bg {
  display: none !important;
}
.phd-brain {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(120%, 260px);
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.18;
  pointer-events: none;
}
.phd-brain.ill-float-d {
  animation-name: illFloatDCenterBg;
}
@keyframes illFloatDCenterBg {
  0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
  50% { transform: translate(-50%, calc(-50% - 5px)) rotate(-.4deg); }
}
.phd-ill { display: none; }

/* Values — Seren-style strip (no cards, hairline dividers) */
.section-values {
  padding-top: clamp(.55rem, 1.2vw, .9rem);
  padding-bottom: clamp(.65rem, 1.4vw, 1.1rem);
  margin-top: 0;
  background: transparent;
  z-index: 2;
  overflow: visible;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: .35rem 0 .45rem;
  border-top: 1px solid rgba(63, 63, 63, 0.08);
  border-bottom: 1px solid rgba(63, 63, 63, 0.08);
  overflow: visible;
}
.value-item {
  position: relative;
  z-index: 0;
  isolation: isolate;
  padding: .85rem .65rem .9rem;
  border-radius: 14px;
  text-align: center;
  border-right: 1px solid rgba(63, 63, 63, 0.1);
  background: transparent;
  overflow: hidden;
  cursor: default;
  transition:
    background .35s var(--ease),
    border-color .35s var(--ease),
    box-shadow .35s var(--ease),
    transform .35s var(--ease),
    z-index 0s;
}
.value-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(232, 212, 168, 0.55), transparent 58%),
    radial-gradient(90% 70% at 50% 100%, rgba(201, 161, 90, 0.28), transparent 62%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.value-item > * {
  position: relative;
  z-index: 1;
}
.value-item:last-child { border-right: 0; }
.value-item:hover {
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(201, 161, 90, 0.55);
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(201, 161, 90, 0.45),
    0 0 18px rgba(201, 161, 90, 0.55),
    0 0 36px rgba(201, 161, 90, 0.32),
    0 0 64px rgba(201, 161, 90, 0.16),
    0 18px 36px -20px rgba(42, 42, 42, 0.28);
}
.value-item:hover::before {
  opacity: 1;
  transform: scale(1.06);
}
.value-icon {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  margin: 0 auto .45rem;
  color: #C9A15A;
  border-radius: 0;
  background: transparent;
  border: 0;
  transition:
    color .35s var(--ease),
    transform .35s var(--ease),
    filter .35s var(--ease),
    text-shadow .35s var(--ease);
}
.value-item:hover .value-icon {
  color: #C9A15A;
  transform: translateY(-2px) scale(1.06);
  filter: drop-shadow(0 0 6px rgba(201, 161, 90, 0.95))
          drop-shadow(0 0 16px rgba(201, 161, 90, 0.65));
}
.value-icon svg { width: 24px; height: 24px; stroke-width: 1.4; }
.value-item h3 {
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: .35rem;
  color: #3F3F3F;
  transition: color .35s var(--ease), text-shadow .35s var(--ease);
}
.value-item:hover h3 {
  color: #8F6E35;
  text-shadow:
    0 0 12px rgba(201, 161, 90, 0.45),
    0 0 24px rgba(201, 161, 90, 0.28);
}
.value-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .78rem;
  line-height: 1.5;
  transition: color .35s var(--ease);
}
.value-item:hover p {
  color: rgba(63, 63, 63, 0.78);
}
@media (prefers-reduced-motion: reduce) {
  .value-item,
  .value-item::before,
  .value-icon,
  .value-item h3,
  .value-item p { transition: none; }
  .value-item:hover { transform: none; }
}

/* About */
.about-teaser {
  overflow: hidden;
  padding-top: clamp(1.1rem, 2.4vw, 1.85rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.about-teaser .about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(1.25rem, 3vw, 2.4rem);
  align-items: start;
}
.about-teaser .about-main {
  /* Row height comes from photo; pin cards to photo bottom */
  display: flex;
  flex-direction: column;
  gap: .55rem;
  height: 0;
  min-height: 100%;
}
.about-teaser .about-aside {
  margin-top: auto;
}
.about-teaser .about-visual {
  align-self: start;
  justify-self: center;
  width: min(100%, 440px);
}
.about-teaser .about-copy .eyebrow {
  margin-bottom: .3rem;
}
.about-teaser .about-copy h2 {
  margin-bottom: .4rem;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  max-width: 18ch;
  line-height: 1.15;
}
.about-teaser .about-copy .lede {
  margin-bottom: .5rem;
  font-size: 1.02rem;
  line-height: 1.6;
}
.about-teaser .about-copy p {
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.about-teaser .about-copy p:last-child { margin-bottom: 0; }
.about-teaser .aside-card {
  padding: 1rem 1.1rem .9rem;
  border-radius: 18px;
}
.about-teaser .aside-card::before {
  left: 1.1rem;
  right: 1.1rem;
}
.about-teaser .aside-label { margin-bottom: .45rem; }
.about-teaser .aside-card li {
  padding: .38rem 0;
  font-size: .88rem;
}
.about-teaser .aside-stat {
  padding: 1rem 1.1rem .95rem;
  border-radius: 18px;
}
.about-teaser .aside-stat-label { margin-bottom: .2rem; }
.about-teaser .aside-stat strong {
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  margin-bottom: .15rem;
}
.about-teaser .aside-stat-lead {
  font-size: .82rem;
  margin-bottom: .55rem;
  padding-bottom: .5rem;
}
.about-teaser .aside-stat-list { gap: .28rem; }
.about-teaser .aside-stat-list li {
  font-size: .8rem;
  line-height: 1.3;
}
.about-inline-link {
  display: inline;
  white-space: nowrap;
  margin-left: .2rem;
  font-size: inherit;
}
.about-inline-link span {
  display: inline-block;
  transition: transform .3s var(--ease);
}
.about-inline-link:hover span { transform: translateX(3px); }
.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: center;
}
.about-main {
  display: grid;
  gap: 1.15rem;
}
.about-visual {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 4 / 4.85;
  justify-self: center;
}
.about-frame-gold {
  position: absolute;
  inset: -3.5% -4% -5% -3.5%;
  border: 1.5px solid rgba(201, 161, 90, 0.8);
  border-radius: 26px;
  z-index: 0;
  pointer-events: none;
  box-shadow:
    0 0 10px rgba(201, 161, 90, 0.28),
    0 0 24px rgba(201, 161, 90, 0.14);
}
.about-frame-gold::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(212, 188, 148, 0.4);
  border-radius: 20px;
}
.about-frame-block {
  position: absolute;
  left: -7%;
  bottom: -6%;
  width: 68%;
  height: 52%;
  background: linear-gradient(155deg, #4A4A4A 0%, #2A2A2A 100%);
  border-radius: 22px;
  z-index: 0;
  box-shadow:
    0 24px 44px -24px rgba(42, 42, 42, 0.5),
    0 0 20px rgba(201, 161, 90, 0.12);
}
.about-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  box-shadow:
    0 28px 56px -28px rgba(42, 42, 42, 0.35),
    0 0 0 1px rgba(201, 161, 90, 0.22);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}
.about-teaser .about-photo img {
  object-position: center 22%;
}
.about-copy h2 { font-size: clamp(1.95rem, 3.3vw, 2.65rem); max-width: 16ch; color: #3F3F3F; }
.about-aside {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: .85rem;
  align-items: stretch;
}
.aside-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(201, 169, 119, 0.28);
  border-radius: 22px;
  padding: 1.25rem 1.25rem 1.1rem;
  box-shadow: 0 22px 48px -28px rgba(63, 63, 63, 0.18);
  position: relative;
  overflow: hidden;
}
.aside-card::before {
  content: "";
  position: absolute; top: 0; left: 1.25rem; right: 1.25rem; height: 2px;
  background: linear-gradient(90deg, #C9A15A, transparent);
  opacity: .7;
}
.aside-label {
  margin: 0 0 .65rem;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: #B08A48; font-weight: 700;
}
.aside-card li {
  padding: .5rem 0;
  border-bottom: 1px solid rgba(63, 63, 63, 0.08);
  color: var(--ink);
  font-weight: 500;
  font-size: .92rem;
}
.aside-card li:last-child { border-bottom: 0; }
.aside-stat {
  border-radius: 22px;
  padding: 1.2rem 1.25rem 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background:
    radial-gradient(280px 140px at 100% 0%, rgba(255, 255, 255, 0.28), transparent 60%),
    linear-gradient(145deg, #D4BC94 0%, #C5A059 45%, #A88B55 100%);
  color: #1D1D1D;
  box-shadow:
    0 22px 44px -20px rgba(168, 139, 85, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 0 18px rgba(201, 161, 90, 0.2);
}
.aside-stat-label {
  margin: 0 0 .35rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(29, 29, 29, 0.55);
}
.aside-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.2vw, 1.75rem);
  font-weight: 600;
  margin-bottom: .25rem;
  color: #1D1D1D;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.aside-stat-lead {
  display: block;
  color: rgba(29, 29, 29, .72);
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: .75rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid rgba(29, 29, 29, 0.14);
}
.aside-stat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .35rem;
}
.aside-stat-list li {
  position: relative;
  padding-left: .9rem;
  font-size: .84rem;
  font-weight: 600;
  color: rgba(29, 29, 29, 0.82);
  line-height: 1.35;
}
.aside-stat-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: .35rem;
  height: .35rem;
  border-radius: 50%;
  background: #3F3F3F;
  box-shadow: 0 0 6px rgba(63, 63, 63, 0.25);
}

.about-page-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: start;
}
.about-page .about-visual {
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
}
.about-page-prose { max-width: none; }

/* Hakkımda — portre ve özgeçmiş */
.home-about-hero {
  padding: clamp(1.25rem, 2.6vw, 2.15rem) 0 clamp(1.1rem, 2.2vw, 1.75rem);
}
.home-about-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(290px, .76fr) minmax(0, 1.24fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
}
.home-about-portrait {
  width: min(100%, 390px);
}
.home-about-copy {
  max-width: 760px;
}

.about-profile {
  padding-top: clamp(2.2rem, 5vw, 4.75rem);
  padding-bottom: clamp(3.25rem, 6vw, 5.75rem);
  overflow: hidden;
}
.about-profile-grid {
  display: grid;
  grid-template-columns: minmax(290px, .78fr) minmax(0, 1.22fr);
  gap: clamp(2.5rem, 6vw, 5.75rem);
  align-items: center;
}
.about-profile-visual {
  position: relative;
  width: min(100%, 410px);
  justify-self: center;
  padding: 14px;
}
.about-profile-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 2px;
  border-radius: 30px;
  border: 1px solid rgba(201, 161, 90, .35);
  box-shadow:
    0 0 18px rgba(201, 161, 90, .28),
    0 0 40px rgba(201, 161, 90, .16);
  pointer-events: none;
  animation: aboutPortraitNeonOuter 3.2s ease-in-out infinite;
}
.about-profile-visual::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 9%;
  right: 9%;
  bottom: -14px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 161, 90, .85);
  filter: blur(18px);
  box-shadow:
    0 0 22px rgba(201, 161, 90, .8),
    0 0 48px rgba(201, 161, 90, .55),
    0 0 78px rgba(201, 161, 90, .32);
  animation: aboutPortraitGlow 3.2s ease-in-out infinite;
}
.about-profile-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 2 / 3;
  padding: 6px;
  border: 1.5px solid rgba(201, 161, 90, .9);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(230,221,208,.72));
  box-shadow:
    0 28px 60px -30px rgba(42, 42, 42, .48),
    0 0 0 1px rgba(255,255,255,.72) inset,
    0 0 10px rgba(201, 161, 90, .45),
    0 0 24px rgba(201, 161, 90, .28),
    0 0 48px rgba(201, 161, 90, .16),
    inset 0 0 12px rgba(201, 161, 90, .08);
  animation: aboutPortraitNeonFrame 3.2s ease-in-out infinite;
}
.about-profile-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 8px;
  border: 1px solid rgba(232, 212, 168, .55);
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(201, 161, 90, .22);
  pointer-events: none;
}
.about-profile-frame::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -10px;
  border-radius: 32px;
  border: 1px solid rgba(201, 161, 90, .28);
  box-shadow: 0 0 30px rgba(201, 161, 90, .22);
  pointer-events: none;
}
.about-profile-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
.about-profile-copy {
  max-width: 720px;
}
.about-profile-copy .eyebrow {
  margin-bottom: .55rem;
}
.about-profile-copy h1 {
  color: #3F3F3F;
  font-size: clamp(2.25rem, 4.5vw, 3.65rem);
  margin-bottom: .85rem;
}
.about-profile-copy .home-about-title {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}
.about-profile-copy h1::after {
  content: "";
  display: block;
  width: 74px;
  height: 2px;
  margin-top: .55rem;
  border-radius: 2px;
  background: linear-gradient(90deg, #C9A15A, rgba(201, 161, 90, 0));
  box-shadow: 0 0 10px rgba(201, 161, 90, .55);
}
.home-about-copy .about-profile-text h2 {
  margin: .9rem 0 .32rem;
  color: #4F4A45;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.35;
}
.home-about-copy .about-profile-text h2:first-child {
  margin-top: .1rem;
}
.about-profile-text p {
  margin: 0 0 .75rem;
  color: var(--ink-soft);
  font-size: clamp(.94rem, 1.18vw, 1.01rem);
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}
.about-profile-text p:last-child { margin-bottom: 0; }
@keyframes aboutPortraitGlow {
  0%, 100% { opacity: .68; transform: scaleX(.94); }
  50% { opacity: 1; transform: scaleX(1.04); }
}
@keyframes aboutPortraitNeonFrame {
  0%, 100% {
    border-color: rgba(201, 161, 90, .75);
    box-shadow:
      0 28px 60px -30px rgba(42, 42, 42, .48),
      0 0 0 1px rgba(255,255,255,.72) inset,
      0 0 8px rgba(201, 161, 90, .45),
      0 0 18px rgba(201, 161, 90, .28),
      0 0 34px rgba(201, 161, 90, .14),
      inset 0 0 10px rgba(201, 161, 90, .08);
  }
  50% {
    border-color: rgba(232, 212, 168, 1);
    box-shadow:
      0 28px 60px -30px rgba(42, 42, 42, .48),
      0 0 0 1px rgba(255,255,255,.72) inset,
      0 0 14px rgba(232, 212, 168, .85),
      0 0 32px rgba(201, 161, 90, .55),
      0 0 56px rgba(201, 161, 90, .3),
      inset 0 0 16px rgba(201, 161, 90, .14);
  }
}
@keyframes aboutPortraitNeonOuter {
  0%, 100% {
    border-color: rgba(201, 161, 90, .28);
    box-shadow:
      0 0 14px rgba(201, 161, 90, .22),
      0 0 28px rgba(201, 161, 90, .12);
  }
  50% {
    border-color: rgba(232, 212, 168, .65);
    box-shadow:
      0 0 22px rgba(201, 161, 90, .42),
      0 0 46px rgba(201, 161, 90, .24);
  }
}

/* Hakkımda — CV layout (fotoğraf + özgeçmiş kartları) */
.about-intro {
  padding-bottom: .25rem;
}
.about-intro h1 {
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  max-width: 20ch;
  margin-bottom: .25em;
}
.about-intro .page-lead { margin-bottom: 0; }

.about-cv { padding-top: .5rem; }
.about-cv-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(1.25rem, 3.5vw, 2.75rem);
  align-items: start;
}
.about-cv .about-visual {
  width: 100%;
  max-width: none;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.about-cv-cards {
  display: grid;
  gap: .85rem;
}
.about-cv-card {
  background: rgba(236, 230, 220, 0.72);
  border: 1px solid rgba(63, 63, 63, 0.06);
  border-radius: 18px;
  padding: 1.2rem 1.3rem 1.25rem;
}
.about-cv-card h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: #3F3F3F;
  margin: 0 0 .65rem;
}
.about-cv-card p {
  margin: 0 0 .7rem;
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.65;
}
.about-cv-card p:last-child { margin-bottom: 0; }

.about-focus-actions { margin-top: 1rem; }
.about-phil-title {
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700;
  color: #3F3F3F;
  margin: 0 0 1rem;
}
.about-phil-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(63, 63, 63, 0.07);
  border-radius: 22px;
  padding: .35rem 1.35rem;
  box-shadow: 0 18px 40px -28px rgba(63, 63, 63, 0.16);
}
.about-phil-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.about-phil-list li {
  display: flex;
  align-items: flex-start;
  gap: .95rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(63, 63, 63, 0.08);
}
.about-phil-list li:last-child { border-bottom: 0; }
.about-phil-check {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-top: .1rem;
  border-radius: 50%;
  background: #3F3F3F;
  color: #fff;
}
.about-phil-check svg { width: 14px; height: 14px; }
.about-phil-list strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: #3F3F3F;
  margin-bottom: .2rem;
}
.about-phil-list span {
  display: block;
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.5;
}

.about-hero { padding-bottom: .15rem; position: relative; overflow: hidden; }
.about-hero-capillary {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.about-hero-capillary .page-hero-deco {
  position: absolute;
  top: 6%;
  left: 40%;
  width: min(40%, 340px);
  height: min(72%, 300px);
  opacity: 1;
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.15rem, 2.8vw, 2.25rem);
  align-items: center;
}
.about-hero-copy .page-lead { margin-bottom: .65rem; }
.about-hero-lead {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: .9rem;
}
.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.about-highlights { padding-top: 0; padding-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.about-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .65rem;
  margin: 0;
  list-style: none;
}
.about-highlight-grid li {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(201, 161, 90, 0.2);
  border-radius: 20px;
  padding: 1.1rem 1rem;
  box-shadow: 0 18px 40px -28px rgba(63, 63, 63, 0.18);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.about-highlight-grid li:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 161, 90, 0.4);
  box-shadow: 0 24px 44px -24px rgba(63, 63, 63, 0.22);
}
.about-hi-icon {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  margin-bottom: .85rem;
  border-radius: 12px;
  color: #C9A15A;
  background: rgba(201, 161, 90, 0.12);
  border: 1px solid rgba(201, 161, 90, 0.18);
}
.about-hi-icon svg { width: 20px; height: 20px; }
.about-highlight-grid strong {
  display: block;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 700;
  color: #3F3F3F;
  margin-bottom: .3rem;
}
.about-highlight-grid span {
  display: block;
  font-size: .84rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.about-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}
.about-block {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(63, 63, 63, 0.08);
  border-radius: 22px;
  padding: 1.35rem 1.3rem;
  box-shadow: 0 18px 40px -26px rgba(63, 63, 63, 0.16);
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.about-block::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #C9A15A, transparent);
  opacity: .85;
}
.about-block:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 161, 90, 0.35);
  box-shadow: 0 26px 48px -24px rgba(63, 63, 63, 0.2);
}
.about-block-top {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  margin-bottom: .85rem;
}
.about-block-num {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #C9A15A;
  line-height: 1;
}
.about-block h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: #3F3F3F;
}
.about-block p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: .98rem;
}
.about-extra {
  margin-top: 1.5rem;
  padding: 1.4rem 1.5rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(201, 161, 90, 0.16);
}
.about-extra p { margin: 0 0 .9rem; color: var(--ink-soft); line-height: 1.7; }
.about-extra p:last-child { margin-bottom: 0; }

.about-focus-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}
.about-focus-copy h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.55rem);
  max-width: 16ch;
  color: #3F3F3F;
}
.about-focus-list {
  list-style: none;
  margin: 0;
  padding: 1.5rem;
  display: grid;
  gap: .15rem;
  background: #fff;
  border: 1px solid rgba(201, 161, 90, 0.22);
  border-radius: 24px;
  box-shadow: 0 22px 48px -28px rgba(63, 63, 63, 0.18);
}
.about-focus-list li {
  padding: .85rem .35rem;
  border-bottom: 1px solid rgba(63, 63, 63, 0.08);
  color: #3F3F3F;
  font-weight: 600;
  position: relative;
  padding-left: 1.15rem;
}
.about-focus-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #C9A15A;
  transform: translateY(-50%);
}
.about-focus-list li:last-child { border-bottom: 0; }

.about-timeline { padding-top: clamp(1.5rem, 3vw, 2.5rem); }
.about-timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-left: 1.5px solid rgba(201, 161, 90, 0.35);
}
.about-timeline-list li {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem 1.25rem;
  padding: 0 0 1.35rem 1.35rem;
  position: relative;
}
.about-timeline-list li:last-child { padding-bottom: 0; }
.about-timeline-list li::before {
  content: "";
  position: absolute;
  left: -5px; top: .45rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #C9A15A;
  box-shadow: 0 0 0 3px rgba(201, 161, 90, 0.2);
}
.atl-year {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: #C9A15A;
  line-height: 1.3;
}
.about-timeline-list strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  color: #3F3F3F;
  margin-bottom: .3rem;
}
.about-timeline-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.6;
  max-width: 58ch;
}
@media (max-width: 680px) {
  .about-timeline-list li {
    grid-template-columns: 1fr;
    gap: .35rem;
  }
}

/* Services (legacy pages) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
}
.service-grid-3 { grid-template-columns: repeat(3, 1fr); }
.service-item {
  display: flex; flex-direction: column;
  min-height: 100%;
  padding: 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(63, 63, 63, 0.08);
  border-radius: 22px;
  box-shadow: 0 16px 36px -24px rgba(63, 63, 63, 0.16);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-item::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, #C9A15A, transparent);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.service-item:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 161, 90, 0.35);
  box-shadow: 0 28px 50px -24px rgba(63, 63, 63, 0.22);
  background: #fff;
}
.service-item:hover::before { opacity: 1; }
.service-item h3 {
  font-size: 1.35rem;
  margin-bottom: .5rem;
  color: #3F3F3F;
}
.service-item p {
  color: var(--ink-soft);
  font-size: .96rem;
  flex: 1;
  margin-bottom: 1.15rem;
  line-height: 1.65;
}
.service-more {
  font-size: .88rem; font-weight: 700; color: #B08A48;
  opacity: .85;
  transition: opacity .3s var(--ease), transform .3s var(--ease), color .3s var(--ease);
}
.service-item:hover .service-more {
  opacity: 1;
  color: #3F3F3F;
  transform: translateX(4px);
}

/* Home — Hizmetler (premium compact) */
.home-services {
  padding-top: clamp(.85rem, 1.8vw, 1.35rem);
  padding-bottom: clamp(.85rem, 1.8vw, 1.35rem);
  background:
    radial-gradient(560px 240px at 8% 0%, rgba(201, 161, 90, 0.16), transparent 55%),
    radial-gradient(480px 220px at 100% 70%, rgba(63, 63, 63, 0.07), transparent 58%),
    linear-gradient(180deg, #F3EDE4 0%, #F7F2EA 42%, #F1EBE2 100%);
}
.home-services-head {
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: .85rem;
  text-align: center;
}
.home-services-head h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
  margin-bottom: .35rem;
}
.home-services-head p:last-child {
  font-size: .95rem;
  line-height: 1.55;
}

.mode-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 1rem;
  margin-bottom: .55rem;
}
.mode-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  min-height: 100%;
  padding: 1.25rem 1.35rem 1.2rem;
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform .35s var(--ease),
    border-color .35s var(--ease),
    box-shadow .35s var(--ease),
    background .35s var(--ease);
}
.mode-panel--gold {
  background:
    radial-gradient(320px 160px at 0% 0%, rgba(255, 255, 255, 0.55), transparent 55%),
    linear-gradient(145deg, #FBF6EE 0%, #F3E7D4 48%, #EAD7B8 100%);
  border: 1.5px solid rgba(201, 161, 90, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35) inset,
    0 0 20px rgba(201, 161, 90, 0.18),
    0 18px 36px -22px rgba(42, 42, 42, 0.28);
}
.mode-panel--ink {
  background:
    radial-gradient(300px 150px at 100% 0%, rgba(201, 161, 90, 0.22), transparent 55%),
    linear-gradient(155deg, #4A4A4A 0%, #2F2F2F 55%, #232323 100%);
  border: 1.5px solid rgba(201, 161, 90, 0.4);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 22px rgba(201, 161, 90, 0.16),
    0 20px 40px -22px rgba(20, 20, 20, 0.55);
}
.mode-panel-glow {
  position: absolute;
  inset: -25%;
  background: radial-gradient(circle at 28% 18%, rgba(201, 161, 90, 0.35), transparent 52%);
  opacity: .4;
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.mode-panel--ink .mode-panel-glow {
  background: radial-gradient(circle at 75% 15%, rgba(232, 212, 168, 0.28), transparent 50%);
}
.mode-panel:hover { transform: translateY(-4px); }
.mode-panel--gold:hover {
  border-color: rgba(232, 212, 168, 1);
  box-shadow:
    0 0 14px rgba(201, 161, 90, 0.5),
    0 0 34px rgba(201, 161, 90, 0.28),
    0 24px 44px -20px rgba(42, 42, 42, 0.32);
}
.mode-panel--ink:hover {
  border-color: rgba(232, 212, 168, 0.85);
  box-shadow:
    0 0 16px rgba(201, 161, 90, 0.45),
    0 0 36px rgba(201, 161, 90, 0.22),
    0 24px 44px -18px rgba(0, 0, 0, 0.5);
}
.mode-panel:hover .mode-panel-glow {
  opacity: 1;
  transform: scale(1.05);
}
.mode-panel-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .75rem;
}
.mode-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  flex-shrink: 0;
  transition: box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.mode-icon svg { width: 18px; height: 18px; }
.mode-icon.mode-icon--large {
  width: 96px;
  height: 96px;
  border-radius: 22px;
}
.mode-icon.mode-icon--large svg {
  width: 58px;
  height: 58px;
  stroke-width: 1.25;
}
.mode-panel--gold .mode-icon {
  color: #8F6E35;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(201, 161, 90, 0.4);
  box-shadow: 0 0 14px rgba(201, 161, 90, 0.18);
}
.mode-panel--ink .mode-icon {
  color: #E8D4A8;
  background: rgba(201, 161, 90, 0.14);
  border: 1px solid rgba(201, 161, 90, 0.4);
  box-shadow: 0 0 16px rgba(201, 161, 90, 0.2);
}
.mode-panel--gold:hover .mode-icon {
  background: #3F3F3F;
  color: #E8D4A8;
  border-color: #3F3F3F;
}
.mode-panel--ink:hover .mode-icon {
  background: #C9A15A;
  color: #1D1D1D;
  border-color: #C9A15A;
}
.mode-badge {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .28rem .6rem;
  border-radius: 999px;
}
.mode-panel--gold .mode-badge {
  color: #8F6E35;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(201, 161, 90, 0.35);
}
.mode-panel--ink .mode-badge {
  color: #E8D4A8;
  background: rgba(201, 161, 90, 0.12);
  border: 1px solid rgba(201, 161, 90, 0.35);
}
.mode-panel-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}
.mode-panel-body { position: relative; z-index: 1; flex: 1; min-width: 0; }
.svc-thumb {
  flex: 0 0 auto;
  width: 72px;
  height: 52px;
  border-radius: 12px;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: grid;
  place-items: center;
  padding: 0;
}
.svc-thumb img {
  width: 88%;
  height: 88%;
  display: block;
  object-fit: contain;
  object-position: center;
}
.svc-thumb--sm {
  width: 56px;
  height: 40px;
  border-radius: 0;
  padding: 0;
}
.mode-panel--ink .svc-thumb {
  background: transparent;
  border-color: transparent;
}
.mode-panel h3 {
  margin: 0 0 .25rem;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.mode-panel--gold h3 { color: #3F3F3F; }
.mode-panel--ink h3 { color: #F7F2EA; }
.mode-panel p {
  margin: 0;
  font-size: .94rem;
  line-height: 1.6;
}
.mode-panel--gold p { color: rgba(63, 63, 63, 0.78); }
.mode-panel--ink p { color: rgba(247, 242, 234, 0.7); }
.mode-more {
  position: relative;
  z-index: 1;
  font-size: .86rem;
  font-weight: 700;
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.mode-panel-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: .75rem;
  margin-top: auto;
}
.mode-panel-cta {
  flex-shrink: 0;
}
.mode-panel--gold .mode-more { color: #A07A3C; }
.mode-panel--ink .mode-more { color: #C9A15A; }
.mode-panel:hover .mode-more { transform: translateX(3px); }
.mode-panel--gold:hover .mode-more { color: #3F3F3F; }
.mode-panel--ink:hover .mode-more { color: #E8D4A8; }

.expertise-block { margin-top: .15rem; }
.expertise-block-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem .85rem;
  margin-bottom: .75rem;
}
.expertise-label {
  margin: 0;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #B08A48;
}
.expertise-rule {
  display: none;
  width: 1.6rem;
  height: 1px;
  background: linear-gradient(90deg, #C9A15A, transparent);
}
.expertise-block-head > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: .88rem;
}
.expertise-neon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
}
.expertise-neon {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: .95rem 1rem .9rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(251, 246, 238, 0.72) 100%);
  border: 1px solid rgba(201, 161, 90, 0.28);
  box-shadow: 0 12px 28px -22px rgba(42, 42, 42, 0.28);
  overflow: hidden;
  transition:
    transform .35s var(--ease),
    border-color .35s var(--ease),
    box-shadow .35s var(--ease),
    background .35s var(--ease);
}
.expertise-neon-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: .7rem;
}
.expertise-neon-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.expertise-neon::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2.5px;
  background: linear-gradient(180deg, #C9A15A, rgba(201, 161, 90, 0.15));
  opacity: .75;
}
.expertise-neon-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 0% 0%, rgba(201, 161, 90, 0.28), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.expertise-neon:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 161, 90, 0.75);
  background: #fff;
  box-shadow:
    0 0 12px rgba(201, 161, 90, 0.38),
    0 0 28px rgba(201, 161, 90, 0.18),
    0 16px 34px -20px rgba(42, 42, 42, 0.3);
}
.expertise-neon:hover .expertise-neon-glow { opacity: 1; }
.expertise-index {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: #C9A15A;
  opacity: .7;
}
.expertise-neon h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #3F3F3F;
  letter-spacing: -0.015em;
  padding-right: 1.25rem;
  line-height: 1.25;
}
.expertise-neon p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .84rem;
  line-height: 1.45;
}
.expertise-neon-more {
  position: absolute;
  top: .95rem;
  right: .9rem;
  z-index: 1;
  font-size: 1rem;
  font-weight: 700;
  color: #C9A15A;
  opacity: .5;
  transition: opacity .3s var(--ease), transform .3s var(--ease), color .3s var(--ease);
}
.expertise-neon:hover .expertise-neon-more {
  opacity: 1;
  color: #3F3F3F;
  transform: translateX(3px);
}

/* Home — Uzmanlık alanları, 11 + 11 neon liste */
.home-expertise {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 420px at 8% 8%, rgba(201, 161, 90, .12), transparent 60%),
    radial-gradient(620px 380px at 95% 92%, rgba(201, 161, 90, .08), transparent 62%),
    linear-gradient(180deg, #F7F2EA 0%, #FBF8F3 52%, #F5EFE6 100%);
  color: var(--ink-soft);
  padding-block: clamp(1.35rem, 2.8vw, 2.35rem);
}
.home-expertise::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .3;
  background-image: linear-gradient(rgba(63,63,63,.025) 1px, transparent 1px);
  background-size: 100% 42px;
}
.home-expertise > .container {
  position: relative;
  z-index: 1;
}
.home-expertise-head {
  max-width: 720px;
  margin: 0 auto clamp(1rem, 2vw, 1.55rem);
  text-align: center;
}
.home-expertise-head .eyebrow {
  color: #B08A48;
  justify-content: center;
}
.home-expertise-head .eyebrow::before {
  background: linear-gradient(90deg, #C9A15A, transparent);
}
.home-expertise-head h2 {
  color: #3F3F3F;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  margin-bottom: .55rem;
  text-shadow: 0 0 24px rgba(201, 161, 90, .15);
}
.home-expertise-head > p:last-child {
  margin: 0;
  color: var(--ink-soft);
}
.expertise-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: start;
}
.expertise-column {
  display: grid;
  gap: .55rem;
  padding: .7rem;
  border: 1px solid rgba(201, 161, 90, .24);
  border-radius: 24px;
  background: rgba(255, 255, 255, .42);
  box-shadow:
    0 24px 55px -38px rgba(42, 42, 42, .32),
    0 0 0 1px rgba(255, 255, 255, .5) inset;
  backdrop-filter: blur(8px);
}
.expertise-list-item {
  position: relative;
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr) 1.5rem;
  align-items: center;
  gap: .75rem;
  min-height: 58px;
  padding: .7rem .85rem;
  overflow: hidden;
  border: 1px solid rgba(201, 161, 90, .2);
  border-radius: 14px;
  background: rgba(255, 255, 255, .62);
  color: #3F3F3F;
  transition:
    transform .3s var(--ease),
    border-color .3s var(--ease),
    background .3s var(--ease),
    box-shadow .3s var(--ease);
}
.expertise-list-glow {
  position: absolute;
  inset: -50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at 12% 50%, rgba(201, 161, 90, .34), transparent 45%);
  transition: opacity .35s var(--ease), transform .4s var(--ease);
}
.expertise-list-index,
.expertise-list-title,
.expertise-list-arrow {
  position: relative;
  z-index: 1;
}
.expertise-list-index {
  color: #C9A15A;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  opacity: .8;
  text-align: center;
  text-shadow: 0 0 10px rgba(201, 161, 90, .38);
}
.expertise-list-title {
  font-family: var(--font-serif);
  font-size: clamp(.94rem, 1.3vw, 1.08rem);
  font-weight: 550;
  line-height: 1.3;
}
.expertise-list-arrow {
  color: #C9A15A;
  font-size: 1.05rem;
  opacity: .5;
  transition: transform .3s var(--ease), opacity .3s var(--ease), filter .3s var(--ease);
}
.expertise-list-item:hover {
  z-index: 2;
  transform: translateX(4px);
  border-color: rgba(232, 212, 168, .72);
  background: #FFFDF9;
  box-shadow:
    0 0 10px rgba(201, 161, 90, .35),
    0 0 26px rgba(201, 161, 90, .2),
    0 14px 28px -18px rgba(42, 42, 42, .32);
}
.expertise-list-item:hover .expertise-list-glow {
  opacity: 1;
  transform: scale(1.06);
}
.expertise-list-item:hover .expertise-list-title {
  color: #8F6E35;
  text-shadow: 0 0 16px rgba(201, 161, 90, .28);
}
.expertise-list-item:hover .expertise-list-arrow {
  opacity: 1;
  transform: translateX(3px);
  filter: drop-shadow(0 0 7px rgba(201, 161, 90, .9));
}
.home-expertise-cta {
  margin-top: clamp(.9rem, 1.8vw, 1.35rem);
}
.home-expertise-cta .btn-outline {
  border-color: rgba(201, 161, 90, .5);
  color: #8F6E35;
  background: rgba(255, 255, 255, .55);
}
.home-expertise-cta .btn-outline:hover {
  border-color: #D4BC94;
  color: #1D1D1D;
  background: #D4BC94;
  box-shadow: 0 0 24px rgba(201, 161, 90, .35);
}
@media (prefers-reduced-motion: reduce) {
  .expertise-list-item,
  .expertise-list-glow,
  .expertise-list-arrow { transition: none; }
}
.home-services-cta { margin-top: 1.15rem; }
.home-services-cta .btn-outline {
  border-color: rgba(201, 161, 90, 0.55);
  color: #8F6E35;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 16px rgba(201, 161, 90, 0.12);
}
.home-services-cta .btn-outline:hover {
  background: #3F3F3F;
  border-color: #3F3F3F;
  color: #E8D4A8;
  box-shadow: 0 0 22px rgba(201, 161, 90, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .mode-panel,
  .expertise-neon { transition: none; }
}

.expertise-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.expertise-grid.dense { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.services-landing {
  padding-top: clamp(1.5rem, 3vw, 2.5rem) !important;
}
.services-intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .75fr);
  gap: .7rem 1.4rem;
  align-items: end;
  margin-bottom: 1.05rem;
  padding: .7rem 0 .85rem;
  border-bottom: 1px solid rgba(201, 161, 90, 0.16);
}
.services-intro-copy h2 {
  margin: .2rem 0 0;
  max-width: none;
  width: max-content;
  font-family: var(--font-serif);
  font-size: clamp(1.28rem, 1.85vw, 1.58rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #3F3F3F;
  white-space: nowrap;
}
.services-intro-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: .93rem;
  line-height: 1.62;
  max-width: 34ch;
  justify-self: end;
}
.services-grid-premium {
  gap: 1.1rem;
}
.expertise-card {
  display: flex; flex-direction: column; gap: .5rem;
  padding: 1rem 1rem 1.05rem;
  background: #fff;
  border: 1px solid rgba(63, 63, 63, 0.08);
  border-radius: 22px;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.expertise-card-visual {
  aspect-ratio: 1.45 / 1;
  border-radius: 16px;
  overflow: visible;
  background: transparent;
  border: 0;
  margin-bottom: .35rem;
  display: grid;
  place-items: center;
  padding: .85rem 1rem;
}
.expertise-card-visual img {
  width: min(58%, 150px);
  height: auto;
  max-height: 78%;
  object-fit: contain;
  display: block;
  transition: transform .35s var(--ease);
}
.expertise-card:hover {
  border-color: rgba(201, 161, 90, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -24px rgba(63, 63, 63, 0.2);
}
.expertise-card:hover .expertise-card-visual img { transform: scale(1.04); }
.expertise-card h3 { font-size: 1.25rem; margin: 0; color: #3F3F3F; }
.expertise-card p { margin: 0; color: var(--ink-soft); font-size: .94rem; }
.service-premium-card {
  position: relative;
  gap: .48rem;
  padding: .82rem .82rem .78rem;
  border: 1px solid rgba(201, 161, 90, 0.18);
  background:
    radial-gradient(140% 100% at 0% 0%, rgba(201, 161, 90, 0.12), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 244, 236, 0.82));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.38) inset,
    0 14px 32px -24px rgba(42, 42, 42, 0.22);
  overflow: hidden;
  isolation: isolate;
}
.service-premium-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(232, 212, 168, 0.34), transparent 55%),
    radial-gradient(80% 60% at 80% 100%, rgba(201, 161, 90, 0.18), transparent 58%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.service-premium-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .5rem;
}
.service-premium-index {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: rgba(143, 110, 53, 0.8);
}
.service-premium-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 .65rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 161, 90, 0.24);
  background: rgba(255, 255, 255, 0.72);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #A07A3C;
}
.service-premium-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-weight: 500;
  font-variation-settings: "SOFT" 72, "opsz" 30, "wght" 500;
  font-size: clamp(1.08rem, 1.3vw, 1.2rem);
  line-height: 1.3;
  letter-spacing: 0.012em;
  margin: 0;
  color: #4A4A4A;
  transition: color .35s var(--ease), text-shadow .35s var(--ease), transform .35s var(--ease);
}
.service-premium-card p {
  position: relative;
  z-index: 1;
  font-size: .89rem;
  line-height: 1.52;
  color: rgba(74, 74, 74, 0.8);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-premium-more {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 0;
  font-size: .79rem;
  font-weight: 700;
  color: #A07A3C;
  transition: transform .3s var(--ease), color .3s var(--ease);
}
.service-premium-card:hover {
  border-color: rgba(201, 161, 90, 0.72);
  transform: translateY(-5px);
  box-shadow:
    0 0 16px rgba(201, 161, 90, 0.34),
    0 0 34px rgba(201, 161, 90, 0.18),
    0 24px 46px -26px rgba(42, 42, 42, 0.28);
}
.service-premium-card:hover .service-premium-glow {
  opacity: 1;
  transform: scale(1.04);
}
.service-premium-card:hover h3 {
  color: #8F6E35;
  font-variation-settings: "SOFT" 78, "opsz" 30, "wght" 520;
  text-shadow: 0 0 14px rgba(201, 161, 90, 0.12);
  transform: none;
}
.service-premium-card:hover .service-premium-chip {
  background: linear-gradient(135deg, #C9A15A, #A88B55);
  color: #1D1D1D;
  border-color: transparent;
  box-shadow: 0 0 16px rgba(201, 161, 90, 0.28);
}
.service-premium-card:hover .expertise-card-visual {
  border-color: rgba(201, 161, 90, 0.42);
  box-shadow: 0 0 18px rgba(201, 161, 90, 0.16);
}
.service-premium-card:hover .service-premium-more {
  transform: translateX(3px);
  color: #3F3F3F;
}

/* Process — premium neon journey */
.home-process {
  padding-top: clamp(1rem, 2vw, 1.55rem);
  padding-bottom: clamp(1.1rem, 2.2vw, 1.7rem);
  background:
    radial-gradient(520px 220px at 50% 0%, rgba(201, 161, 90, 0.14), transparent 58%),
    radial-gradient(460px 200px at 0% 100%, rgba(63, 63, 63, 0.05), transparent 55%),
    linear-gradient(180deg, #F6F1E9 0%, #F3EDE4 50%, #F7F2EA 100%);
}
.home-process-head {
  max-width: none;
  margin-bottom: .85rem;
}
.home-process-head h2 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
  white-space: nowrap;
  max-width: none;
}
.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .7rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
  position: relative;
}
.process-list::before {
  content: "";
  position: absolute;
  top: 1.55rem;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201, 161, 90, 0.45) 12%,
    rgba(201, 161, 90, 0.7) 50%,
    rgba(201, 161, 90, 0.45) 88%,
    transparent 100%);
  box-shadow: 0 0 12px rgba(201, 161, 90, 0.35);
  pointer-events: none;
  z-index: 0;
}
.process-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(251, 246, 238, 0.78) 100%);
  border: 1px solid rgba(201, 161, 90, 0.3);
  border-radius: 18px;
  padding: 1.05rem .95rem 1rem;
  overflow: hidden;
  transition:
    border-color .35s var(--ease),
    box-shadow .35s var(--ease),
    transform .35s var(--ease),
    background .35s var(--ease);
}
.process-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 20% 0%, rgba(201, 161, 90, 0.28), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.process-item:hover {
  border-color: rgba(201, 161, 90, 0.75);
  background: #fff;
  box-shadow:
    0 0 12px rgba(201, 161, 90, 0.4),
    0 0 28px rgba(201, 161, 90, 0.18),
    0 18px 36px -20px rgba(42, 42, 42, 0.28);
  transform: translateY(-4px);
}
.process-item:hover .process-glow { opacity: 1; }
.process-num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: #8F6E35;
  line-height: 1;
  margin-bottom: .15rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(201, 161, 90, 0.45);
  box-shadow:
    0 0 10px rgba(201, 161, 90, 0.25),
    0 0 0 3px rgba(201, 161, 90, 0.08);
  transition: background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.process-item:hover .process-num {
  background: #3F3F3F;
  color: #E8D4A8;
  border-color: #3F3F3F;
  box-shadow:
    0 0 14px rgba(201, 161, 90, 0.45),
    0 0 0 3px rgba(201, 161, 90, 0.12);
}
.process-body { position: relative; z-index: 1; }
.process-item h3 {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 .35rem;
  color: #3F3F3F;
  line-height: 1.25;
}
.process-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .84rem;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .process-item { transition: none; }
}

@media (max-width: 1100px) {
  .home-process-head h2 {
    white-space: normal;
  }
  .home-process-head h2 {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
  }
}

/* Testimonials + Son Makaleler — tek sıra premium */
.home-testimonials {
  padding-top: clamp(.75rem, 1.6vw, 1.2rem);
  padding-bottom: clamp(.85rem, 1.8vw, 1.35rem);
  background:
    radial-gradient(560px 240px at 100% 0%, rgba(201, 161, 90, 0.14), transparent 55%),
    radial-gradient(480px 220px at 0% 100%, rgba(63, 63, 63, 0.05), transparent 55%),
    linear-gradient(180deg, #F7F2EA 0%, #F3EDE4 48%, #F8F4EE 100%);
}
.testimonials-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: .65rem 1.25rem;
  flex-wrap: wrap;
  margin-bottom: .75rem;
}
.home-testimonials-head {
  margin-bottom: 0;
  max-width: 34rem;
}
.home-testimonials-head .eyebrow {
  margin-bottom: .45rem;
}
.home-testimonials-head h2 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  margin-bottom: .35rem;
}
.home-testimonials > .container {
  display: flex;
  flex-direction: column;
}
.home-testimonials-head p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: .94rem;
  line-height: 1.5;
}
.rating-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem 1.15rem;
  border-radius: 18px;
  background:
    radial-gradient(180px 90px at 0% 0%, rgba(255, 255, 255, 0.45), transparent 60%),
    linear-gradient(145deg, #D4BC94 0%, #C5A059 48%, #A88B55 100%);
  border: 1px solid rgba(201, 161, 90, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 0 20px rgba(201, 161, 90, 0.28),
    0 16px 34px -18px rgba(42, 42, 42, 0.35);
  overflow: hidden;
}
.rating-badge-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.35), transparent 50%);
  pointer-events: none;
}
.rating-badge .rating-score {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: #1D1D1D;
  line-height: 1;
}
.rating-badge-meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: .2rem;
}
.rating-badge .rating-stars {
  color: #3F3F3F;
  letter-spacing: .1em;
  font-size: .95rem;
  line-height: 1;
}
.rating-badge .rating-count {
  color: rgba(29, 29, 29, 0.72);
  font-size: .84rem;
  font-weight: 600;
}
.rating-row {
  display: flex; align-items: center; gap: .65rem; flex-wrap: wrap;
  margin-top: .85rem;
}
.rating-score {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 600;
  color: #3F3F3F;
  line-height: 1;
}
.rating-stars { color: #C9A15A; letter-spacing: .08em; }
.rating-count { color: var(--ink-soft); font-size: .92rem; }

.testimonials-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.92fr) minmax(0, 1.18fr);
  gap: 1rem;
  align-items: stretch;
}
.articles-panel {
  position: relative;
  margin: 0;
  padding: 1.15rem 1.15rem 1rem;
  border-radius: 22px;
  background:
    radial-gradient(280px 160px at 100% 0%, rgba(201, 161, 90, 0.24), transparent 55%),
    linear-gradient(155deg, #4A4A4A 0%, #2F2F2F 55%, #232323 100%);
  border: 1.5px solid rgba(201, 161, 90, 0.45);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 28px rgba(201, 161, 90, 0.18),
    0 22px 44px -24px rgba(20, 20, 20, 0.55);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  align-self: stretch;
}
.articles-panel-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 20% 15%, rgba(232, 212, 168, 0.22), transparent 50%);
  pointer-events: none;
}
.articles-panel-head {
  position: relative;
  z-index: 1;
  margin-bottom: .75rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(201, 161, 90, 0.2);
}
.articles-panel-label {
  margin: 0 0 .3rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #C9A15A;
}
.articles-panel-head h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.9vw, 1.45rem);
  color: #F7F2EA;
  letter-spacing: -0.02em;
}
.articles-panel-list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  flex: 1;
}
.articles-panel-list a {
  display: grid;
  gap: .12rem;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(201, 161, 90, 0.14);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.articles-panel-list li:last-child a { border-bottom: 0; }
.articles-panel-list a:hover { transform: translateX(3px); opacity: .92; }
.articles-panel-date {
  font-size: .68rem;
  letter-spacing: .06em;
  color: rgba(232, 212, 168, 0.62);
}
.articles-panel-list strong {
  color: #F7F2EA;
  font-family: var(--font-serif);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.articles-panel-list em {
  font-style: normal;
  color: rgba(247, 242, 234, 0.58);
  font-size: .78rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.articles-panel-list--titles {
  max-height: 520px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 161, 90, 0.55) rgba(255, 255, 255, 0.06);
}
.articles-panel-list--titles a {
  padding: .8rem 0;
}
.articles-panel-list--titles strong {
  font-size: 1.05rem;
}
.articles-panel-more {
  position: relative;
  z-index: 1;
  margin-top: .85rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .86rem;
  font-weight: 700;
  color: #C9A15A;
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.articles-panel-more:hover { color: #E8D4A8; transform: translateX(2px); }
.articles-panel-empty {
  position: relative;
  z-index: 1;
  color: rgba(247, 242, 234, 0.7);
  margin: 0;
}
.testimonial-side {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  height: 100%;
  min-height: 0;
}
.testimonial-scroll-frame {
  position: relative;
  flex: 1;
  min-height: 0;
  max-height: 620px;
  padding: .35rem;
  border-radius: 22px;
  border: 1.5px solid rgba(201, 161, 90, 0.55);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 242, 234, 0.88));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    0 0 14px rgba(201, 161, 90, 0.28),
    0 0 28px rgba(201, 161, 90, 0.14),
    0 18px 40px -28px rgba(42, 42, 42, 0.22);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior-y: auto;
  scrollbar-width: auto;
  scrollbar-color: #C5A059 rgba(201, 161, 90, 0.22);
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.testimonial-scroll-frame.is-scrolling {
  border-color: rgba(201, 161, 90, 0.85);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55) inset,
    0 0 18px rgba(201, 161, 90, 0.48),
    0 0 36px rgba(201, 161, 90, 0.28),
    0 18px 40px -24px rgba(42, 42, 42, 0.28);
}
.testimonial-scroll-frame--home {
  max-height: clamp(560px, 78vh, 720px);
  margin-top: .35rem;
  padding: .55rem .35rem .55rem .55rem;
}
.testimonial-scroll-frame--home .testimonial-grid--reviews {
  padding-bottom: .25rem;
  padding-right: .35rem;
}
.testimonial-scroll-frame--home:focus-visible {
  outline: 2px solid rgba(201, 161, 90, 0.7);
  outline-offset: 3px;
}
.testimonial-scroll-frame::-webkit-scrollbar {
  width: 18px;
}
.testimonial-scroll-frame::-webkit-scrollbar-track {
  background: rgba(201, 161, 90, 0.22);
  border-radius: 999px;
  margin: 8px 0;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: inset 0 0 8px rgba(201, 161, 90, 0.18);
}
.testimonial-scroll-frame::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #D4BC94 0%, #C5A059 45%, #A88B55 100%);
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.72);
  min-height: 56px;
  box-shadow:
    0 0 12px rgba(201, 161, 90, 0.55),
    0 0 20px rgba(201, 161, 90, 0.28);
}
.testimonial-scroll-frame::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #E0CBA6 0%, #C5A059 45%, #9A7A45 100%);
  box-shadow:
    0 0 16px rgba(201, 161, 90, 0.7),
    0 0 28px rgba(201, 161, 90, 0.35);
}
.testimonial-side-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .35rem .85rem;
}
.testimonial-side-head .expertise-label { margin: 0; }
.testimonial-side-head p:last-child {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  color: #3F3F3F;
  letter-spacing: -0.02em;
}
.testimonial-reviews-link {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.35rem;
  margin: .85rem auto 0;
  border-radius: 999px;
  border: 1px solid rgba(201, 161, 90, 0.45);
  background: linear-gradient(135deg, #D4BC94 0%, #C5A059 42%, #A88B55 100%);
  color: #1D1D1D;
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow:
    0 12px 26px -14px rgba(168, 139, 85, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.22) inset;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), filter .3s var(--ease);
}
.testimonial-reviews-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 16px 30px -14px rgba(168, 139, 85, 0.62),
    0 0 18px rgba(201, 161, 90, 0.22);
}
.testimonial-grid--compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  flex: 1;
  align-content: stretch;
}
.testimonial-grid--reviews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
}
.testimonial-grid--reviews .testimonial-card {
  height: 100%;
  margin: 0;
  padding: .72rem .82rem .68rem;
}
.testimonial-grid--reviews blockquote {
  font-size: .86rem;
  line-height: 1.45;
  margin-bottom: .5rem;
}
.testimonial-grid--reviews .testimonial-stars {
  font-size: .68rem;
  margin-bottom: .28rem;
}
.testimonial-grid--reviews .testimonial-card figcaption {
  padding-top: .42rem;
  font-size: .78rem;
}
.testimonial-grid--compact .testimonial-card {
  height: 100%;
  padding: .9rem .9rem .85rem;
  border-radius: 16px;
  border: 1px solid rgba(201, 161, 90, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 246, 238, 0.88));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.4) inset,
    0 12px 28px -22px rgba(42, 42, 42, 0.25);
}
.testimonial-grid--compact .testimonial-card:hover {
  border-color: rgba(201, 161, 90, 0.65);
  box-shadow:
    0 0 14px rgba(201, 161, 90, 0.28),
    0 16px 34px -20px rgba(42, 42, 42, 0.28);
}
.testimonial-grid--compact .testimonial-stars {
  font-size: .72rem;
  margin-bottom: .4rem;
}
.testimonial-grid--compact blockquote {
  font-size: .84rem;
  line-height: 1.45;
  margin-bottom: .7rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-grid--compact figcaption {
  padding-top: .55rem;
}
.testimonial-featured {
  position: relative;
  margin: 0;
  padding: 1.65rem 1.5rem 1.4rem;
  border-radius: 22px;
  background:
    radial-gradient(320px 180px at 100% 0%, rgba(201, 161, 90, 0.2), transparent 55%),
    linear-gradient(155deg, #4A4A4A 0%, #2F2F2F 55%, #232323 100%);
  border: 1.5px solid rgba(201, 161, 90, 0.4);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 24px rgba(201, 161, 90, 0.16),
    0 24px 48px -24px rgba(20, 20, 20, 0.55);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.testimonial-featured-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 20% 15%, rgba(232, 212, 168, 0.22), transparent 50%);
  pointer-events: none;
}
.testimonial-quote {
  position: absolute;
  top: .35rem;
  right: 1rem;
  font-family: var(--font-serif);
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(201, 161, 90, 0.28);
  pointer-events: none;
}
.testimonial-featured .testimonial-stars {
  position: relative;
  z-index: 1;
  color: #C9A15A;
  font-size: .9rem;
  letter-spacing: .12em;
  margin-bottom: .85rem;
  text-shadow: 0 0 12px rgba(201, 161, 90, 0.45);
}
.testimonial-featured blockquote {
  position: relative;
  z-index: 1;
  margin: 0 0 1.35rem;
  color: rgba(247, 242, 234, 0.92);
  font-family: var(--font-serif);
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.015em;
  flex: 1;
}
.testimonial-featured figcaption {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 161, 90, 0.22);
}
.testimonial-featured figcaption strong {
  display: block;
  color: #F7F2EA;
  font-size: .95rem;
  font-weight: 700;
}
.testimonial-featured figcaption em {
  display: block;
  margin-top: .15rem;
  font-style: normal;
  color: rgba(232, 212, 168, 0.7);
  font-size: .78rem;
  letter-spacing: .04em;
}
.testimonial-avatar {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #1D1D1D;
  background: linear-gradient(145deg, #E8D4A8, #C9A15A);
  box-shadow: 0 0 14px rgba(201, 161, 90, 0.35);
}
.testimonial-avatar--sm {
  width: 2rem;
  height: 2rem;
  font-size: .68rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
}
.testimonial-card {
  position: relative;
  margin: 0;
  padding: 1rem 1rem .95rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(251, 246, 238, 0.82) 100%);
  border: 1.5px solid rgba(201, 161, 90, 0.48);
  border-radius: 16px;
  box-shadow:
    0 0 10px rgba(201, 161, 90, 0.22),
    0 0 20px rgba(201, 161, 90, 0.1),
    0 12px 28px -22px rgba(42, 42, 42, 0.28);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform .35s var(--ease),
    box-shadow .35s var(--ease),
    border-color .35s var(--ease),
    background .35s var(--ease);
}
.testimonial-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 0% 0%, rgba(201, 161, 90, 0.28), transparent 55%);
  opacity: .45;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 161, 90, 0.9);
  background: #fff;
  box-shadow:
    0 0 16px rgba(201, 161, 90, 0.5),
    0 0 32px rgba(201, 161, 90, 0.28),
    0 16px 34px -18px rgba(42, 42, 42, 0.28);
}
.testimonial-card:hover .testimonial-card-glow { opacity: 1; }
.testimonial-card-top { position: relative; z-index: 1; }
.testimonial-stars {
  color: #C9A15A;
  font-size: .78rem;
  letter-spacing: .08em;
  margin-bottom: .55rem;
}
.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0 0 .85rem;
  color: var(--ink);
  font-size: .88rem;
  line-height: 1.55;
  flex: 1;
}
.testimonial-card figcaption {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-top: auto;
  padding-top: .7rem;
  border-top: 1px solid rgba(63, 63, 63, 0.08);
  font-weight: 700;
  color: #3F3F3F;
  font-size: .84rem;
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-card { transition: none; }
}

/* FAQ */
#sss {
  position: relative;
  overflow: hidden;
  padding-top: clamp(.85rem, 1.8vw, 1.35rem);
  padding-bottom: clamp(1rem, 2vw, 1.55rem);
  background:
    radial-gradient(520px 260px at 8% 5%, rgba(201, 161, 90, .14), transparent 62%),
    radial-gradient(520px 280px at 94% 92%, rgba(201, 161, 90, .1), transparent 64%),
    linear-gradient(180deg, #F8F4EE 0%, #F3EDE4 100%);
}
#sss::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(201, 161, 90, .035), transparent);
}
.faq-layout {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
#sss .section-head {
  text-align: center;
  margin-inline: auto;
  margin-bottom: .85rem;
}
#sss .section-head h2 {
  display: inline-block;
  position: relative;
  color: #3F3F3F;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}
#sss .section-head h2::after {
  content: "";
  display: block;
  width: 72%;
  height: 2px;
  margin: .65rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #C9A15A, transparent);
  box-shadow:
    0 0 8px rgba(201, 161, 90, .75),
    0 0 18px rgba(201, 161, 90, .38);
}
#sss .accordion {
  display: grid;
  gap: .65rem;
}
.accordion-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 161, 90, .22);
  border-radius: 16px;
  background: rgba(255, 255, 255, .68);
  box-shadow:
    0 10px 26px -22px rgba(42, 42, 42, .32),
    0 0 0 1px rgba(255, 255, 255, .45) inset;
  transition:
    transform .3s var(--ease),
    border-color .3s var(--ease),
    box-shadow .3s var(--ease),
    background .3s var(--ease);
}
.accordion-item:hover,
.accordion-item[open] {
  transform: translateY(-2px);
  border-color: rgba(201, 161, 90, .7);
  background: rgba(255, 253, 249, .96);
  box-shadow:
    0 0 10px rgba(201, 161, 90, .34),
    0 0 24px rgba(201, 161, 90, .16),
    0 16px 32px -22px rgba(42, 42, 42, .3);
}
.accordion-item summary {
  cursor: pointer; list-style: none; padding: 1rem 3.5rem 1rem 1.15rem;
  font-weight: 700; color: #3F3F3F; position: relative;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after {
  content: "+"; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201, 161, 90, .4);
  border-radius: 50%;
  color: #B08A48;
  background: rgba(201, 161, 90, .08);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;
  transition: color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.accordion-item[open] summary::after { content: "–"; }
.accordion-item:hover summary::after,
.accordion-item[open] summary::after {
  color: #1D1D1D;
  background: #C9A15A;
  box-shadow:
    0 0 8px rgba(201, 161, 90, .65),
    0 0 18px rgba(201, 161, 90, .34);
}
.accordion-body {
  padding: .85rem 3.5rem 1rem 1.15rem;
  color: var(--ink-soft);
  border-top: 1px solid rgba(201, 161, 90, .12);
}
.accordion-body p { margin: 0; max-width: 58ch; line-height: 1.7; }

/* CTA */
.cta-band {
  padding: clamp(.85rem, 1.8vw, 1.25rem) 0;
  background:
    radial-gradient(620px 260px at 90% 40%, rgba(255, 255, 255, 0.22), transparent 60%),
    radial-gradient(500px 240px at 10% 80%, rgba(255, 255, 255, 0.1), transparent 55%),
    linear-gradient(120deg, #E6DDD0 0%, #D8CBB6 38%, #C9B89A 72%, #B8A588 100%);
  color: #1D1D1D;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  opacity: .07;
  pointer-events: none;
  mix-blend-mode: soft-light;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem 1.75rem; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-band .eyebrow { color: #5A4A2E; margin-bottom: .3rem; }
.cta-band .eyebrow::before { background: linear-gradient(90deg, #5A4A2E, transparent); }
.cta-band h2 {
  color: #1D1D1D;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  max-width: 18ch;
  margin: 0 0 .35rem;
  line-height: 1.15;
}
.cta-band p { color: rgba(29,29,29,.72); max-width: 42ch; margin: 0; font-size: .95rem; line-height: 1.5; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .55rem; }
.cta-band .btn-primary,
.cta-band .btn-gold {
  background: #2A2A2A !important;
  color: #fff !important;
  box-shadow: 0 14px 30px -12px rgba(42, 42, 42, 0.45);
}
.cta-band .btn-primary:hover,
.cta-band .btn-gold:hover {
  background: #3F3F3F !important;
}
.cta-band .btn-ghost-light {
  border-color: rgba(29, 29, 29, 0.28);
  color: #1D1D1D;
  background: rgba(255, 255, 255, 0.35);
}
.cta-band .btn-ghost-light:hover {
  border-color: #1D1D1D;
  background: rgba(255, 255, 255, 0.55);
}
.cta-band--clinic {
  padding: 0;
  background: #D8CBB6;
  line-height: 0;
}
.cta-band--clinic::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 10px;
  border: 1px solid rgba(232, 212, 168, .92);
  border-radius: 10px;
  box-shadow:
    0 0 7px rgba(232, 212, 168, .9),
    0 0 18px rgba(201, 161, 90, .72),
    0 0 34px rgba(201, 161, 90, .4),
    inset 0 0 9px rgba(232, 212, 168, .62);
  pointer-events: none;
}
.cta-band--clinic::after {
  display: none;
}
.cta-clinic-image {
  position: relative;
  z-index: 0;
  width: 100%;
  height: clamp(300px, 44vw, 480px);
  aspect-ratio: auto;
  margin-inline: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}
/* Contact */
.contact-page-content {
  padding-top: clamp(1.25rem, 2.5vw, 2rem);
}
.contact-page-hero {
  padding-bottom: 0;
}
.contact-page-hero .page-hero-row {
  min-height: clamp(90px, 11vw, 120px);
}
.contact-page-hero .page-hero-deco {
  height: clamp(90px, 12vw, 125px);
}
.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
}
.info-list li { margin-bottom: 1.25rem; }
.info-list span {
  display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--secondary); font-weight: 700; margin-bottom: .25rem;
}
.info-list strong { display: block; font-weight: 500; }
.map-frame {
  margin-top: 1.5rem;
  border: 1px solid rgba(232, 212, 168, .92);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow:
    0 0 7px rgba(232, 212, 168, .88),
    0 0 18px rgba(201, 161, 90, .65),
    0 0 30px rgba(201, 161, 90, .34),
    inset 0 0 8px rgba(232, 212, 168, .5);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.contact-form-wrap {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; box-shadow: var(--shadow);
}
.contact-form { display: grid; gap: .9rem; }
.contact-form label { display: grid; gap: .35rem; font-size: .86rem; font-weight: 700; color: var(--ink-soft); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; border: 1px solid var(--line); background: var(--bg);
  padding: .9rem 1rem; font: inherit; color: var(--ink); border-radius: var(--radius-sm);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(46, 109, 115, 0.14);
}
.therapy-choice {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: .55rem;
}
.therapy-choice legend {
  padding: 0;
  margin-bottom: .15rem;
  font-size: .86rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.therapy-choice-option {
  display: flex !important;
  align-items: center;
  gap: .7rem;
  margin: 0;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.therapy-choice-option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.therapy-choice-box {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1.5px solid rgba(63, 63, 63, 0.28);
  border-radius: 5px;
  background: #fff;
  display: grid;
  place-items: center;
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.therapy-choice-box::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px) scale(0);
  transition: transform .2s var(--ease);
}
.therapy-choice-option:hover {
  border-color: rgba(201, 161, 90, 0.45);
}
.therapy-choice-option:has(input:checked),
.therapy-choice-option:has(input:focus-visible) {
  border-color: rgba(201, 161, 90, 0.7);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 3px rgba(201, 161, 90, 0.14);
}
.therapy-choice-option:has(input:checked) .therapy-choice-box {
  background: linear-gradient(135deg, #C9A15A, #A88B55);
  border-color: transparent;
}
.therapy-choice-option:has(input:checked) .therapy-choice-box::after {
  transform: rotate(-45deg) translateY(-1px) scale(1);
}

.face-session-info {
  margin: 0;
  padding: 1rem 1.05rem 1.05rem;
  border: 1px solid rgba(201, 161, 90, 0.38);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.95), rgba(201, 161, 90, 0.08));
  font-size: .9rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.face-session-info--closed {
  border-color: rgba(150, 90, 82, 0.28);
  background: linear-gradient(180deg, #fbf6f5, rgba(150, 90, 82, 0.06));
}
.face-session-info[hidden],
.face-preferred-field[hidden] {
  display: none !important;
}
.face-session-info-label {
  margin: 0 0 .45rem;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  line-height: 1.35;
}
.face-session-info-intro,
.face-session-info-body,
.face-session-info-next {
  margin: 0;
}
.face-session-info-intro {
  margin-bottom: .7rem;
}
.face-session-slots {
  margin: 0 0 .75rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .4rem;
}
.face-session-slots li {
  position: relative;
  margin: 0;
  padding: .55rem .75rem .55rem 1.85rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(63, 63, 63, 0.08);
  color: var(--ink);
  font-weight: 600;
  font-size: .88rem;
}
.face-session-slots li::before {
  content: "";
  position: absolute;
  left: .75rem;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #C9A15A;
  transform: translateY(-50%);
}
.face-session-info-next {
  margin-top: .15rem;
  font-size: .84rem;
  color: rgba(63, 63, 63, 0.78);
}
.face-session-info--closed .face-session-info-body {
  color: #5f3a36;
  margin-bottom: .55rem;
}
.face-preferred-field {
  display: grid;
  gap: .35rem;
}
.face-preferred-hint {
  font-size: .8rem;
  font-weight: 500;
  color: rgba(63, 63, 63, 0.68);
  line-height: 1.4;
}

.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.alert { padding: .9rem 1rem; margin-bottom: 1rem; border-radius: var(--radius-sm); font-size: .92rem; }
.alert-success { background: #e8f3ef; color: #1f5a48; }
.alert-error { background: #f7eceb; color: #7a3430; }

.prose-wrap { max-width: 720px; }
.prose { font-size: 1.05rem; }
.prose p { margin-bottom: 1.15em; }
.prose ul, .prose ol { margin: 0 0 1.2em 1.15em; list-style: disc; }
.prose li { margin-bottom: .45em; }

/* Service detail — image float wrap */
.services-detail {
  padding-top: clamp(1rem, 2vw, 1.45rem) !important;
  padding-bottom: clamp(1.4rem, 3vw, 2.2rem) !important;
}
.services-detail-head {
  margin-bottom: .95rem;
  max-width: 58rem;
}
.services-detail-head h1 {
  margin: 0 0 .4rem;
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #3F3F3F;
}
.services-detail-lead {
  margin: 0;
  max-width: 68ch;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(74, 74, 74, 0.8);
}
.services-detail-flow {
  position: relative;
  max-width: 980px;
}
.services-detail-visual {
  float: left;
  width: min(100%, 320px);
  margin: 0 1.35rem 1rem 0;
  shape-outside: margin-box;
}
.services-detail-visual-frame {
  position: relative;
  border-radius: 22px;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  aspect-ratio: 1.1 / 1;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.services-detail-visual-frame img {
  width: min(78%, 200px);
  height: auto;
  max-height: 80%;
  display: block;
  object-fit: contain;
  object-position: center;
}
.services-detail-visual-label {
  margin: .55rem 0 0;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #A07A3C;
}
.services-detail-prose {
  font-size: 1.01rem;
  line-height: 1.72;
  color: rgba(63, 63, 63, 0.92);
}
.services-detail-prose > *:first-child { margin-top: 0; }
.services-detail-prose > *:last-child { margin-bottom: 0; }
.services-detail-prose p {
  margin: 0 0 .85em;
}
.services-detail-prose p:empty { display: none; }
.services-detail-prose h2,
.services-detail-prose h3,
.services-detail-prose h4 {
  font-family: var(--font-serif);
  color: #3F3F3F;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 1.1em 0 .4em;
  clear: none;
}
.services-detail-prose h2 { font-size: clamp(1.28rem, 1.9vw, 1.55rem); }
.services-detail-prose h3 { font-size: clamp(1.12rem, 1.6vw, 1.28rem); }
.services-detail-prose ul,
.services-detail-prose ol {
  margin: 0 0 1em;
  padding-left: 1.1em;
}
.services-detail-prose li {
  margin-bottom: .4em;
  padding-left: .1em;
  line-height: 1.6;
}
.services-detail-prose li::marker {
  color: #C9A15A;
}
.services-detail-prose strong {
  color: #3F3F3F;
  font-weight: 700;
}
.services-detail-prose br + br { display: none; }
.services-detail-cta {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.15rem;
  text-align: left;
}
.article-list { border-top: 1px solid var(--line-strong); }
.article-row {
  display: block; padding: 1.4rem 0; border-bottom: 1px solid var(--line);
  transition: color .25s var(--ease);
}
.article-row:hover h3 { color: var(--secondary); }
.article-row h3 { font-size: 1.45rem; margin-bottom: .35rem; }
.article-row p { margin: 0; color: var(--ink-soft); }

/* Footer */
.site-footer {
  background:
    radial-gradient(620px 260px at 90% 40%, rgba(255, 255, 255, 0.38), transparent 60%),
    radial-gradient(500px 240px at 10% 80%, rgba(255, 255, 255, 0.18), transparent 55%),
    linear-gradient(120deg, #F4F1EC 0%, #EBE6DF 42%, #E3DDD5 78%, #DAD4CC 100%);
  color: rgba(29, 29, 29, .72);
  padding-top: clamp(1.75rem, 3.2vw, 2.5rem);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160,150,138,.35), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1.15fr 1fr;
  gap: 1.25rem;
  padding-bottom: 1.35rem;
}
.footer-brand img {
  width: clamp(180px, 20vw, 220px);
  margin-bottom: 1.15rem;
  background: transparent !important;
  border-radius: 0;
  padding: 0;
}
.footer-brand p { max-width: 36ch; line-height: 1.65; }
.site-footer h3 {
  color: #1D1D1D;
  font-family: var(--font-sans);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-weight: 700;
}
.footer-links a, .footer-contact a, .footer-social a { color: rgba(29,29,29,.72); transition: color .25s var(--ease); }
.footer-links a:hover, .footer-contact a:hover, .footer-social a:hover { color: #5A4A2E; }
.footer-links li, .footer-contact li, .footer-social li { margin-bottom: .6rem; }
.footer-contact--labeled li { margin-bottom: 1rem; }
.footer-contact--labeled span {
  display: block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: .25rem;
}
.footer-contact--labeled strong {
  display: block;
  font-weight: 500;
  color: rgba(29,29,29,.78);
  line-height: 1.45;
}
.footer-contact--labeled strong + strong { margin-top: .15rem; }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: .35rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(29,29,29,.2);
  color: #1D1D1D;
}
.footer-social a:hover {
  background: rgba(255, 255, 255, .3);
  border-color: rgba(29,29,29,.35);
  color: #5A4A2E;
}
.footer-map {
  margin-top: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(232, 212, 168, .92);
  box-shadow:
    0 0 7px rgba(232, 212, 168, .88),
    0 0 18px rgba(201, 161, 90, .65),
    0 0 30px rgba(201, 161, 90, .34),
    inset 0 0 8px rgba(232, 212, 168, .5);
  aspect-ratio: 16/10;
}
.footer-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.footer-bottom {
  background: transparent;
  border-top: 1px solid rgba(29,29,29,.12);
  padding: .85rem 0;
  font-size: .86rem;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-note { color: rgba(29,29,29,.58); margin: 0; }

.whatsapp-fab {
  position: fixed;
  left: auto !important;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
  text-decoration: none;
  color: inherit;
}
.whatsapp-fab-btn {
  position: relative;
  z-index: 2;
  pointer-events: none;
  box-shadow:
    0 14px 28px -12px rgba(168, 139, 85, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.35) inset !important;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.whatsapp-fab-cta {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  z-index: 1;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  white-space: nowrap;
  padding: 0;
  font-family: var(--font-sans);
  font-size: .86rem;
  font-weight: 600;
  line-height: 1.35;
  color: #2A2A2A;
  background: #FFF9F1;
  border: 1px solid rgba(197, 160, 89, 0.55);
  border-radius: 12px;
  box-shadow: 0 12px 28px -14px rgba(168, 139, 85, 0.45);
  pointer-events: none;
  transition:
    max-width .35s var(--ease),
    opacity .28s var(--ease),
    padding .35s var(--ease),
    transform .35s var(--ease);
}
.whatsapp-fab:hover .whatsapp-fab-btn,
.whatsapp-fab:focus-visible .whatsapp-fab-btn {
  transform: translateY(-2px) scale(1.02);
  background: #FFF9F1 !important;
  border-color: rgba(197, 160, 89, 0.75) !important;
  color: #3F3F3F !important;
  box-shadow:
    0 16px 32px -12px rgba(168, 139, 85, 0.5),
    0 0 16px rgba(197, 160, 89, 0.28) !important;
}
.whatsapp-fab:hover .whatsapp-fab-cta,
.whatsapp-fab:focus-visible .whatsapp-fab-cta {
  max-width: 360px;
  opacity: 1;
  padding: .55rem .95rem;
  transform: translateY(-50%) translateX(0);
}
.whatsapp-fab:focus-visible {
  outline: none;
}
.whatsapp-fab:focus-visible .whatsapp-fab-btn {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
@media (max-width: 680px) {
  .whatsapp-fab {
    left: auto !important;
    right: .75rem;
    bottom: .75rem;
  }
}
@media (hover: none) {
  .whatsapp-fab-cta {
    display: none;
  }
}

/* legacy assistant styles kept inert */
.assist { display: none !important; }

/* —— Kişisel Asistan (kaldırıldı; stiller pasif) —— */
.assist-fab {
  position: relative;
  width: 78px; height: 78px; border: 0; border-radius: 50%;
  background: transparent; cursor: pointer; padding: 0;
  box-shadow: 0 18px 36px -10px rgba(42, 42, 42, 0.3), 0 0 22px rgba(201, 161, 90, 0.28);
  transition: transform .35s var(--ease);
  animation: assistFloat 3.6s ease-in-out infinite;
}
.assist-fab:hover { transform: translateY(-3px) scale(1.03); animation-play-state: paused; }
.assist-fab-face {
  display: grid; place-items: center;
  width: 78px; height: 78px; border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #FFF9F1 0%, #E8D9BE 55%, #C8A977 140%);
  border: 3px solid rgba(255, 255, 255, 0.96);
  overflow: hidden;
  box-shadow: inset 0 -8px 18px rgba(15, 61, 62, 0.08), 0 0 0 1px rgba(201, 161, 90, 0.38);
}
.assist-fab-face svg { width: 60px; height: 60px; display: block; }
.assist-fab-pulse {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(201, 161, 90, 0.45);
  animation: assistPulse 2.2s ease-out infinite;
  pointer-events: none;
}
.assist-fab-pulse::after {
  content: "";
  position: absolute;
  top: 6px; right: 6px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: #4CAF82;
  border: 2px solid #fff;
  animation: assistOnline 2.2s ease-out infinite;
}
@keyframes assistFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes assistPulse {
  0% { transform: scale(.94); opacity: .75; }
  100% { transform: scale(1.3); opacity: 0; }
}
@keyframes assistOnline {
  0% { box-shadow: 0 0 0 0 rgba(76, 175, 130, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(76, 175, 130, 0); }
  100% { box-shadow: 0 0 0 0 rgba(76, 175, 130, 0); }
}
.assist-bubble {
  position: absolute; right: 96px; bottom: 22px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  color: var(--primary);
  border: 1px solid rgba(201, 161, 90, 0.22);
  border-radius: 18px 18px 6px 18px;
  padding: .85rem 1.05rem;
  font-size: .92rem; font-weight: 700;
  line-height: 1.35;
  max-width: 250px;
  box-shadow: 0 18px 34px -18px rgba(42, 42, 42, 0.26), 0 0 18px rgba(201, 161, 90, 0.14);
  opacity: 0; transform: translateY(8px) scale(.96);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  cursor: pointer;
  pointer-events: none;
}
.assist-bubble::after {
  content: "";
  position: absolute;
  right: -6px; bottom: 12px;
  width: 12px; height: 12px;
  background: inherit;
  border-right: 1px solid rgba(46, 109, 115, 0.15);
  border-bottom: 1px solid rgba(46, 109, 115, 0.15);
  transform: rotate(-45deg);
}
.assist-bubble.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.assist-bubble.is-hidden { opacity: 0 !important; pointer-events: none !important; }
.assist-pill {
  position: absolute;
  right: 90px;
  bottom: -2px;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 161, 90, 0.28);
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(247,242,234,.92));
  color: #8F6E35;
  font: inherit;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: -.01em;
  box-shadow: 0 14px 28px -18px rgba(42, 42, 42, 0.26);
  cursor: pointer;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.assist-pill:hover { transform: translateY(-2px); }
.assist-pill.is-hidden { opacity: 0; pointer-events: none; transform: translateY(4px); }
.assist-panel {
  position: absolute; right: 0; bottom: 102px;
  width: min(410px, calc(100vw - 1.5rem));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(201, 161, 90, 0.18);
  border-radius: 24px;
  box-shadow: 0 32px 58px -30px rgba(42,42,42,.32), 0 0 24px rgba(201, 161, 90, 0.12);
  overflow: hidden;
  display: flex; flex-direction: column;
  max-height: min(82vh, 640px);
}
.assist-panel[hidden] { display: none !important; }
.assist-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem; padding: 1rem 1.05rem;
  background: linear-gradient(135deg, rgba(46, 109, 115, 0.1), rgba(200, 169, 119, 0.14));
  border-bottom: 1px solid var(--line);
}
.assist-identity { display: flex; align-items: center; gap: .75rem; }
.assist-avatar {
  width: 46px; height: 46px; border-radius: 50%; overflow: hidden;
  background: radial-gradient(circle at 35% 28%, #FFF9F1, #E8D9BE);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  display: grid; place-items: center;
}
.assist-avatar svg { width: 40px; height: 40px; display: block; }
.assist-identity strong { display: block; font-size: .98rem; color: var(--primary); }
.assist-identity span,
.assist-online { font-size: .78rem; color: var(--ink-soft); }
.assist-online { display: inline-flex; align-items: center; gap: .35rem; }
.assist-online i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4CAF82;
  animation: assistOnline 2.2s ease-out infinite;
}
.assist-close {
  width: 34px; height: 34px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.85); color: var(--ink); font-size: 1.25rem; cursor: pointer;
}
.assist-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  padding: .7rem 1rem .2rem;
}
.assist-ribbon span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 .7rem;
  border-radius: 999px;
  background: rgba(201, 161, 90, 0.1);
  border: 1px solid rgba(201, 161, 90, 0.16);
  color: #8F6E35;
  font-size: .72rem;
  font-weight: 700;
}
.assist-messages {
  padding: 1rem; display: grid; gap: .65rem;
  overflow-y: auto; flex: 1; min-height: 160px;
}
.assist-msg {
  max-width: 92%;
  padding: .75rem .9rem;
  border-radius: 16px;
  font-size: .92rem;
  line-height: 1.5;
  white-space: pre-line;
  animation: assistMsgIn .35s var(--ease);
}
@keyframes assistMsgIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.assist-msg--bot {
  background: #EEF2F2;
  color: var(--primary);
  border-bottom-left-radius: 5px;
  justify-self: start;
}
.assist-msg--user {
  background: linear-gradient(135deg, #C5A059, #A88B55);
  color: #1D1D1D;
  border-bottom-right-radius: 5px;
  justify-self: end;
}
.assist-typing {
  display: inline-flex; align-items: center; gap: .28rem;
  min-height: 2.2rem; padding: .7rem .95rem;
}
.assist-typing span {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(15, 61, 62, 0.3);
  animation: assistDot 1.1s ease-in-out infinite;
}
.assist-typing span:nth-child(2) { animation-delay: .15s; }
.assist-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes assistDot {
  0%, 80%, 100% { transform: translateY(0); opacity: .35; }
  40% { transform: translateY(-4px); opacity: 1; }
}
.assist-choices { display: grid; gap: .5rem; padding: 0 1rem .65rem; }
.assist-choice {
  border: 1px solid rgba(46, 109, 115, 0.28);
  background: #fff;
  color: var(--primary);
  border-radius: 999px;
  min-height: 44px;
  padding: .55rem 1rem;
  font: inherit;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  opacity: 0;
  animation: assistChoiceIn .4s var(--ease) forwards;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
@keyframes assistChoiceIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.assist-choice:hover {
  background: linear-gradient(135deg, #C5A059, #A88B55);
  color: #1D1D1D;
  border-color: transparent;
  box-shadow: 0 10px 22px -8px rgba(15, 61, 62, 0.4);
  transform: translateY(-1px);
}
.assist-compose {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .15rem 1rem .75rem;
  border-top: 1px solid rgba(15, 61, 62, 0.08);
  margin-top: .15rem;
  padding-top: .75rem;
}
.assist-input {
  flex: 1;
  min-width: 0;
  height: 42px;
  border: 1px solid rgba(46, 109, 115, 0.28);
  border-radius: 999px;
  padding: 0 .95rem;
  font: inherit;
  font-size: .88rem;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.assist-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}
.assist-input:disabled { opacity: .65; }
.assist-send {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border: 0; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #C5A059, #A88B55);
  color: #1D1D1D;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.assist-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(168, 139, 85, 0.35), 0 0 14px rgba(197, 160, 89, 0.35);
}
.assist-note {
  margin: 0;
  padding: .35rem 1rem .95rem;
  font-size: .75rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  background: #F7F4EF;
}

@media (max-width: 480px) {
  .assist-bubble { display: none; }
  .assist-pill { display: none; }
  .assist-panel { width: calc(100vw - 1.4rem); }
}

/* Motion */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .18s; }
.reveal-delay-3 { transition-delay: .26s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .assist-fab, .hb, .assist-choice, .assist-msg,
  .site-header::after, .site-nav a.is-active::after, .hero-frame-gold,
  .about-profile-visual::before,
  .about-profile-visual::after,
  .about-profile-frame,
  .ill-float-a, .ill-float-b, .ill-float-c, .ill-float-d {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .site-nav { gap: .7rem; font-size: .82rem; }
  .header-actions .btn-sm { padding: 0 .85rem; }
  .brand img { width: clamp(230px, 26vw, 290px); }
  .trust-band { grid-template-columns: repeat(3, 1fr); gap: 1.1rem .85rem; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: calc(var(--header-h) + 4.5rem);
  }
  .home-about-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .home-about-portrait { width: min(100%, 360px); }
  .home-about-copy {
    max-width: 760px;
    margin-inline: auto;
  }
  .about-profile-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about-profile-visual { width: min(100%, 370px); }
  .about-profile-copy {
    max-width: 760px;
    margin-inline: auto;
  }
  .values-grid { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .value-item:nth-child(3n) { border-right: 0; }
  .value-item:nth-child(n+4) { border-top: 1px solid rgba(63, 63, 63, 0.1); }
  .services-intro-band {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .services-intro-note {
    justify-self: start;
    max-width: 48ch;
  }
  .services-detail-visual {
    float: none;
    width: min(100%, 360px);
    margin: 0 auto 1rem;
  }
  .contact-grid,
  .footer-grid,
  .service-grid,
  .service-grid-3,
  .expertise-neon-grid,
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .mode-panels { grid-template-columns: 1fr 1fr; }
  .testimonials-layout {
    grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.15fr);
    gap: .85rem;
  }
  .about-grid,
  .about-page-grid,
  .about-hero-inner,
  .about-cv-grid,
  .page-hero-row { grid-template-columns: 1fr; }
  .about-cv .about-visual {
    position: relative;
    top: auto;
    width: min(100%, 380px);
    margin-inline: auto;
  }
  .page-hero-deco {
    height: 120px;
    max-width: 280px;
    margin-inline: auto;
  }
  .about-block-grid,
  .about-focus-grid,
  .about-highlight-grid { grid-template-columns: 1fr 1fr; }
  .about-teaser {
    overflow: visible;
    padding-top: 1.15rem;
    padding-bottom: 1.6rem;
  }
  .about-teaser .about-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: stretch;
  }
  .about-teaser .about-visual {
    width: min(100%, 320px);
    margin-inline: auto;
    aspect-ratio: 4 / 4.7;
  }
  .about-teaser .about-frame-gold {
    inset: -2.5% -3% -3.5% -2.5%;
    border-radius: 22px;
  }
  .about-teaser .about-frame-block {
    left: -4%;
    bottom: -4%;
    width: 58%;
    height: 46%;
    border-radius: 18px;
  }
  .about-teaser .about-main {
    display: grid;
    height: auto !important;
    min-height: 0 !important;
    gap: 1rem;
  }
  .about-teaser .about-copy {
    text-align: left;
  }
  .about-teaser .about-copy h2 {
    max-width: none;
    font-size: clamp(1.55rem, 5.5vw, 2rem);
  }
  .about-teaser .about-aside {
    margin-top: 0;
    grid-template-columns: 1fr;
    gap: .75rem;
  }
  .about-teaser .aside-card,
  .about-teaser .aside-stat {
    padding: .95rem 1rem .9rem;
  }
  .about-aside { grid-template-columns: 1fr 1fr; }
  .about-visual { width: min(100%, 360px); margin-inline: auto; }
  .about-page .about-visual { position: relative; top: auto; }
  .process-list { grid-template-columns: repeat(3, 1fr); }
  .process-list::before { display: none; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 1.5rem; }
  .hero-visual-wrap {
    order: -1;
    width: min(100%, 340px);
    aspect-ratio: 4 / 4.5;
    justify-self: center;
  }
  .hero-visual-wrap--clinic {
    width: min(100%, 520px);
    aspect-ratio: 16 / 10;
  }
  .hero-copy { max-width: none; text-align: center; }
  .hero-bio p { margin-inline: auto; }
  .hero-about-link { justify-content: center; }
  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-actions .btn-hero {
    min-height: 46px;
    padding: 0 .95rem;
    font-size: 0.84rem;
  }
  .hero-meta { justify-content: center; }
  .hero-leaf-accent { left: 2%; bottom: 0; opacity: .18; }
  :root { --header-h: 132px; }
  .site-header {
    background: var(--cream);
  }
  .site-header::after {
    display: none;
  }
  .site-header .container.header-inner,
  .header-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand brand"
      ". phone"
      "toggle toggle";
    align-items: center;
    column-gap: .35rem;
    row-gap: 0;
    padding: .4rem .55rem .15rem;
  }
  .brand {
    grid-area: brand;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .brand:hover {
    border: 0;
    box-shadow: none;
  }
  .brand img {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
  }
  .header-phone {
    grid-area: phone;
    display: inline-flex;
    justify-self: end;
    margin-top: .05rem;
    padding: .15rem 0 .4rem;
    font-size: .88rem;
  }
  .nav-toggle {
    grid-area: toggle;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    justify-self: stretch;
    width: 100%;
    height: 44px;
    margin: 0;
    padding: 0 .15rem;
    border-top: 1px solid rgba(63, 63, 63, 0.16);
    border-radius: 0;
  }
  .nav-toggle span:not(.sr-only) {
    margin: 4px 0;
  }
  .site-header {
    overflow: visible;
  }
  .header-inner {
    overflow: visible;
  }
  .header-right {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100dvh - var(--header-h));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(251, 248, 243, .98);
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .55rem;
    padding: .85rem 1.15rem calc(1.15rem + env(safe-area-inset-bottom, 0px));
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease), visibility .3s var(--ease);
    box-shadow: 0 18px 40px -24px rgba(15,61,62,.25);
    z-index: 80;
  }
  .header-right.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-nav { flex-direction: column; align-items: stretch; gap: .1rem; }
  .site-nav > * + *::before { display: none; }
  .site-nav > a,
  .site-nav .nav-parent { padding: .7rem 0; }
  .site-nav > a.is-active::after,
  .site-nav .nav-parent.is-active::after,
  .site-nav > a::after,
  .site-nav .nav-parent::after { display: none; }
  .nav-item.has-submenu {
    display: grid;
    gap: 0;
  }
  .nav-parent {
    width: 100%;
    justify-content: space-between;
  }
  .nav-submenu {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    min-width: 0;
    width: 100%;
    margin: 0 0 .35rem;
    padding: 0 0 0 .65rem;
    border: 0;
    border-left: 2px solid rgba(197, 160, 89, 0.35);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }
  .nav-submenu::before { display: none; }
  .nav-item.is-open > .nav-submenu {
    display: grid;
    transform: none;
  }
  .nav-submenu a {
    padding: .55rem 0 .55rem .35rem;
  }
  .header-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .55rem;
  }
  .header-actions .lang-switch {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(160px, 100%);
    height: 42px;
  }
  .header-actions .btn { width: 100%; }
}

@media (max-width: 760px) {
  .expertise-columns { grid-template-columns: 1fr; }
  .expertise-column {
    padding: .5rem;
    border-radius: 18px;
  }
  .expertise-list-item {
    grid-template-columns: 2rem minmax(0, 1fr) 1.25rem;
    gap: .55rem;
    min-height: 54px;
    padding: .65rem .7rem;
  }
  .testimonial-grid--reviews { grid-template-columns: 1fr; }
  .testimonials-layout { grid-template-columns: 1fr; }
  .testimonial-scroll-frame { max-height: 540px; }
  .testimonial-scroll-frame--home { max-height: min(72vh, 640px); }
  .testimonial-grid--compact { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  :root { --header-h: 124px; }
  .home-about-hero {
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
  }
  .home-about-hero-grid { gap: 1.5rem; }
  .home-about-portrait { width: min(92%, 320px); }
  .about-profile {
    padding-top: 1.15rem;
    padding-bottom: 1.75rem;
  }
  .about-profile-grid { gap: 1.5rem; }
  .about-profile-visual {
    width: min(92%, 330px);
    padding: 7px;
  }
  .about-profile-frame {
    padding: 5px;
    border-radius: 23px;
  }
  .about-profile-frame img { border-radius: 18px; }
  .about-profile-copy h1 { font-size: clamp(2rem, 11vw, 2.75rem); }
  .about-profile-text p {
    font-size: .94rem;
    line-height: 1.7;
  }
  .header-inner {
    padding: .3rem .4rem .1rem;
  }
  .brand img { width: 100%; }
  .brand { padding: 0; }
  .header-phone { font-size: .84rem; }
  .services-hero-meta { margin-top: .85rem; }
  .services-hero-meta span {
    min-height: 34px;
    font-size: .72rem;
    letter-spacing: .06em;
  }
  .services-page-hero h1 {
    white-space: normal;
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }
  .services-intro-copy h2 {
    max-width: none;
    white-space: normal;
    font-size: clamp(1.28rem, 5vw, 1.7rem);
  }
  .services-intro-note {
    font-size: .92rem;
    line-height: 1.6;
  }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-item { border-right: 1px solid rgba(63, 63, 63, 0.1); border-top: 0; }
  .value-item:nth-child(2n) { border-right: 0; }
  .value-item:nth-child(n+3) { border-top: 1px solid rgba(63, 63, 63, 0.1); }
  .value-item:nth-child(3n) { border-right: 1px solid rgba(63, 63, 63, 0.1); }
  .about-grid,
  .about-page-grid,
  .about-aside,
  .about-hero-inner,
  .about-cv-grid,
  .about-block-grid,
  .about-focus-grid,
  .about-highlight-grid,
  .contact-grid,
  .footer-grid,
  .service-grid,
  .service-grid-3,
  .mode-panels,
  .expertise-neon-grid,
  .process-list,
  .expertise-grid { grid-template-columns: 1fr; }
  .home-services {
    padding-top: .85rem;
    padding-bottom: .85rem;
  }
  .section-values {
    padding-top: .45rem;
    padding-bottom: .55rem;
  }
  .home-expertise {
    padding-block: 1.15rem;
  }
  .value-item {
    padding: .7rem .55rem .75rem;
  }
  .about-visual { width: min(100%, 280px); }
  .about-teaser .about-visual {
    width: min(100%, 280px);
  }
  .about-teaser .about-copy h2 {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
    line-height: 1.18;
  }
  .about-teaser .about-copy .lede,
  .about-teaser .about-copy p {
    font-size: .92rem;
    line-height: 1.55;
  }
  .hero-brand { font-size: clamp(2.6rem, 12vw, 3.4rem); }
  .section-values { margin-top: 0; }
  .page-hero-row { min-height: 0; }
  .page-hero-deco { height: 100px; }
  .sa-brain--tl { width: min(55vw, 280px); opacity: 0.12; }
  .sa-brain--tr { width: min(42vw, 200px); opacity: 0.1; }
  .sa-brain--ml,
  .sa-brain--bl { display: none; }
  .sa-brain--br { width: min(48vw, 220px); opacity: 0.11; }
  .phd-brain {
    width: min(55vw, 180px);
    opacity: 0.14;
  }
}

/* Online therapy */
.online-therapy-align {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  align-items: start;
  column-gap: clamp(1.5rem, 3.5vw, 2.75rem);
  width: 100%;
}
.online-therapy-left {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.online-therapy-right {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  width: 100%;
}
.online-therapy-hero-form {
  width: 100%;
  margin-top: 0;
  height: max-content;
  padding: 1.05rem 1.15rem 1.15rem;
}
.online-therapy-hero-form > h2 {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  margin: 0 0 .7rem;
}
.online-therapy-hero-form .contact-form {
  gap: .55rem;
}
.online-therapy-hero-form .contact-form label {
  gap: .22rem;
  font-size: .8rem;
}
.online-therapy-hero-form .contact-form input,
.online-therapy-hero-form .contact-form textarea {
  padding: .55rem .75rem;
  font-size: .92rem;
}
.online-therapy-hero-form .contact-form textarea {
  min-height: 4.6rem;
  resize: vertical;
}
.online-therapy-hero-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
}
.online-therapy-hero-form .therapy-choice {
  gap: .4rem;
}
.online-therapy-hero-form .therapy-choice legend {
  font-size: .8rem;
  margin-bottom: .05rem;
}
.online-therapy-hero-form .therapy-choice-option {
  padding: .5rem .75rem;
  font-size: .86rem;
}
.online-therapy-hero-form .therapy-choice-box {
  width: 17px;
  height: 17px;
}
.online-therapy-hero-form .btn {
  padding: .62rem 1rem;
  font-size: .9rem;
}
.online-therapy-hero {
  padding-top: clamp(.55rem, 1.2vw, .9rem);
  padding-bottom: .6rem;
}
.online-therapy-form-note {
  margin: .45rem 0 0;
  padding: 0;
  text-align: left;
  line-height: 1.4;
  font-size: .82rem;
}
.online-therapy-copy {
  margin-top: .15rem;
  max-width: 560px;
}
.online-therapy-hero:not(.online-therapy-hero--face) .page-lead {
  margin-bottom: .4rem;
  font-size: .95rem;
  line-height: 1.5;
}
.online-therapy-hero:not(.online-therapy-hero--face) .online-therapy-copy h2 {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  margin: .2rem 0 .4rem;
}
.online-therapy-hero:not(.online-therapy-hero--face) .process-mini {
  gap: .28rem;
  margin: 0 0 .45rem;
}
.online-therapy-hero:not(.online-therapy-hero--face) .process-mini li {
  padding: .36rem .7rem;
  font-size: .84rem;
  line-height: 1.32;
}
.online-therapy-hero:not(.online-therapy-hero--face) .lede {
  margin: 0;
  font-size: .88rem;
  line-height: 1.45;
}
.process-mini {
  display: grid;
  gap: .45rem;
  margin: 0 0 .85rem;
  padding: 0;
  list-style: none;
}
.process-mini li {
  padding: .55rem .8rem;
  font-size: .92rem;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.process-mini li strong {
  margin-right: .2rem;
}
.muted-note { color: var(--ink-soft); font-size: .9rem; }
.status-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(46, 109, 115, 0.14);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow);
}
.status-pill {
  display: inline-block;
  padding: .25rem .7rem;
  border-radius: 999px;
  font-size: .85rem;
  background: #EAF2F2;
  color: var(--primary);
}
.status-pill--approved { background: #E6F2EA; color: #2F5D38; }
.status-pill--rejected { background: #F7E8E6; color: #7A3430; }
.status-pill--completed { background: #ECECEC; color: #555; }
.status-link-box {
  margin-top: 1.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}
.status-link-box span {
  display: block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: .4rem;
}
.status-link-box code {
  display: block;
  word-break: break-all;
  background: #EEF2F2;
  padding: .75rem .85rem;
  border-radius: 10px;
  font-size: .82rem;
  color: var(--primary);
}
@media (max-width: 900px) {
  .online-therapy-hero-form .form-row {
    grid-template-columns: 1fr;
  }
  .online-therapy-align {
    grid-template-columns: 1fr;
  }
  .online-therapy-left,
  .online-therapy-right {
    grid-column: 1;
  }
  .online-therapy-copy { max-width: none; }
}

/* Mobile-only polish — desktop unchanged */
@media (max-width: 980px) {
  html, body {
    max-width: 100%;
  }
  body.nav-open {
    overflow: hidden;
  }
  .container {
    width: min(100% - 1.35rem, var(--container));
  }
  .site-nav > a,
  .site-nav .nav-parent {
    white-space: normal;
    line-height: 1.35;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
    max-width: 100%;
  }
  .btn,
  .header-cta {
    max-width: 100%;
  }
  .page-hero h1,
  .home-process-head h2,
  .home-testimonials-head h2,
  .home-expertise-head h2 {
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .about-profile-text p,
  .prose p {
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .footer-map {
    aspect-ratio: 16 / 11;
  }
  .cta-clinic-image {
    height: clamp(200px, 52vw, 320px);
  }
  .accordion-item summary {
    font-size: .95rem;
    line-height: 1.4;
    padding-right: 3.15rem;
  }
  .status-link-box code {
    font-size: .78rem;
  }
}

@media (max-width: 820px) {
  .mode-panels,
  .contact-grid,
  .testimonial-grid--compact {
    grid-template-columns: 1fr;
  }
  .mode-icon.mode-icon--large {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }
  .mode-icon.mode-icon--large svg {
    width: 42px;
    height: 42px;
  }
  .mode-panel {
    padding: 1rem 1.05rem .95rem;
  }
  .home-about-copy .about-profile-text h2 {
    font-size: 1.05rem;
  }
}

@media (max-width: 680px) {
  .header-actions {
    grid-template-columns: 1fr;
  }
  .header-actions .lang-switch {
    width: min(168px, 100%);
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: .45rem;
  }
  .whatsapp-fab {
    bottom: calc(.75rem + env(safe-area-inset-bottom, 0px));
  }
  .process-item {
    min-width: 0;
  }
}
