/* ===========================================================
   Nisa Diyet Merkezi, Est&Dyt Emine Hayrunnisa Capik
   Theme: "Neon Orkide" deep plum night clinic
   Display: Young Serif / Body: Hanken Grotesk
   Accent (single): neon orchid #E37BD3
   =========================================================== */

:root {
  --bg: #1f1420;
  --bg-deep: #170e18;
  --surface: #2a1b2c;
  --surface-2: #352338;
  --line: rgba(245, 237, 241, 0.12);
  --line-strong: rgba(245, 237, 241, 0.22);
  --text: #f5edf1;
  --muted: #cbb8c6;
  --accent: #e37bd3;
  --accent-soft: rgba(227, 123, 211, 0.14);
  --accent-ink: #2a1024;
  --serif: "Young Serif", "Iowan Old Style", Georgia, serif;
  --sans: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
  --radius: 18px;
  --radius-lg: 28px;
  --header-h: 76px;
}

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

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

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--accent); color: var(--accent-ink); }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.12; }

.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(23, 14, 24, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; gap: 28px; width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.brand { display: flex; flex-direction: column; line-height: 1.05; }
.brand .brand-name { font-family: var(--serif); font-size: 1.22rem; letter-spacing: 0.01em; }
.brand .brand-sub { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.main-nav { display: flex; gap: 26px; margin-left: auto; }
.main-nav a {
  font-size: 0.95rem; color: var(--muted);
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--text); }

.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 700; font-size: 0.92rem;
  padding: 10px 20px; border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(227, 123, 211, 0.35); }

.lang-toggle {
  display: flex; border: 1px solid var(--line-strong); border-radius: 999px; overflow: hidden;
}
.lang-toggle button {
  background: none; border: 0; color: var(--muted);
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600;
  padding: 7px 13px; cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-toggle button[aria-pressed="true"] { background: var(--text); color: var(--bg-deep); }

.nav-burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; position: relative;
}
.nav-burger span {
  position: absolute; left: 9px; right: 9px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 20px; }
.nav-burger span:nth-child(3) { top: 26px; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed; inset: var(--header-h) 0 auto 0; z-index: 49;
  background: rgba(23, 14, 24, 0.97);
  border-bottom: 1px solid var(--line);
  padding: 18px 24px 26px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block; padding: 13px 4px;
  font-size: 1.05rem; border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { border-bottom: 0; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background:
    radial-gradient(1100px 700px at 78% 30%, rgba(227, 123, 211, 0.16), transparent 60%),
    radial-gradient(800px 600px at 10% 85%, rgba(227, 123, 211, 0.07), transparent 55%),
    linear-gradient(180deg, #241626 0%, var(--bg) 70%);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  align-items: end; gap: 24px;
  width: min(1180px, calc(100% - 48px)); margin-inline: auto;
  padding-top: calc(var(--header-h) + 40px);
}
.hero-copy { padding-bottom: clamp(56px, 10vh, 120px); }

.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 22px;
}
.hero-kicker::before { content: ""; width: 34px; height: 1px; background: var(--accent); }

.hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.3rem);
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.hero h1 .soft { color: var(--accent); }

.hero-lead {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 34px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 34px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 700; font-size: 1rem;
  padding: 15px 28px; border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(227, 123, 211, 0.4); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line-strong); color: var(--text);
  font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.btn-ghost:hover { border-color: var(--accent); background: var(--accent-soft); }

.hero-rating { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 0.95rem; }
.hero-rating .stars { color: var(--accent); letter-spacing: 2px; font-size: 1rem; }
.hero-rating strong { color: var(--text); }

.hero-figure {
  position: relative;
  align-self: end;
  display: flex; justify-content: center;
}
.hero-figure::before {
  content: "";
  position: absolute; inset: auto auto 0 50%;
  transform: translateX(-50%);
  width: min(520px, 88%); aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 123, 211, 0.28) 0%, rgba(227, 123, 211, 0.05) 55%, transparent 72%);
  filter: blur(8px);
}
.hero-figure img {
  position: relative; z-index: 1;
  width: min(470px, 92%);
  height: auto;
  /* upper-body crop: show roughly head to hands of the full seated cutout */
  aspect-ratio: 855 / 1010;
  object-fit: cover;
  object-position: top;
  -webkit-mask-image: linear-gradient(180deg, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 88%, transparent 100%);
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.45));
}

