/* ===========================
   MOTION & HEALTH — main.css
   =========================== */

:root {
  --sand: #f7f3ee;
  --cream: #faf7f2;
  --bark: #2c2419;
  --forest: #2d4a3e;
  --sage: #5a7a6a;
  --sage-light: #8aab98;
  --copper: #b5703a;
  --copper-light: #d4956a;
  --white: #ffffff;
  --gray-100: #f4f2ef;
  --gray-200: #e8e4de;
  --gray-400: #a89e90;
  --gray-600: #6b6258;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(44,36,25,0.08);
  --shadow-lg: 0 12px 48px rgba(44,36,25,0.14);
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--bark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

em { font-style: italic; color: var(--copper); }

/* ====================== TYPOGRAPHY ====================== */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 400; }
h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }
p { color: var(--gray-600); font-weight: 300; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper);
  border-bottom: 1px solid var(--copper-light);
  padding-bottom: 4px;
  margin-bottom: 1.2rem;
}
.section-label.light { color: var(--copper-light); border-color: rgba(212,149,106,.4); }

/* ====================== BUTTONS ====================== */
.btn-primary {
  display: inline-block;
  background: var(--forest);
  color: var(--white);
  padding: .85rem 2rem;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--bark); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  color: var(--white);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(255,255,255,.5);
  padding-bottom: 2px;
  transition: border-color var(--transition);
}
.btn-ghost:hover { border-color: white; }

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--forest);
  padding: .85rem 2rem;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }
.btn-full { width: 100%; text-align: center; }

/* ====================== NAVIGATION ====================== */
.nav-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .3s;
}
.nav-header.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.logo-m {
  background: var(--forest);
  color: white;
  width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-right: .3rem;
  border-radius: 2px;
}
.logo-text em { font-style: normal; color: var(--copper); }

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 400;
  color: var(--gray-600);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--copper);
  transform: scaleX(0); transform-origin: left;
  transition: transform .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--bark); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--copper);
  color: white;
  padding: .6rem 1.4rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background .2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--bark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--bark);
  transition: all .3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid var(--gray-200);
  gap: .8rem;
}
.mobile-menu a {
  font-size: 1rem;
  color: var(--bark);
  padding: .4rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu.open { display: flex; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ====================== HERO ====================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroScale 8s ease-out forwards;
}
@keyframes heroScale {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(44,36,25,.75) 0%, rgba(45,74,62,.55) 60%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1280px; width: 100%;
  margin: 0 auto;
  padding: 10rem 2rem 6rem;
  color: white;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper-light);
  border: 1px solid rgba(212,149,106,.4);
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeUp .8s ease both .2s;
}
.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeUp .8s ease both .4s;
}
.hero-title em { font-style: italic; color: var(--copper-light); }
.hero-sub {
  max-width: 520px;
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeUp .8s ease both .6s;
}
.hero-btns {
  display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap;
  animation: fadeUp .8s ease both .8s;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.6); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .5; } 50% { opacity: 1; }
}

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

/* ====================== STATS BAR ====================== */
.stats-bar {
  background: var(--forest);
  overflow: hidden;
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-item {
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  white-space: nowrap;
}
.stat-item strong { color: white; font-weight: 500; margin-right: .25rem; }
.stat-sep { color: rgba(255,255,255,.3); font-size: 1.2rem; }

/* ====================== INTRO SPLIT ====================== */
.intro-section {
  max-width: 1280px;
  margin: 6rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-img-wrap {
  position: relative;
  border-radius: 2px;
  overflow: visible;
}
.intro-img-wrap > img {
  width: 100%; height: 540px; object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}
.intro-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--forest);
  color: white;
  width: 120px; height: 120px;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .2rem;
  text-align: center;
  font-size: .65rem;
  letter-spacing: .08em;
  box-shadow: var(--shadow);
  padding: 1rem;
}
.intro-badge svg { width: 32px; color: var(--copper-light); margin-bottom: .3rem; }
.intro-badge strong { font-size: 1.2rem; font-family: var(--font-display); }

.intro-text h2 { margin-bottom: 1.5rem; }
.intro-text p { margin-bottom: 1rem; }
.intro-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
}
.intro-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: .6rem;
  font-size: .9rem;
  color: var(--bark);
}
.check {
  color: var(--forest);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .1rem;
}

@media (max-width: 900px) {
  .intro-section { grid-template-columns: 1fr; gap: 3rem; }
}

