@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --sand: #f5f0e8;
  --sand-light: #faf7f2;
  --sand-dark: #e8dfd0;
  --sand-darker: #ddd2c0;
  --beige: #c4b49a;
  --beige-dark: #a89578;
  --brown: #3d3428;
  --brown-muted: #6b5d4a;
  --brown-light: #8a7a66;
  --gold: #b8956a;
  --gold-light: #d4bc96;
  --white: #fffcf7;
  --line: rgba(61, 52, 40, 0.12);
  --shadow: 0 8px 40px rgba(61, 52, 40, 0.08);
  --shadow-lg: 0 20px 60px rgba(61, 52, 40, 0.12);
  --max: 1200px;
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--brown);
  background: var(--sand);
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.8s ease;
}
body.is-loaded { opacity: 1; }

/* Hafif kurumsal doku katmanı */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Üst scroll çizgisi */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--beige-dark));
  z-index: 9999;
  transition: width 0.1s linear;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

/* ── Booking page ── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.booking-panel h3 { margin: 24px 0 12px; font-size: 18px; }
.booking-cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0 12px;
}
.btn-sm { padding: 8px 14px; font-size: 11px; }
.booking-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-head {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--brown-muted);
  padding: 6px 0;
}
.cal-cell {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--brown);
}
.cal-cell:hover:not(.past):not(.closed) { border-color: var(--gold); background: var(--sand-light); }
.cal-cell.selected { background: var(--gold-light); border-color: var(--gold); }
.cal-cell.past, .cal-cell.closed { opacity: 0.35; cursor: not-allowed; }
.slots-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.slot-btn {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.slot-btn:hover, .slot-btn.selected { background: var(--gold-light); border-color: var(--gold); }
.booking-summary {
  background: var(--sand-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.7;
}

/* Scroll stretch – bölümler kaydırınca hafif uzar */
.section-scroll-stretch {
  transform-origin: center top;
  will-change: transform;
}

/* ── Announcement bar ── */
.announce-bar {
  background: linear-gradient(90deg, var(--sand-darker), var(--beige));
  color: var(--brown);
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.announce-bar a {
  color: var(--brown);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 6px;
}

/* ── Header ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.4s ease, background 0.4s ease, padding 0.3s ease;
}
.topbar.scrolled {
  background: rgba(250, 247, 242, 0.97);
  box-shadow: 0 4px 24px rgba(61, 52, 40, 0.08);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-crest {
  display: block;
  height: 58px;
  width: auto;
  max-width: 118px;
  object-fit: cover;
  object-position: center 42%;
  border: 2px solid var(--gold-light);
  border-radius: 50% / 46%;
  padding: 3px;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  box-shadow:
    0 2px 10px rgba(139, 109, 66, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
}
.brand-mark {
  display: none;
}
.brand-title {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  justify-content: center;
}
.brand-title strong {
  display: none;
}
.brand-title span {
  font-size: 11px;
  color: var(--brown-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--brown);
  transition: color 0.2s;
}
.nav a:hover, .nav a.active { color: var(--gold); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lang-flags {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: nowrap;
  padding: 4px 6px;
  background: rgba(255, 252, 247, 0.9);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 28px;
  padding: 2px;
  border: 2px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(61, 52, 40, 0.08);
  flex-shrink: 0;
}
.lang-flag svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 3px;
}
.lang-flag-icon {
  font-size: 18px;
  line-height: 1;
  pointer-events: none;
}
.lang-flag:hover {
  transform: translateY(-2px) scale(1.06);
  border-color: var(--beige);
}
.lang-flag.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-light), 0 4px 12px rgba(184, 149, 106, 0.25);
  transform: translateY(-1px);
}
.lang-flag:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--beige-dark), var(--gold));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-book:hover {
  background: linear-gradient(135deg, var(--gold), var(--beige));
  transform: translateY(-1px);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--beige-dark), var(--gold));
  color: var(--white);
  border-color: var(--beige-dark);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--gold), var(--beige)); }
.btn-outline {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn-outline:hover {
  background: var(--brown);
  color: var(--sand-light);
}
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

/* ── Hero ── */
.hero-full {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -8%;
  will-change: transform;
  transform: scale(1.08);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,240,232,0.88) 0%, rgba(232,223,208,0.82) 50%, rgba(245,240,232,0.9) 100%);
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-full::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212,188,150,0.15), transparent 70%);
  pointer-events: none;
}
.hero-full .container {
  position: relative;
  z-index: 2;
}
.hero-full .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.hero-content h1 {
  font-size: clamp(42px, 6vw, 72px);
  margin: 0 0 24px;
  color: var(--brown);
  letter-spacing: -0.5px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--brown-muted);
  max-width: 520px;
  margin: 0;
}
.hero-sidebar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.hero-sidebar h3 {
  font-size: 18px;
  margin: 0 0 20px;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
}
.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.info-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.info-list li:last-child { border-bottom: none; }
.info-list li span { color: var(--brown-muted); }
.info-list li strong { color: var(--brown); font-weight: 600; }
.sidebar-divider {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}

