/* =========================================================
   MASAJO — Premium Kişisel Masaj Sitesi
   Renk paleti: siyah / koyu kahve / krem / bej / altın
   ========================================================= */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; line-height: 1.25; }

.container { width: min(1180px, 92%); margin-inline: auto; }

/* ---------- Bölüm başlıkları ---------- */
.section { padding-block: var(--gap); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto calc(var(--gap) * 0.5); }
.section-head .eyebrow {
  display: inline-block; font-size: 13px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--primary); font-weight: 500; margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(30px, 4vw, 42px); color: var(--secondary); }
.section-head p { margin-top: 14px; color: color-mix(in srgb, var(--text) 70%, transparent); }
.section-dark .section-head h2 { color: #F5EFE4; }
.section-dark .section-head p { color: rgba(245, 239, 228, 0.65); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 34px; border-radius: calc(var(--radius) * 3);
  font-family: var(--font-body); font-size: 15px; font-weight: 500; letter-spacing: 1px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--btn); color: #1C1509; box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35); }
.btn-gold:hover { box-shadow: 0 12px 30px rgba(201, 162, 39, 0.5); }
.btn-outline { border-color: rgba(245, 239, 228, 0.5); color: #F5EFE4; background: rgba(255, 255, 255, 0.06); backdrop-filter: blur(4px); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-dark { background: var(--secondary); color: #F5EFE4; }
.btn-dark:hover { background: color-mix(in srgb, var(--secondary) 85%, black); }
.btn-wa { background: #22b358; color: #fff; box-shadow: 0 8px 24px rgba(34, 179, 88, 0.35); }
.btn-sm { padding: 10px 22px; font-size: 14px; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Üst menü ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding-block: 18px;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.site-header.scrolled {
  background: rgba(18, 14, 11, 0.92);
  backdrop-filter: blur(12px);
  padding-block: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo img { height: 46px; width: auto; }
.logo-text {
  font-family: var(--font-heading); font-size: 26px; letter-spacing: 5px;
  text-transform: uppercase; color: #F5EFE4;
}
.logo-text::after { content: '.'; color: var(--primary); }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a:not(.btn) {
  color: rgba(245, 239, 228, 0.85); font-size: 15px; font-weight: 400; letter-spacing: 0.5px;
  position: relative; padding-block: 6px; transition: color 0.25s;
}
.main-nav a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--primary); transition: width 0.3s ease;
}
.main-nav a:not(.btn):hover { color: var(--primary); }
.main-nav a:not(.btn):hover::after { width: 100%; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 110; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: #F5EFE4; margin: 6px 0; transition: 0.3s; border-radius: 2px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  background: var(--dark); color: #F5EFE4; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(14, 10, 7, 0.88) 20%, rgba(14, 10, 7, 0.45) 65%, rgba(14, 10, 7, 0.65));
}
.hero-content { position: relative; z-index: 2; max-width: 640px; padding-block: 140px 100px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; letter-spacing: 4px; text-transform: uppercase; color: var(--primary); margin-bottom: 22px;
}
.hero-eyebrow::before { content: ''; width: 42px; height: 1px; background: var(--primary); }
.hero h1 { font-size: clamp(38px, 6vw, 64px); margin-bottom: 22px; color: #FBF7EC; }
.hero p { font-size: clamp(16px, 2vw, 19px); color: rgba(245, 239, 228, 0.8); max-width: 520px; margin-bottom: 38px; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(245, 239, 228, 0.55); font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 34px; background: linear-gradient(var(--primary), transparent);
  animation: scrollHint 2s ease infinite;
}
@keyframes scrollHint { 0% { transform: scaleY(0); transform-origin: top; } 60% { transform: scaleY(1); } 100% { opacity: 0; } }

/* ---------- Hakkımda ---------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.about-photo { position: relative; }
.about-photo img {
  border-radius: var(--radius); width: 100%; aspect-ratio: 4/5; object-fit: cover;
  box-shadow: 0 24px 60px rgba(42, 30, 18, 0.25);
}
.about-photo::before {
  content: ''; position: absolute; inset: 22px -22px -22px 22px;
  border: 1px solid var(--primary); border-radius: var(--radius); opacity: 0.5; z-index: -1;
}
.about-body .eyebrow { font-size: 13px; letter-spacing: 4px; text-transform: uppercase; color: var(--primary); font-weight: 500; }
.about-body h2 { font-size: clamp(30px, 4vw, 40px); color: var(--secondary); margin: 12px 0 20px; }
.about-body p { color: color-mix(in srgb, var(--text) 78%, transparent); margin-bottom: 16px; }
.about-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.about-badge {
  background: #fff; border: 1px solid rgba(62, 47, 35, 0.12); border-radius: calc(var(--radius) * 2);
  padding: 12px 22px; font-size: 14px; font-weight: 500; color: var(--secondary);
  display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 6px 18px rgba(42, 30, 18, 0.06);
}
.about-badge svg { width: 18px; height: 18px; color: var(--primary); }

/* ---------- Hizmetler ---------- */
.section-services { background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 60%, #EFE6D3), var(--surface)); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(62, 47, 35, 0.08);
  box-shadow: 0 10px 30px rgba(42, 30, 18, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(42, 30, 18, 0.14); }
.service-card-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-duration {
  position: absolute; top: 14px; right: 14px; background: rgba(20, 16, 13, 0.75); backdrop-filter: blur(6px);
  color: var(--primary); font-size: 12.5px; font-weight: 500; letter-spacing: 1px;
  padding: 7px 14px; border-radius: 30px; display: inline-flex; align-items: center; gap: 6px;
}
.service-card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.service-card-body h3 { font-size: 22px; color: var(--secondary); margin-bottom: 10px; }
.service-card-body p { font-size: 15px; color: color-mix(in srgb, var(--text) 68%, transparent); flex: 1; }
.service-card-foot { margin-top: 20px; display: flex; align-items: center; justify-content: space-between; }
.service-price { font-family: var(--font-heading); font-size: 19px; color: var(--primary); }
.service-link {
  font-size: 14px; font-weight: 500; letter-spacing: 1px; color: var(--secondary);
  display: inline-flex; align-items: center; gap: 8px; transition: color 0.25s, gap 0.25s;
}
.service-link:hover { color: var(--primary); gap: 12px; }

/* ---------- Hizmet detay ---------- */
.service-hero { position: relative; min-height: 46vh; display: flex; align-items: flex-end; background: var(--dark); overflow: hidden; }
.service-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,10,7,0.55), rgba(14,10,7,0.85)); }
.service-hero .container { position: relative; z-index: 2; padding-block: 60px 44px; }
.service-hero h1 { color: #FBF7EC; font-size: clamp(32px, 5vw, 52px); }
.breadcrumb { color: rgba(245,239,228,0.6); font-size: 13.5px; letter-spacing: 1px; margin-bottom: 12px; }
.breadcrumb a:hover { color: var(--primary); }
.service-detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.service-detail-text p { margin-bottom: 18px; color: color-mix(in srgb, var(--text) 80%, transparent); }
.service-detail-text h2 { color: var(--secondary); font-size: 26px; margin: 30px 0 14px; }
.service-features { margin-top: 8px; }
.service-features li {
  display: flex; align-items: flex-start; gap: 12px; padding: 11px 0;
  border-bottom: 1px dashed rgba(62, 47, 35, 0.15); color: color-mix(in srgb, var(--text) 82%, transparent);
}
.service-features li::before { content: '✦'; color: var(--primary); font-size: 14px; margin-top: 3px; }
.service-side {
  background: #fff; border-radius: var(--radius); padding: 30px;
  border: 1px solid rgba(62, 47, 35, 0.1); box-shadow: 0 14px 40px rgba(42, 30, 18, 0.08);
  position: sticky; top: 96px;
}
.service-side h3 { color: var(--secondary); font-size: 20px; margin-bottom: 18px; }
.service-side .meta { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(62,47,35,0.08); font-size: 15px; }
.service-side .meta strong { color: var(--secondary); font-weight: 500; }
.service-side .btn { width: 100%; margin-top: 14px; }

/* ---------- Neden Masajo ---------- */
.section-why { background: var(--dark); color: #F5EFE4; position: relative; overflow: hidden; }
.section-why::before {
  content: ''; position: absolute; top: -140px; right: -140px; width: 420px; height: 420px;
  border-radius: 50%; background: radial-gradient(circle, rgba(201, 162, 39, 0.14), transparent 70%);
}
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.why-item {
  text-align: center; padding: 34px 20px; border-radius: var(--radius);
  background: rgba(245, 239, 228, 0.04); border: 1px solid rgba(245, 239, 228, 0.09);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.why-item:hover { transform: translateY(-5px); border-color: rgba(201, 162, 39, 0.5); background: rgba(245, 239, 228, 0.06); }
.why-icon {
  width: 58px; height: 58px; margin: 0 auto 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.22), rgba(201, 162, 39, 0.05));
  border: 1px solid rgba(201, 162, 39, 0.4); color: var(--primary);
}
.why-icon svg { width: 26px; height: 26px; }
.why-item h3 { font-size: 17.5px; margin-bottom: 8px; color: #FBF7EC; }
.why-item p { font-size: 13.5px; color: rgba(245, 239, 228, 0.6); line-height: 1.6; }

/* ---------- Galeri ---------- */
.gallery-filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.gallery-filter {
  padding: 9px 22px; border-radius: 30px; border: 1px solid rgba(62, 47, 35, 0.2);
  background: transparent; color: var(--secondary); font-family: var(--font-body); font-size: 14px;
  cursor: pointer; transition: all 0.25s;
}
.gallery-filter:hover, .gallery-filter.active { background: var(--secondary); color: #F5EFE4; border-color: var(--secondary); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3; background: var(--dark); border: none; padding: 0;
  box-shadow: 0 10px 26px rgba(42, 30, 18, 0.1);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(180deg, transparent 45%, rgba(14, 10, 7, 0.85));
  opacity: 0; transition: opacity 0.35s ease; padding: 20px; text-align: left;
}
.gallery-item:hover .gallery-item-overlay, .gallery-item:focus .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay h3 { color: #FBF7EC; font-size: 17px; }
.gallery-item-overlay span { color: var(--primary); font-size: 12.5px; letter-spacing: 2px; text-transform: uppercase; }
.gallery-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(201, 162, 39, 0.92); color: #1C1509;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4); transition: transform 0.3s ease;
}
.gallery-play svg { width: 24px; height: 24px; margin-left: 3px; }
.gallery-item:hover .gallery-play { transform: translate(-50%, -50%) scale(1.1); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(10, 8, 6, 0.94);
  display: none; align-items: center; justify-content: center; padding: 4vh 4vw;
}
.lightbox.open { display: flex; animation: lbFade 0.25s ease; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-content { max-width: min(1000px, 100%); width: 100%; }
.lightbox-content img { width: 100%; max-height: 82vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-content video { width: 100%; max-height: 82vh; border-radius: var(--radius); background: #000; }
.lightbox-content .lb-frame { position: relative; width: 100%; aspect-ratio: 16/9; }
.lightbox-content iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: var(--radius); }
.lightbox-content figcaption { color: rgba(245,239,228,0.75); text-align: center; margin-top: 14px; font-size: 15px; }
.lightbox-close {
  position: absolute; top: 18px; right: 26px; background: none; border: none;
  color: #F5EFE4; font-size: 44px; line-height: 1; cursor: pointer; z-index: 2; transition: color 0.2s, transform 0.2s;
}
.lightbox-close:hover { color: var(--primary); transform: rotate(90deg); }

/* ---------- Randevu ---------- */
.section-appointment { background: linear-gradient(160deg, var(--secondary), color-mix(in srgb, var(--secondary) 60%, black)); color: #F5EFE4; }
.appointment-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: center; }
.appointment-info h2 { font-size: clamp(30px, 4vw, 40px); color: #FBF7EC; margin: 12px 0 18px; }
.appointment-info .eyebrow { font-size: 13px; letter-spacing: 4px; text-transform: uppercase; color: var(--primary); font-weight: 500; }
.appointment-info p { color: rgba(245, 239, 228, 0.72); margin-bottom: 26px; }
.appointment-form {
  background: rgba(245, 239, 228, 0.06); border: 1px solid rgba(245, 239, 228, 0.12);
  border-radius: var(--radius); padding: 36px; backdrop-filter: blur(6px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13.5px; letter-spacing: 1px; margin-bottom: 7px; color: rgba(245, 239, 228, 0.8); }
.form-control {
  width: 100%; padding: 13px 16px; border-radius: calc(var(--radius) * 0.7);
  border: 1px solid rgba(245, 239, 228, 0.2); background: rgba(20, 16, 13, 0.45);
  color: #F5EFE4; font-family: var(--font-body); font-size: 15px; transition: border-color 0.25s, box-shadow 0.25s;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18); }
.form-control::placeholder { color: rgba(245, 239, 228, 0.35); }
select.form-control option { color: #2A211A; background: #F5EFE4; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-alert { padding: 14px 18px; border-radius: calc(var(--radius) * 0.7); margin-bottom: 18px; font-size: 14.5px; }
.form-alert.ok { background: rgba(48, 170, 96, 0.16); border: 1px solid rgba(48, 170, 96, 0.45); color: #9be3b8; }
.form-alert.err { background: rgba(200, 60, 60, 0.14); border: 1px solid rgba(200, 60, 60, 0.4); color: #f0b3b3; }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card {
  display: flex; gap: 18px; align-items: flex-start; background: #fff;
  border: 1px solid rgba(62, 47, 35, 0.09); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: 0 8px 22px rgba(42, 30, 18, 0.06);
  transition: transform 0.25s ease;
}
.contact-card:hover { transform: translateX(4px); }
.contact-card-icon {
  flex: 0 0 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.18), rgba(201, 162, 39, 0.05));
  border: 1px solid rgba(201, 162, 39, 0.35); color: var(--primary);
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: 16px; color: var(--secondary); margin-bottom: 3px; }
.contact-card p, .contact-card a { font-size: 15px; color: color-mix(in srgb, var(--text) 72%, transparent); }
.contact-card a:hover { color: var(--primary); }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 36px rgba(42, 30, 18, 0.12); min-height: 280px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 280px; border: 0; display: block; }
.contact-form-wrap { background: #fff; border: 1px solid rgba(62, 47, 35, 0.09); border-radius: var(--radius); padding: 32px; box-shadow: 0 10px 30px rgba(42, 30, 18, 0.07); }
.contact-form-wrap h3 { color: var(--secondary); font-size: 22px; margin-bottom: 20px; }
.contact-form-wrap .form-group label { color: color-mix(in srgb, var(--text) 75%, transparent); }
.contact-form-wrap .form-control { background: var(--surface); border-color: rgba(62, 47, 35, 0.15); color: var(--text); }
.contact-form-wrap .form-control::placeholder { color: color-mix(in srgb, var(--text) 40%, transparent); }
.contact-form-wrap .form-alert.ok { background: rgba(48, 170, 96, 0.1); color: #1d7a43; }
.contact-form-wrap .form-alert.err { background: rgba(200, 60, 60, 0.08); color: #a33; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: rgba(245, 239, 228, 0.72); margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1fr 1fr; gap: 40px; padding-block: 64px 44px; }
.footer-col h4 { color: #FBF7EC; font-size: 17px; margin-bottom: 16px; letter-spacing: 1px; }
.footer-col a { display: block; padding: 5px 0; font-size: 14.5px; transition: color 0.2s; }
.footer-col a:hover { color: var(--primary); }
.footer-col p { font-size: 14.5px; }
.footer-brand p { margin-top: 14px; max-width: 300px; font-size: 14.5px; }
.footer-logo { height: 44px; width: auto; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(245, 239, 228, 0.2); color: rgba(245, 239, 228, 0.75); padding: 0; transition: all 0.25s;
}
.footer-social a:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid rgba(245, 239, 228, 0.1); padding-block: 20px; font-size: 13.5px; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom .agency { color: rgba(245, 239, 228, 0.45); }

/* ---------- Sabit butonlar ---------- */
.float-buttons { position: fixed; right: 22px; bottom: 26px; display: flex; flex-direction: column; gap: 12px; z-index: 90; }
.float-btn {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28); transition: transform 0.25s ease;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn svg { width: 24px; height: 24px; }
.float-wa { background: #22b358; }
.float-tel { background: var(--secondary); }
.float-ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.mobile-bar { display: none; }

/* ---------- Scroll animasyonları ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-side { position: static; }
}

@media (max-width: 860px) {
  :root { --gap: calc(var(--gap) * 1); }
  .section { padding-block: calc(var(--gap) * 0.72); }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0; background: rgba(16, 12, 9, 0.97); backdrop-filter: blur(10px);
    flex-direction: column; justify-content: center; gap: 26px;
    opacity: 0; visibility: hidden; transition: opacity 0.3s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; }
  .main-nav a:not(.btn) { font-size: 20px; }
  .about-grid, .appointment-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 420px; margin-inline: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hero-content { padding-block: 130px 90px; }
  .hero { min-height: 86vh; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; padding-bottom: 58px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .why-item { padding: 26px 14px; }
  .form-row { grid-template-columns: 1fr; }
  .appointment-form { padding: 26px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-block: 46px 34px; }
  .footer-bottom .container { justify-content: center; text-align: center; }
  .float-buttons { bottom: 78px; right: 16px; }
  .float-btn { width: 46px; height: 46px; }
  .mobile-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    background: rgba(18, 14, 11, 0.97); backdrop-filter: blur(10px);
    border-top: 1px solid rgba(245, 239, 228, 0.12);
  }
  .mobile-bar-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 15px 10px; color: #F5EFE4; font-size: 14.5px; font-weight: 500;
  }
  .mobile-bar-wa { color: #4ade80; }
  .hero-actions .btn { width: 100%; }
  .hero-scroll { display: none; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
