﻿/* ============================================================
   Uzm. Gelisim Psikologu Seren Ugur — Premium Redesign
   ============================================================ */

:root {
  --sage: #7F8C72;
  --sage-dark: #6B7760;
  --sage-deep: #5A6550;
  --sage-soft: #9AA68E;
  --sage-muted: rgba(127, 140, 114, 0.14);
  --sage-glow: rgba(127, 140, 114, 0.24);

  --secondary: #A89880;
  --sand: #F5F2EC;
  --sand-deep: #EFEBE4;
  --sand-line: #E4DFD6;
  --cream: #F5F2EC;
  --taupe: #A89880;

  --ivory: #F9F7F2;
  --white: #FFFFFF;

  --ink: #2C3531;
  --ink-soft: #333333;
  --ink-muted: #5C6561;
  --ink-faint: #8A918D;

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 16px rgba(44, 53, 49, 0.04);
  --shadow: 0 10px 32px rgba(44, 53, 49, 0.06);
  --shadow-lg: 0 18px 48px rgba(44, 53, 49, 0.08);

  --font-serif: "Lora", Georgia, "Times New Roman", serif;
  --font-sans: "Nunito", "Segoe UI", sans-serif;

  --container: 1200px;
  --header-h: 90px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 300ms;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-dark); text-decoration: none; transition: color var(--t) var(--ease); }
a:hover { color: var(--sage-deep); }
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin: 0 0 0.6em;
}
p { margin: 0 0 1em; color: var(--ink-muted); }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section { padding: clamp(2.25rem, 4.5vw, 3.35rem) 0; }