/* ====================== SERVICES GRID ====================== */
.services-section {
  background: var(--sand);
  padding: 6rem 2rem;
}
.services-header {
  max-width: 1280px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.services-header h2 { margin: 0 auto; max-width: 500px; }
.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-img {
  overflow: hidden;
  height: 200px;
}
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }
.service-body {
  padding: 1.5rem;
  display: flex; flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.service-icon { width: 32px; color: var(--copper); }
.service-icon svg { width: 32px; height: 32px; }
.service-body h3 { font-size: 1.1rem; font-family: var(--font-display); font-weight: 700; }
.service-body p { font-size: .875rem; flex: 1; }
.card-link {
  font-size: .8rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: .04em;
  margin-top: .5rem;
  display: block;
}
.service-card:hover .card-link { color: var(--copper); }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ====================== TESTIMONIAL ====================== */
.testimonial-section {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: center;
}
.testimonial-bg {
  position: absolute; inset: 0;
}
.testimonial-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
}
.testimonial-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(45,74,62,.88) 0%, rgba(44,36,25,.7) 100%);
}
.testimonial-content {
  position: relative; z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
  color: white;
}
.testimonial-content blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  color: white;
  line-height: 1.5;
  margin: 1.5rem 0 1rem;
}
.testimonial-content cite {
  font-size: .875rem;
  color: var(--copper-light);
  letter-spacing: .08em;
  font-style: normal;
}
.testimonial-dots { margin-top: 2rem; display: flex; gap: .5rem; justify-content: center; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); }
.dot.active { background: var(--copper-light); }

/* ====================== PROCESS ====================== */
.process-section {
  max-width: 1280px;
  margin: 6rem auto;
  padding: 0 2rem;
}
.process-header { text-align: center; margin-bottom: 4rem; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--sand);
  border-radius: 2px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: .5rem;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.process-step p { font-size: .875rem; }
.process-arrow {
  font-size: 1.5rem;
  color: var(--copper-light);
  align-self: center;
  flex-shrink: 0;
}
.process-cta { text-align: center; margin-top: 3rem; }

/* ====================== GALLERY ====================== */
.gallery-section {
  background: var(--bark);
  padding: 6rem 2rem;
}
.gallery-header {
  max-width: 1280px;
  margin: 0 auto 3rem;
  text-align: center;
  color: white;
}
.gallery-header .section-label { color: var(--copper-light); border-color: rgba(212,149,106,.4); }
.gallery-header h2 { color: white; }
.gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 8px;
}
.g-item { overflow: hidden; border-radius: 2px; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.g-item:hover img { transform: scale(1.05); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ====================== CTA BANNER ====================== */
.cta-banner {
  background: var(--copper);
  padding: 5rem 2rem;
  text-align: center;
}
.cta-content { max-width: 700px; margin: 0 auto; }
.cta-content h2 { color: white; margin-bottom: 1rem; }
.cta-content h2 em { color: rgba(255,255,255,.8); }
.cta-content p { color: rgba(255,255,255,.85); font-weight: 300; margin-bottom: 2rem; }

/* ====================== FOOTER ====================== */
.site-footer {
  background: var(--bark);
  color: rgba(255,255,255,.7);
}
.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-brand p { font-size: .875rem; margin-top: .8rem; line-height: 1.6; max-width: 280px; }
.footer-brand .logo { color: white; }
.footer-brand .logo-m { background: var(--copper); }

.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all .2s;
}
.social-links a:hover { border-color: var(--copper-light); color: var(--copper-light); }
.social-links svg { width: 16px; }

.footer-nav h4 {
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-nav ul { list-style: none; }
.footer-nav ul li { margin-bottom: .6rem; }
.footer-nav a { font-size: .875rem; transition: color .2s; }
.footer-nav a:hover { color: var(--copper-light); }

.footer-contact h4 {
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-contact p { font-size: .875rem; margin-bottom: .8rem; }
.footer-contact a { transition: color .2s; }
.footer-contact a:hover { color: var(--copper-light); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .8rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .8rem; transition: color .2s; }
.footer-legal a:hover { color: var(--copper-light); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ====================== PAGE HERO ====================== */
.page-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,36,25,.8) 0%, rgba(45,74,62,.4) 100%);
}
.page-hero-content {
  position: relative; z-index: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem;
  color: white;
}
.page-hero-content h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
.page-hero-content p { max-width: 540px; margin-top: .8rem; color: rgba(255,255,255,.8); font-weight: 300; }

/* ====================== PROGRAMS PAGE ====================== */
.prog-tabs-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 73px;
  z-index: 50;
}
.prog-tabs {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 0;
  overflow-x: auto;
}
.prog-tab {
  padding: 1.1rem 1.8rem;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--gray-600);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all .2s;
}
.prog-tab:hover { color: var(--forest); }
.prog-tab.active { color: var(--forest); border-bottom-color: var(--forest); }

