/* =============================================
   ELEVIA CLINIC — styles.css
   Cream + Forest Green | Cormorant + DM Sans
   ============================================= */

:root {
  --green-deep:   #2D4A3E;
  --green-mid:    #3D6456;
  --green-light:  #7A9E7E;
  --green-pale:   #C8DDD0;
  --cream:        #FAF7F2;
  --cream-dark:   #F2EDE4;
  --cream-border: #E8E1D5;
  --text-dark:    #1A1A18;
  --text-mid:     #4A4A44;
  --text-light:   #8A8A82;
  --white:        #FFFFFF;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 12px rgba(45,74,62,.06);
  --shadow-md:  0 8px 32px rgba(45,74,62,.10);
  --shadow-lg:  0 20px 60px rgba(45,74,62,.14);

  --transition: 0.35s cubic-bezier(.4,0,.2,1);

  --container:  1200px;
  --nav-h:      80px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ---- UTILITIES ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 16px;
}

.section-header {
  max-width: 640px;
  margin-bottom: 64px;
}
.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header.light .section-eyebrow { color: var(--green-pale); }
.section-header.light h2 { color: var(--white); }
.section-desc {
  font-size: 16px;
  color: var(--text-mid);
  margin-top: 16px;
  line-height: 1.75;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
}
h1 { font-size: clamp(52px, 7vw, 92px); }
h2 { font-size: clamp(36px, 4.5vw, 58px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 500; }
h4 { font-size: clamp(18px, 2vw, 22px); }
em { font-style: italic; color: var(--green-mid); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-deep);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green-deep);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 100px;
  border: 1.5px solid var(--green-deep);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-secondary:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ---- STAR DECO ---- */
.star-deco {
  font-size: 28px;
  color: var(--green-light);
  position: absolute;
  line-height: 1;
  animation: starSpin 12s linear infinite;
}
@keyframes starSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ---- ANIMATIONS ---- */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* =======================================
   NAVBAR
   ======================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(250,247,242,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--cream-border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-left a, .nav-right a:not(.nav-cta) {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  transition: color var(--transition);
}
.nav-left a::after, .nav-right a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--green-deep);
  transition: width var(--transition);
}
.nav-left a:hover::after, .nav-right a:not(.nav-cta):hover::after { width: 100%; }
.nav-left a:hover, .nav-right a:not(.nav-cta):hover { color: var(--green-deep); }
.nav-cta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--green-deep);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--green-mid); transform: translateY(-1px); }
.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-logo img { height: 40px; width: auto; }
.logo-text-fallback {
  display: none;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: .04em;
}
.footer-logo-text { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* ---- MOBILE DRAWER ---- */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,26,24,.4);
  z-index: 1100;
  opacity: 0;
  transition: opacity var(--transition);
}
.drawer-overlay.open { display: block; opacity: 1; }
.mobile-drawer {
  position: fixed;
  top: 0; right: -320px;
  width: 300px; height: 100%;
  background: var(--cream);
  z-index: 1200;
  padding: 80px 40px 40px;
  transition: right var(--transition);
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open { right: 0; }
.drawer-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 20px;
  color: var(--text-mid);
  transition: color var(--transition);
}
.drawer-close:hover { color: var(--green-deep); }
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 20px;
}
.drawer-nav a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-dark);
  transition: color var(--transition);
}
.drawer-nav a:hover { color: var(--green-deep); }
.drawer-cta {
  margin-top: 16px;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--green-deep);
  color: var(--white) !important;
  padding: 14px 28px;
  border-radius: 100px;
  text-align: center;
}

/* =======================================
   HERO
   ======================================= */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse at center, var(--green-pale) 0%, transparent 70%);
  opacity: .35;
  pointer-events: none;
}
.hero-content {
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 40px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 24px;
}
.hero-headline {
  color: var(--text-dark);
  margin-bottom: 28px;
  animation: heroFadeUp .9s ease both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: heroFadeUp 1s .15s ease both;
}
.hero-content .btn-primary {
  animation: heroFadeUp 1s .3s ease both;
}
.hero-image-wrap {
  position: relative;
  animation: heroFadeUp 1.1s .2s ease both;
}
.hero-img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.hero-img-frame:hover img { transform: scale(1.04); }
.star-hero {
  top: -30px; left: -30px;
  font-size: 44px;
  opacity: .6;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-light);
  animation: fadeIn 1.5s 1s both;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--text-light), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: .6; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* =======================================
   PILLARS
   ======================================= */