/* ---------- Neon çerçeve (hero / hakkımda / uzmanlık) ---------- */
.neon-frame {
  position: relative;
  isolation: isolate;
}
.neon-frame__aura {
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(154, 166, 142, 0.45), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(127, 140, 114, 0.38), transparent 58%);
  filter: blur(14px);
  opacity: 0.85;
  animation: neonAuraPulse 3.6s ease-in-out infinite;
}
.neon-frame__shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.34) 48%, transparent 78%);
  mix-blend-mode: soft-light;
  opacity: 0.45;
  animation: neonShineSweep 3.4s ease-in-out infinite;
}
.neon-frame__ring {
  position: absolute;
  inset: 7px;
  border-radius: calc(inherit - 4px);
  border: 1px solid rgba(200, 220, 188, 0.45);
  pointer-events: none;
  z-index: 2;
}
.neon-frame__media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 14px;
  background: #EFEBE4;
}
.neon-frame__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.neon-frame--wide {
  max-width: 920px;
  margin: 0 auto 1.75rem;
  padding: 12px;
  border-radius: 24px;
  background:
    linear-gradient(160deg, #FFFCFA 0%, #F3EEE6 48%, #E8EDE4 100%);
  border: 2px solid rgba(127, 140, 114, 0.42);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 0 0 6px rgba(127, 140, 114, 0.1),
    0 0 28px rgba(127, 140, 114, 0.35),
    0 0 56px rgba(154, 166, 142, 0.22),
    0 18px 40px rgba(44, 53, 49, 0.1);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.neon-frame--wide:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 0 0 7px rgba(127, 140, 114, 0.14),
    0 0 36px rgba(127, 140, 114, 0.48),
    0 0 70px rgba(154, 166, 142, 0.3),
    0 22px 46px rgba(44, 53, 49, 0.12);
}
.neon-frame--wide .neon-frame__media {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
}
.neon-frame--wide .neon-frame__media img {
  object-position: 50% 42%;
}
.neon-frame--portrait {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 0 0 5px rgba(127, 140, 114, 0.1),
    0 0 24px rgba(127, 140, 114, 0.38),
    0 0 48px rgba(154, 166, 142, 0.2),
    0 18px 42px rgba(44, 53, 49, 0.12) !important;
  border-color: rgba(127, 140, 114, 0.45) !important;
  overflow: hidden;
}
.neon-frame--organic {
  box-shadow:
    0 0 0 5px rgba(127, 140, 114, 0.1),
    0 0 26px rgba(127, 140, 114, 0.4),
    0 0 52px rgba(154, 166, 142, 0.24),
    0 14px 32px rgba(44, 53, 49, 0.12),
    0 4px 14px rgba(127, 140, 114, 0.14);
}
.neon-frame--organic .neon-frame__aura {
  inset: -14px;
  border-radius: 46% 50% 48% 52% / 50% 46% 54% 48%;
}
.neon-frame--organic .neon-frame__shine {
  -webkit-mask-image: url("../images/hero-mask.svg");
  mask-image: url("../images/hero-mask.svg");
  -webkit-mask-size: 106% 108%;
  mask-size: 106% 108%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
@keyframes neonAuraPulse {
  0%, 100% { opacity: 0.7; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.02); }
}
@keyframes neonShineSweep {
  0%, 100% { transform: translateX(-22%); opacity: 0.2; }
  50% { transform: translateX(22%); opacity: 0.55; }
}
@media (prefers-reduced-motion: reduce) {
  .neon-frame__aura,
  .neon-frame__shine { animation: none; }
}

.section--sand {
  background: linear-gradient(180deg, var(--sand) 0%, var(--sand-deep) 100%);
}
.section--cream {
  background: linear-gradient(180deg, #F3EFE8 0%, var(--cream) 40%, var(--sand-deep) 100%);
}
.section--white,
.section--services {
  background: linear-gradient(180deg, var(--cream) 0%, #FAF8F4 12%, #FAF8F4 100%);
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.45rem;
}
.section__title { font-size: clamp(1.85rem, 3.5vw, 2.55rem); margin-bottom: 0.55rem; }
.section__lead { max-width: 640px; font-size: 1rem; color: var(--ink-muted); margin-bottom: 0; line-height: 1.6; }
.section__header { text-align: center; margin-bottom: clamp(1.35rem, 2.8vw, 2rem); }
.section__header .section__lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  height: 56px;
  padding: 0 1.7rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--t) var(--ease), background var(--t) var(--ease),
    box-shadow var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 8px 24px var(--sage-glow);
}
.btn--primary:hover {
  background: var(--sage-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(127, 140, 114, 0.32);
}

.btn--secondary,
.btn--wa,
.btn--outline,
.btn--wa-hero {
  background: var(--sand);
  color: var(--ink);
  border-color: rgba(127, 140, 114, 0.38);
}
.btn--secondary:hover,
.btn--wa:hover,
.btn--outline:hover,
.btn--wa-hero:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--wa-hero .btn__wa-icon,
.header__cta--wa .btn__wa-icon {
  filter: none;
}

.btn__wa-icon {
  width: 22px; height: 22px;
  display: inline-grid; place-items: center;
  flex-shrink: 0; line-height: 0;
}
.btn__wa-icon svg { width: 22px; height: 22px; display: block; }
.btn__wa-icon--sm, .btn__wa-icon--sm svg { width: 18px; height: 18px; }

.btn--pill { border-radius: var(--radius-pill); }
.btn--ghost {
  background: transparent;
  color: var(--sage-dark);
  border-color: var(--sage);
  height: auto;
  padding: 0.7rem 1.2rem;
}
.btn--ghost:hover { background: var(--sage); color: var(--white); }
.btn--light { background: var(--white); color: var(--sage-dark); }
.btn--light:hover { background: var(--sand); color: var(--ink); }
.btn--sm { height: 42px; padding: 0 1.1rem; font-size: 0.78rem; }
.btn--on-sand { border-color: rgba(255,255,255,0.55); color: var(--ink); background: rgba(255,255,255,0.75); }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.social-btn svg { width: 17px; height: 17px; }
.social-btn:hover { transform: translateY(-2px) scale(1.06); }
.social-btn--ig {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: #fff !important;
}
.social-btn--wa { background: #25D366; color: #fff !important; }

.topbar { display: none; }

/* ---------- Header — brand | divider | nav | CTA ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  box-shadow: none;
  border-bottom: 1px solid rgba(127, 140, 114, 0.18);
  height: var(--header-h);
  transition: box-shadow var(--t) var(--ease), background var(--t) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(245, 242, 236, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(44, 53, 49, 0.05);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--header-h);
  flex-wrap: nowrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  flex-shrink: 0;
  max-width: 300px;
}
.brand:hover { color: var(--ink); }
.brand__logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: transparent;
  flex-shrink: 0;
}
.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}
.brand__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sage-dark);
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.brand__title {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header__vdiv {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, transparent, rgba(127, 140, 114, 0.35), transparent);
  flex-shrink: 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding-inline: 0.35rem 0.15rem;
}
.nav a {
  padding: 0.5rem 0.55rem;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--ink-muted);
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--t) var(--ease);
  white-space: nowrap;
  flex: 1 1 auto;
  text-align: center;
}
.nav a:hover,
.nav a.is-active { color: var(--ink); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.1rem;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  margin-left: 0.25rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  color: var(--ink-muted);
  padding: 0.22rem 0.28rem;
  border-radius: 6px;
  transition: color var(--t) var(--ease), background var(--t) var(--ease);
}
.lang-switch a:hover,
.lang-switch a.is-active {
  color: var(--ink);
}
.lang-switch a.is-active {
  color: var(--sage-dark);
  background: rgba(122, 148, 126, 0.12);
}
.lang-switch__flag {
  display: inline-flex;
  line-height: 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(44, 53, 49, 0.12);
  opacity: 0.88;
}
.lang-switch a.is-active .lang-switch__flag,
.lang-switch a:hover .lang-switch__flag {
  opacity: 1;
}
.lang-switch__flag svg {
  display: block;
}
.lang-switch__sep {
  color: rgba(44, 53, 49, 0.28);
  user-select: none;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  margin-left: auto;
}
.header__cta {
  flex-shrink: 0;
  margin-left: 0;
  height: 44px;
  padding: 0 1.15rem;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: none;
}
.header__cta--wa {
  padding: 0 1rem;
  gap: 0.4rem;
  border-color: rgba(127, 140, 114, 0.38);
  background: var(--sand);
  color: var(--ink);
  letter-spacing: 0.04em;
}
.header__cta--wa:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}
.header__cta--wa .btn__wa-icon,
.header__cta--wa .btn__wa-icon svg {
  width: 18px;
  height: 18px;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: var(--t) var(--ease);
}
@media (max-width: 1180px) {
  .brand__eyebrow { font-size: 0.74rem; }
  .brand__title { font-size: 1.12rem; }
  .nav a { padding: 0.45rem 0.4rem; font-size: 0.88rem; }
}
@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; }
  .header__vdiv { display: none; }
  .brand__text { display: none; }
  .lang-switch {
    order: 2;
    margin-left: auto;
    margin-right: 0.2rem;
  }
  .nav-toggle { order: 3; }
  .nav {
    order: 4;
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1rem;
    border-bottom: 1px solid var(--sand-line);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--t) var(--ease);
    z-index: 99;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    flex: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 0.5rem;
  }
  .nav a.is-active::after { display: none; }
  .header__actions { display: none; }
}

/* ---------- First viewport: hero + pillars ---------- */
.home-fold {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  background: var(--cream);
  overflow: visible;
}
.hero {
  position: relative;
  overflow: visible;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  padding: clamp(1.1rem, 2.4vh, 2rem) 0 clamp(0.85rem, 1.8vh, 1.35rem);
  background: transparent;
}
.hero::before {
  content: "";
  position: absolute;
  left: 38%;
  top: 18%;
  width: min(42vw, 420px);
  height: min(58vh, 460px);
  background:
    radial-gradient(ellipse at 40% 45%, rgba(127, 140, 114, 0.1), transparent 68%),
    radial-gradient(ellipse at 70% 55%, rgba(184, 170, 149, 0.12), transparent 65%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}
.hero__leaf {
  position: absolute;
  left: -9%;
  bottom: -14%;
  top: auto;
  width: clamp(460px, 56vw, 760px);
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: left bottom;
  z-index: 0;
  pointer-events: none;
  opacity: 0.23;
  /* Solda büyük yay; uç sağa kıvrılır, ismin altında kalır */
  transform: rotate(-36deg) translate(1%, 28%) skewX(4deg) scale(1.28, 1.38);
  transform-origin: 8% 100%;
  animation: fadeIn 1.2s var(--ease) both;
  filter: saturate(0.9) contrast(1.05);
}
.hero__container {
  position: relative;
  z-index: 1;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.28fr);
  gap: clamp(0.5rem, 1.8vw, 1.35rem);
  align-items: center;
  width: 100%;
}
.hero__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  isolation: isolate;
  padding-left: clamp(0rem, 2vw, 0.75rem);
}
.hero__subtitle,
.hero__title,
.hero__tagline,
.hero__about,
.hero__actions,
.hero-meta {
  position: relative;
  z-index: 2;
}
.hero__subtitle {
  position: relative;
  z-index: 3;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sage-dark);
  margin-bottom: 0.45rem;
  animation: fadeUp 0.8s var(--ease) both;
}
.hero__title {
  position: relative;
  z-index: 3;
  font-size: clamp(2.35rem, 5vw, 3.55rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 0.65rem;
  color: var(--ink);
  line-height: 1.15;
  animation: fadeUp 0.8s 0.06s var(--ease) both;
}
.hero__tagline {
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  max-width: 400px;
  margin-bottom: 1.25rem;
  color: var(--ink-muted);
  line-height: 1.55;
  animation: fadeUp 0.8s 0.12s var(--ease) both;
}
.hero__about {
  max-width: 460px;
  margin: 0 0 1.25rem;
  animation: fadeUp 0.8s 0.12s var(--ease) both;
}
.hero__about-text {
  margin: 0 0 0.55rem;
  font-size: clamp(0.92rem, 1.3vw, 1.02rem);
  color: var(--ink-muted);
  line-height: 1.55;
}
.hero__about-text + .hero__about-text {
  margin-top: 0.15rem;
}
.hero__about-link {
  display: inline;
  margin-left: 0.4rem;
  font-size: 0.9em;
  font-weight: 600;
  color: var(--sage-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(127, 140, 114, 0.35);
  white-space: nowrap;
  transition: color var(--t) var(--ease), border-color var(--t) var(--ease);
}
.hero__about-link:hover {
  color: var(--ink);
  border-color: var(--sage);
}
.hero__actions {
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s 0.18s var(--ease) both;
}
.hero__actions .btn { height: 50px; padding: 0 1.4rem; font-size: 0.82rem; }
.btn--wa-hero {
  border-color: rgba(127, 140, 114, 0.38);
  color: var(--ink);
  background: var(--sand);
}
.btn--wa-hero:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}
.hero__portrait {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  animation: fadeIn 1s 0.1s var(--ease) both;
  min-width: 0;
  padding: 0.4rem 0.1rem;
}
.hero__shape { position: absolute; pointer-events: none; z-index: 0; }
/* Ofset krem plaka — işaretlenen alana yakın organik */
.hero__shape--plate {
  inset: 8% 6% 6% 10%;
  background: linear-gradient(160deg, rgba(239, 235, 228, 0.55) 0%, rgba(228, 223, 212, 0.4) 100%);
  border-radius: 42% 48% 44% 52% / 48% 42% 52% 46%;
  transform: rotate(-2deg) scale(1.02);
  box-shadow: 0 22px 48px rgba(44, 53, 49, 0.07);
  opacity: 0.7;
}
/* Sert çizgi yok — düşük opaklıkta yumuşak halka gölgesi */
.hero__shape--ring {
  inset: 0.5% 1.5% 1.5% 2%;
  border: none;
  border-radius: 46% 50% 48% 52% / 50% 46% 54% 48%;
  transform: rotate(1.5deg);
  background: transparent;
  box-shadow:
    0 0 0 14px rgba(127, 140, 114, 0.05),
    0 0 28px 8px rgba(127, 140, 114, 0.08),
    0 18px 40px rgba(44, 53, 49, 0.06);
  opacity: 0.65;
}
.hero__shape--glow {
  inset: -8% -6% -10% -4%;
  background:
    radial-gradient(ellipse at 55% 40%, rgba(127, 140, 114, 0.14), transparent 66%),
    radial-gradient(ellipse at 28% 72%, rgba(184, 170, 149, 0.16), transparent 60%);
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.85;
}
/* Geniş organik çerçeve — yatay hero ofis görseli */
.hero__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #F0EBE3;
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: min(58vh, 560px);
  -webkit-mask-image: url("../images/hero-mask.svg");
  mask-image: url("../images/hero-mask.svg");
  -webkit-mask-size: 106% 108%;
  mask-size: 106% 108%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  filter: none;
}
.hero__frame.neon-frame--organic {
  filter:
    drop-shadow(0 14px 32px rgba(44, 53, 49, 0.12))
    drop-shadow(0 0 22px rgba(127, 140, 114, 0.35));
}
/* Fotoğraf üstü pus/overlay yok — sadece çerçeve neon efekti */
.hero__frame::before,
.hero__frame::after {
  display: none;
}
.hero__frame.neon-frame--organic .neon-frame__shine {
  display: none;
}
.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  display: block;
  transform: none;
  filter: none;
}
.hero__frame-leaf {
  position: absolute;
  left: 2%;
  bottom: 8%;
  z-index: 2;
  width: 48px;
  height: 48px;
  color: var(--sage);
  opacity: 0.45;
  transform: rotate(-12deg);
  pointer-events: none;
}
.hero__frame-leaf svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(44, 53, 49, 0.12));
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.95rem 1.4rem;
  position: relative;
  z-index: 3;
  animation: fadeUp 0.8s 0.24s var(--ease) both;
}
.hero-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 500;
}
.hero-meta__item:hover { color: var(--ink); }
.hero-meta__item > svg {
  width: 18px; height: 18px;
  color: var(--sage);
  flex-shrink: 0;
}
.hero-meta__ig-logo {
  width: 22px; height: 22px;
  display: inline-grid; place-items: center; line-height: 0;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(188, 24, 136, 0.25));
}
.hero-meta__ig-logo svg { width: 22px; height: 22px; display: block; }
.hero-meta__item--ig span:last-child {
  font-weight: 600;
  color: var(--ink-soft);
}
.btn__wa-icon {
  width: 22px; height: 22px;
  display: inline-grid; place-items: center;
  flex-shrink: 0; line-height: 0;
  filter: none;
}
.btn__wa-icon svg { width: 22px; height: 22px; display: block; }
@media (max-width: 900px) {
  .home-fold { min-height: 0; }
  .hero {
    overflow: hidden;
  }
  .hero__leaf {
    /* Yüzde/translate kaymasını önlemek için sol kenara sabit */
    left: -72px;
    bottom: auto;
    top: 6%;
    width: 260px;
    max-width: none;
    opacity: 0.16;
    transform: rotate(-32deg) skewX(2deg) scale(1.08, 1.14);
    transform-origin: 0% 50%;
  }
  .hero__content {
    padding-left: 0;
  }
  .hero__grid { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .hero__tagline { margin-inline: auto; }
  .hero__about { margin-inline: auto; text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; }
  .hero__portrait {
    order: -1;
    width: min(100%, 560px);
    max-width: 560px;
    margin-inline: auto;
    padding: 0.55rem 0.25rem;
  }
  .hero__frame {
    max-height: 360px;
    aspect-ratio: 3 / 2;
  }
  .hero__frame img {
    object-fit: cover;
    object-position: 50% 40%;
    transform: none;
  }
  .hero__frame-leaf { width: 40px; height: 40px; }
  .hero-meta { justify-content: center; }
}
@media (max-width: 480px) {
  .hero__leaf {
    left: -88px;
    top: 4%;
    width: 220px;
    opacity: 0.14;
    transform: rotate(-30deg) skewX(2deg) scale(1.05, 1.1);
  }
}
/* ---------- Pillars — krem/sage yumuşak geçiş ---------- */
.section.section--pillars {
  padding: 0.35rem 0 1.15rem;
  background: transparent;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  margin: 0;
}
.pillars--bar,
.pillars {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, transparent 55%),
    linear-gradient(135deg, rgba(127, 140, 114, 0.06), rgba(168, 152, 128, 0.05)),
    #F3EFE8;
  border: 1px solid rgba(127, 140, 114, 0.14);
  border-radius: 20px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 10px 28px rgba(44, 53, 49, 0.035);
  overflow: hidden;
}
.pillar {
  background: transparent;
  border: none;
  border-right: 1px solid rgba(127, 140, 114, 0.12);
  border-radius: 0;
  padding: 1.75rem 1rem 1.85rem;
  text-align: center;
  transition: background var(--t) var(--ease);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}
