/* ============================================================
   NUSS GÜZELLİK MERKEZİ — Design System
   Premium Beauty Salon Website
   ============================================================ */

/* ---- RESET & BASE ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--c-bg);
  color: var(--c-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- DESIGN TOKENS --------------------------------------- */
:root {
  --c-bg:           #FAF7F4;
  --c-bg-alt:       #F0EBE5;
  --c-bg-dark:      #1C1614;
  --c-bg-dark2:     #241E1C;
  --c-primary:      #8A5A6A;
  --c-primary-lt:   #C4909F;
  --c-primary-dk:   #5C3A47;
  --c-gold:         #B8966A;
  --c-gold-lt:      #D4B896;
  --c-text:         #1C1614;
  --c-text-mid:     #5A5055;
  --c-text-soft:    #9A9095;
  --c-border:       #E8DDD4;
  --c-white:        #FFFFFF;

  --font-serif:     'Cormorant Garamond', Georgia, serif;
  --font-sans:      'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --tr:             0.3s ease;
  --tr-slow:        0.6s ease;

  --radius-sm:      6px;
  --radius-md:      14px;
  --radius-lg:      28px;

  --container:      1200px;
  --section-gap:    120px;
}

/* ---- TYPOGRAPHY ------------------------------------------ */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
em { font-style: italic; }
p { line-height: 1.75; }

/* ---- LAYOUT UTILS ---------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem); }

.section__header { text-align: center; margin-bottom: 4rem; }
.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1rem;
}
.section__title { color: var(--c-text); }
.section__title em { color: var(--c-primary); }

/* ---- BUTTONS --------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100px;
  transition: var(--tr);
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-primary);
  color: var(--c-white);
}
.btn--primary:hover { background: var(--c-primary-dk); transform: translateY(-1px); }
.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.2); }
.btn--outline {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid var(--c-primary);
}
.btn--outline:hover { background: var(--c-primary); color: var(--c-white); }
.btn--gold {
  background: var(--c-gold);
  color: var(--c-white);
}
.btn--gold:hover { background: #9a7852; transform: translateY(-1px); }
.btn--lg { padding: 1rem 2.4rem; font-size: 0.95rem; }

/* ---- ANIMATION CLASSES ----------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ---- NAVIGATION ------------------------------------------ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background var(--tr), box-shadow var(--tr);
}
.nav.scrolled {
  background: rgba(250, 247, 244, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--c-border);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 76px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.nav__logo-img {
  width: 62px;
  height: 62px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(28, 22, 20, 0.12);
}
.nav__links {
  display: flex; gap: 2rem;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  transition: color var(--tr);
}
.nav.scrolled .nav__links a { color: var(--c-text-mid); }
.nav__links a:hover { color: var(--c-white); }
.nav.scrolled .nav__links a:hover { color: var(--c-primary); }
.nav__links a.active { color: var(--c-white); font-weight: 500; }
.nav.scrolled .nav__links a.active { color: var(--c-primary); font-weight: 500; }

.nav__cta { padding: 0.6rem 1.4rem; font-size: 0.85rem; }
.nav .btn--primary { background: var(--c-primary); }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--c-white); transition: var(--tr); border-radius: 2px; }
.nav.scrolled .nav__burger span { background: var(--c-text); }

.nav__mobile {
  display: none;
  position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
  background: rgba(250, 247, 244, 0.97);
  backdrop-filter: blur(16px);
  padding: 2rem;
  flex-direction: column;
  z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 1rem; }
.nav__mobile li a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--c-text);
  transition: color var(--tr);
}
.nav__mobile li a:hover { color: var(--c-primary); }
.nav__mobile .btn { margin-top: 1.5rem; align-self: flex-start; }

/* ---- HERO ------------------------------------------------ */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 22, 20, 0.72) 0%,
    rgba(90, 42, 55, 0.4) 50%,
    rgba(28, 22, 20, 0.5) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  padding-top: 76px;
  max-width: 750px;
  width: 100%;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-lt);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero__title {
  color: var(--c-white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero__title em { color: var(--c-gold-lt); font-style: italic; }
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}
.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.5s both;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out 2s infinite;
}

/* ---- ABOUT ----------------------------------------------- */
.about { padding: var(--section-gap) 0; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__media { position: relative; }
.about__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.about__img-wrap:hover img { transform: scale(1.03); }
.about__badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--c-primary);
  color: var(--c-white);
  width: 120px; height: 120px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(138, 90, 106, 0.4);
  text-align: center;
}
.about__badge-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
}
.about__badge-text { font-size: 0.65rem; letter-spacing: 0.08em; opacity: 0.9; }