/* ── Sections ── */
.section {
  padding: 80px 0;
  position: relative;
}
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--beige), transparent);
  opacity: 0.5;
}
.section:first-of-type::before { display: none; }
.section-alt {
  background: linear-gradient(180deg, var(--sand-dark) 0%, var(--sand) 100%);
}
.section-light {
  background: linear-gradient(180deg, var(--sand-light) 0%, var(--sand) 100%);
}
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 16px;
  color: var(--brown);
}
.section-head p {
  margin: 0 auto;
  max-width: 600px;
  color: var(--brown-muted);
  font-size: 15px;
  line-height: 1.7;
}
.section-head-left {
  text-align: left;
  margin-bottom: 40px;
}
.section-head-left h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin: 0 0 12px;
}

/* ── Treatment tiles (large image cards) ── */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.treatment-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand-darker);
  cursor: pointer;
  transition: transform 0.3s;
}
.treatment-card:hover { transform: scale(1.02); }
.treatment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.treatment-card:hover img { transform: scale(1.05); }
.treatment-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,52,40,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.treatment-card h3 {
  color: var(--sand-light);
  font-size: 22px;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
}

/* ── Split content blocks ── */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-block.reverse { direction: rtl; }
.split-block.reverse > * { direction: ltr; }
.split-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand-darker);
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 20px;
  color: var(--brown);
}
.split-text h2 em { font-style: italic; color: var(--gold); }
.split-text p {
  color: var(--brown-muted);
  font-size: 15px;
  line-height: 1.85;
  margin: 0 0 28px;
}

/* ── Gift card section ── */
.gift-section {
  background: linear-gradient(135deg, var(--sand-darker) 0%, var(--beige) 50%, var(--sand-dark) 100%);
  color: var(--brown);
  padding: 100px 0;
  text-align: center;
}
.gift-section h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 0 0 20px;
  color: var(--brown);
}
.gift-section p {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--brown-muted);
}
.gift-section .btn-outline {
  border-color: var(--brown);
  color: var(--brown);
}
.gift-section .btn-outline:hover {
  background: var(--white);
  color: var(--brown);
}

