/* ==========================================================================
   Oak City MedAesthetics - Global Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Reset + Custom Properties
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-primary);
  background: var(--bg-warm);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
  list-style: none;
}

a {
  color: inherit;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

:root {
  --bg-warm: #F5F0EB;
  --bg-taupe: #E8E0D8;
  --bg-taupe-deep: #DDD4CA;
  --text-primary: #3C3C3C;
  --text-secondary: #6B635B;
  --text-light: #9B9289;
  --accent: #2F4538;
  --accent-hover: #4A6B5A;
  --accent-soft: rgba(47, 69, 56, 0.10);
  --white: #FFFFFF;
  --footer-bg: #243A2E;
  --gold: #C4975A;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', -apple-system, sans-serif;
}


/* --------------------------------------------------------------------------
   2. Skip to Content (Accessibility)
   -------------------------------------------------------------------------- */

.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  z-index: 1000;
  font-size: 14px;
}

.skip-to-content:focus {
  top: 16px;
}


/* --------------------------------------------------------------------------
   3. Navigation (Fixed, Scroll Effect, Mobile Hamburger)
   -------------------------------------------------------------------------- */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
}

nav.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.4s ease;
}

nav.scrolled .nav-logo {
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

nav.scrolled .nav-links a {
  color: var(--text-secondary);
}

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

.nav-cta {
  font-family: var(--sans) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 12px 28px !important;
  background: var(--accent) !important;
  color: var(--white) !important;
  border-radius: 0;
  transition: background 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
}

/* Mobile Toggle (hidden on desktop) */
.mobile-toggle {
  display: none;
}


/* --------------------------------------------------------------------------
   4. Hero Section
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #2F4538;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #2F4538;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.55);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 0 40px;
}

.hero-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
}

.hero-subtitle {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 44px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 48px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.hero-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}


/* --------------------------------------------------------------------------
   5. Trust Bar
   -------------------------------------------------------------------------- */

.trust-bar {
  background: var(--bg-taupe);
  padding: 48px 60px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trust-number {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--text-primary);
}

.trust-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}


/* --------------------------------------------------------------------------
   6. Section Common Styles
   -------------------------------------------------------------------------- */

.section {
  padding: 100px 60px;
}

.section p {
  margin-bottom: 16px;
}

.section p:last-child {
  margin-bottom: 0;
}

.section-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.section-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}


/* --------------------------------------------------------------------------
   7. Services Grid / Cards
   -------------------------------------------------------------------------- */

.services {
  background: var(--bg-warm);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-desc {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  transition: background 0.4s ease;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.05) 100%);
}

.service-card-number {
  font-family: var(--serif);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 280px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.service-card:hover .service-card-link {
  opacity: 1;
  transform: translateY(0);
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.service-card-link:hover svg {
  transform: translateX(4px);
}


/* --------------------------------------------------------------------------
   8. About Section
   -------------------------------------------------------------------------- */

.about {
  background: var(--bg-taupe);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
}

.about-image-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--accent);
  opacity: 0.4;
}

.about-text .section-desc {
  margin-bottom: 20px;
  margin-left: 0;
  margin-right: 0;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  margin-bottom: 36px;
}

.credential-tag {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  background: var(--accent-soft);
  color: var(--accent);
  text-transform: uppercase;
}


/* --------------------------------------------------------------------------
   9. Testimonials
   -------------------------------------------------------------------------- */

.testimonials {
  background: var(--bg-warm);
  text-align: center;
}

.testimonials-header {
  margin-bottom: 64px;
}

.testimonials-header .section-desc {
  margin: 0 auto;
}

.testimonial-carousel {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  position: relative;
  min-height: 280px;
}

.testimonial-item {
  padding: 0 40px;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-item.active {
  display: block;
  opacity: 1;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.testimonial-nav button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--bg-taupe-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

.testimonial-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg-taupe-deep);
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonial-dots .dot.active {
  background: var(--accent);
}

.testimonial-stars {
  color: #C4975A;
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 28px;
}

.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.testimonial-author {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.testimonial-divider {
  width: 40px;
  height: 1px;
  background: #C4975A;
  margin: 16px auto 16px;
}

.testimonial-location {
  font-size: 12px;
  color: var(--text-light);
}


/* --------------------------------------------------------------------------
   10. Membership Section
   -------------------------------------------------------------------------- */

.membership {
  background: #2F4538;
  color: var(--white);
  overflow: hidden;
}

.membership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.membership .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.membership .section-title {
  color: var(--white);
}

.membership .section-desc {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

.membership-perks {
  list-style: none;
  margin-bottom: 36px;
}

.membership-perks li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}

.membership-perks li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  flex-shrink: 0;
}


/* --------------------------------------------------------------------------
   11. CTA Final Section
   -------------------------------------------------------------------------- */

.cta-final {
  position: relative;
  padding: 120px 60px;
  text-align: center;
  overflow: hidden;
  background: #2F4538;
}

.cta-final-bg {
  position: absolute;
  inset: 0;
  background-color: #2F4538;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.45);
}

.cta-final-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-final .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.cta-final .section-title {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-final .section-desc {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 40px;
}


/* --------------------------------------------------------------------------
   12. Footer (4-Column Grid)
   -------------------------------------------------------------------------- */

footer {
  background: #243A2E;
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 60px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

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

.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}


/* --------------------------------------------------------------------------
   13. Button Styles
   -------------------------------------------------------------------------- */

.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 40px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 1px solid var(--text-primary);
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--text-primary);
  color: var(--bg-warm);
}

