/* ============================================================
   Harmony Acupuncture & Wellness Spa — site-wide stylesheet
   Edit design tokens (colors, radius) in the :root block below.
   Section order:
     1. Reset & tokens
     2. Base elements (body, html)
     3. Layout primitives (nav, footer, sections)
     4. Components (buttons, cards, forms)
     5. Page-specific (home, page-header, cta-block)
     6. Animations
     7. Responsive overrides
   ============================================================ */

/* ---- 1. RESET & DESIGN TOKENS -------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal: #3a8c7e;
  --teal-light: #e8f4f2;
  --teal-mid: #b2d8d2;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f0f2f4;
  --gray-200: #e2e6ea;
  --gray-400: #9aa3ae;
  --gray-600: #5a6472;
  --gray-800: #2c333c;
  --gray-900: #161b22;
  --radius: 8px;
}

/* ---- 2. BASE ELEMENTS ---------------------------------------- */
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--gray-800);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- 3. NAV --------------------------------------------------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 5rem;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gray-900);
  text-decoration: none;
}

.nav-logo span { color: var(--teal); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--gray-600);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--teal); }
.nav-links a.active { color: var(--teal); font-weight: 500; }

.nav-actions { display: flex; align-items: center; gap: 0.9rem; }

.nav-cta {
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--teal);
  background: transparent;
  border: 1px solid var(--teal-mid);
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { border-color: var(--teal); color: var(--teal); }

.nav-book {
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--white);
  background: var(--teal);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-book:hover { background: var(--gray-900); }

/* ---- 3. SECTION & TYPOGRAPHY HELPERS ------------------------- */
section { padding: 6rem 5rem; }

.eyebrow {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.section-title em { font-style: italic; color: var(--teal); }

/* ---- 4. BUTTONS ---------------------------------------------- */
.btn-primary {
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--white);
  background: var(--teal);
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover { background: var(--gray-900); }

.btn-outline {
  font-size: 0.85rem;
  font-weight: 400;
  text-decoration: none;
  color: var(--gray-800);
  background: transparent;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: border-color 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

/* ---- 5. HERO (homepage only) --------------------------------- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: 72px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 5rem;
  background: var(--white);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  width: fit-content;
}

.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: 4.2rem;
  font-weight: 400;
  line-height: 1.08;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title em { font-style: italic; color: var(--teal); }

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-600);
  max-width: 420px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
}

.hero-trust { display: flex; align-items: center; gap: 1rem; }
.hero-trust-avatars { display: flex; }

.hero-trust-avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--teal-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--teal);
  margin-left: -8px;
}

.hero-trust-avatars span:first-child { margin-left: 0; }
.hero-trust-text { font-size: 0.8rem; color: var(--gray-600); line-height: 1.4; }
.hero-trust-text strong { display: block; color: var(--gray-800); font-weight: 500; }

.hero-right {
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid var(--teal-mid);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.hero-right::after {
  content: '';
  position: absolute;
  width: 330px; height: 330px;
  border-radius: 50%;
  border: 1px solid var(--teal-mid);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.hero-graphic {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.hero-card-float {
  background: var(--white);
  border-radius: 12px;
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 4px 20px rgba(58,140,126,0.1);
  min-width: 215px;
}

.hero-card-icon {
  width: 38px; height: 38px;
  background: var(--teal-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.hero-card-icon svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 1.5; }
.hero-card-label { font-size: 0.68rem; color: var(--gray-400); margin-bottom: 0.1rem; }
.hero-card-val { font-size: 0.9rem; font-weight: 500; color: var(--gray-900); }

.member-card {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 2.2rem 2rem;
  max-width: 340px;
  box-shadow: 0 12px 40px rgba(58,140,126,0.16);
  text-align: left;
  overflow: hidden;
}

.promo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: -2.2rem -2rem 1.5rem;
  padding: 0.7rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  background: linear-gradient(135deg, #f6a623, #ec6b3f);
}

.promo-badge svg {
  width: 15px; height: 15px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.member-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.member-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.member-sub {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.member-perks {
  list-style: none;
  margin-bottom: 1.6rem;
}

.member-perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--gray-800);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.member-perks li strong { color: var(--teal); font-weight: 600; }

.member-perks svg {
  width: 16px; height: 16px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.member-note {
  font-size: 0.72rem;
  color: var(--gray-400);
  text-align: center;
  line-height: 1.5;
  margin-top: 0.9rem;
}

/* ---- 5. STATS STRIP ------------------------------------------ */
.stats-strip {
  background: var(--gray-900);
  display: flex;
  justify-content: space-around;
  padding: 2.2rem 5rem;
}

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

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-num span { color: var(--teal-mid); }

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* ---- 5. SERVICES --------------------------------------------- */
.services { background: var(--gray-50); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
  cursor: pointer;
}

.service-card:hover { border-color: var(--teal); transform: translateY(-4px); }

.service-icon {
  width: 44px; height: 44px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}

.service-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 1.5; }

.service-num {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--gray-100);
  line-height: 1;
}