/* ── Blog cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.blog-card:hover { box-shadow: var(--shadow-lg); }
.blog-card-img {
  aspect-ratio: 16/10;
  background: var(--sand-darker);
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card h3 {
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--brown);
}
.blog-card p {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--brown-muted);
  line-height: 1.7;
}
.blog-card a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-card a:hover { text-decoration: underline; }

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  color: var(--gold-light);
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}
.testimonial-card blockquote {
  margin: 24px 0 16px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--brown-muted);
  font-style: italic;
}
.testimonial-card cite {
  font-size: 12px;
  font-weight: 600;
  color: var(--brown);
  font-style: normal;
}

/* ── Press marquee ── */
.press-marquee {
  overflow: hidden;
  padding: 40px 0;
  background: var(--sand-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.press-track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.press-track span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown-light);
  white-space: nowrap;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Instagram grid ── */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.insta-item {
  aspect-ratio: 1;
  background: var(--sand-darker);
  border-radius: var(--radius);
  overflow: hidden;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.insta-item:hover img { transform: scale(1.08); }
.insta-handle {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown-muted);
}
.insta-handle a { color: var(--gold); }

/* ── Newsletter ── */
.newsletter-section {
  background: var(--sand-dark);
  padding: 80px 0;
  text-align: center;
}
.newsletter-section h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 0 0 12px;
}
.newsletter-section p {
  margin: 0 0 28px;
  color: var(--brown-muted);
  font-size: 14px;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 14px;
  color: var(--brown);
}
.newsletter-form input::placeholder { color: var(--brown-light); }

/* ── Footer mega ── */
.footer-mega {
  background: linear-gradient(180deg, var(--sand-darker) 0%, var(--sand-dark) 100%);
  color: var(--brown);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: var(--gold);
}
.footer-col p, .footer-col a {
  font-size: 13px;
  line-height: 1.8;
  color: var(--brown-muted);
  display: block;
  margin-bottom: 8px;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--brown-light);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: var(--brown-light);
  font-size: 12px;
}
.footer-links a:hover { color: var(--gold); }

/* ── Location cards ── */
.location-grid {
  display: grid;
  grid-template-columns: minmax(280px, 480px);
  gap: 24px;
  justify-content: center;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.location-card h3 {
  font-size: 22px;
  margin: 0 0 16px;
  color: var(--brown);
}
.location-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--brown-muted);
}

/* ── CTA banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--beige) 100%);
  padding: 60px;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 48px;
}
.cta-banner h3 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 0 0 12px;
  color: var(--brown);
}
.cta-banner p {
  margin: 0 0 24px;
  color: var(--brown-muted);
  font-size: 15px;
}
.cta-banner .btn-primary {
  background: linear-gradient(135deg, var(--beige-dark), var(--gold));
}

/* ── Inner pages ── */
.page-hero {
  padding: 60px 0 40px;
  background: var(--sand-dark);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  margin: 0 0 12px;
}
.page-hero p {
  margin: 0;
  color: var(--brown-muted);
  font-size: 15px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.service-card h3 {
  margin: 0 0 16px;
  font-size: 20px;
  color: var(--brown);
}
.service-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.service-items li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--brown-muted);
}
.bullet {
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.about-lead {
  font-size: 16px;
  line-height: 1.95;
  color: var(--brown-muted);
  margin: 0 0 20px;
}
.about-lead-em {
  font-size: 17px;
  line-height: 1.9;
  color: var(--brown);
  font-weight: 500;
  margin: 0 0 20px;
}
.about-quote {
  background: linear-gradient(135deg, var(--sand-dark) 0%, var(--sand-light) 100%);
  border-left: 4px solid var(--gold);
  padding: 40px 48px;
  margin: 0;
  text-align: center;
}
.about-quote blockquote {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-style: italic;
  color: var(--brown);
  line-height: 1.3;
}
.about-quote cite {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.about-values-3 {
  grid-template-columns: repeat(3, 1fr);
}
.about-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.about-stats-band {
  background: linear-gradient(90deg, var(--sand-darker), var(--sand-light), var(--sand-darker));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.about-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--brown-muted);
}
.about-timeline {
  display: grid;
  gap: 0;
  border-left: 2px solid var(--gold-light);
  margin-left: 12px;
  padding-left: 28px;
}
.about-timeline-item {
  position: relative;
  padding: 0 0 32px 0;
}
.about-timeline-item::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold-light);
}
.about-timeline-year {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 6px;
}
.about-timeline-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--brown-muted);
}
.about-faq {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.about-faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 20px;
}
.about-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--brown);
  padding: 18px 0;
  list-style: none;
}
.about-faq-item summary::-webkit-details-marker { display: none; }
.about-faq-item p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--brown-muted);
}
.about-value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.about-value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.about-value-card h3 {
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--brown);
}
.about-value-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--brown-muted);
}
.about-highlights-section {
  background: linear-gradient(180deg, var(--sand-light) 0%, var(--sand) 100%);
}
.about-highlights-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  max-width: 800px;
}
.about-highlights-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.75;
  color: var(--brown-muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.about-cta-box {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--beige) 100%);
  border-radius: var(--radius);
  padding: 60px;
  text-align: center;
}
.about-cta-box h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 16px;
}
.about-cta-box p {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--brown-muted);
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .about-values, .about-values-3 { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-quote { padding: 32px 24px; }
  .about-cta-box { padding: 40px 24px; }
  .lang-flags { gap: 3px; }
  .lang-flag { width: 30px; height: 24px; }
  .lang-flag-icon { font-size: 16px; }
}