.pillar:last-child { border-right: none; }
.pillar:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(127, 140, 114, 0.12);
  background: rgba(127, 140, 114, 0.07);
}
.pillar__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  color: var(--sage-dark);
  background: transparent;
  border-radius: 0;
  display: grid;
  place-items: center;
  padding: 0;
  flex-shrink: 0;
  opacity: 0.88;
}
.pillar__icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2;
}
.pillar__title {
  font-size: clamp(1.08rem, 1.2vw, 1.22rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.pillar__desc {
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 16em;
  margin-inline: auto;
}

@media (max-width: 1100px) {
  .pillars--bar, .pillars { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pillar:nth-child(3) { border-right: none; }
  .pillar:nth-child(n + 4) { border-top: 1px solid rgba(127, 140, 114, 0.12); }
  .pillar { padding: 1.55rem 1.1rem 1.65rem; }
  .pillar__icon { width: 52px; height: 52px; }
  .pillar__title { font-size: 1.2rem; }
  .pillar__desc { font-size: 0.92rem; max-width: 18em; }
}
@media (max-width: 640px) {
  .pillars--bar, .pillars { grid-template-columns: 1fr; border-radius: 16px; }
  .pillar {
    border-right: none;
    border-bottom: 1px solid rgba(127, 140, 114, 0.12);
    padding: 1.4rem 1.25rem 1.5rem;
  }
  .pillar:last-child { border-bottom: none; }
  .pillar:nth-child(n + 4) { border-top: none; }
  .pillar__icon { width: 48px; height: 48px; margin-bottom: 0.8rem; }
  .pillar__title { font-size: 1.22rem; }
  .pillar__desc { max-width: 24em; font-size: 0.95rem; }
}

/* ---------- Services (yumuşak krem kartlar) ---------- */
.section--services {
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
.service-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, transparent 40%),
    #F4F0E9;
  border: 1px solid rgba(127, 140, 114, 0.14);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 8px 24px rgba(44, 53, 49, 0.035);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 14px 30px rgba(44, 53, 49, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 40%),
    #F1EEE6;
}
.service-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  background: #E8E2D8;
  overflow: hidden;
  position: relative;
}
.service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(244, 240, 233, 0.35) 100%);
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) contrast(0.96) brightness(1.02);
  transition: transform 0.45s var(--ease), filter 0.3s var(--ease);
}
.service-card:hover .service-card__media img {
  transform: scale(1.03);
  filter: saturate(0.92) contrast(0.98) brightness(1.03);
}
.service-card__media-fallback {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  color: var(--sage);
  background: linear-gradient(145deg, var(--sand-deep), var(--sage-muted));
}
.service-card__media-fallback svg {
  width: 48px;
  height: 48px;
  opacity: 0.7;
}
.service-card__body {
  padding: 1.05rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
  align-items: center;
}
.service-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.15vw, 1.18rem);
  font-weight: 600;
  margin: 0 0 0.45rem;
  color: var(--ink);
  line-height: 1.35;
}
.service-card__summary {
  font-size: 0.84rem;
  font-weight: 500;
  margin: 0 0 1rem;
  flex: 1;
  color: var(--ink-muted);
  line-height: 1.55;
}
.service-card__btn {
  margin-top: auto;
  border-radius: 10px;
  height: 38px;
  padding: 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-color: rgba(127, 140, 114, 0.32);
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.35);
}
.service-card__btn:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}
.services-cta {
  text-align: center;
  margin-top: 1.65rem;
}
.services-cta .btn {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  min-width: 220px;
}

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.85rem; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
}
.services-grid--page {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  max-width: none;
  margin-inline: 0;
}