.pillars {
  padding: 100px 0;
  background: var(--cream-dark);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  border: 1px solid var(--cream-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.pillar-icon {
  width: 64px; height: 64px;
  margin-bottom: 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-icon img { width: 48px; height: 48px; object-fit: contain; }
.pillar-card h3 {
  margin-bottom: 16px;
  color: var(--text-dark);
}
.pillar-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* =======================================
   ABOUT
   ======================================= */
.about {
  padding: 120px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img-frame {
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 0;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}
.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.star-about {
  bottom: -20px; right: -20px;
  font-size: 52px;
  opacity: .5;
}
.about-text h2 { margin-bottom: 28px; }
.about-text p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-text .btn-primary { margin-top: 16px; }

/* =======================================
   SERVICES
   ======================================= */
.services {
  padding: 120px 0;
  background: var(--cream-dark);
}
.services-list {
  border-top: 1px solid var(--cream-border);
}
.service-item {
  border-bottom: 1px solid var(--cream-border);
}
.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  cursor: pointer;
  gap: 24px;
  transition: color var(--transition);
  outline: none;
}
.service-header:hover h3, .service-item.open .service-header h3 { color: var(--green-mid); }
.service-header h3 { transition: color var(--transition); font-size: clamp(18px, 2.2vw, 24px); }
.service-toggle {
  font-size: 28px;
  font-weight: 300;
  color: var(--green-light);
  transition: transform var(--transition), color var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.service-item.open .service-toggle {
  transform: rotate(45deg);
  color: var(--green-deep);
}
.service-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.4,0,.2,1), padding .5s ease;
}
.service-item.open .service-body { max-height: 400px; }
.service-body p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  padding-bottom: 28px;
  max-width: 760px;
}
.service-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--green-deep);
  text-transform: uppercase;
  padding-bottom: 32px;
  transition: letter-spacing var(--transition);
}
.service-link:hover { letter-spacing: .12em; }

/* =======================================
   TESTIMONIALS
   ======================================= */
.testimonials {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.testimonials-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.testimonials-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.28) saturate(.6);
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials-carousel { max-width: 800px; }
.testimonial-track {
  overflow: hidden;
}
.testimonial-slide {
  display: none;
  animation: tFadeIn .5s ease both;
}
.testimonial-slide.active { display: block; }
@keyframes tFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: .6;
  color: var(--green-pale);
  margin-bottom: 24px;
  opacity: .6;
}
.testimonial-slide p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 32px;
}
.testimonial-author {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-pale);
}
.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
}
.t-prev, .t-next {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.t-prev:hover, .t-next:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.7);
}
.t-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.t-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
}
.t-dot.active {
  background: var(--white);
  transform: scale(1.4);
}

/* =======================================
   BOOKING
   ======================================= */
.booking {
  padding: 120px 0;
  background: var(--cream);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.booking-text { position: sticky; top: calc(var(--nav-h) + 40px); }
.booking-text h2 { margin-bottom: 20px; }
.booking-text > p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 48px;
}
.booking-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.booking-img-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.star-booking { bottom: -16px; right: -16px; font-size: 36px; opacity: .5; }

/* FORM */
.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--cream-border);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%237A9E7E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  background: var(--white);
}
.form-group input.error,
.form-group select.error { border-color: #C0392B; }
.form-success, .form-error {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
}
.form-success {
  background: #EAF4EC;
  color: #2D6A4F;
  border: 1px solid #B7DFC4;
}
.form-error {
  background: #FDEDEC;
  color: #C0392B;
  border: 1px solid #F1B2B2;
}

/* =======================================
   STATS
   ======================================= */
.stats {
  padding: 120px 0;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  top: -40%; left: -20%;
  width: 70%; height: 140%;
  background: radial-gradient(ellipse, rgba(122,158,126,.2) 0%, transparent 65%);
  pointer-events: none;
}
.stats .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.stats-image {
  position: relative;
}
.stats-image img {
  border-radius: var(--radius-xl);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.star-stats { top: -20px; left: -20px; font-size: 44px; color: var(--green-pale); opacity: .5; }
.stats-content .section-eyebrow { color: var(--green-pale); }
.stats-content h2 { color: var(--white); margin-bottom: 52px; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
  margin-bottom: 52px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--green-pale);
  letter-spacing: .04em;
  line-height: 1.4;
}

/* =======================================
   BLOG PREVIEW
   ======================================= */
.blog-preview {
  padding: 120px 0;
  background: var(--cream-dark);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 52px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.blog-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-light);
  background: var(--cream-dark);
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
}
.blog-card-body h4 {
  color: var(--text-dark);
  line-height: 1.35;
  font-weight: 500;
  font-size: clamp(16px, 1.6vw, 19px);
  flex: 1;
}
.blog-read {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-top: auto;
  transition: letter-spacing var(--transition);
}
.blog-card:hover .blog-read { letter-spacing: .14em; }
.blog-cta { text-align: center; }