/* ---------- stat strip ---------- */
.stat-strip { border-block: 1px solid var(--line); background: var(--bg-deep); }
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: 34px 18px; text-align: center;
  border-left: 1px solid var(--line);
}
.stat-cell:first-child { border-left: 0; }
.stat-cell .num {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--text);
  display: block;
}
.stat-cell .lbl { font-size: 0.88rem; color: var(--muted); margin-top: 6px; display: block; }

/* ---------- sections ---------- */
.section { padding: clamp(76px, 11vh, 130px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vh, 64px); }
.section-head .index {
  font-size: 0.85rem; color: var(--accent); font-weight: 600;
  display: block; margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- about ---------- */
.about { background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.about-media { position: relative; }
.about-media .photo-main {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line);
}
.about-media .photo-main img { width: 100%; aspect-ratio: 4 / 5.4; object-fit: cover; }
.about-media .neon-card {
  position: absolute; right: -14px; bottom: -30px;
  width: 42%;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
}
.about-media .neon-card video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; }

.about-body h3 { font-size: 1.45rem; margin: 30px 0 12px; }
.about-body h3:first-child { margin-top: 0; }
.about-body p { color: var(--muted); margin-bottom: 16px; }
.about-body p strong { color: var(--text); font-weight: 600; }

.about-points { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.about-points li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.about-points .dot {
  flex: none; width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); margin-top: 8px;
}
.about-points strong { display: block; color: var(--text); }
.about-points span.desc { color: var(--muted); font-size: 0.95rem; }

/* ---------- services ---------- */
.services { background: var(--bg-deep); border-block: 1px solid var(--line); }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--accent); background: var(--surface-2); }
.service-card .glyph {
  font-family: var(--serif); font-size: 1.5rem; color: var(--accent);
  display: block; margin-bottom: 14px;
}
.service-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.service-card p { font-size: 0.92rem; color: var(--muted); }

.service-feature {
  margin-top: 16px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-feature .sf-media video, .service-feature .sf-media img { width: 100%; height: 100%; object-fit: cover; }
.service-feature .sf-body { padding: clamp(26px, 4vw, 46px); align-self: center; }
.service-feature .sf-body h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 14px; }
.service-feature .sf-body h3 em { font-style: normal; color: var(--accent); }
.service-feature .sf-body p { color: var(--muted); margin-bottom: 12px; }

/* ---------- clinic / method ---------- */
.clinic-collage {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: clamp(48px, 7vh, 80px);
}
.clinic-collage figure {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.clinic-collage figure img, .clinic-collage figure video {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 3.6;
}
.clinic-collage figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 36px 16px 14px;
  font-size: 0.85rem; color: var(--text);
  background: linear-gradient(180deg, transparent, rgba(23, 14, 24, 0.85));
}

.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.method-step {
  position: relative;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px 26px;
}
.method-step .step-no {
  font-family: var(--serif); font-size: 2.2rem; color: var(--accent);
  display: block; margin-bottom: 12px;
}
.method-step h3 { font-size: 1.18rem; margin-bottom: 10px; }
.method-step p { font-size: 0.95rem; color: var(--muted); }

/* ---------- results ---------- */
.results { background: var(--bg-deep); border-block: 1px solid var(--line); }
.results-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.result-card {
  display: block;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 18px 22px; text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.result-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.result-card .big {
  font-family: var(--serif); font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--accent); display: block;
}
.result-card .when { color: var(--text); font-size: 0.95rem; display: block; margin-top: 6px; }
.result-card .src { color: var(--muted); font-size: 0.78rem; display: block; margin-top: 12px; }
.results-note { margin-top: 26px; color: var(--muted); font-size: 0.88rem; max-width: 70ch; }

