:root {
  --bg: #f5f6f3;
  --surface: #ffffff;
  --surface-soft: #edf2ee;
  --text: #1d1e20;
  --muted: #5f6368;
  --primary: #2e6e4f;
  --primary-dark: #24563f;
  --accent: #b18a52;
  --ring: rgba(46, 110, 79, 0.18);
  --radius: 20px;
  --shadow: 0 30px 70px -40px rgba(20, 28, 24, 0.45);
  /* Header + border tahmini; çok büyük olursa hero altta ince boşluk bırakır */
  --site-header-offset: clamp(72px, 10.5vw, 88px);
  /* Viewport yuvarlaması / dvh–svh farkı için alttan birkaç px kapat */
  --hero-bottom-bleed: max(4px, 0.35svh);
  --skeleton-base: #e2ebe5;
  --skeleton-shine: #f6faf7;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--site-header-offset);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top right, #e7f2ec, transparent 45%), var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(29, 30, 32, 0.07);
  z-index: 20;
}

.site-header--intro {
  --header-push: clamp(56px, 11vw, 148px);
  overflow: hidden;
}

.site-header--brand-enter {
  overflow: hidden;
}

.site-header--brand-enter .brand {
  animation: header-brand-slide-in 14s linear both;
}

@keyframes header-brand-slide-in {
  from {
    transform: translateX(var(--brand-slide-from, 0px));
    opacity: 0.85;
  }
  to {
    transform: translateX(var(--brand-enter-to, 0px));
    opacity: 1;
  }
}