/* ---------- Ana sayfa hizmet alanları (mini + accordion) ---------- */
.home-areas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.home-area {
  border: 1px solid rgba(127, 140, 114, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.home-area[open] {
  border-color: rgba(127, 140, 114, 0.4);
  box-shadow: 0 10px 28px rgba(44, 53, 49, 0.05);
  background: rgba(255, 255, 255, 0.78);
}
.home-area__summary {
  list-style: none;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.9rem;
  cursor: pointer;
  user-select: none;
}
.home-area__summary::-webkit-details-marker { display: none; }
.home-area__visual {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, #F0EBE3 0%, #E4E9DF 100%);
  color: var(--sage-dark);
  overflow: hidden;
  flex-shrink: 0;
}
.home-area__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-area__visual svg {
  width: 28px;
  height: 28px;
}
.home-area__title {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.home-area__chevron {
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--sage-dark);
  border-bottom: 2px solid var(--sage-dark);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
  margin-top: -0.15rem;
}
.home-area[open] .home-area__chevron {
  transform: rotate(-135deg);
  margin-top: 0.15rem;
}
.home-area__body {
  padding: 0 1rem 1rem calc(56px + 1.75rem);
  animation: fadeUp 0.35s var(--ease) both;
}
.home-area__body p {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.55;
}
@media (max-width: 820px) {
  .home-areas { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .home-area__summary {
    grid-template-columns: 48px 1fr auto;
    gap: 0.7rem;
  }
  .home-area__visual { width: 48px; height: 48px; border-radius: 10px; }
  .home-area__visual svg { width: 24px; height: 24px; }
  .home-area__body { padding-left: 1rem; }
  .home-area__title { font-size: 0.95rem; }
}

/* ---------- Hizmet alanları (açılır liste) ---------- */
.areas {
  max-width: 720px;
  margin-inline: auto;
}
.areas__panel {
  border: 1px solid rgba(127, 140, 114, 0.28);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}
.areas__toggle {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  background: linear-gradient(180deg, #F7F4EE 0%, #F0EBE3 100%);
  user-select: none;
}
.areas__toggle::-webkit-details-marker { display: none; }
.areas__chevron {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--sage-dark);
  border-bottom: 2px solid var(--sage-dark);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
  margin-top: -0.2rem;
}
.areas__panel[open] .areas__chevron {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
}
.areas__list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0 0.5rem;
}
.areas__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--sand-line);
}
.areas__item-main {
  min-width: 0;
}
.areas__title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}
.areas__summary {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.45;
}
.areas__btn {
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .areas__item {
    flex-direction: column;
    align-items: stretch;
  }
  .areas__btn {
    width: 100%;
    justify-content: center;
  }
}

/* Hizmetler sayfası — fotoğraf sahnesi + ön planda neon buton */
.svc-stage {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}
.svc-stage__photo {
  margin-bottom: 0 !important;
  max-width: none;
}
.svc-stage__photo .neon-frame__media {
  aspect-ratio: 16 / 10;
}
.svc-stage__photo .neon-frame__media img {
  object-position: 50% 38%;
}
.svc-stage__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(44, 53, 49, 0.18) 72%, rgba(44, 53, 49, 0.42) 100%),
    radial-gradient(ellipse 70% 55% at 50% 88%, rgba(127, 140, 114, 0.22), transparent 70%);
}
.svc-gate--on-photo {
  position: relative;
  z-index: 4;
  margin-top: -4.75rem;
  max-width: 520px;
  padding: 0 1rem 0.25rem;
}
.svc-gate--on-photo .svc-gate__frame {
  width: min(100%, 440px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 7px rgba(127, 140, 114, 0.12),
    0 0 36px rgba(127, 140, 114, 0.45),
    0 0 64px rgba(154, 166, 142, 0.28),
    0 22px 48px rgba(44, 53, 49, 0.22);
}
.svc-gate--on-photo .svc-gate__frame:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 0 0 8px rgba(127, 140, 114, 0.16),
    0 0 44px rgba(127, 140, 114, 0.55),
    0 0 72px rgba(154, 166, 142, 0.34),
    0 26px 52px rgba(44, 53, 49, 0.24);
}
.svc-gate--on-photo .svc-gate__list {
  margin-top: 1.35rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 720px) {
  .svc-stage__photo .neon-frame__media {
    aspect-ratio: 4 / 3;
  }
  .svc-gate--on-photo {
    margin-top: -3.5rem;
  }
}
@media (max-width: 520px) {
  .svc-gate--on-photo {
    margin-top: -2.75rem;
    padding: 0 0.5rem;
  }
  .svc-gate--on-photo .svc-gate__frame {
    padding: 11px;
  }
}