/* ---------- content hub ---------- */
.reels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.reel-card {
  position: relative; display: block;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 9 / 13;
}
.reel-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.reel-card:hover img { transform: scale(1.04); }
.reel-card .reel-overlay {
  position: absolute; inset: auto 0 0 0;
  padding: 60px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(23, 14, 24, 0.92));
}
.reel-card .reel-overlay h3 { font-size: 1.02rem; font-family: var(--sans); font-weight: 600; }
.reel-card .reel-overlay span { font-size: 0.82rem; color: var(--muted); }
.reel-card.follow-card {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; gap: 12px;
  background: var(--accent-soft);
  border-color: var(--accent);
  padding: 24px;
}
.reel-card.follow-card .handle { font-family: var(--serif); font-size: 1.35rem; }
.reel-card.follow-card p { color: var(--muted); font-size: 0.92rem; }

/* ---------- reviews ---------- */
.reviews { background: var(--bg-deep); border-block: 1px solid var(--line); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.review-card .stars { color: var(--accent); letter-spacing: 3px; }
.review-card blockquote { color: var(--muted); font-size: 0.97rem; flex: 1; }
.review-card cite { font-style: normal; font-weight: 600; font-size: 0.92rem; }
.review-card cite span { display: block; font-weight: 400; color: var(--muted); font-size: 0.8rem; margin-top: 2px; }
.reviews-cta { margin-top: 30px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; }
.contact-map {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  min-height: 420px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: grayscale(0.2) contrast(1.02); }
.contact-cards { display: grid; gap: 14px; align-content: start; }
.contact-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px;
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-card .ico { font-size: 1.3rem; line-height: 1.4; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.contact-card p, .contact-card a.val { color: var(--muted); font-size: 0.96rem; }
.contact-card a.val:hover { color: var(--accent); }
.hours-table { width: 100%; font-size: 0.95rem; color: var(--muted); border-collapse: collapse; }
.hours-table td { padding: 3px 0; }
.hours-table td:last-child { text-align: right; color: var(--text); }

/* ---------- footer ---------- */
.site-footer { background: var(--bg-deep); border-top: 1px solid var(--line); padding: 44px 0 36px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 22px; justify-content: space-between; align-items: flex-start; }
.footer-brand .brand-name { font-family: var(--serif); font-size: 1.15rem; }
.footer-brand p { color: var(--muted); font-size: 0.88rem; margin-top: 6px; max-width: 44ch; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--muted); font-size: 0.92rem; }
.footer-links a:hover { color: var(--text); }
.footer-note {
  margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.8rem; max-width: 90ch;
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(3, 1fr); }
  .reels-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .main-nav { display: none; }
  .nav-burger { display: block; margin-left: auto; }
  .header-cta { display: none; }
  .lang-toggle { margin-left: 0; }
  .header-inner { gap: 14px; }

  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: calc(var(--header-h) + 36px); }
  .hero-copy { padding-bottom: 0; order: 1; }
  .hero-figure { order: 2; margin-top: 10px; }
  .hero-figure img { width: min(360px, 80%); }

  .about-grid { grid-template-columns: 1fr; }
  .about-media .neon-card { right: 8px; bottom: -20px; width: 36%; }
  .about-body { margin-top: 34px; }

  .service-feature { grid-template-columns: 1fr; }
  .service-feature .sf-media video { aspect-ratio: 16 / 10; }

  .clinic-collage { grid-template-columns: 1fr 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { border-left: 0; border-top: 1px solid var(--line); }
  .stat-cell:nth-child(-n+2) { border-top: 0; }
  .stat-cell:nth-child(even) { border-left: 1px solid var(--line); }
}

@media (max-width: 560px) {
  .results-grid { grid-template-columns: 1fr 1fr; }
  .reels-grid { grid-template-columns: 1fr; }
  .clinic-collage { grid-template-columns: 1fr; }
  .clinic-collage figure img, .clinic-collage figure video { aspect-ratio: 4 / 3.4; }
  .hero-ctas .btn-primary, .hero-ctas .btn-ghost { width: 100%; justify-content: center; }
}