.service-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--gray-900);
  margin-bottom: 0.6rem;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-price {
  font-size: 0.82rem;
  color: var(--gray-900);
  line-height: 1.6;
  padding-top: 0.9rem;
  margin-bottom: 1.2rem;
  border-top: 1px solid var(--gray-200);
}

.service-price strong {
  font-weight: 600;
  color: var(--teal);
}

.service-insurance {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--teal-light);
  border: 1px solid var(--teal-mid);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  margin-bottom: 1.2rem;
}

.service-insurance strong { font-weight: 700; color: var(--teal); }

.service-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}

.service-card:hover .service-link { gap: 0.6rem; }

/* Expanded detail (Acupuncture) */
.acu-detail {
  margin-bottom: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--gray-200);
}

.acu-block {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 0.9rem;
}

.acu-label {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem;
  color: var(--gray-900);
  margin-bottom: 0.2rem;
}

.acu-conditions {
  list-style: none;
  margin-top: -0.3rem;
}

.acu-conditions li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.82rem;
  color: var(--gray-800);
  line-height: 1.6;
  margin-bottom: 0.3rem;
}

.acu-conditions li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

/* Massage styles nested under a main service */
.massage-styles {
  margin: 0.4rem 0 0.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--gray-200);
}

.styles-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.1rem;
}

.style-list { list-style: none; }

.style-item {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.style-item:last-child { border-bottom: none; padding-bottom: 0; }
.style-item:first-child { padding-top: 0; }

.style-name {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 0.3rem;
}

.style-desc {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Add-ons nested under a main service */
.addons {
  margin: 0.4rem 0 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--gray-200);
}

.addons-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.1rem;
}

.addon-list { list-style: none; }

.addon-item {
  display: flex;
  gap: 0.85rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.addon-item:last-child { border-bottom: none; padding-bottom: 0; }
.addon-item:first-child { padding-top: 0; }

.addon-icon {
  width: 36px; height: 36px;
  background: var(--teal-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.addon-icon svg { width: 17px; height: 17px; stroke: var(--teal); fill: none; stroke-width: 1.5; }

.addon-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.addon-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--gray-900);
}

.addon-price {
  font-size: 0.76rem;
  color: var(--gray-600);
  white-space: nowrap;
}

.addon-price strong { color: var(--teal); font-weight: 600; }

.addon-desc {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ---- 5. ABOUT ------------------------------------------------ */
.about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual { position: relative; height: 500px; }

.about-block-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 80%;
  background: var(--teal-light);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.about-block-card {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.75rem;
}

.about-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-900);
  line-height: 1.5;
  margin-bottom: 0.7rem;
}

.about-quote-attr {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.about-content p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.about-feature { display: flex; align-items: flex-start; gap: 0.6rem; }

.about-feature-check {
  width: 18px; height: 18px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature-check svg { width: 10px; height: 10px; stroke: var(--teal); fill: none; stroke-width: 2.5; }
.about-feature-text { font-size: 0.875rem; color: var(--gray-600); }

/* ---- 5. REVIEWS / TESTIMONIALS ------------------------------- */
.reviews { background: var(--gray-50); }

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

.reviews-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonials { background: var(--gray-50); }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem 1.75rem;
}

.testimonial-stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 0.05em; margin-bottom: 1rem; }

.testimonial-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gray-800);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.testimonial-divider { height: 1px; background: var(--gray-200); margin-bottom: 1rem; }
.testimonial-author { font-size: 0.8rem; font-weight: 500; color: var(--gray-600); }