/* Hizmetler sayfası — kalın çerçeveli premium neon buton + başlık listesi */
.svc-gate {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}
.svc-gate__panel {
  border: none;
  background: transparent;
}
.svc-gate__frame {
  list-style: none;
  position: relative;
  display: block;
  width: min(100%, 420px);
  margin-inline: auto;
  padding: 14px;
  cursor: pointer;
  user-select: none;
  border-radius: 999px;
  background:
    linear-gradient(160deg, #FFFCFA 0%, #F3EEE6 48%, #E8EDE4 100%);
  border: 2px solid rgba(127, 140, 114, 0.38);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 0 0 6px rgba(127, 140, 114, 0.08),
    0 0 28px rgba(127, 140, 114, 0.22),
    0 18px 40px rgba(44, 53, 49, 0.1);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.svc-gate__frame::-webkit-details-marker { display: none; }
.svc-gate__frame:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 7px rgba(127, 140, 114, 0.11),
    0 0 36px rgba(127, 140, 114, 0.34),
    0 22px 46px rgba(44, 53, 49, 0.12);
}
.svc-gate__frame-ring {
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  border: 1px solid rgba(168, 152, 128, 0.35);
  pointer-events: none;
  z-index: 0;
}
.svc-gate__btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  padding: 1.2rem 1.75rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 220, 188, 0.45);
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.22) 0%, rgba(255, 252, 248, 0.04) 42%, rgba(44, 53, 49, 0.08) 100%),
    linear-gradient(135deg, #5A6550 0%, #6B7760 28%, #7F8C72 62%, #9AA68E 100%);
  color: #FFFCFA;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 10px 18px rgba(44, 53, 49, 0.18) inset,
    0 0 22px rgba(127, 140, 114, 0.55),
    0 0 48px rgba(154, 166, 142, 0.28);
  overflow: hidden;
}
.svc-gate__btn-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.32) 48%, transparent 78%);
  opacity: 0.5;
  pointer-events: none;
  animation: svcGateShine 3.2s ease-in-out infinite;
}
@keyframes svcGateShine {
  0%, 100% { transform: translateX(-22%); opacity: 0.22; }
  50% { transform: translateX(22%); opacity: 0.58; }
}
.svc-gate__btn-label {
  position: relative;
  z-index: 1;
}
.svc-gate__btn-chevron {
  position: relative;
  z-index: 1;
  width: 0.58rem;
  height: 0.58rem;
  border-right: 2.5px solid rgba(255, 252, 248, 0.95);
  border-bottom: 2.5px solid rgba(255, 252, 248, 0.95);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
  margin-top: -0.2rem;
  flex-shrink: 0;
}
.svc-gate__panel[open] .svc-gate__btn-chevron {
  transform: rotate(-135deg);
  margin-top: 0.15rem;
}
.svc-gate__panel[open] .svc-gate__frame {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 7px rgba(127, 140, 114, 0.12),
    0 0 40px rgba(127, 140, 114, 0.38),
    0 20px 44px rgba(44, 53, 49, 0.12);
}
.svc-gate__list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0.4rem;
  text-align: left;
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(255, 252, 248, 0.97), rgba(245, 242, 236, 0.92));
  border: 1.5px solid rgba(127, 140, 114, 0.24);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 16px 40px rgba(44, 53, 49, 0.08);
  animation: svcGateListIn 0.28s var(--ease);
}
@keyframes svcGateListIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}
.svc-gate__link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.05rem;
  border-radius: 14px;
  color: var(--ink);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.svc-gate__link:hover {
  background: rgba(127, 140, 114, 0.12);
  color: var(--sage-dark);
  transform: translateX(3px);
}
.svc-gate__num {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sage-dark);
  opacity: 0.7;
  min-width: 1.5rem;
}
.svc-gate__name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
}
.svc-gate__arrow {
  color: var(--sage);
  font-size: 1.05rem;
  opacity: 0.7;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.svc-gate__link:hover .svc-gate__arrow {
  opacity: 1;
  transform: translateX(3px);
}

.svc-list {
  max-width: 860px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.svc-item {
  border: 1px solid rgba(127, 140, 114, 0.22);
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(255, 252, 248, 0.96), rgba(245, 242, 236, 0.88));
  box-shadow: 0 10px 28px rgba(44, 53, 49, 0.04);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.svc-item[open] {
  border-color: rgba(127, 140, 114, 0.4);
  box-shadow: 0 14px 36px rgba(44, 53, 49, 0.07);
}
.svc-item__summary {
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 1.2rem;
  cursor: pointer;
  user-select: none;
}
.svc-item__summary::-webkit-details-marker { display: none; }
.svc-item__index {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sage-dark);
  opacity: 0.75;
  min-width: 1.6rem;
}
.svc-item__title {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}
.svc-item__chevron {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--sage-dark);
  border-bottom: 2px solid var(--sage-dark);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
  margin-top: -0.15rem;
}
.svc-item[open] .svc-item__chevron {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
}
.svc-item__body {
  padding: 0 1.25rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(127, 140, 114, 0.14);
}
.svc-item__content {
  max-width: none;
  padding-top: 1rem;
}
.svc-item__content p {
  margin: 0 0 0.85rem;
  color: var(--ink-muted);
  line-height: 1.7;
  font-size: 0.98rem;
}
.svc-item__content p:last-child { margin-bottom: 0; }
.svc-item__content strong {
  color: var(--sage-dark);
  font-weight: 700;
}
.svc-item__content ul {
  margin: 0 0 1rem;
  padding: 0 0 0 1.15rem;
  display: grid;
  gap: 0.4rem;
}
.svc-item__content li {
  color: var(--ink-muted);
  line-height: 1.55;
  font-size: 0.95rem;
  padding-left: 0.15rem;
}
.svc-item__content li::marker {
  color: var(--sage);
}
.svc-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}
@media (max-width: 640px) {
  .svc-gate__frame {
    width: 100%;
    padding: 12px;
  }
  .svc-gate__btn {
    letter-spacing: 0.11em;
    padding: 1.1rem 1.25rem;
    font-size: 0.92rem;
  }
  .svc-item__summary {
    gap: 0.65rem;
    padding: 0.95rem 1rem;
  }
  .svc-item__body {
    padding: 0 1rem 1.05rem;
  }
}

/* ---------- Why section ---------- */
.section--why {
  background: linear-gradient(180deg, #FAF8F4 0%, var(--cream) 55%, #F3EFE8 100%);
}
.why {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.28fr);
  gap: clamp(1.35rem, 3.5vw, 2.5rem);
  align-items: center;
}
.why__content .section__title {
  text-align: left;
  color: var(--sage-deep);
}
.why__content .section__lead {
  margin-inline: 0;
  max-width: 36em;
}
.why__list {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-top: 1.35rem;
}
.why__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.why__check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 0.12rem;
}
.why__check svg {
  width: 13px;
  height: 13px;
}
.why__item strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.12rem;
}
.why__item span {
  font-size: 0.9rem;
  color: #4A534E;
  line-height: 1.5;
}
.why__signature {
  margin: 1.5rem 0 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(2.4rem, 4vw, 3.15rem);
  font-style: normal;
  font-weight: 400;
  color: #8A7B6A;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.why__visual {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 0;
}
.why__photo {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  width: 100%;
  min-height: clamp(280px, 38vw, 420px);
  background: var(--sand-deep);
  box-shadow: 0 16px 40px rgba(44, 53, 49, 0.08);
}
.why__photo--illustration {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 80%;
  min-height: 0;
  max-height: none;
  height: auto;
  align-self: center;
  justify-self: center;
  margin-inline: auto;
  background: var(--sand);
  border: none;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(44, 53, 49, 0.06);
  overflow: hidden;
}
/* Sage / cream brand glaze — parlaklık (içerik) korunur, tonlar siteye kayar */
.why__photo--illustration::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(155deg, rgba(127, 140, 114, 0.42) 0%, rgba(168, 152, 128, 0.18) 45%, rgba(245, 242, 236, 0.35) 100%);
  mix-blend-mode: color;
  opacity: 0.72;
}
.why__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(0.98);
}
.why__photo--illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.03) brightness(1.01);
}
.why__stats {
  position: absolute;
  right: 1.15rem;
  bottom: 1.15rem;
  top: auto;
  left: auto;
  transform: none;
  width: min(200px, 46%);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(127, 140, 114, 0.14);
  border-radius: 16px;
  padding: 0.95rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: 0 12px 28px rgba(44, 53, 49, 0.12);
  backdrop-filter: blur(10px);
  z-index: 2;
}
.why__stat {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-align: left;
  padding: 0;
  min-width: 0;
}
.why__stat-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #F3EFE8;
  color: #A09078;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.why__stat-icon svg {
  width: 15px;
  height: 15px;
}
.why__stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}
.why__stat span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.01em;
  text-transform: none;
  opacity: 1;
  color: #5C6561;
  font-weight: 500;
  line-height: 1.25;
}