/* =======================================
   FOOTER
   ======================================= */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .footer-logo img { height: 36px; width: auto; margin-bottom: 20px; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 28px;
}
.footer-socials {
  display: flex;
  gap: 14px;
}
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.footer-socials a:hover {
  border-color: var(--green-pale);
  color: var(--white);
  background: rgba(122,158,126,.2);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-appt-btn {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--green-deep);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 100px;
  transition: background var(--transition) !important;
}
.footer-appt-btn:hover { background: var(--green-mid) !important; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,.35);
}

/* =======================================
   INNER PAGES (Services, Blog, Contact)
   ======================================= */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--cream-dark);
  text-align: center;
}
.page-hero h1 { margin-bottom: 20px; }
.page-hero p {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Services Page */
.services-page { padding: 80px 0 120px; background: var(--cream); }
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--cream-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 16px; }
.service-card p { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 28px; }
.service-card .btn-primary { padding: 12px 28px; font-size: 12px; }

/* Blog Page */
.blog-page { padding: 80px 0 120px; background: var(--cream); }
.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Contact Page */
.contact-page { padding: 80px 0 120px; background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info > p { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-bottom: 48px; }
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 6px;
}
.contact-item p, .contact-item a {
  font-size: 15px;
  color: var(--text-mid);
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--green-deep); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--cream-border);
  box-shadow: var(--shadow-sm);
}

/* =======================================
   RESPONSIVE
   ======================================= */
@media (max-width: 1100px) {
  .hero-content { gap: 48px; }
  .about-grid { gap: 60px; }
  .stats .container { gap: 48px; }
  .booking-grid { gap: 48px; }
  .footer-top { gap: 48px; }
}

@media (max-width: 900px) {
  :root { --nav-h: 68px; }
  .container { padding: 0 28px; }

  /* Nav */
  .nav-left, .nav-right { display: none; }
  .nav-logo { position: static; transform: none; margin: 0 auto 0 0; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px 28px 60px;
    text-align: center;
  }
  .hero-text { order: 1; }
  .hero-image-wrap { order: 2; max-width: 420px; margin: 0 auto; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-content .btn-primary { margin: 0 auto; }

  /* Pillars */
  .pillars { padding: 72px 0; }
  .pillars-grid { grid-template-columns: 1fr; gap: 16px; }

  /* About */
  .about { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { max-width: 420px; margin: 0 auto; }

  /* Services */
  .services { padding: 80px 0; }

  /* Testimonials */
  .testimonials { padding: 80px 0; }

  /* Booking */
  .booking { padding: 80px 0; }
  .booking-grid { grid-template-columns: 1fr; gap: 48px; }
  .booking-text { position: static; }
  .booking-img-wrap { display: none; }
  .booking-form-wrap { padding: 32px 24px; }

  /* Stats */
  .stats { padding: 80px 0; }
  .stats .container { grid-template-columns: 1fr; gap: 48px; }
  .stats-image { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* Blog */
  .blog-preview { padding: 80px 0; }
  .blog-grid { grid-template-columns: 1fr; gap: 20px; max-width: 480px; }
  .blog-page-grid { grid-template-columns: 1fr; gap: 20px; max-width: 480px; }

  /* Footer */
  .footer { padding: 60px 0 0; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Pages */
  .services-page-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }

  .hero-content { padding: 32px 20px 48px; }
  .pillar-card { padding: 32px 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-links { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 40px; }
}

@media (max-width: 400px) {
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .booking-form-wrap { padding: 24px 16px; }
}