.btn-accent {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 40px;
  background: var(--bg-warm);
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

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


/* --------------------------------------------------------------------------
   13b. Blog Cards
   -------------------------------------------------------------------------- */

.blog-card {
  background: var(--white);
  padding: 40px;
  margin-bottom: 32px;
}

.blog-card-date {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}

.blog-card h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 16px;
}

.blog-card h2 a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s;
}

.blog-card h2 a:hover {
  color: var(--accent);
}

.blog-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.blog-card-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.3s;
}

.blog-card-link:hover {
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}

@media (max-width: 768px) {
  .blog-card {
    padding: 28px 24px;
  }
}


/* --------------------------------------------------------------------------
   14. Scroll Reveal Animations
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* --------------------------------------------------------------------------
   15. Inner Page Hero
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  padding: 160px 60px 80px;
  background: var(--accent);
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}


/* --------------------------------------------------------------------------
   16. Breadcrumbs
   -------------------------------------------------------------------------- */

.breadcrumbs {
  padding: 16px 60px;
  background: var(--bg-taupe);
  font-size: 12px;
  letter-spacing: 0.05em;
}

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

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

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

.breadcrumbs .current {
  color: var(--text-primary);
}


/* --------------------------------------------------------------------------
   17. Services Detail Page
   -------------------------------------------------------------------------- */

.services-detail {
  background: var(--bg-warm);
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-detail-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.service-detail-card {
  background: var(--white);
  padding: 32px;
  overflow: hidden;
}

.service-detail-card:has(img) {
  padding: 0;
}

.service-detail-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.service-detail-body {
  padding: 32px;
}

.service-detail-body h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-detail-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-detail-body ul {
  list-style: none;
  margin-bottom: 24px;
}

.service-detail-body ul li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}

.service-detail-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.service-detail-cta {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.3s;
}

.service-detail-cta:hover {
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}


/* --------------------------------------------------------------------------
   18. About Page - Team Grid
   -------------------------------------------------------------------------- */

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.team-member {
  background: var(--bg-warm);
}

.team-member img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.team-member-info {
  padding: 32px;
}

.team-member-info h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 4px;
}

.team-member-info .role {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 20px;
}

.team-member-info p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}


/* --------------------------------------------------------------------------
   19. Contact Page
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-detail-text h4 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-detail-text p,
.contact-detail-text a {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  text-decoration: none;
}

.contact-detail-text a:hover {
  color: var(--accent);
}

.contact-map {
  width: 100%;
  height: 400px;
  background: var(--bg-taupe);
}

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

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 6px;
  display: block;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--white);
  border: 1px solid var(--bg-taupe-deep);
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form button[type="submit"] {
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 40px;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button[type="submit"]:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}


/* --------------------------------------------------------------------------
   20. Responsive Breakpoints
   -------------------------------------------------------------------------- */

/* --- 1024px --- */
@media (max-width: 1024px) {
  .services-detail-grid.three-col {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .section {
    padding: 80px 40px;
  }

  nav {
    padding: 16px 30px;
  }

  nav.scrolled {
    padding: 12px 30px;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image img {
    height: 450px;
  }

  .membership-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .trust-bar {
    gap: 40px;
    padding: 40px;
  }
}

/* --- 768px --- */
@media (max-width: 768px) {
  .section {
    padding: 64px 24px;
  }

  nav {
    padding: 14px 20px;
  }

  /* Mobile nav overlay */
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-warm);
    z-index: 200;
    justify-content: center;
    align-items: center;
    gap: 24px;
    overflow: hidden;
  }

  .nav-links.open a {
    color: var(--text-primary);
    font-size: 16px;
  }

  .nav-links.open .nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
  }

  /* Sticky mobile Book Now bar */
  .mobile-book-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 12px 20px;
    background: var(--accent);
    justify-content: center;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  }

  .mobile-book-bar a {
    display: block;
    width: 100%;
    text-align: center;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    padding: 14px 0;
    background: var(--accent-hover);
    transition: background 0.3s;
  }

  .mobile-book-bar a:hover {
    background: #5a7e6a;
  }

  /* Add bottom padding to body so footer isn't hidden behind the bar */
  body {
    padding-bottom: 62px;
  }

  /* Mobile hamburger toggle */
  .mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 300;
    padding: 8px;
  }

  .mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
  }

  nav.scrolled .mobile-toggle span {
    background: var(--text-primary);
  }

  .mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--text-primary);
  }

  .mobile-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: var(--text-primary);
  }

  /* Homepage sections */
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .service-card {
    aspect-ratio: 4/5;
  }

  .service-card-link {
    opacity: 1;
    transform: translateY(0);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .trust-bar {
    gap: 32px;
    padding: 32px 24px;
  }

  .cta-final {
    padding: 80px 24px;
  }

  .about-image-accent {
    display: none;
  }

  /* Inner page responsive */
  .page-hero {
    padding: 120px 24px 60px;
  }

  .breadcrumbs {
    padding: 12px 24px;
  }

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

  .team-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

/* --- 480px --- */
@media (max-width: 480px) {
  .trust-bar {
    flex-direction: column;
    gap: 24px;
  }
}

/* Force-hide mobile-only elements on desktop */
@media (min-width: 769px) {
  .mobile-toggle {
    display: none !important;
  }
  .mobile-book-bar {
    display: none !important;
  }
}