@media (max-width: 900px) {
  .why {
    grid-template-columns: 1fr;
  }
  .why__content .section__title,
  .why__content .section__lead {
    text-align: center;
    margin-inline: auto;
  }
  .why__signature { text-align: center; }
  .why__visual { padding: 0; }
  .why__photo {
    min-height: 240px;
    aspect-ratio: 5 / 4;
  }
  .why__photo--illustration {
    min-height: 0;
    aspect-ratio: 1 / 1;
    width: 80%;
    max-width: 336px;
    margin-inline: auto;
  }
  .why__stats {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 0.85rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
  }
  .why__stat { width: calc(50% - 0.4rem); }
}

/* ---------- Process (modern timeline) ---------- */
.section--process {
  background: #fff;
}
.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  counter-reset: none;
}
.process::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  border-top: 2px dotted rgba(127, 140, 114, 0.35);
  z-index: 0;
  pointer-events: none;
}
.process__step {
  text-align: center;
  padding: 0 0.35rem 0.25rem;
  background: transparent;
  border: none;
  border-radius: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process__step:not(:last-child)::after {
  display: none;
}
.process__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #F3EFE8;
  border: 1px solid rgba(127, 140, 114, 0.16);
  color: #8A7B6A;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  box-shadow: 0 8px 20px rgba(44, 53, 49, 0.04);
}
.process__icon svg {
  width: 30px;
  height: 30px;
}
.process__num {
  width: auto;
  height: auto;
  margin: 0 0 0.35rem;
  border-radius: 0;
  border: none;
  display: block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  background: transparent;
  letter-spacing: 0.04em;
}
.process__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.process__desc {
  font-size: 0.86rem;
  margin: 0;
  color: #5C6561;
  line-height: 1.55;
  max-width: 16em;
}

@media (max-width: 900px) {
  .process {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }
  .process::before {
    display: none;
  }
  .process__step {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #FAF8F4;
    border-radius: 16px;
    border: 1px solid rgba(127, 140, 114, 0.12);
  }
  .process__icon {
    width: 58px;
    height: 58px;
    margin: 0;
    flex-shrink: 0;
  }
  .process__icon svg { width: 24px; height: 24px; }
  .process__num { margin-bottom: 0.15rem; }
  .process__desc { max-width: none; }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .process {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.5rem;
  }
  .process__icon {
    width: 60px;
    height: 60px;
  }
  .process__icon svg { width: 26px; height: 26px; }
  .process__title { font-size: 1.02rem; }
  .process::before { top: 30px; }
}

/* ---------- Bottom grid: blog / reviews / FAQ ---------- */
.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  align-items: stretch;
}
.bottom-grid--trio {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel {
  background: var(--white);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.15rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.panel__title {
  font-size: 1.35rem;
  margin-bottom: 0.95rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--sand-line);
}

.panel--faq .panel__title {
  font-size: clamp(1.2rem, 1.7vw, 1.35rem);
}

.faq-list--panel {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-height: none;
  overflow: visible;
  min-height: 0;
}

.faq-list--panel .faq-item {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-list--panel .faq-item + .faq-item {
  border-top: 1px solid rgba(127, 140, 114, 0.12);
}

.faq-list--panel .faq-item__summary {
  padding: 0.72rem 0.4rem;
  gap: 0.55rem;
  border-radius: 8px;
  transform: none;
  min-height: 100%;
}

.faq-list--panel .faq-item__summary:hover {
  transform: none;
}

.faq-list--panel .faq-item__q {
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  line-height: 1.35;
  font-weight: 600;
}

.faq-list--panel .faq-item__num {
  font-size: 0.88rem;
  min-width: 1.35rem;
}

.faq-list--panel .faq-item__chevron {
  width: 0.48rem;
  height: 0.48rem;
}

.faq-list--panel .faq-item__body {
  padding: 0 0.4rem 0.7rem 2.15rem;
  font-size: 0.9rem;
  line-height: 1.55;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.9rem;
  align-items: center;
}

.blog-item__thumb {
  width: 88px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--sand-deep);
}

.blog-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-item__meta {
  font-size: 0.72rem;
  color: var(--ink-faint);
  margin-bottom: 0.25rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.blog-item__meta .cat {
  color: var(--sage);
  font-weight: 600;
}

.blog-item__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
}

.blog-item:hover .blog-item__title {
  color: var(--sage-dark);
}

.review-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  background: var(--sand);
  border-radius: var(--radius-sm);
}

.review-badge__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.review-score {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  color: var(--sage-dark);
  line-height: 1;
  flex-shrink: 0;
}

.review-stars {
  color: #C4A35A;
  letter-spacing: 0.1em;
  font-size: 1rem;
  line-height: 1.2;
}

.review-count {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.3;
}

.review-quote {
  background: var(--sand);
  border-left: 3px solid var(--sage);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.1rem 1.15rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 1rem;
}

.review-quote cite {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-style: normal;
  color: var(--ink-faint);
  font-weight: 600;
}

.review-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-item {
  position: relative;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--sand-line);
  border-radius: var(--radius-sm);
  background: var(--ivory);
}

.review-item--google {
  background: linear-gradient(160deg, rgba(255, 252, 248, 0.98), rgba(232, 238, 228, 0.45));
  border-color: rgba(127, 140, 114, 0.28);
}

.review-count__src {
  color: var(--sage-dark);
  font-weight: 600;
}

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

.review-item__avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #D7E0D0;
  color: var(--sage-dark);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.review-item__name {
  display: block;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 600;
}

.review-stars--sm {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.review-item__text {
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.review-item__text--muted {
  font-style: italic;
  opacity: 0.85;
}

.review-item__source {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}

.review-list--scroll {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 0.15rem;
  scrollbar-width: thin;
}

.review-empty {
  padding: 0.85rem 0.95rem;
  background: var(--sand);
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(127, 140, 114, 0.35);
}

.review-empty p {
  margin: 0 0 0.55rem;
  font-size: 0.9rem;
  color: #2F3834;
  line-height: 1.5;
}

.review-empty__hint {
  margin: 0 !important;
  font-size: 0.82rem !important;
  color: var(--ink-muted) !important;
}

.review-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  align-items: stretch;
}

.review-actions .btn {
  flex: 1 1 0;
  min-width: 0;
  height: 40px;
  padding: 0 0.55rem;
  font-size: 0.72rem;
  white-space: nowrap;
  justify-content: center;
}

.review-actions .btn--ghost {
  height: 40px;
  padding: 0 0.55rem;
}

/* Contact layout + map */
.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-form {
  margin: 0;
  max-width: none;
  height: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}

.contact-info__lead {
  margin: -0.35rem 0 1.25rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-info__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  flex: 1;
  justify-content: space-evenly;
}

.contact-info__list li {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.contact-info__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, #E8EDE3, #D7E0D0);
  color: var(--sage-deep);
  border: 1px solid rgba(127, 140, 114, 0.22);
}

.contact-info__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.contact-info__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-faint);
  margin-bottom: 0.15rem;
}

.contact-info__value {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  text-decoration: none;
}

a.contact-info__value:hover {
  color: var(--sage-deep);
}

.contact-info__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--sand-line);
}

.contact-info__actions .btn {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 7.5rem;
}

