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

:root {

  --navy:      #571221;
  --navy-dark: #571221;
  --white:     #FFFFFF;
  --off-white: rgba(255,255,255,0.55);

  --bg:         #FFFFFF;
  --surface:    #F4F4F4;
  --border:     #E2E2E2;
  --text:       #111111;
  --text-muted: #555555;
  --text-body:  #333333;


  --font:      'Inter', sans-serif;
  --font-logo: 'Poppins', sans-serif;


  --nav-h: 80px;

  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}


.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-h);
  background: var(--navy);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

.nav-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-logo);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring), opacity 0.3s ease;
}
.nav-logo:hover { transform: scale(1.05); opacity: 0.9; }

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease, transform 0.3s var(--ease-spring);
  white-space: nowrap;
  display: inline-block;
}
.nav-link:not(.active) { opacity: 0.85; }
.nav-link:hover        { opacity: 1; transform: translateY(-2px); }
.nav-link.active       { font-weight: 700; }

.menu-toggle {
  display: none;
  background: none; border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.03em;
  padding: 4px 0;
  white-space: nowrap;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.menu-toggle:hover { opacity: 0.75; transform: scale(1.05); }

.mobile-nav-header { display: none; }

.close-toggle {
  background: none; border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.03em;
  padding: 4px 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.close-toggle:hover { opacity: 0.8; transform: scale(1.05); }


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/images/hero-img.png');
  background-size: cover;
  background-position: center 22%;
  transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}


.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1140px;
  margin: 0 auto;
  padding: 0px 40px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.hero-top {
  padding-top: 180px;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  opacity: 0;
  animation: fadeSlide 0.55s var(--ease-out) 0.85s forwards;
}


.hero-title {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: wordUp 0.6s var(--ease-out) forwards;
}

.hero-title .word:nth-child(1)  { animation-delay: 0.10s; }
.hero-title .word:nth-child(2)  { animation-delay: 0.18s; }
.hero-title .word:nth-child(3)  { animation-delay: 0.26s; }
.hero-title .word:nth-child(4)  { animation-delay: 0.34s; }
.hero-title .word:nth-child(5)  { animation-delay: 0.42s; }
.hero-title .word:nth-child(6)  { animation-delay: 0.50s; }
.hero-title .word:nth-child(7)  { animation-delay: 0.58s; }
.hero-title .word:nth-child(8)  { animation-delay: 0.66s; }

.hero-title .word + .word { margin-left: 0.28em; }
.hero-br + .word           { margin-left: 0; }

@keyframes wordUp {
  to { opacity: 1; transform: translateY(0); }
}

.visit-label { font-size: 13px; color: rgba(255,255,255,0.70); margin-bottom: 2px; }
.visit-place  { font-size: 15px; color: var(--white); font-weight: 600; line-height: 1.55; }

.hero-right {
  flex: 0 0 320px; max-width: 320px;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.90);
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 22px;
}

.btn-cta {
  display: inline-block;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 2px 0;
  transition: opacity 0.25s ease;
}
.btn-cta:hover { opacity: 0.75; }



@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}


.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


.treatments {
  padding: 96px 0 80px;
  background: var(--bg);
}

.section-title {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--navy);
  text-align: center;
  margin-bottom: 52px;
  letter-spacing: -0.01em;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.t-card {
  background: var(--surface);
  border-radius: 6px;
  padding: 30px 26px;
  transition: transform 0.28s var(--ease-spring), box-shadow 0.28s ease;
  cursor: default;
}
.t-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(32,32,204,0.10);
}

.t-card h3 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.t-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.t-card--img {
  padding: 0;
  overflow: hidden;
  min-height: 210px;
}
.t-card--img:hover { transform: translateY(-5px); }
.t-card--img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.t-card--img:hover img { transform: scale(1.04); }

.t-card--link {
  background: var(--bg);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.see-details {
  color: var(--navy);
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: opacity 0.2s ease, transform 0.2s var(--ease-spring);
  display: inline-block;
}
.t-card--link:hover .see-details {

  transform: translateX(1px);
}


.testimonials {
  padding: 80px 0 96px;
  background: #EFEFEF;
}

.section-label {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--navy);

  margin-bottom: 8px;
}

