/* =========================================
   RESET
========================================= */

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

/* =========================================
   BODY
========================================= */

body {
  font-family: Arial, sans-serif;
  color: #2f2f2f;
  background-color: #f8eee7;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/* =========================================
   HEADER
========================================= */

.site-header {
  background-color: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  position: fixed;
  top: 0;
  left: 0;
   width: 100%;
  z-index: 1000;
   box-shadow:
    0 6px 22px rgba(0, 0, 0, 0.06);
}

.header-container {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}



/* =========================================
   LOGO
========================================= */

.logo-area {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-link img {
  height: 72px;
  width: auto;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 32px;
  font-weight: 700;
  color: #C89B52;
  line-height: 1;
}

.logo-subtitle {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #777777;
  margin-top: 6px;
  text-transform: uppercase;
}

/* =========================================
   NAVIGATION
========================================= */

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

.main-nav a {
  text-decoration: none;
  color: #2f2f2f;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.main-nav a:hover {
  color: #C89B52;
}

/* =========================================
   HAMBURGER
========================================= */

.hamburger {
  display: none;
  width: 34px;
  height: 26px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #9c7a45;
  border-radius: 5px;
  transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* =========================================
   BUTTONS
========================================= */

.primary-btn,
.consultation-btn,
.more-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.35s ease;
}

.primary-btn {
  background: linear-gradient(135deg, #b88a42, #d7b377);
  color: #ffffff;
  padding: 16px 34px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(184,138,66,0.28);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(184,138,66,0.35);
}

/* =========================================
   HERO
========================================= */

.hero {
  height: 760px;
  background-image:
    linear-gradient(
      to right,
      rgba(255,245,235,0.18),
      rgba(255,245,235,0.30)
    ),
    url("../images/hero.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-overlay {
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 760px;
  color: #2f2f2f;
}

.hero-content h1 {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 700;
  color: #2f2f2f;
  text-shadow: 0 2px 8px rgba(255,255,255,0.25);
}

.hero-content p {
  font-size: 22px;
  line-height: 1.9;
  margin-bottom: 36px;
  color: #4f4f4f;
  max-width: 620px;
}

/* =========================================
   PROMO TICKER
========================================= */

.promo-ticker {
  background-color: #111111;
  border-top: 1px solid #C89B52;
  border-bottom: 1px solid #C89B52;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
}

.ticker-move {
  display: inline-flex;
  align-items: center;
  gap: 70px;
  padding: 16px 0;
  animation: tickerMove 28s linear infinite;
}

.ticker-move span {
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 500;
}

@keyframes tickerMove {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =========================================
   GENERAL SECTIONS
========================================= */

.services-section,
.practitioners-slider-section,
.consultation-section,
.insurance-section,
.cta-section,
.simple-section {
  padding: 100px 0;
}

.services-section h2,
.practitioners-slider-section h2,
.consultation-section h2,
.insurance-section h2,
.cta-section h2,
.simple-section h2 {
  text-align: center;
  font-size: 52px;
  color: #2f2f2f;
  margin-bottom: 20px;
}

.simple-section p {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  color: #666666;
  font-size: 18px;
  line-height: 1.9;
}

.alt-section {
  background-color: #fffdfb;
}

.section-label {
  display: inline-block;
  color: #C89B52;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

/* =========================================
   SERVICES
========================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(180deg, #fffdfb, #f8f1ea);
  border: 1px solid #ead9bf;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  transition: 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #C89B52;
  box-shadow: 0 24px 50px rgba(0,0,0,0.12);
}

.service-card h3 {
  color: #9c7a45;
  font-size: 24px;
  margin-bottom: 16px;
}

.service-card p {
  color: #666666;
  font-size: 17px;
  line-height: 1.9;
}

.aesthetic-bg {
  background-color: #f8f1eb;
}

/* =========================================
   PRACTITIONERS SECTION
========================================= */

.practitioners-slider-section {
  background: linear-gradient(180deg, #f8f1eb 0%, #fffdfb 100%);
  overflow: hidden;
}

.practitioners-intro {
  max-width: 850px;
  margin: 0 auto 70px;
  text-align: center;
  color: #6a6a6a;
  font-size: 18px;
  line-height: 1.9;
}

/* =========================================
   SLIDER BLOCK
========================================= */

.slider-block {
  margin-bottom: 85px;
}

.slider-block:last-child {
  margin-bottom: 0;
}

.slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.slider-header h3 {
  font-size: 32px;
  color: #2f2f2f;
}

/* =========================================
   SLIDER BUTTONS
========================================= */

.slider-buttons {
  display: flex;
  gap: 12px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #d9b06c;
  background: #ffffff;
  color: #b88a42;
  font-size: 20px;
  cursor: pointer;
  transition: 0.35s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,0.07);
}

.slider-btn:hover {
  background: linear-gradient(135deg, #c89b52, #e4c48f);
  color: #ffffff;
  transform: translateY(-2px);
}

/* =========================================
   PRACTITIONER SLIDER
========================================= */

.practitioner-slider {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 12px 6px 30px;
  scrollbar-width: none;
}

.practitioner-slider::-webkit-scrollbar {
  display: none;
}

/* =========================================
   PRACTITIONER CARD
========================================= */

.practitioner-card {
  flex: 0 0 calc((100% - 56px) / 3);
  min-width: calc((100% - 56px) / 3);
  background: linear-gradient(180deg, #fffdfb 0%, #f8f1ea 100%);
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  border: 2px solid #e4c48f;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: 0.45s ease;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.practitioner-card:hover {
  transform: translateY(-12px);
  border-color: #c89b52;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}

/* =========================================
   PRACTITIONER IMAGE
========================================= */

.practitioner-image {
  position: relative;
  padding: 22px 22px 0;
  background: linear-gradient(180deg, #f7ede6 0%, #fffdfb 100%);
}

.practitioner-image::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  border-radius: 50px;
  background: linear-gradient(90deg, #d9b06c, #f3ddb2, #c89b52);
  z-index: 5;
}

.practitioner-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 28px;
  border: 2px solid #ecd7b0;
  background: #ffffff;
  transition: 0.45s ease;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.practitioner-card:hover .practitioner-image img {
  transform: scale(1.03);
}

/* =========================================
   PRACTITIONER CONTENT
========================================= */

.practitioner-content {
  padding: 28px 26px 36px;
  position: relative;
}

.practitioner-content::before {
  content: "";
  display: block;
  width: 90px;
  height: 2px;
  margin: 0 auto 22px;
  background: linear-gradient(90deg, transparent, #d3ad72, transparent);
}

.practitioner-role {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 40px;
  background: linear-gradient(180deg, #f8efe4, #fffdfb);
  border: 1px solid #ead1a6;
  color: #9c7a45;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.practitioner-content h4 {
  font-size: 28px;
  line-height: 1.3;
  color: #2d2d2d;
  margin-bottom: 14px;
  font-weight: 700;
}

.practitioner-content p {
  color: #6a6a6a;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.more-info-btn {
  padding: 14px 28px;
  border-radius: 40px;
  background: linear-gradient(135deg, #b88a42, #d7b377);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  box-shadow: 0 8px 20px rgba(184,138,66,0.28);
}

.more-info-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(184,138,66,0.38);
}

/* =========================================
   CONSULTATION
========================================= */

.consultation-section {
  background-color: #f8eee7;
  text-align: center;
}

.consultation-section p {
  max-width: 1000px;
  margin: 0 auto 35px;
  color: #666666;
  font-size: 18px;
  line-height: 1.9;
}

.consultation-section h3 {
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #777777;
  font-weight: 500;
  margin-bottom: 30px;
}

.consultation-btn {
  padding: 16px 38px;
  border-radius: 40px;
  background: linear-gradient(135deg, #b88a42, #d7b377);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

/* =========================================
   INSURANCE
========================================= */

.insurance-section {
  background-color: #f8f4ee;
}

.insurance-section p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #666666;
  font-size: 18px;
}

.insurance-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.insurance-list span {
  background-color: #ffffff;
  padding: 14px 24px;
  border-radius: 40px;
  border: 1px solid #e2d4bd;
  color: #5a4a35;
  font-weight: bold;
}

/* =========================================
   CTA
========================================= */

.cta-section {
  background-color: #2f2f2f;
  text-align: center;
}

.cta-section h2,
.cta-section p {
  color: #ffffff;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 35px;
  font-size: 18px;
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  background-color: #1f1f1f;
  color: #ffffff;
  text-align: center;
  padding: 25px 0;
  font-size: 14px;
}

/* =========================================
   LOCATION PAGE
========================================= */

.location-hero {
  padding: 110px 0 70px;
  text-align: center;
  background: linear-gradient(180deg, #f8eee7 0%, #fffdfb 100%);
}

.location-hero h1 {
  font-size: 56px;
  color: #2f2f2f;
  margin-bottom: 18px;
}

.location-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 19px;
  color: #666666;
  line-height: 1.8;
}

.location-page {
  padding: 70px 0 110px;
  background-color: #fffdfb;
}

.location-wrapper {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: stretch;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-card {
  background: linear-gradient(180deg, #fffdfb, #f8f1ea);
  border: 1px solid #ead9bf;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

.location-card h3 {
  font-size: 24px;
  color: #9c7a45;
  margin-bottom: 12px;
}

.location-card p {
  color: #666666;
  font-size: 17px;
  line-height: 1.8;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(135deg, #b88a42, #d7b377);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 40px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(184,138,66,0.28);
  transition: 0.35s ease;
}

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

.location-map {
  min-height: 620px;
  border-radius: 34px;
  overflow: hidden;
  border: 2px solid #ead9bf;
  box-shadow: 0 15px 45px rgba(0,0,0,0.10);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .header-container {
    height: 82px;
    position: relative;
  }

  .logo-link img {
    height: 58px;
  }

  .logo-title {
    font-size: 24px;
  }

  .logo-subtitle {
    font-size: 10px;
  }

  .hamburger {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #eeeeee;
    display: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 15px 0;
  }

  .main-nav li {
    width: 100%;
    text-align: center;
  }

  .main-nav a {
    display: block;
    padding: 15px;
  }

  .hero {
    height: 620px;
    background-position: center center;
  }

  .hero-content h1 {
    font-size: 54px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .practitioner-card {
    flex-basis: calc((100% - 28px) / 2);
    min-width: calc((100% - 28px) / 2);
  }

  .practitioner-image img {
    height: 390px;
  }

  .location-wrapper {
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 480px;
  }

  .location-hero h1 {
    font-size: 42px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .logo-link {
    gap: 8px;
  }

  .logo-link img {
    height: 48px;
  }

  .logo-title {
    font-size: 20px;
  }

  .logo-subtitle {
    font-size: 8px;
    letter-spacing: 0.5px;
  }

  .hero {
    height: 540px;
    background-position: center center;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.7;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-section,
  .practitioners-slider-section,
  .consultation-section,
  .insurance-section,
  .cta-section,
  .simple-section {
    padding: 70px 0;
  }

  .services-section h2,
  .practitioners-slider-section h2,
  .consultation-section h2,
  .insurance-section h2,
  .cta-section h2,
  .simple-section h2 {
    font-size: 36px;
  }

  .slider-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .slider-header h3 {
    font-size: 24px;
  }

  .practitioner-card {
    flex-basis: 88%;
    min-width: 88%;
  }

  .practitioner-image {
    padding: 18px 18px 0;
  }

  .practitioner-image img {
    height: 360px;
    border-radius: 24px;
  }

  .practitioner-content {
    padding: 24px 20px 30px;
  }

  .practitioner-content h4 {
    font-size: 24px;
  }

  .practitioner-content p {
    font-size: 15px;
  }

  .more-info-btn {
    width: 100%;
  }

  .location-hero {
    padding: 80px 0 50px;
  }

  .location-hero h1 {
    font-size: 34px;
  }

  .location-page {
    padding: 50px 0 80px;
  }

  .location-card {
    padding: 26px;
  }

  .location-map {
    min-height: 400px;
  }
}