.contact-map {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
}

.contact-map__card {
  width: 100%;
  max-width: 820px;
  padding: 1.15rem 1.15rem 1.25rem;
  background:
    linear-gradient(#FFFCFA, #FFFCFA) padding-box,
    linear-gradient(135deg, #7F8C72 0%, #A3AD98 35%, #C4A35A 70%, #6E7A62 100%) border-box;
  border: 2px solid transparent;
  border-radius: 22px;
  box-shadow:
    0 14px 36px rgba(44, 53, 49, 0.08),
    0 2px 0 rgba(255, 255, 255, 0.7) inset;
}

.contact-map__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.95rem;
}

.contact-map__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.contact-map__address {
  margin: 0.3rem 0 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.contact-map__frame {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(127, 140, 114, 0.18);
  box-shadow:
    inset 0 0 0 4px rgba(255, 252, 250, 0.95),
    0 8px 22px rgba(44, 53, 49, 0.07);
  background: #E8E3DA;
}

.contact-map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.95) contrast(0.99);
}

@media (max-width: 800px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-map__card {
    max-width: none;
    padding: 1rem;
    border-radius: 18px;
  }

  .contact-map__frame {
    height: 240px;
    border-radius: 14px;
  }

  .contact-map__head {
    flex-wrap: wrap;
  }
}

/* FAQ accordion — uzmanlık listesi stili */
.faq-page {
  max-width: 720px;
  margin-inline: auto;
}

.faq-page__empty {
  text-align: center;
  color: var(--ink-muted);
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0.4rem;
  text-align: left;
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(255, 252, 248, 0.97), rgba(245, 242, 236, 0.92));
  border: 1.5px solid rgba(127, 140, 114, 0.24);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 16px 40px rgba(44, 53, 49, 0.08);
}

.faq-item {
  border: none;
  background: transparent;
}

.faq-item__summary {
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.05rem;
  border-radius: 14px;
  cursor: pointer;
  user-select: none;
  color: var(--ink);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

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

.faq-item__summary:hover {
  background: rgba(127, 140, 114, 0.12);
  color: var(--sage-dark);
  transform: translateX(3px);
}

.faq-item[open] .faq-item__summary {
  background: rgba(127, 140, 114, 0.12);
  color: var(--sage-dark);
}

.faq-item__num {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sage-dark);
  opacity: 0.7;
  min-width: 1.5rem;
}

.faq-item__q {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
}

.faq-item__chevron {
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  transform: rotate(45deg);
  opacity: 0.7;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
  margin-top: -0.15rem;
  flex-shrink: 0;
}

.faq-item__summary:hover .faq-item__chevron,
.faq-item[open] .faq-item__chevron {
  opacity: 1;
}

.faq-item[open] .faq-item__chevron {
  transform: rotate(-135deg);
  margin-top: 0.15rem;
}

.faq-item__body {
  padding: 0.15rem 1.05rem 1rem 3.2rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-muted);
  animation: faqPanelIn 0.28s var(--ease);
}

@keyframes faqPanelIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 640px) {
  .faq-item__q {
    font-size: 0.98rem;
  }

  .faq-item__body {
    padding-left: 1.05rem;
  }
}

@media (max-width: 1100px) {
  .bottom-grid--trio {
    grid-template-columns: 1fr 1fr;
  }
  .bottom-grid--trio .panel--faq {
    grid-column: 1 / -1;
  }
}
@media (max-width: 1024px) {
  .bottom-grid,
  .bottom-grid--trio {
    grid-template-columns: 1fr;
  }
  .bottom-grid--trio .panel--faq {
    grid-column: auto;
  }
}
/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, #EFEBE4 0%, #E8E3DA 50%, #EFEBE4 100%);
  color: var(--ink);
  padding: clamp(1.75rem, 3.5vw, 2.5rem) 0;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  box-shadow: inset 0 24px 40px -28px rgba(245, 242, 236, 0.9),
              inset 0 -24px 40px -28px rgba(245, 242, 236, 0.9);
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-banner h2 {
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0.35rem;
}

.cta-banner p {
  margin: 0;
  color: var(--ink-muted);
}

.btn--on-sand {
  background: transparent;
  border-color: var(--sage);
  color: var(--sage-dark);
}

.btn--on-sand:hover {
  background: var(--sage);
  color: #fff;
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, #EFEBE4 0%, #E8E3DA 100%);
  color: var(--ink);
  padding: 2.5rem 0 0;
  border-top: none;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer__brand .brand {
  margin-bottom: 1rem;
  gap: 0.85rem;
}

.footer__brand .brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.footer__brand .brand__logo {
  width: 56px;
  height: 56px;
}

.footer__brand .brand__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.footer__brand .brand__sub {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sage-deep);
}

.footer__brand p {
  color: #3F4843;
  font-size: 0.92rem;
  line-height: 1.65;
}

.footer__map {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: 1rem;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(127, 140, 114, 0.28);
  background: rgba(255, 255, 255, 0.65);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer__map:hover {
  border-color: rgba(127, 140, 114, 0.5);
  box-shadow: 0 6px 18px rgba(44, 53, 49, 0.08);
}

.footer__map-frame {
  display: block;
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
  pointer-events: none;
  background: #E4E0D8;
}

.footer__map-frame iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180%;
  height: 180%;
  border: 0;
  transform: translate(-50%, -50%);
  filter: saturate(0.92);
}

.footer__map-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

.footer__map-label svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--sage-deep);
}

.footer__map-label span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer__col h4 {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.95rem;
}

.footer__col a {
  display: block;
  color: #2F3834;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.3rem 0;
}

.footer__col a:hover {
  color: var(--sage-deep);
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #2F3834;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
  line-height: 1.45;
}

.footer__contact svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--sage-deep);
}

.footer__ig-row {
  align-items: center;
}

.footer__ig-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0;
  line-height: 0;
}

.footer__ig-icon svg {
  width: 18px;
  height: 18px;
  color: inherit;
  margin-top: 0;
}

.footer__contact a {
  display: inline;
  padding: 0;
  color: #2F3834;
  font-weight: 600;
}

.footer__contact a:hover {
  color: var(--sage-deep);
}

.footer__bottom {
  border-top: 1px solid rgba(127, 140, 114, 0.18);
  padding: 1rem 0 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: #3F4843;
  font-weight: 500;
}

.footer__bottom a {
  color: #2F3834;
  margin-left: 1rem;
  font-weight: 600;
}

.footer__bottom a:hover {
  color: var(--sage-deep);
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Page internals ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--sand) 0%, var(--ivory) 100%);
  padding: clamp(1.65rem, 3.5vw, 2.35rem) 0;
  border-bottom: 1px solid var(--sand-line);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin-bottom: 0.75rem;
}

.breadcrumb a {
  color: var(--sage-dark);
}

.content-block {
  max-width: 720px;
  margin: 0 auto;
}

.content-block h2 {
  font-size: 1.6rem;
  margin-top: 1.5rem;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
  max-width: 640px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

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

@media (max-width: 600px) {
  .form-grid--2 {
    grid-template-columns: 1fr;
  }
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--sand-line);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--ivory);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px var(--sage-muted);
  background: var(--white);
}

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

/* Captcha — premium inline card */
.captcha-field {
  margin-top: 0.25rem;
}

.captcha-field__box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, rgba(127, 140, 114, 0.08) 0%, rgba(240, 235, 227, 0.65) 100%);
  border: 1px solid rgba(127, 140, 114, 0.22);
  border-radius: var(--radius-md, 14px);
  box-shadow: 0 4px 20px rgba(44, 53, 49, 0.04);
}