/* ---- 5. PAGE HEADER (sub-pages) ------------------------------ */
.page-header {
  background: var(--teal-light);
  padding: 9rem 5rem 5rem;
  text-align: center;
}

.page-header .eyebrow { justify-content: center; }
.page-header .section-title { max-width: 720px; margin-left: auto; margin-right: auto; }

.page-header p {
  max-width: 620px;
  margin: 1rem auto 0;
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ---- 5. CTA BLOCK -------------------------------------------- */
.cta-block {
  background: var(--white);
  text-align: center;
}

.cta-block .section-title { max-width: 640px; margin-left: auto; margin-right: auto; }

.cta-block p {
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.85;
}

/* ---- 5. GALLERY ---------------------------------------------- */
.gallery { background: var(--white); }

.gallery-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.gallery-header .eyebrow { justify-content: center; }

.gallery-sub {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-top: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 1rem;
}

.gallery-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--teal-light);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

/* ---- 5. BOOKING & FORM --------------------------------------- */
.booking {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.booking-info { max-width: 720px; }

.booking-info .contact-list { align-items: flex-start; text-align: left; }

.booking-info p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.85; margin-bottom: 2rem; }

.contact-list { display: flex; flex-direction: column; gap: 0.9rem; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.1rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.contact-item-icon {
  width: 36px; height: 36px;
  background: var(--teal-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg { width: 16px; height: 16px; stroke: var(--teal); fill: none; stroke-width: 1.5; }
.contact-item-label { font-size: 0.68rem; color: var(--gray-400); margin-bottom: 0.1rem; letter-spacing: 0.05em; text-transform: uppercase; }
.contact-item-val { font-size: 0.88rem; font-weight: 400; color: var(--gray-800); }

.booking-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-title { font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: var(--gray-900); margin-bottom: 0.3rem; }
.form-subtitle { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select {
  width: 100%;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--gray-800);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus { border-color: var(--teal); background: var(--white); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}

.form-submit:hover { background: var(--gray-900); }

/* ---- 3. FOOTER ----------------------------------------------- */
footer { background: var(--gray-900); padding: 4rem 5rem 2rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: var(--white); margin-bottom: 0.75rem; }
.footer-logo span { color: var(--teal-mid); }
.footer-desc { font-size: 0.85rem; color: var(--gray-400); line-height: 1.75; max-width: 220px; }
.footer-col-title { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 1rem; font-weight: 500; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal-mid); }
.footer-contact-item { display: flex; gap: 0.7rem; margin-bottom: 0.65rem; font-size: 0.875rem; color: rgba(255,255,255,0.45); align-items: flex-start; }
.footer-contact-icon { color: var(--teal-mid); flex-shrink: 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-socials { display: flex; gap: 0.75rem; }

.footer-social {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}

.footer-social:hover { border-color: var(--teal-mid); color: var(--teal-mid); }

/* ---- 6. ANIMATIONS ------------------------------------------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fade-up 0.8s ease both; }
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }

/* ---- 7. RESPONSIVE ------------------------------------------- */
@media (max-width: 1100px) {
  section { padding: 5rem 3rem; }
  nav { padding: 1.1rem 2rem; }
  .stats-strip { padding: 2rem 3rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 5rem 3rem 3rem; }
  .hero-right { min-height: 360px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .about, .booking { grid-template-columns: 1fr; gap: 3rem; }
  .reviews-grid,
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .page-header { padding: 8rem 3rem 4rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  section { padding: 4rem 1.5rem; }
  nav { padding: 0.8rem 1.5rem; flex-wrap: wrap; justify-content: center; gap: 0.5rem 0.8rem; }
  .nav-links { display: none; }
  .nav-logo { width: 100%; text-align: center; }
  .nav-actions { width: 100%; justify-content: center; }
  .nav-cta, .nav-book { font-size: 0.75rem; padding: 0.5rem 1rem; }
  footer { padding: 3rem 1.5rem 1.5rem; }
  .stats-strip { padding: 2rem 1.5rem; flex-wrap: wrap; gap: 1.5rem; }
  .hero-left { padding: 4rem 1.5rem 2.5rem; }
  .hero-title { font-size: 2.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .reviews-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .page-header { padding: 7rem 1.5rem 3rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
  .section-title { font-size: 2.2rem; }
  .form-row { grid-template-columns: 1fr; }
}