.about__text .section__eyebrow { margin-bottom: 0.75rem; }
.about__text .section__title { margin-bottom: 1.5rem; text-align: left; }
.about__body { color: var(--c-text-mid); margin-bottom: 1rem; }
.about__stats {
  display: flex; gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.about__stat { display: flex; flex-direction: column; }
.about__stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--c-primary);
  line-height: 1;
}
.about__stat-label { font-size: 0.8rem; color: var(--c-text-soft); margin-top: 0.3rem; }
.about__text .btn { margin-top: 1rem; }

/* ---- SERVICES -------------------------------------------- */
.services {
  padding: var(--section-gap) 0;
  background: var(--c-bg-alt);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  border: 1px solid var(--c-border);
  transition: transform var(--tr), box-shadow var(--tr), opacity 0.7s ease var(--delay, 0s), translate 0.7s ease var(--delay, 0s);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(138, 90, 106, 0.12);
}
.service-card--accent {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-white);
}
.service-card--accent .service-card__icon { color: var(--c-gold-lt); }
.service-card--accent h3 { color: var(--c-white); }
.service-card--accent p { color: rgba(255,255,255,0.85); }

.service-card__icon {
  font-size: 1.8rem;
  color: var(--c-primary);
  margin-bottom: 1.2rem;
  display: block;
}
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.25rem; line-height: 1.3; }
.service-card p { font-size: 0.92rem; color: var(--c-text-mid); line-height: 1.6; }

/* ---- GALLERY --------------------------------------------- */
.gallery { padding: var(--section-gap) 0; background: var(--c-bg-dark); }
.gallery .section__eyebrow { color: var(--c-gold-lt); }
.gallery .section__title { color: var(--c-white); }
.gallery .section__title em { color: var(--c-gold-lt); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 4px;
  margin-top: 3rem;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,22,20,0.75) 0%, transparent 50%);
  display: flex; align-items: flex-end;
  padding: 1.2rem;
  opacity: 0; transition: opacity var(--tr);
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__overlay span {
  color: var(--c-white);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---- WHY US ---------------------------------------------- */
.why-us { padding: var(--section-gap) 0; }
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.why-card {
  padding: 2rem 1.5rem;
  border-top: 2px solid var(--c-border);
  transition: border-color var(--tr);
}
.why-card:hover { border-color: var(--c-primary); }
.why-card__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--c-bg-alt);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1rem;
  transition: color var(--tr);
}
.why-card:hover .why-card__num { color: var(--c-primary-lt); }
.why-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.why-card p { font-size: 0.9rem; color: var(--c-text-mid); line-height: 1.65; }

/* ---- REVIEWS --------------------------------------------- */
.reviews { padding: var(--section-gap) 0; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  border: 1px solid var(--c-border);
  position: relative;
}
.review-card__stars {
  display: flex; gap: 3px;
  margin-bottom: 1.2rem;
  color: var(--c-gold);
  font-size: 0.9rem;
}
.review-card__quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--c-text);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.review-card__author { display: flex; align-items: center; gap: 0.75rem; }
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--c-primary);
}
.review-card__name { font-size: 0.9rem; font-weight: 500; }
.review-card__service { font-size: 0.78rem; color: var(--c-text-soft); }
.review-card__quote-mark {
  position: absolute; top: 1.5rem; right: 2rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--c-bg-alt);
  line-height: 1;
}

/* ---- FAQ ------------------------------------------------- */
.faq { padding: var(--section-gap) 0; background: var(--c-bg-alt); }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--c-border);
}
.faq__question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--c-text);
  text-align: left;
  gap: 1rem;
  transition: color var(--tr);
}
.faq__question:hover { color: var(--c-primary); }
.faq__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--c-primary);
  transition: transform var(--tr), background var(--tr);
}
.faq__item.open .faq__icon { transform: rotate(45deg); background: var(--c-primary); border-color: var(--c-primary); color: var(--c-white); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding-bottom: 0;
}
.faq__item.open .faq__answer { max-height: 400px; padding-bottom: 1.5rem; }
.faq__answer p { color: var(--c-text-mid); line-height: 1.75; font-size: 0.95rem; }

/* ---- APPOINTMENT ----------------------------------------- */
.appointment {
  padding: var(--section-gap) 0;
  background: var(--c-bg-dark);
  position: relative;
  overflow: hidden;
}
.appointment::before {
  content: 'NUSS';
  position: absolute;
  font-family: var(--font-serif);
  font-size: 24rem;
  color: rgba(255,255,255,0.02);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}
