/* ============================================
   HHAT Clinic - Luxury Retreat #7 + Full-Screen Sections #8
   Domain: hhatclinic.website
   Generated: 2026-02-13
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --primary: #2C3E50;
  --secondary: #8B7355;
  --accent: #D4AF37;
  --text: #1A1A1A;
  --text-light: #555555;
  --bg-main: #FAF8F5;
  --bg-white: #FFFFFF;
  --bg-dark: #1A1A2E;
  --gold-gradient: linear-gradient(135deg, #D4AF37, #F0D78C, #D4AF37);
  --navy-gradient: linear-gradient(180deg, rgba(44,62,80,0.85), rgba(26,26,46,0.92));
  --shadow-elegant: 0 8px 32px rgba(44,62,80,0.12);
  --shadow-card: 0 4px 16px rgba(44,62,80,0.08);
  --shadow-hover: 0 12px 40px rgba(44,62,80,0.18);
  --radius: 4px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Raleway', Helvetica, Arial, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: 3.2rem; letter-spacing: -0.5px; }
h2 { font-size: 2.4rem; letter-spacing: -0.3px; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
  color: var(--text);
}

.text-accent { color: var(--accent); }
.text-light { color: var(--text-light); }

/* --- Gold Decorative Line --- */
.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 1rem 0;
}

.gold-line--center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Skip Navigation --- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--accent);
  color: var(--bg-dark);
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  font-weight: 600;
}

.skip-nav:focus {
  top: 0;
}

/* ============================================
   HEADER - Transparent overlay style
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.6rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo .logo-accent {
  color: var(--accent);
}

/* --- Navigation --- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.5rem 0;
  position: relative;
  text-decoration: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #FFFFFF;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-phone {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.header-phone:hover {
  color: #F0D78C;
}

.header-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-dark);
  padding: 0.6rem 1.4rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.header-cta:hover {
  background: #F0D78C;
  color: var(--bg-dark);
  transform: translateY(-1px);
}

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: #FFFFFF;
  transition: var(--transition);
}

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

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

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

/* ============================================
   FULL-SCREEN SECTIONS
   ============================================ */
.fs-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}

.fs-section--dark {
  background-color: var(--bg-dark);
  color: #FFFFFF;
}

.fs-section--dark h2,
.fs-section--dark h3,
.fs-section--dark h4 {
  color: #FFFFFF;
}

.fs-section--dark p {
  color: rgba(255,255,255,0.8);
}

.fs-section--light {
  background-color: var(--bg-main);
}

.fs-section--white {
  background-color: var(--bg-white);
}

/* --- Section with Background Image --- */
.fs-section--bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fs-section--bg .section-overlay {
  position: absolute;
  inset: 0;
  background: var(--navy-gradient);
  z-index: 1;
}

.fs-section--bg .section-content {
  position: relative;
  z-index: 2;
}

/* --- Section Content Container --- */
.section-content {
  max-width: 1200px;
  width: 100%;
  padding: 6rem 2rem;
  margin: 0 auto;
}

.section-content--narrow {
  max-width: 900px;
}

.section-content--wide {
  max-width: 1400px;
}

.text-center { text-align: center; }
.text-white { color: #FFFFFF; }
.text-white p { color: rgba(255,255,255,0.85); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  scroll-snap-align: start;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,46,0.6) 0%, rgba(44,62,80,0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero h1 strong {
  font-weight: 700;
  color: var(--accent);
}

.hero .hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-phone {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 600;
  display: block;
  margin-top: 1rem;
  text-decoration: none;
}

.hero-phone:hover {
  color: #F0D78C;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg-dark);
}

.btn--primary:hover {
  background: #F0D78C;
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.3);
}

.btn--outline {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid var(--accent);
}

.btn--outline:hover {
  background: var(--accent);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.btn--secondary {
  background: var(--primary);
  color: #FFFFFF;
}

.btn--secondary:hover {
  background: #3d566e;
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--bg-dark);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn--dark:hover {
  background: var(--accent);
  color: var(--bg-dark);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem;
  background: rgba(26,26,46,0.4);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(212,175,55,0.2);
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.trust-bar__icon {
  color: var(--accent);
  font-size: 1.2rem;
}

/* ============================================
   CARDS
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card-grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--bg-white);
  padding: 2.5rem;
  border: 1px solid rgba(139,115,85,0.15);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card:hover::before {
  transform: scaleX(1);
}

.card__icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.card--dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.15);
}

.card--dark h3 {
  color: #FFFFFF;
}

.card--dark p {
  color: rgba(255,255,255,0.7);
}

.card--dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,175,55,0.4);
}

/* --- Image Card --- */
.card--image {
  padding: 0;
}

.card--image .card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card--image .card__body {
  padding: 1.5rem 2rem;
}

/* ============================================
   WHY CHOOSE US / STATS
   ============================================ */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.stat-item {
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-item__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.5rem;
  color: rgba(255,255,255,0.7);
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-preview__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-elegant);
}

.about-preview__text h2 {
  margin-bottom: 0.5rem;
}

.about-preview__text p {
  margin-bottom: 1.5rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.15);
  padding: 2.5rem;
  position: relative;
}

.testimonial__quote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial__quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--accent);
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.4;
  font-family: Georgia, serif;
}