.testi-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

.testi-title {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(29px, 4vw, 42px);
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.testi-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.testi-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.22s ease;
}
.testi-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: scale(1.08);
}

.testi-wrapper { overflow: hidden; }
.testi-track {
  display: flex;
  gap: 16px;
  transition: transform 0.42s var(--ease-out);
}

.testi-card {
  flex: 0 0 calc(33.333% - 11px);
  background: #FDFDFD;
  border-radius: 6px;
  padding: 28px 24px;
  transition: transform 0.28s var(--ease-spring), box-shadow 0.28s ease;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(32,32,204,0.08);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}
.stars img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.testi-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  white-space: pre-line;
}
.testi-card strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}




@media (max-width: 1024px) {
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .t-card--link { grid-column: span 2; }

  .testi-card { flex: 0 0 calc(50% - 8px); }


}


@media (max-width: 768px) {

  
  .menu-toggle  { display: block; }
  .nav-inner    { padding: 0 24px; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .mobile-nav-header {
    display: flex;
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: var(--nav-h);
    padding: 0 24px;
    align-items: center;
    justify-content: space-between;
  }

  .nav-link {
    font-size: 32px;
    font-weight: 700;
    color: var(--off-white);
    opacity: 1;
    transition: color 0.2s ease, transform 0.2s ease;
  }
  .nav-link:not(.active) { opacity: 1; }
  .nav-link.active { color: var(--white); }
  .nav-link:hover  { color: var(--white); transform: scale(1.04); opacity: 1; }

  .nav-links.open .nav-link { animation: slideUp 0.35s ease both; }
  .nav-links.open .nav-link:nth-of-type(1) { animation-delay: 0.05s; }
  .nav-links.open .nav-link:nth-of-type(2) { animation-delay: 0.10s; }
  .nav-links.open .nav-link:nth-of-type(3) { animation-delay: 0.15s; }
  .nav-links.open .nav-link:nth-of-type(4) { animation-delay: 0.20s; }
  .nav-links.open .nav-link:nth-of-type(5) { animation-delay: 0.25s; }


  .hero { min-height: auto; }
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 64px 24px 60px;
    gap: 40px;
    justify-content: space-between;
    flex: 1;
  }
  .hero-top { padding-top: 40px; }
  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .hero-right { flex: unset; max-width: 100%; }

 
  .treatments-grid { grid-template-columns: 1fr 1fr; }
  .t-card--img     { display: none; }
  .t-card--link    { grid-column: span 2; }
  .container       { padding: 0 24px; }

 
  .testi-header { flex-direction: column; align-items: flex-start; }
  .testi-card   { flex: 0 0 calc(100% - 0px); }

 

  
}


@media (max-width: 480px) {
  .treatments-grid { grid-template-columns: 1fr; }
  .t-card--link    { grid-column: span 1; }
  .t-card--img     { min-height: 180px; }

  .hero-title { font-size: 32px; }
  .nav-link   { font-size: 28px; }
}


@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}


.footer {
  background: var(--navy);
  width: 100%;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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


.footer-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 60px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.2fr;
  gap: 40px 32px;
  align-items: start;
}


.footer-logo {
  font-family: var(--font-logo);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 15px;
  line-height: 1.75;
  color: var(--off-white);
}


.footer-col-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}


.footer-nav ul,
.footer-quick ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav a,
.footer-quick a {
  font-size: 15px;
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-quick a:hover {
  color: var(--white);
}


.social-icons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.social-btn {
  display: block;
  text-decoration: none;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.social-btn:hover {
  transform: translateY(-3px);
}

.social-btn img {
  width: 48px;
  height: 48px;
  display: block;
}


.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.252);
  padding: 20px 60px;
  max-width: 100%;
}

.footer-bottom p {
  max-width: 1280px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--off-white);
}


@media (max-width: 960px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 48px 40px 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
    padding: 40px 24px 32px;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-bottom {
    padding: 16px 24px;
    text-align: center;
  }

  .social-icons {
    gap: 12px;
  }
}