.appointment .section__eyebrow { color: var(--c-gold-lt); }
.appointment .section__title { color: var(--c-white); }
.appointment .section__title em { color: var(--c-gold-lt); }
.appointment__form {
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.appointment__form .full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  color: var(--c-white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color var(--tr), background var(--tr);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-primary-lt);
  background: rgba(255,255,255,0.1);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--c-bg-dark); color: var(--c-white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.appointment__form .btn { justify-content: center; width: 100%; padding: 1rem; font-size: 1rem; }
.appointment__whatsapp {
  text-align: center;
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
}
.appointment__whatsapp a { color: var(--c-gold-lt); text-decoration: underline; }
.appointment__success {
  display: none;
  text-align: center;
  color: var(--c-white);
  padding: 3rem;
}
.appointment__success h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.appointment__success p { color: rgba(255,255,255,0.7); }

/* ---- CONTACT --------------------------------------------- */
.contact { padding: var(--section-gap) 0; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact__info .section__title { text-align: left; margin-bottom: 2rem; }
.contact__detail {
  display: flex; gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact__detail-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--c-bg-alt);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-primary);
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact__detail-text strong { display: block; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-text-soft); margin-bottom: 0.25rem; }
.contact__detail-text span, .contact__detail-text a { font-size: 0.95rem; color: var(--c-text-mid); }
.contact__detail-text a:hover { color: var(--c-primary); }
.contact__social { display: flex; gap: 1rem; margin-top: 2rem; }
.contact__social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-text-mid);
  transition: var(--tr);
}
.contact__social a:hover { border-color: var(--c-primary); color: var(--c-primary); background: rgba(138,90,106,0.05); }

.contact__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 400px;
  border: 1px solid var(--c-border);
}
.contact__map iframe { width: 100%; height: 100%; border: none; }

/* ---- WHATSAPP FLOAT -------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 500;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--tr), box-shadow var(--tr);
  color: var(--c-white);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg { width: 32px; height: 32px; }

/* ---- FOOTER ---------------------------------------------- */
.footer {
  background: var(--c-bg-dark);
  padding: 5rem 0 2.5rem;
}
.footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--c-white);
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}
.footer__brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.2rem;
}
.footer__tagline { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.65; max-width: 240px; }
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.2rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col li a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: color var(--tr); }
.footer__col li a:hover { color: var(--c-white); }
.footer__col li span { font-size: 0.9rem; color: rgba(255,255,255,0.55); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}
.footer__bottom a { color: rgba(255,255,255,0.35); }
.footer__bottom a:hover { color: rgba(255,255,255,0.6); }

/* ---- REELS ----------------------------------------------- */
.reels { padding: var(--section-gap) 0; background: var(--c-bg-dark2); }
.reels .section__eyebrow { color: var(--c-gold-lt); }
.reels .section__title { color: var(--c-white); }
.reels .section__title em { color: var(--c-gold-lt); }
.reels__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.reel-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: #000;
}
.reel-card video {
  width: 100%; display: block;
  aspect-ratio: 9/16; object-fit: cover;
}
.reel-card__img {
  width: 100%; display: block;
  aspect-ratio: 9/16; object-fit: cover;
  transition: transform 0.4s ease;
}
.reel-card:hover .reel-card__img { transform: scale(1.04); }
.reel-card__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: white;
  background: none; border: none; padding: 0; cursor: pointer;
  transition: opacity var(--tr);
}
.reel-card__play-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--tr), transform var(--tr);
}
.reel-card:hover .reel-card__play-btn { background: var(--c-primary); transform: scale(1.1); }
/* ---- KEYFRAMES ------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- RESPONSIVE ------------------------------------------ */
@media (max-width: 1024px) {
  :root { --section-gap: 80px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }
  .reels__grid { grid-template-columns: 1fr 1fr; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__content { max-width: 100%; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__badge { right: 1rem; bottom: -1rem; width: 100px; height: 100px; }
  .about__badge-num { font-size: 2rem; }

  .services__grid { grid-template-columns: 1fr; }
  .why-us__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery__item--wide { grid-column: span 1; }
  .appointment__form { grid-template-columns: 1fr; }

  .contact__grid { grid-template-columns: 1fr; }
  .contact__map { height: 280px; }

  .footer__main { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery__item--tall { grid-row: span 1; }
  .about__stats { gap: 1.5rem; }
  .reels__grid { grid-template-columns: 1fr; }
}