.prog-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  scroll-margin-top: 130px;
}
.prog-section.prog-reverse { direction: rtl; }
.prog-section.prog-reverse > * { direction: ltr; }
.prog-img { border-radius: 2px; overflow: hidden; box-shadow: var(--shadow-lg); }
.prog-img img { width: 100%; height: 480px; object-fit: cover; }
.prog-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: .8rem;
}
.prog-intro { margin: 1rem 0 2rem; font-size: 1rem; }
.prog-features { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.prog-feat { display: flex; gap: 1rem; align-items: flex-start; }
.prog-feat span { color: var(--copper); font-size: .8rem; margin-top: .3rem; flex-shrink: 0; }
.prog-feat strong { display: block; font-weight: 500; margin-bottom: .2rem; font-size: .95rem; }
.prog-feat p { font-size: .875rem; }
.prog-meta { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2rem; }
.meta-pill {
  font-size: .75rem;
  font-weight: 500;
  padding: .3rem .8rem;
  background: var(--sand);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  color: var(--bark);
}
.prog-divider {
  max-width: 1280px;
  margin: 0 auto;
  height: 1px;
  background: var(--gray-200);
}

@media (max-width: 900px) {
  .prog-section { grid-template-columns: 1fr; gap: 3rem; }
  .prog-section.prog-reverse { direction: ltr; }
}

/* PRICING */
.pricing-section {
  background: var(--sand);
  padding: 6rem 2rem;
}
.pricing-header {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}
.pricing-header p { margin-top: .8rem; }
.pricing-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: center;
}
.price-card {
  background: white;
  border-radius: 2px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.price-card.featured {
  background: var(--forest);
  color: white;
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.price-card.featured h3,
.price-card.featured .price span,
.price-card.featured li { color: rgba(255,255,255,.9); }
.price-card.featured .price { color: white; }
.price-card.featured .price-badge { background: var(--copper); }
.price-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--copper);
  color: white;
  padding: .25rem .75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.price-card h3 { margin-bottom: .5rem; font-size: 1.3rem; }
.price { font-size: 1rem; color: var(--gray-600); margin-bottom: 1.5rem; }
.price span { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--bark); margin-right: .2rem; }
.price-card ul { list-style: none; margin-bottom: 2rem; }
.price-card li { font-size: .875rem; padding: .4rem 0; border-bottom: 1px solid var(--gray-100); color: var(--bark); }
.price-card.featured li { border-bottom-color: rgba(255,255,255,.1); }
.price-card li.muted { color: var(--gray-400); }

@media (max-width: 760px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}

/* ====================== ABOUT PAGE ====================== */
.mission-section {
  max-width: 1280px;
  margin: 6rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.mission-text h2 { margin-bottom: 1.5rem; }
.mission-text p { margin-bottom: 1rem; }
.mission-values { display: flex; flex-direction: column; gap: 1.5rem; }
.value-item {
  padding: 1.5rem;
  background: var(--sand);
  border-left: 3px solid var(--copper);
  border-radius: 0 2px 2px 0;
}
.value-icon { font-size: 1.2rem; color: var(--copper); margin-bottom: .5rem; }
.value-item h4 { font-size: .9rem; color: var(--bark); margin-bottom: .3rem; }
.value-item p { font-size: .875rem; }

@media (max-width: 900px) {
  .mission-section { grid-template-columns: 1fr; gap: 3rem; }
}

.team-section {
  background: var(--sand);
  padding: 6rem 2rem;
}
.team-header {
  max-width: 1280px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.team-header p { margin-top: .5rem; }
.team-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: white;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-img { height: 280px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .5s; }
.team-card:hover .team-img img { transform: scale(1.04); }
.team-info { padding: 1.5rem; }
.team-info h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.team-role { font-size: .78rem; color: var(--copper); font-weight: 500; letter-spacing: .04em; display: block; margin-bottom: .8rem; }
.team-info p { font-size: .85rem; }
.team-creds { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: 1rem; }
.team-creds span {
  font-size: .7rem;
  font-weight: 500;
  padding: .2rem .6rem;
  background: var(--sand);
  border-radius: 2px;
  color: var(--forest);
  letter-spacing: .04em;
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; }
}

.creds-section {
  padding: 5rem 2rem;
  text-align: center;
}
.creds-inner { max-width: 1280px; margin: 0 auto; }
.creds-inner h2 { margin-bottom: 3rem; }
.creds-logos {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.cred-item { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.cred-logo {
  width: 90px; height: 90px;
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  background: var(--sand);
}
.cred-item span { font-size: .75rem; color: var(--gray-600); max-width: 120px; text-align: center; line-height: 1.4; }

.timeline-section {
  background: var(--sand);
  padding: 6rem 2rem;
}
.timeline-header {
  max-width: 1280px;
  margin: 0 auto 4rem;
  text-align: center;
}
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--gray-200);
}
.tl-item {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
}
.tl-year {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--copper);
  min-width: 80px;
  text-align: right;
  padding-top: .2rem;
  flex-shrink: 0;
}
.tl-content {
  padding: 1.5rem;
  background: white;
  border-radius: 2px;
  box-shadow: var(--shadow);
  flex: 1;
  position: relative;
}
.tl-content::before {
  content: '';
  position: absolute;
  left: -2.5rem; top: 1.1rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--forest);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--forest);
}
.tl-content h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: .4rem; }
.tl-content p { font-size: .875rem; }