.site-header--intro .nav {
  animation: header-intro-nav 2.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-header--intro .header-actions {
  animation: header-intro-actions 2.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-header--intro .mobile-menu-btn {
  animation: header-intro-actions 2.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes header-intro-nav {
  0% {
    transform: translateX(0);
  }
  38% {
    transform: translateX(var(--header-push));
  }
  52% {
    transform: translateX(var(--header-push));
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes header-intro-actions {
  0%,
  48% {
    transform: translateX(calc(100vw + 32px));
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (min-width: 961px) {
  .site-header--intro .header-actions {
    animation-name: header-intro-actions-desktop;
  }

  @keyframes header-intro-actions-desktop {
    0%,
    48% {
      transform: translateY(-50%) translateX(calc(100vw + 32px));
      opacity: 0;
    }
    100% {
      transform: translateY(-50%) translateX(0);
      opacity: 1;
    }
  }
}

@media (max-width: 960px) {
  .site-header--intro .header-actions,
  .site-header--intro .mobile-menu-btn {
    animation-name: header-intro-side-mobile;
  }

  @keyframes header-intro-side-mobile {
    0% {
      transform: translateX(0);
      opacity: 1;
    }
    38% {
      transform: translateX(var(--header-push));
      opacity: 1;
    }
    49% {
      transform: translateX(var(--header-push));
      opacity: 0;
    }
    50% {
      transform: translateX(calc(100vw + 32px));
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header--brand-enter .brand,
  .site-header--intro .nav,
  .site-header--intro .header-actions,
  .site-header--intro .mobile-menu-btn,
  .brand-role-lottie--exit {
    animation: none !important;
  }
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: clamp(10px, 2vw, 20px);
  row-gap: 8px;
  min-height: 78px;
  margin-bottom: 0;
}

.brand {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem 0.65rem;
  font-weight: 800;
  font-size: 1.05rem;
  min-width: 0;
}

.brand--positioned {
  transform: translateX(var(--brand-enter-to, 0px));
}

.brand-name {
  font-weight: 800;
  color: var(--text);
}

.brand-role-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.brand-role-lottie {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  overflow: visible;
  pointer-events: none;
}

.brand-role-lottie--exit {
  position: relative;
  z-index: 2;
  transform-origin: center center;
  animation: header-lottie-slide-out 14s linear forwards;
}

@keyframes header-lottie-slide-out {
  from {
    transform: translateX(0) scaleX(-1);
  }
  to {
    transform: translateX(calc(-1 * var(--lottie-exit-distance, 120px))) scaleX(-1);
  }
}

.brand-role-lottie--gone {
  display: none;
}

.brand-role-lottie svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.brand-role {
  font-size: 0.82em;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--primary);
}

.nav {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  justify-self: stretch;
  gap: 12px 14px;
  row-gap: 6px;
  min-width: 0;
  color: var(--muted);
  font-weight: 600;
}

.nav a {
  position: relative;
  padding-bottom: 5px;
  transition: color 0.35s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #25d366);
  transform: scaleX(0);
  opacity: 0;
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav a.is-active {
  color: var(--primary);
}

.nav a.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.header-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-dropdown--header {
  z-index: 25;
}

@media (min-width: 961px) {
  .site-header .header-inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-left: max(20px, calc((100vw - min(1120px, 92vw)) / 2));
    padding-right: 20px;
    box-sizing: border-box;
  }

  .header-actions {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    grid-column: auto;
    justify-self: auto;
    margin: 0;
  }

  .header-actions .header-cta {
    display: inline-flex;
  }

  .nav {
    padding-right: clamp(200px, 22vw, 280px);
  }

  html[data-locale="en"] .nav,
  html[data-locale="es"] .nav,
  html[data-locale="fr"] .nav {
    gap: 8px 10px;
    font-size: 0.8rem;
    padding-right: clamp(230px, 25vw, 310px);
  }

  html[data-locale="en"] .header-cta,
  html[data-locale="es"] .header-cta,
  html[data-locale="fr"] .header-cta {
    padding: 10px 14px;
    font-size: 0.86rem;
  }

  html[data-locale="en"] .brand,
  html[data-locale="es"] .brand,
  html[data-locale="fr"] .brand {
    font-size: 0.98rem;
  }
}

@media (min-width: 1100px) {
  html[data-locale="en"] .nav,
  html[data-locale="es"] .nav,
  html[data-locale="fr"] .nav {
    font-size: 0.86rem;
    padding-right: clamp(240px, 23vw, 300px);
  }
}

.float-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.lang-dropdown {
  position: relative;
}

.lang-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  appearance: none;
  border: 1px solid rgba(29, 30, 32, 0.1);
  background: var(--surface-soft);
  color: var(--text);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  padding: 9px 12px;
  border-radius: 999px;
  cursor: pointer;
  max-width: 9.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lang-dropdown-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lang-dropdown-trigger:hover {
  border-color: rgba(46, 110, 79, 0.28);
}

.lang-dropdown.is-open .lang-dropdown-trigger {
  background: #fff;
  border-color: rgba(46, 110, 79, 0.35);
  box-shadow: 0 8px 22px -14px rgba(20, 28, 24, 0.45);
}

.lang-dropdown-flag,
.lang-dropdown-option-flag {
  font-size: 1.05rem;
  line-height: 1;
}

.lang-dropdown-chevron {
  color: var(--muted);
  transition: transform 0.22s ease;
}

.lang-dropdown.is-open .lang-dropdown-chevron {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 168px;
  margin: 0;
  padding: 6px;
  list-style: none;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(29, 30, 32, 0.08);
  box-shadow: 0 18px 40px -24px rgba(20, 28, 24, 0.55);
}

.lang-dropdown-menu[hidden] {
  display: none;
}

.lang-dropdown-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.lang-dropdown-option:hover,
.lang-dropdown-option:focus-visible {
  background: var(--surface-soft);
  outline: none;
}

.lang-dropdown-option.is-active,
.lang-dropdown-option[aria-selected="true"] {
  background: rgba(46, 110, 79, 0.1);
  color: var(--primary-dark);
}

.header-cta {
  background: linear-gradient(140deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 16px 30px -20px var(--primary-dark);
  flex-shrink: 0;
  transition: box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-cta.is-active {
  box-shadow:
    0 16px 30px -20px var(--primary-dark),
    0 0 0 3px rgba(37, 211, 102, 0.45),
    0 0 22px -8px rgba(37, 211, 102, 0.55);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .nav a,
  .nav a::after,
  .header-cta {
    transition-duration: 0.01ms;
  }

  .header-cta.is-active {
    transform: none;
  }
}

#anasayfa {
  margin: 0;
  padding: 0;
}

.hero {
  padding: 0;
  margin: 0;
}

.hero--split {
  padding: 0;
  margin: 0;
  background: #fff;
  box-shadow: none;
  /* Tek ekranda bitmeli — min-height kullanma yoksa içerikle aşağı uzar */
  height: calc(100svh - var(--site-header-offset) + var(--hero-bottom-bleed));
  max-height: calc(100svh - var(--site-header-offset) + var(--hero-bottom-bleed));
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@supports (height: 100dvh) {
  .hero--split {
    height: calc(100dvh - var(--site-header-offset) + var(--hero-bottom-bleed));
    max-height: calc(100dvh - var(--site-header-offset) + var(--hero-bottom-bleed));
  }
}

.hero-split-shell {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 47vw);
  align-items: stretch;
  max-width: 100%;
  min-height: 0;
}

.hero-split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px clamp(20px, 3vw, 40px) clamp(16px, 2.5vw, 26px)
    max(20px, calc((100vw - min(1120px, 92vw)) / 2));
  padding-top: 0;
  min-height: 0;
}

.hero-split-copy .hero-lead {
  overflow-wrap: anywhere;
}

.hero-split-copy .hero-kicker {
  margin-top: 0;
}

.hero-split-copy h1.hero-heading {
  margin-top: 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero-kicker::before {
  content: "";
  width: 3px;
  height: 1.15em;
  border-radius: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

.hero-heading {
  font-size: clamp(1.85rem, 3.2vw, 3.15rem);
  line-height: 1.1;
  margin: 0 0 16px;
  max-width: 18ch;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.65;
}

.hero-split-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-top: clamp(22px, 3.5vw, 32px);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.hero-cta-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.whatsapp-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: none;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(37, 211, 102, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.whatsapp-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(37, 211, 102, 0.32);
}

.whatsapp-chip-icon {
  flex-shrink: 0;
}

@media (max-width: 380px) {
  .whatsapp-chip {
    padding: 12px 16px;
    font-size: 0.85rem;
    gap: 8px;
  }

  .whatsapp-chip .whatsapp-chip-icon {
    width: 18px;
    height: 18px;
  }
}

.hero-cta--dark {
  color: #fff;
  background: linear-gradient(140deg, var(--primary), var(--primary-dark));
  box-shadow: 0 18px 30px -18px var(--primary-dark);
}

.hero-cta--dark:hover {
  box-shadow: 0 24px 35px -20px var(--primary-dark);
}

.hero-split-visual {
  margin: 0;
  align-self: stretch;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.hero-split-photo {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: #fff;
}

/* Fotoğraf ile sol beyaz alan arasında yumuşak alpha geçiş */
.hero-split-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0.94) 5%,
    rgba(255, 255, 255, 0.72) 14%,
    rgba(255, 255, 255, 0.35) 28%,
    rgba(255, 255, 255, 0.08) 44%,
    rgba(255, 255, 255, 0) 56%
  );
}

.hero-split-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 22%;
  position: relative;
  z-index: 0;
}

.badge {
  display: inline-flex;
  border: 1px solid rgba(177, 138, 82, 0.28);
  background: rgba(177, 138, 82, 0.1);
  color: #7d5f35;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.84rem;
  font-weight: 700;
}

h1:not(.hero-heading) {
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: 1.12;
  margin: 16px 0 14px;
  max-width: 20ch;
}

/* Sayfada tek h1 şu an hero; yine de emin olmak için */
h1.hero-heading {
  margin-top: 0;
  margin-bottom: 16px;
}

.lead {
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 26px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s ease;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon-link::before {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.phone-link::before {
  background-image: url("./assets/phone-icon.png");
}

.instagram-link::before {
  background-image: url("./assets/instagram-icon.png");
}

.btn-primary {
  background: linear-gradient(140deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 18px 30px -18px var(--primary-dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 35px -20px var(--primary-dark);
}

.btn-ghost {
  border: 1px solid rgba(29, 30, 32, 0.14);
  background: rgba(255, 255, 255, 0.75);
}

.btn-ghost:hover {
  background: #fff;
}

.section {
  padding: 84px 0;
}

.section-alt {
  background: var(--surface-soft);
}

.section-lead {
  color: var(--muted);
  max-width: 68ch;
  margin: -12px 0 28px;
  font-size: 1.02rem;
}

.section-lead a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.service-card {
  position: relative;
  background: linear-gradient(165deg, #ffffff 0%, #fafcf9 48%, #f3f7f4 100%);
  border: 1px solid rgba(29, 30, 32, 0.07);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 24px -14px rgba(20, 28, 24, 0.35);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.38s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(177, 138, 82, 0.75) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 50px -28px rgba(20, 40, 30, 0.55);
}

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

.service-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, #e8efe9, #dfe8df);
  isolation: isolate;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
  transform: scale(1.001);
}

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

.service-card-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 3.25rem 1.35rem 1.15rem;
  background: linear-gradient(
    180deg,
    rgba(10, 28, 18, 0) 0%,
    rgba(10, 26, 18, 0.18) 28%,
    rgba(8, 28, 18, 0.65) 62%,
    rgba(6, 22, 14, 0.94) 100%
  );
}

.service-card-body {
  padding: 20px 22px 22px;
}

.service-card-title {
  margin: 0;
  font-size: clamp(1rem, 2.3vw, 1.14rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: #f6faf7;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 3px 18px rgba(0, 0, 0, 0.35);
}

.service-card-title::after {
  content: "";
  display: block;
  margin-top: 0.72rem;
  width: 2.85rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(229, 200, 140, 0.95), rgba(255, 255, 255, 0.25));
}

.service-card-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.62;
}

.recipe-section {
  overflow: visible;
}

.recipe-section-head {
  margin-bottom: 28px;
}

.recipe-grid {
  --recipe-gutter: 60px;
  --recipe-card-width: 220px;
  --recipe-inset: max(4vw, calc((100vw - min(1120px, 92vw)) / 2));
  display: grid;
  grid-template-columns: var(--recipe-gutter) minmax(0, 1fr) var(--recipe-gutter);
  align-items: stretch;
}

.recipe-gutter {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  width: var(--recipe-gutter);
  min-width: var(--recipe-gutter);
  flex-shrink: 0;
  padding-top: calc(var(--recipe-card-width) * 16 / 9 / 2 - 22px);
}

.recipe-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -8px rgba(46, 110, 79, 0.5);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  flex-shrink: 0;
}

.recipe-nav[hidden] {
  display: none;
}

.recipe-nav:hover:not(:disabled) {
  transform: scale(1.08);
  box-shadow: 0 12px 32px -8px rgba(46, 110, 79, 0.6);
}

.recipe-nav:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--primary);
}

.recipe-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-padding-inline: max(0px, calc(var(--recipe-inset) - var(--recipe-gutter))) 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  min-width: 0;
  padding: 10px 0;
  margin: -10px 0;
}

.recipe-scroll::-webkit-scrollbar {
  display: none;
}

.recipe-scroll:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--primary);
  border-radius: 20px;
}

.recipe-track {
  display: flex;
  gap: 20px;
  padding: 8px 0 16px max(0px, calc(var(--recipe-inset) - var(--recipe-gutter)));
}

.recipe-video-card {
  position: relative;
  flex: 0 0 var(--recipe-card-width);
  width: var(--recipe-card-width);
  display: flex;
  flex-direction: column;
  transform: scale(1);
  /* Ölçekleme videonun merkezinden; üstten kesilmesin */
  transform-origin: 50% calc(var(--recipe-card-width) * 16 / 9 / 2);
}

.recipe-video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #0f1412;
  cursor: pointer;
  touch-action: manipulation;
  box-shadow:
    0 20px 40px -15px rgba(20, 50, 35, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  clip-path: inset(0 round 20px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.recipe-video-wrap .video-js {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  background: transparent;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
}

.recipe-video-wrap .video-js .vjs-tech {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.recipe-video-wrap .video-js .vjs-poster {
  display: none;
}

.recipe-video-wrap .video-js .vjs-big-play-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95) !important;
  opacity: 1 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  line-height: 60px;
  font-size: 2.2em;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.recipe-video-wrap .video-js:hover .vjs-big-play-button,
.recipe-video-wrap .video-js .vjs-big-play-button:hover,
.recipe-video-wrap .video-js .vjs-big-play-button:focus {
  background: #fff !important;
  border: none !important;
  opacity: 1 !important;
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

@media (hover: hover) and (pointer: fine) {
  .recipe-scroll {
    overflow-y: visible;
    padding-top: calc(var(--recipe-card-width) * 16 / 9 * 0.1);
    padding-bottom: calc(var(--recipe-card-width) * 16 / 9 * 0.06);
    margin-top: calc(var(--recipe-card-width) * 16 / 9 * -0.1);
    margin-bottom: calc(var(--recipe-card-width) * 16 / 9 * -0.06);
  }

  .recipe-track {
    padding-top: calc(var(--recipe-card-width) * 16 / 9 * 0.1);
    padding-bottom: calc(var(--recipe-card-width) * 16 / 9 * 0.08 + 2rem);
  }

  .recipe-video-card:not(:has(.recipe-fs-active)) {
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .recipe-video-wrap:not(:has(.recipe-fs-active)) {
    transition: box-shadow 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .recipe-video-card:hover:not(:has(.recipe-fs-active)),
  .recipe-video-card.recipe-video-card--hover:not(:has(.recipe-fs-active)) {
    z-index: 3;
    animation: recipe-video-hover-pop 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }

  .recipe-video-card.recipe-video-card--restoring:not(:has(.recipe-fs-active)) {
    z-index: 2;
    animation: recipe-video-hover-shrink 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transition: none;
  }

  .recipe-video-card:hover .recipe-video-wrap:not(:has(.recipe-fs-active)),
  .recipe-video-card.recipe-video-card--hover .recipe-video-wrap:not(:has(.recipe-fs-active)) {
    box-shadow:
      0 28px 52px -14px rgba(20, 50, 35, 0.58),
      0 0 0 1px rgba(255, 255, 255, 0.08);
  }

  .recipe-video-card.recipe-video-card--restoring .recipe-video-wrap:not(:has(.recipe-fs-active)) {
    box-shadow:
      0 20px 40px -15px rgba(20, 50, 35, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: box-shadow 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  @keyframes recipe-video-hover-pop {
    0% {
      transform: scale(1);
    }
    22% {
      transform: scale(1.15);
    }
    100% {
      transform: scale(1.08);
    }
  }

  @keyframes recipe-video-hover-shrink {
    0% {
      transform: scale(1.08);
    }
    100% {
      transform: scale(1);
    }
  }
}

.recipe-video-wrap .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  color: var(--primary-dark, #2e6e4f);
  line-height: 60px;
}

.recipe-video-wrap .video-js .vjs-control-bar {
  border-radius: 0 0 20px 20px;
}

.recipe-fs-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(8, 12, 10, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.48s cubic-bezier(0.32, 0.72, 0, 1),
    background 0.48s cubic-bezier(0.32, 0.72, 0, 1),
    backdrop-filter 0.48s cubic-bezier(0.32, 0.72, 0, 1);
}

.recipe-fs-backdrop.is-visible {
  opacity: 1;
  background: rgba(8, 12, 10, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: auto;
}

body.recipe-fs-open {
  overflow: hidden;
}

.recipe-video-wrap .video-js.recipe-fs-active {
  position: fixed !important;
  z-index: 9999;
  margin: 0 !important;
  top: var(--fs-top, 0);
  left: var(--fs-left, 0);
  width: var(--fs-width, 100%) !important;
  height: var(--fs-height, 100%) !important;
  max-width: none;
  border-radius: 20px;
  background: linear-gradient(160deg, #3d6b54 0%, #2a4d3c 50%, #1a3328 100%);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  transition:
    top 0.48s cubic-bezier(0.32, 0.72, 0, 1),
    left 0.48s cubic-bezier(0.32, 0.72, 0, 1),
    width 0.48s cubic-bezier(0.32, 0.72, 0, 1),
    height 0.48s cubic-bezier(0.32, 0.72, 0, 1),
    border-radius 0.48s cubic-bezier(0.32, 0.72, 0, 1),
    box-shadow 0.48s cubic-bezier(0.32, 0.72, 0, 1);
}

.recipe-video-wrap .video-js.recipe-fs-active.recipe-fs-expanded {
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  border-radius: 0;
  box-shadow: none;
}

.recipe-video-wrap .video-js.recipe-fs-active .vjs-tech {
  object-fit: contain;
}

.recipe-video-wrap .video-js.recipe-fs-active .vjs-control-bar {
  border-radius: 0;
}

@media (prefers-reduced-motion: reduce) {
  .recipe-fs-backdrop,
  .recipe-video-wrap .video-js.recipe-fs-active {
    transition: none;
  }
}


.recipe-video-title {
  margin: 14px 4px 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  text-align: center;
}

@media (max-width: 768px) {
  .recipe-grid {
    --recipe-inset: calc((100vw - min(1120px, 88vw)) / 2);
    --recipe-card-width: 200px;
  }

  .recipe-gutter {
    padding-top: calc(var(--recipe-card-width) * 16 / 9 / 2 - 19px);
  }

  .recipe-nav {
    width: 38px;
    height: 38px;
  }

  .recipe-nav svg {
    width: 18px;
    height: 18px;
  }

}

@media (max-width: 480px) {
  .recipe-grid {
    --recipe-card-width: 180px;
  }

  .recipe-gutter {
    padding-top: calc(var(--recipe-card-width) * 16 / 9 / 2 - 19px);
  }

  .recipe-track {
    gap: 16px;
  }

  .recipe-video-title {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .recipe-scroll {
    scroll-behavior: auto;
  }

  .recipe-video-card:not(:has(.recipe-fs-active)),
  .recipe-video-wrap:not(:has(.recipe-fs-active)) {
    transition: none;
    animation: none !important;
  }

  .recipe-video-card:hover:not(:has(.recipe-fs-active)),
  .recipe-video-card.recipe-video-card--hover:not(:has(.recipe-fs-active)),
  .recipe-video-card.recipe-video-card--restoring:not(:has(.recipe-fs-active)) {
    transform: none;
  }
}

.bmi-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid rgba(29, 30, 32, 0.08);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.bmi-fields {
  display: grid;
  gap: 14px;
  align-content: start;
}

.bmi-fields label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  font-size: 0.95rem;
}

.bmi-fields input {
  border: 1px solid rgba(29, 30, 32, 0.14);
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
}

.bmi-fields input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--ring);
}

.bmi-result {
  background: linear-gradient(160deg, #f9fbf9, #eef4ef);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(46, 110, 79, 0.12);
  display: grid;
  align-content: center;
  gap: 12px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.bmi-value {
  margin: 0;
  font-size: 1.1rem;
}

.bmi-result[data-bmi="neutral"] .bmi-value strong,
.bmi-result[data-bmi="neutral"] .bmi-category {
  color: var(--muted);
  font-weight: 600;
}

.bmi-result[data-bmi="neutral"] .bmi-category {
  font-weight: 600;
  font-size: 1rem;
}

.bmi-result[data-bmi="error"] .bmi-value strong,
.bmi-result[data-bmi="error"] .bmi-category {
  color: #b42318;
}

.bmi-result[data-bmi="error"] .bmi-category {
  font-weight: 700;
  font-size: 1rem;
}

.bmi-value strong {
  font-size: 1.45rem;
  color: var(--primary-dark);
}

.bmi-category {
  margin: 0;
  color: inherit;
  font-weight: 800;
  font-size: 1.05rem;
}

.bmi-result[data-bmi="ok"] .bmi-value,
.bmi-result[data-bmi="ok"] .bmi-category,
.bmi-result[data-bmi="ok"] .bmi-motto {
  color: var(--primary-dark);
}

.bmi-result[data-bmi="ok"] .bmi-value strong {
  color: #1f6e4d;
}

.bmi-result[data-bmi="ok"] .bmi-motto {
  border-left-color: var(--primary);
  background: rgba(46, 110, 79, 0.08);
}

.bmi-result[data-bmi="warn"] .bmi-value,
.bmi-result[data-bmi="warn"] .bmi-category,
.bmi-result[data-bmi="warn"] .bmi-motto {
  color: #b42318;
}

.bmi-result[data-bmi="warn"] .bmi-value strong {
  color: #9f1f16;
}

.bmi-result[data-bmi="warn"] .bmi-motto {
  border-left-color: rgba(180, 35, 24, 0.75);
  background: rgba(180, 35, 24, 0.06);
}

.bmi-motto {
  margin: 0;
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
  color: inherit;
  padding: 14px 16px;
  border-left: 4px solid rgba(177, 138, 82, 0.45);
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, 0.65);
}

.bmi-cta {
  justify-self: stretch;
  width: 100%;
  margin-top: 10px;
  padding: 15px 22px;
  font-size: 1.08rem;
  font-weight: 900;
  text-align: center;
  color: #fff;
  background: linear-gradient(140deg, var(--primary), var(--primary-dark));
  border: 2px solid var(--primary-dark);
  box-shadow:
    0 18px 30px -18px var(--primary-dark),
    0 0 0 0 rgba(46, 110, 79, 0.45);
  animation: bmi-cta-attention 2.6s ease-in-out infinite;
}

.bmi-cta:hover {
  color: #fff;
  background: linear-gradient(140deg, var(--primary), var(--primary-dark));
  border-color: var(--primary-dark);
  animation: none;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 24px 35px -20px var(--primary-dark);
}

.bmi-cta[hidden] {
  display: none !important;
}

.bmi-calc-btn {
  gap: 10px;
  min-width: 9.5rem;
}

.bmi-calc-btn .bmi-calc-spinner {
  display: none;
  width: 1.05rem;
  height: 1.05rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: bmi-spin 0.7s linear infinite;
}

.bmi-calc-btn.is-loading .bmi-calc-spinner {
  display: inline-block;
}

.bmi-calc-btn.is-loading {
  pointer-events: none;
  opacity: 0.92;
}

.bmi-progress[hidden] {
  display: none !important;
}

.bmi-progress {
  display: grid;
  gap: 14px;
  text-align: center;
  padding: 8px 0;
}

.bmi-progress-label {
  margin: 0;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1.02rem;
}

.bmi-progress-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(46, 110, 79, 0.14);
  overflow: hidden;
}

.bmi-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.bmi-result[data-bmi="loading"] {
  border-color: rgba(46, 110, 79, 0.22);
  box-shadow: inset 0 0 0 1px rgba(46, 110, 79, 0.06);
}

.bmi-result[data-bmi="loading"] .bmi-progress-bar {
  animation: bmi-progress-fill 0.85s ease-out forwards;
}

.bmi-result-body[hidden] {
  display: none !important;
}

@keyframes bmi-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes bmi-progress-fill {
  to {
    width: 100%;
  }
}

@keyframes bmi-cta-attention {
  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: brightness(1);
    box-shadow:
      0 18px 30px -18px var(--primary-dark),
      0 0 0 0 rgba(46, 110, 79, 0.4);
  }
  50% {
    transform: translateY(-4px) scale(1.05);
    filter: brightness(1.08);
    box-shadow:
      0 24px 40px -14px var(--primary-dark),
      0 0 0 12px rgba(46, 110, 79, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bmi-calc-btn .bmi-calc-spinner {
    animation: none;
    border-top-color: rgba(255, 255, 255, 0.85);
  }

  .bmi-result[data-bmi="loading"] .bmi-progress-bar {
    animation: none;
    width: 100%;
  }

  .bmi-cta {
    animation: none;
  }
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(29, 30, 32, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 44px 16px 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.35;
  position: relative;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(225deg);
}

.faq-num {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--ring);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.85rem;
}

.faq-answer {
  padding: 0 16px 16px 64px;
  border-top: 1px solid rgba(29, 30, 32, 0.06);
}

.faq-answer p {
  margin: 12px 0 0;
  color: var(--muted);
}

.faq-footer-cta {
  margin-top: 28px;
  padding: 22px;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(46, 110, 79, 0.08), rgba(177, 138, 82, 0.1));
  border: 1px solid rgba(29, 30, 32, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.faq-footer-cta p {
  margin: 0;
  flex: unset;
  font-weight: 600;
}

.faq-footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.faq-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
}

.faq-cta-phone-icon {
  flex-shrink: 0;
  display: block;
}

.faq-footer-cta .faq-cta-phone.btn-primary {
  background: #fff;
  color: var(--primary-dark);
  border: 1px solid rgba(46, 110, 79, 0.28);
  box-shadow: 0 12px 28px -18px rgba(36, 86, 63, 0.22);
}

.faq-footer-cta .faq-cta-phone.btn-primary:hover {
  background: rgba(237, 244, 240, 0.98);
  color: var(--primary-dark);
  box-shadow: 0 18px 34px -20px rgba(36, 86, 63, 0.3);
}

.section-label {
  color: var(--primary-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
  margin: 0 0 6px;
}

.section-title {
  margin: 0 0 24px;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.18;
}

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

.card {
  background: var(--surface);
  border: 1px solid rgba(29, 30, 32, 0.08);
  border-radius: 14px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card h3 {
  margin: 0 0 8px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

#yaklasim {
  overflow: visible;
}

.approach-journey {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  position: relative;
  counter-reset: approach-step;
  overflow: visible;
}

.approach-journey::before {
  display: none;
}

.approach-journey::after {
  display: none;
}

.approach-journey-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  position: relative;
}

.approach-marker {
  counter-increment: approach-step;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  background: radial-gradient(circle at 30% 25%, #ffffff 0%, #f3f8f5 55%, #e8f0eb 100%);
  border: 1px solid rgba(46, 110, 79, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 36px -22px rgba(18, 40, 28, 0.55);
  position: relative;
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.25s ease;
}

.approach-marker::after {
  content: counter(approach-step, decimal);
  position: absolute;
  top: -6px;
  right: -4px;
  min-width: 1.65rem;
  height: 1.65rem;
  padding: 0 6px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  box-shadow: 0 6px 14px -6px var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.approach-marker-icon {
  display: block;
}

.approach-marker-img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
  object-position: center;
}

.approach-journey-item:has(.approach-marker:hover) .approach-marker,
.approach-journey-item:has(.approach-panel:hover) .approach-marker {
  transform: translateY(-3px);
  border-color: rgba(46, 110, 79, 0.4);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 22px 44px -24px rgba(18, 40, 28, 0.5);
}

.approach-panel {
  width: 100%;
  padding: 1.15rem 1.15rem 1.2rem;
  text-align: center;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(246, 250, 247, 0.92) 100%);
  border: 1px solid rgba(29, 30, 32, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 40px -34px rgba(18, 32, 26, 0.65);
  position: relative;
  overflow: visible;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.approach-panel--tail-top,
.approach-panel--tail-bottom {
  border-color: transparent;
}

.approach-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #25d366);
  opacity: 0.85;
  border-radius: 18px 18px 0 0;
  z-index: 1;
}

.approach-panel-svg {
  display: none;
}

/* Masaüstü / tablet: SVG konturu — gradient kuyruk ve köşeler boyunca */
@media (min-width: 560px) {
  .approach-panel--tail-top::before,
  .approach-panel--tail-top::after,
  .approach-panel--tail-bottom::before,
  .approach-panel--tail-bottom::after {
    display: none !important;
  }

  .approach-panel--tail-top,
  .approach-panel--tail-bottom {
    border: none;
  }

  .approach-panel-svg {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    min-height: 50px;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
    overflow: visible;
    flex-shrink: 0;
  }

  /* Yalnızca şerit+kuyruk bandı — tam panel yüksekliğine germe kuyruğu yok ediyordu */
  .approach-panel--tail-top .approach-panel-svg {
    top: -18px;
  }

  .approach-panel--tail-bottom .approach-panel-svg {
    top: auto;
    bottom: -18px;
  }
}

/* Mobil: klasik üst çizgi + sol kuyruk */
@media (max-width: 559px) {
  .approach-panel-svg {
    display: none !important;
  }

  .approach-panel--tail-top,
  .approach-panel--tail-bottom {
    border: 1px solid rgba(29, 30, 32, 0.08);
  }

  .approach-panel::after {
    content: "";
    position: absolute;
    display: block;
    left: -9px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: 12px;
    height: 22px;
    clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
    background: linear-gradient(90deg, #ffffff 0%, #eef4f1 100%);
    box-shadow: -2px 2px 8px -4px rgba(18, 32, 26, 0.3);
    pointer-events: none;
    z-index: 0;
  }
}

.approach-journey-item:has(.approach-marker:hover) .approach-panel,
.approach-journey-item:has(.approach-panel:hover) .approach-panel {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px -32px rgba(18, 40, 28, 0.45);
}

.approach-panel-text {
  margin: 0;
  color: var(--text);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-wrap: balance;
  position: relative;
  z-index: 3;
}

@media (min-width: 560px) and (max-width: 999px) {
  .approach-journey {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto minmax(72px, auto) auto auto minmax(72px, auto) auto;
    column-gap: clamp(14px, 2vw, 22px);
    row-gap: clamp(24px, 3.5vw, 32px);
    align-items: start;
  }

  .approach-journey-item {
    display: contents;
  }

  .approach-journey::before {
    display: block;
    content: "";
    grid-column: 1 / -1;
    grid-row: 2;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary) 0%, #25d366 100%);
    align-self: center;
    pointer-events: none;
    z-index: 0;
  }

  .approach-journey::after {
    display: block;
    content: "";
    grid-column: 1 / -1;
    grid-row: 5;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary) 0%, #25d366 100%);
    align-self: center;
    pointer-events: none;
    z-index: 0;
  }

  .approach-journey-item:nth-child(1) .approach-marker {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    align-self: center;
  }

  .approach-journey-item:nth-child(1) .approach-panel {
    grid-column: 1;
    grid-row: 3;
  }

  .approach-journey-item:nth-child(2) .approach-panel {
    grid-column: 2;
    grid-row: 1;
  }

  .approach-journey-item:nth-child(2) .approach-marker {
    grid-column: 2;
    grid-row: 2;
    justify-self: center;
    align-self: center;
  }

  .approach-journey-item:nth-child(3) .approach-marker {
    grid-column: 1;
    grid-row: 5;
    justify-self: center;
    align-self: center;
  }

  .approach-journey-item:nth-child(3) .approach-panel {
    grid-column: 1;
    grid-row: 6;
  }

  .approach-journey-item:nth-child(4) .approach-panel {
    grid-column: 2;
    grid-row: 4;
  }

  .approach-journey-item:nth-child(4) .approach-marker {
    grid-column: 2;
    grid-row: 5;
    justify-self: center;
    align-self: center;
  }
}

@media (min-width: 1000px) {
  .approach-journey {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: auto minmax(72px, auto) auto;
    column-gap: clamp(14px, 2vw, 22px);
    row-gap: clamp(24px, 3.5vw, 32px);
    align-items: start;
  }

  .approach-journey-item {
    display: contents;
  }

  .approach-journey::before {
    display: none;
    content: none;
  }

  .approach-journey::after {
    display: block;
    content: "";
    grid-column: 1 / -1;
    grid-row: 2;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary) 0%, #25d366 100%);
    align-self: center;
    pointer-events: none;
    z-index: 0;
  }

  .approach-journey-item:nth-child(1) .approach-panel {
    grid-column: 1;
    grid-row: 3;
  }

  .approach-journey-item:nth-child(1) .approach-marker {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    align-self: center;
  }

  .approach-journey-item:nth-child(2) .approach-panel {
    grid-column: 2;
    grid-row: 1;
  }

  .approach-journey-item:nth-child(2) .approach-marker {
    grid-column: 2;
    grid-row: 2;
    justify-self: center;
    align-self: center;
  }

  .approach-journey-item:nth-child(3) .approach-panel {
    grid-column: 3;
    grid-row: 3;
  }

  .approach-journey-item:nth-child(3) .approach-marker {
    grid-column: 3;
    grid-row: 2;
    justify-self: center;
    align-self: center;
  }

  .approach-journey-item:nth-child(4) .approach-panel {
    grid-column: 4;
    grid-row: 1;
  }

  .approach-journey-item:nth-child(4) .approach-marker {
    grid-column: 4;
    grid-row: 2;
    justify-self: center;
    align-self: center;
  }

  /* Üst sıradaki balonlar aynı satır yüksekliğini paylaşıyor; kısa metin + align:start
     ikonla arada fazla boşluk bırakıyordu — ikisini de satır altına sabitle. */
  .approach-journey-item:nth-child(2) .approach-panel,
  .approach-journey-item:nth-child(4) .approach-panel {
    align-self: end;
  }
}


.about {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  max-width: 100%;
}

.about-visual {
  margin: 0;
}

.about-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  background: linear-gradient(145deg, #e8efe9, #dfe8df);
  box-shadow:
    0 14px 40px -20px rgba(18, 40, 26, 0.45),
    0 2px 0 rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(29, 30, 32, 0.06);
}

.about-photo img,
.about-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.about-copy {
  min-width: 0;
}

.about-copy p:not(.section-label) {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
  max-width: 62ch;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.section-appointment {
  background: linear-gradient(180deg, transparent, #eef3ef);
}

.appointment-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
}

.appointment-intro .section-title {
  margin-bottom: 0.55rem;
}

.appointment-intro-lead {
  margin: 0 auto;
  font-size: 1.02rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.55;
}

.booking-card {
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 42px -14px rgba(20, 28, 24, 0.35), 0 0 1px rgba(29, 30, 32, 0.08);
  border: 1px solid rgba(29, 30, 32, 0.07);
  padding: 22px 20px 18px;
  --booking-lavender: #e8e4f5;
  --booking-lavender-text: #3d3558;
}

.booking-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.booking-avatar-wrap {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.booking-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(29, 30, 32, 0.08);
}

.booking-head-text {
  min-width: 0;
}

.booking-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.booking-name {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.booking-verified {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--primary);
  margin-top: 1px;
}

.booking-role {
  margin: 2px 0 8px;
  font-size: 0.93rem;
  color: var(--muted);
}

.booking-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.booking-stars {
  letter-spacing: 2px;
  font-size: 0.92rem;
  line-height: 1;
  color: var(--primary);
}

.booking-reviews-count {
  margin-left: -2px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--muted);
}

.booking-reviews-num {
  font-weight: 500;
  opacity: 0.72;
}

.booking-reviews-text {
  font-weight: 600;
}

.booking-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(29, 30, 32, 0.1);
  margin-bottom: 14px;
}

.booking-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 8px 10px;
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  border-radius: 0;
}

.booking-tab:hover {
  color: var(--text);
}

.booking-tab.is-active {
  color: var(--text);
  font-weight: 700;
}

.booking-tab.is-active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -1px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--primary);
}

.booking-tab-icon {
  opacity: 0.85;
  flex-shrink: 0;
}

.booking-panel {
  margin-bottom: 10px;
}

.booking-address-box {
  padding: 12px 2px 4px;
}

.booking-address-box p {
  margin: 0 0 14px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.booking-address-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-address-btn {
  justify-content: center;
}

.booking-dates-shell {
  display: flex;
  align-items: stretch;
  gap: 6px;
  margin-bottom: 10px;
}

.booking-date-nav {
  flex-shrink: 0;
  width: 36px;
  border: none;
  border-radius: 50%;
  background: var(--booking-lavender);
  color: var(--booking-lavender-text);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s ease, transform 0.15s ease;
  align-self: center;
  height: 36px;
}

.booking-date-nav:hover {
  background: #ddd4f0;
}

.booking-date-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.booking-dates-window {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.booking-dates-window::-webkit-scrollbar {
  height: 4px;
}

.booking-dates {
  display: flex;
  gap: 10px;
  padding: 2px 0 6px;
  min-height: 188px;
}

.booking-card.is-expanded-slots .booking-dates {
  min-height: 0;
}

.booking-day-col {
  flex: 0 0 118px;
  min-width: 118px;
  max-width: 118px;
  display: flex;
  flex-direction: column;
}

.booking-day-label {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1.35;
  text-align: center;
  color: var(--text);
  min-height: 2.65em;
  white-space: pre-line;
}

.booking-day-slots {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  overflow: hidden;
  max-height: 168px;
}

.booking-card.is-expanded-slots .booking-day-slots {
  max-height: none;
}

.booking-slot-empty {
  margin: auto 0;
  text-align: center;
  font-size: 1.2rem;
  color: rgba(95, 99, 104, 0.45);
  font-weight: 500;
}

.booking-slot {
  appearance: none;
  font: inherit;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 6px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

.booking-slot.is-free {
  background: var(--booking-lavender);
  color: var(--booking-lavender-text);
}

.booking-slot.is-free:hover {
  filter: brightness(0.96);
}

.booking-slot.is-free:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--ring);
}

.booking-slot.is-free.is-picked {
  box-shadow: 0 0 0 2px var(--primary);
  background: #d9f0e3;
}

.booking-slot.is-busy {
  background: transparent;
  color: var(--muted);
  text-decoration: line-through;
  cursor: not-allowed;
  opacity: 0.75;
}

.booking-more-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin: 4px 0 14px;
  padding: 8px;
  border: none;
  background: none;
  font: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary-dark);
  cursor: pointer;
}

.booking-more-hours svg {
  transition: transform 0.2s ease;
}

.booking-card.is-expanded-slots .booking-more-hours svg {
  transform: rotate(180deg);
}

.booking-form {
  padding-top: 4px;
}

.booking-pick-hint {
  margin: 4px 0 10px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

.booking-card.has-slot .booking-pick-hint {
  display: none;
}

.booking-form-fields textarea {
  resize: vertical;
  min-height: 72px;
}

.booking-selected {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(46, 110, 79, 0.08);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary-dark);
  text-align: center;
}

.booking-optional {
  font-weight: 500;
  color: var(--muted);
}

.booking-card--cal {
  max-width: min(960px, 100%);
}

.booking-cal-main {
  padding-top: 4px;
}

.cal-embed-root {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(29, 30, 32, 0.08);
  color-scheme: light;
}

.cal-embed-hint {
  margin: 0;
  padding: 16px 14px;
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--text);
  background: linear-gradient(145deg, #fff7e8 0%, #f4efe6 100%);
  border: 1px solid rgba(177, 138, 82, 0.25);
}

.cal-embed-hint code,
.cal-embed-hint .cal-nowrap {
  word-break: break-all;
}

.cal-com-iframe {
  display: block;
  width: 100%;
  min-height: min(740px, 85vh);
  border: none;
  color-scheme: light;
}

.cal-com-iframe[hidden] {
  display: none;
}

.booking-meet-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(29, 30, 32, 0.06);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.booking-meet-strip svg {
  flex-shrink: 0;
}

.appointment-form {
  display: grid;
  gap: 12px;
}

.appointment-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  border: 1px solid rgba(29, 30, 32, 0.14);
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
  color: inherit;
  background: #fff;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--ring);
}

.appointment-type-fixed {
  display: block;
  width: 100%;
  border: 1px solid rgba(29, 30, 32, 0.14);
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
  color: var(--muted);
  background: rgba(29, 30, 32, 0.04);
  user-select: none;
}

.form-note {
  margin: 2px 0 0;
  font-weight: 600;
  min-height: 22px;
}

.form-note.success {
  color: var(--primary-dark);
}

.form-note.error {
  color: #b00020;
}

.site-footer {
  border-top: 1px solid rgba(29, 30, 32, 0.08);
  background: linear-gradient(180deg, #fafbf9 0%, #fff 100%);
  padding: 42px 0 36px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) minmax(140px, 0.85fr) minmax(140px, 0.95fr);
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
}

.footer-col-title {
  margin: 0 0 12px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-name {
  margin: 2px 0 0;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.footer-contact {
  margin: 16px 0 0;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(29, 30, 32, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px -24px rgba(20, 28, 24, 0.35);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 22rem;
}

.footer-contact-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.footer-address {
  display: block;
  font-weight: 600;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.5;
}

.footer-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(29, 30, 32, 0.07);
}

.footer-strip-link {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--primary-dark);
  text-decoration: none;
}

.footer-strip-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-strip-link--tel {
  letter-spacing: 0.02em;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-nav a:hover {
  color: var(--primary-dark);
}

.footer-inner p.footer-role {
  margin: 0;
  font-weight: 800;
  color: var(--primary);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.footer-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  border: 1px solid rgba(29, 30, 32, 0.1);
  background: var(--surface);
  color: var(--text);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.footer-action-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.footer-action-btn:hover {
  border-color: rgba(46, 110, 79, 0.35);
  box-shadow: 0 10px 24px -16px rgba(20, 28, 24, 0.35);
}

.footer-action-btn--call {
  color: var(--primary-dark);
}

.footer-action-btn--ig {
  color: #7d5f35;
}

.footer-action-btn--wa {
  color: #1b6b4f;
}

.footer-phone {
  font-weight: 800;
  color: var(--primary-dark);
}

.footer-instagram {
  font-weight: 700;
  color: #7d5f35;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.float-actions .whatsapp-float {
  position: relative;
  right: auto;
  bottom: auto;
}

.float-actions .whatsapp-float:not(.is-visible) {
  display: none;
}

.whatsapp-float {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease;
}

.whatsapp-float.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  animation: pulse 2.4s infinite;
}

.whatsapp-float.is-visible.whatsapp-chip:hover {
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(37, 211, 102, 0.32);
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    transition: none;
    transform: none;
  }

  .whatsapp-float.is-visible {
    animation: none;
    transform: none;
  }

  .approach-marker,
  .approach-panel {
    transition: none;
  }

  .approach-journey-item:has(.approach-marker:hover) .approach-marker,
  .approach-journey-item:has(.approach-panel:hover) .approach-marker,
  .approach-journey-item:has(.approach-marker:hover) .approach-panel,
  .approach-journey-item:has(.approach-panel:hover) .approach-panel {
    transform: none;
  }
}

.floating-lotties {
  position: fixed;
  inset: 0;
  z-index: 10001;
  pointer-events: none;
  overflow: visible;
}

.floating-lottie-item[data-float-armed="0"] {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.floating-lottie-item {
  position: absolute;
  z-index: 1;
  pointer-events: auto;
  cursor: pointer;
  will-change: transform;
  animation-duration: var(--float-duration, 42s);
  animation-delay: var(--float-delay, 0s);
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: backwards;
  filter: drop-shadow(0 8px 22px rgba(46, 110, 79, 0.18));
}

.floating-lottie-bounce {
  width: 100%;
  height: 100%;
  transform-origin: center bottom;
}

.floating-lottie-bounce.is-bouncing {
  animation: floating-lottie-hop 0.58s cubic-bezier(0.34, 1.45, 0.64, 1);
}

@keyframes floating-lottie-hop {
  0% {
    transform: translateY(0) scale(1);
  }
  22% {
    transform: translateY(-26px) scale(1.1);
  }
  45% {
    transform: translateY(-6px) scale(1.03);
  }
  65% {
    transform: translateY(-14px) scale(1.06);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.floating-lottie-canvas,
.floating-lottie-canvas svg {
  display: block;
  width: 100%;
  height: 100%;
}

@keyframes float-path-down {
  from {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }
  to {
    transform: translate3d(var(--path-drift-x, 0vw), calc(120vh + 100%), 0) rotate(12deg);
  }
}

@keyframes float-path-up {
  from {
    transform: translate3d(0, 0, 0) rotate(8deg);
  }
  to {
    transform: translate3d(var(--path-drift-x, 0vw), calc(-120vh - 100%), 0) rotate(-10deg);
  }
}

@keyframes float-path-diagonal-dr {
  from {
    transform: translate3d(0, 0, 0) rotate(-6deg);
  }
  to {
    transform: translate3d(112vw, 112vh, 0) rotate(16deg);
  }
}

@keyframes float-path-diagonal-ul {
  from {
    transform: translate3d(0, 0, 0) rotate(6deg);
  }
  to {
    transform: translate3d(-112vw, -112vh, 0) rotate(-14deg);
  }
}

@keyframes float-path-right {
  from {
    transform: translate3d(0, 0, 0) rotate(-5deg);
  }
  to {
    transform: translate3d(calc(120vw + 100%), var(--path-drift-y, 0vh), 0) rotate(9deg);
  }
}

@keyframes float-path-left {
  from {
    transform: translate3d(0, 0, 0) rotate(5deg);
  }
  to {
    transform: translate3d(calc(-120vw - 100%), var(--path-drift-y, 0vh), 0) rotate(-9deg);
  }
}

@keyframes float-path-walk-bl-tr {
  from {
    transform: translate3d(0, 0, 0) rotate(-4deg);
  }
  to {
    transform: translate3d(112vw, calc(-112vh - 100%), 0) rotate(10deg);
  }
}

.floating-lottie-item--path-walk-bl-tr {
  animation-name: float-path-walk-bl-tr;
}

.floating-lottie-item--path-down {
  animation-name: float-path-down;
}

.floating-lottie-item--path-up {
  animation-name: float-path-up;
}

.floating-lottie-item--path-diagonal-dr {
  animation-name: float-path-diagonal-dr;
}

.floating-lottie-item--path-diagonal-ul {
  animation-name: float-path-diagonal-ul;
}

.floating-lottie-item--path-right {
  animation-name: float-path-right;
}

.floating-lottie-item--path-left {
  animation-name: float-path-left;
}

@media (prefers-reduced-motion: reduce) {
  .floating-lotties {
    display: none !important;
  }
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(50px);
  z-index: -1;
  pointer-events: none;
}

.glow-one {
  width: 280px;
  height: 280px;
  background: rgba(46, 110, 79, 0.16);
  top: 10%;
  left: -80px;
}

.glow-two {
  width: 360px;
  height: 360px;
  background: rgba(177, 138, 82, 0.15);
  bottom: -120px;
  right: -60px;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    var(--skeleton-base) 0%,
    var(--skeleton-shine) 42%,
    var(--skeleton-base) 84%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.35s ease-in-out infinite;
  transition: opacity 0.35s ease;
}

.skeleton-host {
  position: relative;
}

.skeleton-host:not(.is-loaded) .skeleton-media-target {
  opacity: 0;
}

.skeleton-host.is-loaded .skeleton-layer {
  opacity: 0;
}

.skeleton-host--round {
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.skeleton-host--round .skeleton-layer {
  border-radius: 50%;
}

@media (prefers-reduced-motion: reduce) {
  .skeleton-layer {
    animation: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .hero-split-shell,
  .cards,
  .split,
  .about,
  .bmi-panel {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-answer {
    padding-left: 16px;
  }

  .hero--split {
    padding: 0;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-col--nav .footer-nav {
    align-items: flex-start;
  }

  .footer-col--primary {
    grid-column: 1 / -1;
    max-width: 28rem;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --site-header-offset: clamp(66px, 18vw, 80px);
  }

  .header-inner {
    min-height: 68px;
  }

  .header-cta {
    padding: 9px 14px;
    font-size: 0.92rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-col--primary,
  .footer-col--nav,
  .footer-col--actions {
    text-align: center;
  }

  .footer-col--nav .footer-nav {
    flex-flow: row wrap;
    gap: 10px 16px;
    align-items: center;
    justify-content: center;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .footer-action-btn {
    flex: 1 1 auto;
    min-width: min(160px, 100%);
  }

  .footer-contact {
    max-width: none;
    text-align: center;
  }

  .footer-contact-strip {
    justify-content: center;
  }
}

/* ========================================
   MOBILE HAMBURGER MENU
   ======================================== */

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: #fff;
  padding: 24px 8px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.mobile-nav-overlay.is-open .mobile-nav {
  transform: translateX(0);
}

.mobile-nav-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 0 16px 16px;
  text-decoration: none;
}

.mobile-nav-brand .brand-role {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--primary);
}

.mobile-nav-brand .brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  max-width: none;
}

.mobile-nav-divider {
  height: 1px;
  background: rgba(29, 30, 32, 0.1);
  margin: 0 16px 12px;
}

.mobile-nav-lang {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px 14px;
}

.site-header--lang-in-menu .mobile-nav-lang {
  display: flex;
}

.mobile-nav-lang-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.lang-dropdown--mobile-nav {
  width: 100%;
}

.lang-dropdown--mobile-nav .lang-dropdown-trigger {
  width: 100%;
  max-width: none;
  justify-content: space-between;
}

.lang-dropdown--mobile-nav .lang-dropdown-menu {
  position: static;
  margin-top: 6px;
  width: 100%;
  box-shadow: none;
  border: 1px solid rgba(29, 30, 32, 0.08);
}

.site-header--lang-in-menu .lang-dropdown--header {
  display: none;
}

.site-header--lang-in-menu .header-actions {
  display: none;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
  background: var(--surface-soft);
  color: var(--primary-dark);
}

.mobile-nav-link.is-active {
  background: rgba(46, 110, 79, 0.1);
  color: var(--primary-dark);
}

.mobile-nav-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--primary);
}

.mobile-nav-link svg.mobile-nav-icon {
  display: block;
}

.mobile-nav-link img.mobile-nav-icon {
  object-fit: contain;
  /* PNG ikonları site yeşiline (#2e6e4f) boyar */
  filter: brightness(0) saturate(100%) invert(37%) sepia(45%) saturate(550%) hue-rotate(109deg)
    brightness(92%) contrast(90%);
}

.mobile-nav-link:hover .mobile-nav-icon,
.mobile-nav-link:focus .mobile-nav-icon,
.mobile-nav-link.is-active .mobile-nav-icon {
  color: var(--primary-dark);
}

.mobile-nav-link:hover img.mobile-nav-icon,
.mobile-nav-link:focus img.mobile-nav-icon,
.mobile-nav-link.is-active img.mobile-nav-icon {
  filter: brightness(0) saturate(100%) invert(28%) sepia(48%) saturate(650%) hue-rotate(109deg)
    brightness(88%) contrast(92%);
}

.mobile-nav-cta {
  margin-top: auto;
  margin-left: 8px;
  margin-right: 8px;
  padding: 16px 20px !important;
  border-radius: 12px !important;
  background: linear-gradient(140deg, var(--primary), var(--primary-dark)) !important;
  color: #fff !important;
  text-align: center !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  box-shadow: 0 12px 24px -12px var(--primary-dark);
  justify-content: center !important;
  display: flex !important;
  align-items: center !important;
}

.mobile-nav-cta:hover {
  background: linear-gradient(140deg, var(--primary-dark), var(--primary)) !important;
}

body.mobile-menu-open {
  overflow: hidden;
}

/* Show hamburger on tablet and mobile */
@media (max-width: 960px) {
  .site-header--intro,
  .site-header--brand-enter {
    overflow-x: hidden;
    overflow-y: visible;
  }

  .site-header .header-inner {
    width: 100%;
    max-width: none;
    padding-inline: 16px;
    box-sizing: border-box;
  }

  .brand {
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.35rem 0.45rem;
    min-width: 0;
    max-width: 100%;
  }

  .brand-role-wrap {
    flex-shrink: 0;
  }

  .site-header .brand-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-role-lottie {
    display: none !important;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .float-actions {
    right: 16px;
    bottom: 16px;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .header-actions {
    position: static;
    transform: none;
    top: auto;
    right: auto;
    grid-column: 2;
  }

  .header-actions .header-cta {
    display: none;
  }

  .nav {
    padding-right: 0;
  }

  .mobile-menu-btn {
    grid-column: 3;
  }
}

/* ========================================
   ENHANCED MOBILE RESPONSIVE STYLES
   ======================================== */

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: clamp(1.45rem, 5.5vw, 2rem);
    margin-bottom: 18px;
  }

  .section-lead {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .container {
    width: min(1120px, 88vw);
  }

  /* Hero Mobile - Image fills screen, text overlaid at bottom */
  .hero--split {
    height: calc(100svh - var(--site-header-offset));
    max-height: calc(100svh - var(--site-header-offset));
    min-height: calc(100svh - var(--site-header-offset));
    position: relative;
  }

  @supports (height: 100dvh) {
    .hero--split {
      height: calc(100dvh - var(--site-header-offset));
      max-height: calc(100dvh - var(--site-header-offset));
      min-height: calc(100dvh - var(--site-header-offset));
    }
  }

  .hero-split-shell {
    display: block;
    position: relative;
    height: 100%;
  }

  .hero-split-visual {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 0;
  }

  .hero-split-copy {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 20px 24px;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    background: transparent;
    z-index: 2;
  }

  .hero-split-photo {
    height: 100%;
  }

  .hero-split-photo::after {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.4) 55%,
      rgba(255, 255, 255, 0.75) 68%,
      rgba(255, 255, 255, 0.95) 80%,
      rgb(255, 255, 255) 90%,
      rgb(255, 255, 255) 100%
    );
  }

  .hero-kicker {
    justify-content: center;
  }

  .hero-heading {
    font-size: clamp(1.65rem, 6vw, 2.2rem);
    max-width: none;
    text-align: center;
  }

  .hero-lead {
    text-align: center;
    font-size: 0.95rem;
  }

  .hero-split-cta {
    justify-content: center;
    margin-top: 20px;
  }

  .hero-cta,
  .hero-split-cta .whatsapp-chip {
    padding: 12px 18px;
    font-size: 0.85rem;
  }

  .hero-split-img {
    object-position: center 15%;
    height: 100%;
    width: 100%;
  }

  /* BMI Panel Mobile */
  .bmi-panel {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 18px;
  }

  .bmi-fields {
    gap: 12px;
  }

  .bmi-fields label {
    font-size: 0.9rem;
  }

  .bmi-fields input {
    padding: 14px 12px;
    font-size: 16px;
  }

  .bmi-result {
    padding: 18px;
  }

  .bmi-value {
    font-size: 1rem;
  }

  .bmi-value strong {
    font-size: 1.3rem;
  }

  .bmi-category {
    font-size: 0.95rem;
  }

  .bmi-motto {
    font-size: 0.9rem;
    padding: 12px 14px;
  }

  .bmi-cta {
    width: 100%;
    text-align: center;
  }

  /* Service Cards Mobile - 2 per row */
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .service-card {
    border-radius: 16px;
  }

  .service-card-media {
    aspect-ratio: 4 / 3;
  }

  .service-card-body {
    padding: 12px 14px 14px;
  }

  .service-card-title {
    font-size: 0.85rem;
  }

  .service-card-title::after {
    margin-top: 0.5rem;
    width: 2rem;
  }

  .service-card-text {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .service-card-caption {
    padding: 2rem 0.8rem 0.8rem;
  }

  /* FAQ Mobile */
  .faq-list {
    gap: 8px;
  }

  .faq-item summary {
    padding: 14px 40px 14px 14px;
    font-size: 0.92rem;
    gap: 10px;
  }

  .faq-num {
    min-width: 32px;
    height: 32px;
    font-size: 0.78rem;
  }

  .faq-answer {
    padding: 0 14px 14px 56px;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

  .faq-footer-cta {
    padding: 18px;
    text-align: center;
    align-items: center;
  }

  .faq-footer-cta p {
    text-align: center;
  }

  .faq-footer-cta-actions {
    justify-content: center;
    width: 100%;
  }

  .faq-cta-phone {
    flex: 1;
    min-width: 140px;
  }

  .faq-footer-cta .whatsapp-chip {
    flex: 1;
    min-width: 140px;
  }

  /* Booking Card Mobile */
  .booking-card {
    padding: 18px 16px 16px;
    border-radius: 16px;
  }

  .booking-card--cal {
    max-width: 100%;
  }

  .booking-head {
    gap: 12px;
  }

  .booking-avatar-wrap {
    width: 56px;
    height: 56px;
  }

  .booking-name {
    font-size: 0.98rem;
  }

  .booking-role {
    font-size: 0.88rem;
  }

  .booking-stars {
    font-size: 0.85rem;
  }

  .cal-embed-root {
    border-radius: 12px;
  }

  .cal-com-iframe {
    min-height: min(600px, 75vh);
  }

  .booking-meet-strip {
    font-size: 0.78rem;
    margin-top: 12px;
    padding-top: 10px;
  }

  /* Footer Mobile */
  .site-footer {
    padding: 32px 0 28px;
  }

  .footer-inner {
    gap: 24px;
  }

  .footer-name {
    font-size: 1.05rem;
  }

  .footer-contact {
    padding: 14px 16px;
  }

  .footer-contact-label {
    font-size: 0.65rem;
  }

  .footer-address {
    font-size: 0.9rem;
  }

  .footer-contact-strip {
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
  }

  .footer-strip-link {
    font-size: 0.78rem;
  }

  .footer-nav {
    font-size: 0.88rem;
    gap: 6px;
  }

  .footer-col-title {
    font-size: 0.7rem;
  }

  .footer-action-btn {
    padding: 12px 14px;
    font-size: 0.85rem;
  }

  .whatsapp-float.whatsapp-chip {
    padding: 12px 16px;
    font-size: 0.88rem;
  }

  /* Approach Journey Mobile - 2x2 Grid */
  .approach-journey {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    padding: 0;
  }

  .approach-journey::before,
  .approach-journey::after {
    display: none !important;
  }

  .approach-journey-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 0;
  }

  .approach-journey-item:not(:last-child)::after {
    display: none;
  }

  .approach-journey-item:nth-child(1) .approach-marker,
  .approach-journey-item:nth-child(2) .approach-marker,
  .approach-journey-item:nth-child(3) .approach-marker,
  .approach-journey-item:nth-child(4) .approach-marker {
    grid-column: auto;
    grid-row: auto;
  }

  .approach-journey-item:nth-child(1) .approach-panel,
  .approach-journey-item:nth-child(2) .approach-panel,
  .approach-journey-item:nth-child(3) .approach-panel,
  .approach-journey-item:nth-child(4) .approach-panel {
    grid-column: auto;
    grid-row: auto;
  }

  .approach-marker {
    width: 56px;
    height: 56px;
  }

  .approach-marker-img {
    width: 24px;
    height: 24px;
  }

  .approach-marker::after {
    min-width: 1.4rem;
    height: 1.4rem;
    font-size: 0.6rem;
    top: -4px;
    right: -2px;
  }

  .approach-panel {
    padding: 0.85rem;
    border-radius: 12px;
    width: 100%;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .approach-panel-text {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  /* About Section Mobile */
  .about {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .about-visual {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .about-photo {
    width: 220px;
    height: 280px;
    max-width: none;
    max-height: none;
    margin: 0 auto;
  }

  .about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    display: block;
  }

  .about-copy {
    text-align: center;
  }

  .about-copy p:not(.section-label) {
    font-size: 0.92rem;
    max-width: none;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .container {
    width: min(1120px, 92vw);
  }

  .section {
    padding: 44px 0;
  }

  .section-title {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }

  .hero-split-copy {
    padding: 0 16px 20px;
  }

  .hero-heading {
    font-size: clamp(1.5rem, 7vw, 1.9rem);
    margin-bottom: 10px;
  }

  .hero-lead {
    font-size: 0.88rem;
  }

  .hero-split-cta {
    flex-direction: column;
    width: 100%;
    margin-top: 16px;
  }

  .hero-cta,
  .hero-split-cta .whatsapp-chip {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }

  /* Brand Mobile */
  .brand {
    font-size: 0.95rem;
    gap: 0.4rem 0.5rem;
  }

  .brand-role {
    font-size: 0.75em;
  }

  .brand-role-lottie {
    display: none !important;
  }

  .site-header .brand-name {
    max-width: none;
  }

  /* BMI Mobile Extra Small */
  .bmi-panel {
    padding: 16px;
  }

  .bmi-fields input {
    padding: 12px 10px;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
  }

  /* Service Cards - Keep 2 columns but smaller */
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .service-card {
    border-radius: 14px;
  }

  .service-card-media {
    aspect-ratio: 1 / 1;
  }

  .service-card-body {
    padding: 10px 10px 12px;
  }

  .service-card-title {
    font-size: 0.78rem;
  }

  .service-card-text {
    font-size: 0.75rem;
    line-height: 1.45;
  }

  .service-card-caption {
    padding: 1.5rem 0.6rem 0.6rem;
  }

  /* FAQ Extra Small */
  .faq-item summary {
    padding: 12px 36px 12px 12px;
    font-size: 0.88rem;
  }

  .faq-num {
    min-width: 28px;
    height: 28px;
    font-size: 0.72rem;
    border-radius: 8px;
  }

  .faq-answer {
    padding: 0 12px 12px 48px;
  }

  .faq-footer-cta-actions {
    flex-direction: column;
  }

  .faq-cta-phone,
  .faq-footer-cta .whatsapp-chip {
    width: 100%;
  }

  /* Booking Extra Small */
  .booking-card {
    padding: 16px 14px 14px;
  }

  .booking-avatar-wrap {
    width: 48px;
    height: 48px;
  }

  .booking-name {
    font-size: 0.92rem;
  }

  .cal-com-iframe {
    min-height: min(520px, 70vh);
  }

  /* Footer Extra Small */
  .footer-action-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-links {
    flex-direction: column;
  }

  /* Approach Journey Extra Small - 2x2 Grid */
  .approach-journey {
    gap: 12px;
  }

  .approach-journey-item {
    gap: 8px;
  }

  .approach-marker {
    width: 48px;
    height: 48px;
  }

  .approach-marker-img {
    width: 20px;
    height: 20px;
  }

  .approach-marker::after {
    min-width: 1.2rem;
    height: 1.2rem;
    font-size: 0.55rem;
  }

  .approach-panel {
    padding: 0.7rem;
    min-height: 65px;
  }

  .approach-panel-text {
    font-size: 0.75rem;
  }

  /* About Extra Small */
  .about-photo {
    width: 180px;
    height: 230px;
  }
}

/* Touch-friendly tap targets */
@media (hover: none) and (pointer: coarse) {
  .nav a,
  .footer-nav a,
  .mobile-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .btn,
  .hero-cta,
  .whatsapp-chip,
  .footer-action-btn,
  .booking-slot,
  .faq-item summary {
    min-height: 44px;
  }

  .bmi-fields input,
  .appointment-form input,
  .appointment-form select,
  .appointment-form textarea {
    min-height: 48px;
    font-size: 16px;
  }
}

/* Landscape mobile */
@media (max-width: 960px) and (orientation: landscape) and (max-height: 500px) {
  .hero--split {
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .hero-split-shell {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .hero-split-copy {
    padding: 20px;
    justify-content: center;
  }

  .hero-split-visual {
    min-height: 300px;
    height: 100%;
  }

  .hero-split-photo::after {
    background: linear-gradient(
      90deg,
      rgb(255, 255, 255) 0%,
      rgba(255, 255, 255, 0.7) 15%,
      rgba(255, 255, 255, 0) 40%
    );
  }

  .mobile-nav {
    padding-top: 80px;
  }
}

/* Print styles */
@media print {
  .mobile-menu-btn,
  .mobile-nav-overlay,
  .whatsapp-float,
  .bg-glow,
  .floating-lotties {
    display: none !important;
  }

  .nav {
    display: flex !important;
  }

  .hero--split {
    height: auto;
    max-height: none;
  }
}