.captcha-field__badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 252, 248, 0.9);
  color: var(--sage-deep, #6E7A62);
  border: 1px solid rgba(127, 140, 114, 0.18);
}

.captcha-field__body {
  flex: 1;
  min-width: 0;
}

.captcha-field__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft, #5C6762);
  margin-bottom: 0.35rem;
}

.captcha-field__equation {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-serif, Georgia, serif);
  font-weight: 600;
  line-height: 1;
}

.captcha-field__num {
  display: inline-grid;
  place-items: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.35rem;
  background: #fff;
  border: 1px solid rgba(127, 140, 114, 0.2);
  border-radius: 8px;
  font-size: 1.15rem;
  color: var(--ink, #2C3531);
  box-shadow: 0 2px 8px rgba(44, 53, 49, 0.05);
}

.captcha-field__op {
  font-size: 1.1rem;
  color: var(--sage-deep, #6E7A62);
  opacity: 0.85;
}

.captcha-field__q {
  font-size: 1.25rem;
  color: var(--sage-deep, #6E7A62);
}

.captcha-field__answer {
  flex-shrink: 0;
}

.captcha-field__input {
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font-serif, Georgia, serif);
  color: var(--ink, #2C3531);
  background: #fff;
  border: 2px solid rgba(127, 140, 114, 0.35);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.captcha-field__input::placeholder {
  color: rgba(92, 103, 98, 0.35);
  font-weight: 500;
}

.captcha-field__input:focus {
  outline: none;
  border-color: var(--sage, #7F8C72);
  box-shadow: 0 0 0 4px rgba(127, 140, 114, 0.15);
}

.captcha-field__hint {
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
  color: var(--ink-soft, #5C6762);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 520px) {
  .captcha-field__box {
    flex-wrap: wrap;
    gap: 0.85rem;
  }

  .captcha-field__answer {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.alert {
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
}

.alert--success {
  background: rgba(127, 140, 114, 0.15);
  color: var(--sage-deep);
  border: 1px solid rgba(127, 140, 114, 0.35);
}

.alert--error {
  background: rgba(160, 60, 60, 0.08);
  color: #8a3030;
  border: 1px solid rgba(160, 60, 60, 0.25);
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

.service-card,
.process__step,
.panel {
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

/* ---------- Assistant bot ---------- */
.assist {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 95;
  font-family: var(--font-sans);
}
.assist__fab {
  position: relative;
  width: 78px;
  height: 78px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, #F3F6F0, #D4DDCC);
  box-shadow:
    0 14px 36px rgba(44, 53, 49, 0.22),
    0 0 0 4px rgba(127, 140, 114, 0.18);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.assist__fab:hover {
  transform: scale(1.07);
  box-shadow:
    0 18px 40px rgba(44, 53, 49, 0.26),
    0 0 0 5px rgba(127, 140, 114, 0.24);
}
.assist__fab-face {
  width: 64px;
  height: 64px;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}
.assist__fab-face svg { width: 100%; height: 100%; display: block; }
.assist__fab-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2.5px solid rgba(127, 140, 114, 0.55);
  animation: assistPulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes assistPulse {
  0% { transform: scale(0.94); opacity: 0.85; }
  70% { transform: scale(1.18); opacity: 0; }
  100% { opacity: 0; }
}
.assist.is-open .assist__fab-pulse { display: none; }
.assist__bubble {
  position: absolute;
  right: calc(100% + 0.75rem);
  bottom: 16px;
  background: #fff;
  color: #1F2924;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.8rem 1rem;
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 12px 32px rgba(44, 53, 49, 0.16);
  max-width: 240px;
  white-space: normal;
  width: max-content;
  border: 1.5px solid rgba(127, 140, 114, 0.28);
  animation: assistBubbleIn 0.5s 0.6s both;
}
.assist__bubble::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: 16px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-right: 1.5px solid rgba(127, 140, 114, 0.28);
  border-top: 1.5px solid rgba(127, 140, 114, 0.28);
  transform: rotate(45deg);
}
.assist.is-open .assist__bubble,
.assist.bubble-hidden .assist__bubble { display: none; }
@keyframes assistBubbleIn {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: none; }
}
.assist__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.85rem);
  width: min(380px, calc(100vw - 1.75rem));
  background: #FAF8F4;
  border: 1px solid rgba(127, 140, 114, 0.2);
  border-radius: 22px;
  box-shadow: 0 20px 52px rgba(44, 53, 49, 0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: min(600px, calc(100vh - 7.5rem));
  animation: assistPanelIn 0.28s var(--ease);
}
.assist__panel[hidden] { display: none !important; }
@keyframes assistPanelIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.assist__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: linear-gradient(135deg, #E8EDE4, #F3EFE8);
  border-bottom: 1px solid rgba(127, 140, 114, 0.12);
}
.assist__identity {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.assist__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(44, 53, 49, 0.08);
}
.assist__avatar svg { width: 100%; height: 100%; display: block; }
.assist__identity strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.2;
}
.assist__identity span {
  display: block;
  font-size: 0.75rem;
  color: #5C6561;
}
.assist__close {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.assist__messages {
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
  min-height: 180px;
}
.assist__msg {
  max-width: 92%;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.assist__msg--bot {
  align-self: flex-start;
  background: #fff;
  color: #2F3834;
  border: 1px solid rgba(127, 140, 114, 0.12);
  border-bottom-left-radius: 4px;
}
.assist__msg--user {
  align-self: flex-end;
  background: var(--sage);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.assist__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0 1rem 0.85rem;
}
.assist__choice {
  border: 1px solid rgba(127, 140, 114, 0.35);
  background: #fff;
  color: var(--sage-deep);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.assist__choice--faq {
  border-radius: 14px;
  width: 100%;
  text-align: left;
  white-space: normal;
  line-height: 1.35;
  font-weight: 600;
}
.assist__choices:has(.assist__choice--faq) {
  flex-direction: column;
}
.assist__choice:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}
.assist__choice--primary {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}
.assist__choice--primary:hover {
  background: var(--sage-dark);
}
.assist__choice--wa {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}
.assist__choice--wa:hover {
  background: #1ebe57;
  border-color: #1ebe57;
}
.assist__compose {
  display: flex;
  gap: 0.45rem;
  padding: 0 1rem 0.75rem;
  align-items: stretch;
}
.assist__compose input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(127, 140, 114, 0.35);
  border-radius: 999px;
  padding: 0.62rem 0.95rem;
  font: inherit;
  font-size: 0.84rem;
  color: var(--ink);
  background: #fff;
}
.assist__compose input:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(127, 140, 114, 0.18);
}
.assist__send {
  flex-shrink: 0;
  border: none;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  background: var(--sage);
  color: #fff;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.assist__send:hover {
  background: var(--sage-dark);
}
.assist__note {
  margin: 0;
  padding: 0.55rem 1rem 0.85rem;
  font-size: 0.7rem;
  color: #6A726D;
  line-height: 1.4;
  border-top: 1px solid rgba(127, 140, 114, 0.1);
}

@media (max-width: 480px) {
  .assist { right: 0.75rem; bottom: 0.75rem; }
  .assist__fab { width: 72px; height: 72px; }
  .assist__fab-face { width: 58px; height: 58px; }
  .assist__bubble { display: none; }
  .assist__panel {
    width: calc(100vw - 1.5rem);
    max-height: min(70vh, 520px);
  }
}

/* ---------- Utilities ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-0 { margin-bottom: 0; }