.testimonial__author {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial__program {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  padding: 4rem 2rem;
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-phone {
  display: block;
  color: var(--accent);
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin: 1.5rem 0;
  text-decoration: none;
}

.cta-phone:hover {
  color: #F0D78C;
}

/* ============================================
   AMENITIES GALLERY
   ============================================ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.amenity-item {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.amenity-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.amenity-item:hover img {
  transform: scale(1.05);
}

.amenity-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.amenity-item__title {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

/* ============================================
   DOT NAVIGATION (Full-Screen Sections)
   ============================================ */
.dot-nav {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dot-nav__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(212,175,55,0.4);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.dot-nav__dot:hover,
.dot-nav__dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.3);
}

.dot-nav__dot .dot-label {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-size: 0.75rem;
  color: #FFFFFF;
  background: rgba(26,26,46,0.9);
  padding: 0.3rem 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.dot-nav__dot:hover .dot-label {
  opacity: 1;
}

/* ============================================
   PROGRESS INDICATOR
   ============================================ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gold-gradient);
  z-index: 1100;
  transition: width 0.3s ease;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--secondary);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs span {
  margin: 0 0.4rem;
  color: var(--text-light);
}

/* ============================================
   INNER PAGE HERO (smaller)
   ============================================ */
.inner-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.inner-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,46,0.7) 0%, rgba(44,62,80,0.9) 100%);
  z-index: 1;
}

.inner-hero .hero-content {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
}

.inner-hero h1 {
  color: #FFFFFF;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.inner-hero .hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
}

/* ============================================
   PAGE CONTENT SECTIONS
   ============================================ */
.page-section {
  padding: 5rem 2rem;
}

.page-section--alt {
  background: var(--bg-white);
}

.page-section .section-content {
  padding: 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
}

.section-header--center {
  text-align: center;
}

.section-header--center p {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   TIMELINE / STEPS
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.step {
  text-align: center;
  position: relative;
  padding: 2rem 1.5rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--gold-gradient);
  color: var(--bg-dark);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.step h4 {
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ============================================
   DAILY SCHEDULE
   ============================================ */
.schedule {
  max-width: 700px;
  margin: 0 auto;
}

.schedule-item {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(139,115,85,0.15);
}

.schedule-item__time {
  min-width: 120px;
  font-weight: 600;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.schedule-item__activity {
  color: var(--text);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(139,115,85,0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question .faq-icon {
  font-size: 1.5rem;
  color: var(--accent);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer__inner {
  padding: 0 0 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================
   INSURANCE GRID
   ============================================ */
.insurance-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.insurance-item {
  background: var(--bg-white);
  border: 1px solid rgba(139,115,85,0.15);
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  transition: var(--transition);
}

.insurance-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--bg-white);
  overflow: hidden;
  border: 1px solid rgba(139,115,85,0.1);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.blog-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card__body {
  padding: 1.5rem 2rem;
}

.blog-card__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.blog-card__meta {
  font-size: 0.8rem;
  color: var(--text-light);
}

.blog-card__link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-item__icon {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info-item h4 {
  margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ============================================
   MAP
   ============================================ */
.map-container {
  width: 100%;
  height: 400px;
  border: 1px solid rgba(139,115,85,0.15);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}

.footer-col h4 {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-col p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  text-decoration: none;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer-contact-item .icon {
  color: var(--accent);
  flex-shrink: 0;
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--bg-dark);
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 800;
  box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: #F0D78C;
  transform: translateY(-3px);
}

/* ============================================
   MODALITIES / LIST ITEMS
   ============================================ */
.modalities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.modality-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-white);
  border-left: 3px solid var(--accent);
}

.modality-item .check-icon {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============================================
   TWO COLUMN LAYOUT
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.two-col img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  box-shadow: var(--shadow-elegant);
}

/* ============================================
   TEAM CARDS
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  text-align: center;
  padding: 2rem;
}

.team-card__avatar {
  width: 100px;
  height: 100px;
  background: var(--gold-gradient);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--bg-dark);
  font-weight: 700;
}

.team-card h4 {
  margin-bottom: 0.25rem;
}

.team-card__title {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-card__credentials {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* ============================================
   PRIVACY / LEGAL PAGE
   ============================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.comparison-table th {
  background: var(--primary);
  color: #FFFFFF;
  padding: 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: left;
}

.comparison-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(139,115,85,0.15);
  font-size: 0.9rem;
}

.comparison-table tr:nth-child(even) td {
  background: rgba(250,248,245,0.5);
}

/* ============================================
   SUBSTANCES LIST
   ============================================ */
.substance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.substance-tag {
  background: var(--bg-white);
  border: 1px solid rgba(139,115,85,0.2);
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  color: var(--primary);
  transition: var(--transition);
}

.substance-tag:hover {
  border-color: var(--accent);
  background: rgba(212,175,55,0.05);
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  text-decoration: none;
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--accent);
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; scroll-snap-type: none; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width: 1024px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  .hero h1 { font-size: 2.8rem; }

  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { gap: 2rem; }
  .about-preview { gap: 2rem; }
  .contact-grid { gap: 2rem; }
  .dot-nav { display: none; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.4rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero .hero-subtitle { font-size: 1rem; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .header-phone { display: none; }

  .fs-section { min-height: auto; }
  .section-content { padding: 4rem 1.5rem; }

  .about-preview { grid-template-columns: 1fr; }
  .about-preview__img { height: 300px; }

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

  .card-grid--2,
  .card-grid--3,
  .card-grid--4 { grid-template-columns: 1fr; }

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

  .team-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .two-col--reverse { direction: ltr; }

  .stats-row { gap: 2rem; }
  .stat-item__number { font-size: 2.4rem; }

  .trust-bar { gap: 1.5rem; padding: 1.5rem; }
  .trust-bar__item { font-size: 0.8rem; }

  .cta-phone { font-size: 1.5rem; }

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

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; }
  .inner-hero h1 { font-size: 1.8rem; }
  .section-content { padding: 3rem 1rem; }
}