@media (max-width: 600px) {
  .timeline::before { left: 60px; }
  .tl-year { min-width: 60px; font-size: 1rem; }
}

/* ====================== CONTACT PAGE ====================== */
.contact-hero {
  margin-top: 73px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  overflow: hidden;
}
.contact-hero-inner {
  background: var(--forest);
  padding: 5rem 3rem 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.contact-hero-inner h1 { font-size: clamp(2rem, 3.5vw, 3rem); }
.contact-hero-inner h1 em { color: var(--copper-light); }
.contact-hero-inner p { color: rgba(255,255,255,.75); margin-top: 1rem; max-width: 420px; font-weight: 300; }
.contact-hero-inner .hero-eyebrow { border-color: rgba(212,149,106,.4); margin-bottom: 1rem; }
.contact-hero-img { overflow: hidden; }
.contact-hero-img img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
  .contact-hero { grid-template-columns: 1fr; }
  .contact-hero-img { height: 250px; }
  .contact-hero-inner { padding: 3rem 2rem; }
}

.contact-main {
  max-width: 1280px;
  margin: 5rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-form-wrap h2 { margin-bottom: .5rem; }
.form-sub { margin-bottom: 2rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .8rem; font-weight: 500; letter-spacing: .04em; color: var(--bark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--bark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(45,74,62,.1);
}
.form-check { flex-direction: row; gap: .75rem; align-items: flex-start; }
.checkbox-label { display: flex; gap: .75rem; align-items: flex-start; cursor: pointer; }
.checkbox-label input { width: 16px; height: 16px; flex-shrink: 0; margin-top: .2rem; accent-color: var(--forest); }
.checkbox-label span { font-size: .8rem; color: var(--gray-600); }
.form-note { font-size: .78rem; text-align: center; color: var(--gray-400); margin-top: .5rem; }

.form-success { text-align: center; padding: 3rem 2rem; }
.success-icon {
  width: 60px; height: 60px;
  background: var(--forest);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}
.form-success h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.form-success p { margin-bottom: 2rem; }

.contact-info-block {
  margin-bottom: 3rem;
}
.contact-info-block h3 { font-size: 1.2rem; margin-bottom: 1.5rem; }
.info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.info-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; color: var(--forest); }
.info-item strong { display: block; font-size: .875rem; font-weight: 500; margin-bottom: .2rem; }
.info-item p { font-size: .875rem; }
.info-item a { transition: color .2s; }
.info-item a:hover { color: var(--copper); }

.contact-locations { margin-bottom: 3rem; }
.contact-locations h3 { font-size: 1.2rem; margin-bottom: 1.2rem; }
.loc-list { display: flex; flex-direction: column; gap: .6rem; }
.loc-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: .75rem 1rem;
  background: var(--sand);
  border-radius: var(--radius);
  font-size: .875rem;
}
.loc-item strong { color: var(--bark); }
.loc-item span { color: var(--gray-600); font-size: .8rem; }

.contact-faq h3 { font-size: 1.2rem; margin-bottom: 1.2rem; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item summary {
  padding: 1rem 0;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--bark);
}
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--copper); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 0 1rem; font-size: .875rem; }

@media (max-width: 900px) {
  .contact-main { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}

.map-section { position: relative; }
.map-placeholder { position: relative; }
.map-pin-overlay {
  position: absolute;
  bottom: 2rem; left: 2rem;
}
.map-pin-card {
  background: white;
  padding: 1.2rem 1.5rem;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: .4rem;
  max-width: 260px;
}
.map-pin-card strong { font-size: .9rem; color: var(--bark); }
.map-pin-card span { font-size: .8rem; color: var(--gray-600); }
.map-pin-card a { font-size: .8rem; color: var(--forest); font-weight: 500; }
.map-pin-card a:hover { color: var(--copper); }

/* ====================== GALLERY GRID RESPONSIVE ====================== */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .g-tall { grid-row: auto; }
  .g-wide { grid-column: auto; }
}