.legal-content h1 { font-size: 36px; margin: 0 0 24px; }
.legal-content h2 { font-size: 20px; margin: 28px 0 12px; color: var(--brown); }
.legal-content p, .legal-content li { font-size: 14px; line-height: 1.85; color: var(--brown-muted); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.grid.two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.muted { color: var(--brown-muted); }

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}
.contact-info { display: grid; gap: 16px; }
.info-row {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.info-row strong {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}
.info-row span, .info-row a {
  font-size: 14px;
  color: var(--brown);
  font-weight: 500;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--brown-muted);
}
input, textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 14px;
  color: var(--brown);
  font-family: inherit;
}
textarea { min-height: 140px; resize: vertical; }
input::placeholder, textarea::placeholder { color: var(--brown-light); }
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.hint { font-size: 12px; color: var(--brown-light); }
.error { color: #c44; font-size: 12px; font-weight: 600; display: none; }
.error.show { display: block; }
.success { color: #4a8; font-size: 12px; font-weight: 600; display: none; }
.success.show { display: block; }

/* ── Modal ── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(61,52,40,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
}
.modal-backdrop.show { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.modal-head strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
}
.modal-close {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
}
.modal-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--brown-muted);
}

/* ── Mobile menu ── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  margin: 5px 0;
  transition: 0.3s;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-full .container { grid-template-columns: 1fr; }
  .treatment-grid { grid-template-columns: repeat(2, 1fr); }
  .split-block { grid-template-columns: 1fr; gap: 40px; }
  .split-block.reverse { direction: ltr; }
  .blog-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .header-actions .btn-book { display: none; }
  .lang-flags {
    overflow-x: auto;
    max-width: min(100%, 220px);
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
  }
  .lang-flag { width: 34px; height: 26px; }
  .treatment-grid { grid-template-columns: 1fr; }
  .blog-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .location-grid, .contact-grid, .grid.two, .services-grid, .form-grid, .booking-layout {
    grid-template-columns: 1fr;
  }
  .section { padding: 60px 0; }
  .hero-full { min-height: auto; padding: 60px 0; }
  .cta-banner { padding: 40px 24px; }
}

/* ── Scroll reveal animasyonları ── */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal { transform: translateY(36px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.96) translateY(20px); }

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-stagger > *.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.4s; }

.treatment-card,
.blog-card,
.testimonial-card,
.location-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.treatment-card:hover,
.blog-card:hover,
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
}

.hero-content h1 {
  animation: heroFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.hero-content p {
  animation: heroFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}
.hero-content .btn-row {
  animation: heroFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}
.hero-sidebar {
  animation: heroFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-content h1, .hero-content p, .hero-content .btn-row, .hero-sidebar {
    animation: none;
  }
  body { opacity: 1; transition: none; }
}
