/* ================================================================
   GOOD VIBRATIONS MASSAGE & ENERGY THERAPIES — style.css
   ================================================================

   TABLE OF CONTENTS
   1.  CSS Variables
   2.  Reset & Base
   3.  Custom Cursor
   4.  Navigation
   5.  Hero
   6.  Services
   7.  About
   8.  What to Expect (Dark Section)
   9.  Contact
   10. Footer
   11. Utilities & Animations
   12. Responsive
   ================================================================ */


/* ================================================================
   1. CSS VARIABLES
   ================================================================ */

:root {
  --color-bg:        #f5f2ee;
  --color-bg-alt:    #edeae4;
  --color-dark:      #2d3c38;
  --color-teal:      #3d7a78;
  --color-teal-dark: #2e5e5c;
  --teal-light:      #7eb5b3;
  --color-stone:     #8a7f72;
  --color-text:      #2c2825;
  --color-text-light:#4a4540;
  --color-border:    #ddd8d0;
  --color-white:     #ffffff;

  --font-heading: 'Raleway', 'Helvetica Neue', sans-serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;

  --max-width: 1100px;
}


/* ================================================================
   2. RESET & BASE
   ================================================================ */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--color-text);
  background-color: var(--color-bg);
}

ul { list-style: none; }

a {
  color: var(--color-teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: var(--color-teal-dark); }

em { font-style: italic; }

p {
  margin-bottom: var(--space-sm);
}

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


/* ================================================================
   3. NAVIGATION
   ================================================================ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

nav.scrolled {
  background: rgba(245, 242, 238, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(44, 40, 37, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.nav-logo-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: none;
}

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

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-light);
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--color-teal);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--color-text); }
.nav-links a:hover::after { width: 100%; }


/* ================================================================
   5. HERO
   ================================================================ */

#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  position: relative;
  overflow: hidden;
}

.hero-image-side {
  position: relative;
  overflow: hidden;
  background: #8cb8b6; /* light teal fallback */
}

#rippleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

#heroLogo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72%;
  max-width: 380px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}


@media (max-width: 768px) {
  #rippleCanvas { display: none; }
  .hero-image-side { background: rgb(140, 190, 187); }
}

/* Keep placeholder styles in case they're needed as fallback */
.hero-image-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #c8cfc4 0%, #9fb5ae 45%, #b8c4c2 100%);
  display: flex;
  align-items: flex-start;
  padding: 2rem;
}

.placeholder-note {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(44, 40, 37, 0.4);
}

.hero-content-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6.5rem 5rem 3.5rem 5.5rem;
  background: var(--color-bg);
  position: relative;
}

.hero-content-side::before {
  content: '';
  position: absolute;
  top: 20%; bottom: 20%; left: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent,
    var(--color-teal) 35%,
    var(--teal-light) 65%,
    transparent
  );
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-size: 0.5em;
  font-weight: 300;
  font-style: italic;
  display: block;
  margin-top: 0.2em;
  letter-spacing: 0.03em;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
}


/* ================================================================
   6. SERVICES
   ================================================================ */

#services {
  padding: var(--space-xl) var(--space-md);
  background: var(--color-bg);
}

.section-header {
  margin-bottom: var(--space-md);
}

.section-header + .service-group-title {
  margin-top: var(--space-sm);
}

.service-group-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-teal);
}


.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 3px;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.service-card-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 90px;
  height: 90px;
  object-fit: contain;
  opacity: 0.8;
  pointer-events: none;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--color-teal);
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
  background: var(--color-bg);
  box-shadow: 0 6px 24px rgba(61, 122, 120, 0.1);
}

.service-card:hover::after {
  width: 100%;
}

.service-card--cta {
  background: #eef4f4;
  border-color: #d4e6e5;
}

.energy-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-md);
  align-items: start;
}

.energy-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.energy-image {
  position: sticky;
  top: 5rem;
}

.shamanic-img-mobile {
  display: none;
}

.shamanic-img-mobile img {
  width: 100%;
  display: block;
  border-radius: 3px;
}

.energy-image img {
  width: 100%;
  display: block;
  border-radius: 3px;
}

.service-num {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--color-teal);
  margin-bottom: 0.2rem;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-text);
}

.service-desc {
  font-size: 1rem;
  color: var(--color-text-light);
  flex: 1;
  margin-bottom: 0;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: var(--space-sm);
  padding-top: var(--space-xs);
  border-top: 1px solid var(--color-border);
  gap: var(--space-xs);
}

.service-duration {
  font-size: 0.83rem;
  color: var(--color-stone);
  letter-spacing: 0.04em;
}

.service-price {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-teal);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0 var(--space-md);
  margin-top: var(--space-md);
}

.addon-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.addon-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
}

.addon-detail {
  font-size: 0.93rem;
  color: var(--color-text-light);
}


/* ================================================================
   7. ABOUT
   ================================================================ */

#about {
  padding: var(--space-xl) var(--space-md);
  background: var(--color-bg-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-image-col {
  position: relative;
  position: sticky;
  top: 5rem;
  align-self: start;
}

.hero-cta {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-phone {
  margin-top: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text);
  text-align: center;
}

/* The frame is position:relative so the stat strip can anchor to its corner */
.about-frame {
  position: relative;
  z-index: 2;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #b8c4c2 0%, #9aada6 50%, #c0c8c4 100%);
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
}

/* Decorative teal border offset behind the photo */
.about-frame-outline {
  position: absolute;
  top: 1.2rem; right: -1.2rem;
  bottom: -1.2rem; left: 1.2rem;
  border: 1px solid var(--color-teal);
  border-radius: 2px;
  z-index: 1;
}

/* Stat strip pinned to the bottom-right corner, inside the frame */
.about-stat-strip {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 4;
  display: flex;
  gap: var(--space-md);
  background: rgba(30, 36, 34, 0.80);
  backdrop-filter: blur(6px);
  padding: 1.1rem 1.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  color: var(--teal-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 242, 238, 0.65);
}

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

.about-quote {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--color-text);
  border-left: 3px solid var(--color-teal);
  padding-left: 1.5rem;
  margin: var(--space-md) 0;
}

.credentials {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.credentials-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-stone);
  margin-bottom: var(--space-sm);
}

.credentials ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.credentials li {
  font-size: 0.96rem;
  color: var(--color-text-light);
  padding-left: 1.2em;
  position: relative;
}

.credentials li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-size: 1.5rem;
  line-height: 1;
  top: 0.1rem;
}


/* ================================================================
   8. TESTIMONIALS
   ================================================================ */

#testimonials {
  padding: var(--space-lg) var(--space-md);
  background: #e8e1d4;
}

.testimonial-carousel {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-slides {
  display: grid;
}

.testimonial-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 0;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--color-stone);
  font-style: normal;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: var(--color-border);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease;
}

.testimonial-dot.active {
  background: var(--color-teal);
}


/* ================================================================
   9. WHAT TO EXPECT — dark section
   ================================================================ */

.section-dark {
  background: var(--color-dark);
  padding: var(--space-xl) var(--space-md);
}

.expect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.faq-list {
  margin-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-q {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-bg);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  transition: color 0.2s ease;
}

.faq-q:hover {
  color: var(--teal-light);
}

.faq-chevron {
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--teal-light);
  border-bottom: 1.5px solid var(--teal-light);
  transform: rotate(45deg);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
  margin-bottom: 3px;
}

.faq-item.open .faq-chevron {
  transform: rotate(-135deg);
  margin-bottom: -3px;
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-body {
  grid-template-rows: 1fr;
}

.faq-body-inner {
  overflow: hidden;
}

.faq-a {
  font-size: 1rem;
  color: rgba(245, 242, 238, 0.88);
  line-height: 1.75;
  padding-bottom: 1.2rem;
  margin-bottom: 0;
}

.faq-panel {
  background: var(--color-bg);
  border-radius: 3px;
  padding: var(--space-md);
}

.faq-panel-img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 3px;
  margin-top: var(--space-md);
}

.faq-panel .section-label {
  color: var(--color-teal);
}

.faq-panel .section-title {
  color: var(--color-text);
}

.faq-panel .faq-list {
  border-top-color: var(--color-border);
}

.faq-panel .faq-item {
  border-bottom-color: var(--color-border);
}

.faq-panel .faq-q {
  color: var(--color-text);
}

.faq-panel .faq-q:hover {
  color: var(--color-teal);
}

.faq-panel .faq-chevron {
  border-right-color: var(--color-teal);
  border-bottom-color: var(--color-teal);
}

.faq-panel .faq-a {
  color: var(--color-text-light);
}

.steps {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--teal-light);
  padding-top: 0.1rem;
  flex-shrink: 0;
}

.step-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-bottom: var(--space-sm);
  padding-top: var(--space-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex: 1;
}

.step-body strong {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-bg);
}

.step-body span {
  font-size: 1rem;
  color: rgba(245, 242, 238, 0.88);
  line-height: 1.75;
}


/* ================================================================
   9. CONTACT
   ================================================================ */

#contact {
  padding: var(--space-xl) var(--space-md);
  background: var(--color-bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.contact-title {
  font-size: clamp(2rem, 4vw, 3rem) !important;
}

.contact-subtitle {
  color: var(--color-text-light);
  max-width: 440px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 1.25rem;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-teal);
  margin-bottom: 3px;
}

.contact-row-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-row:first-child {
  border-top: 1px solid var(--color-border);
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-stone);
}

.contact-val {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-text);
}

a.contact-val:hover {
  color: var(--color-teal);
}


/* ================================================================
   10. FOOTER
   ================================================================ */

footer {
  background: var(--color-text);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: rgba(245, 242, 238, 0.5);
}

.footer-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  opacity: 0.7;
}

.footer-copy {
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: rgba(245, 242, 238, 0.4);
}

.footer-disclaimer {
  width: 100%;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: rgba(245, 242, 238, 0.22);
  line-height: 1.6;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(245, 242, 238, 0.07);
}


/* ================================================================
   11. UTILITIES & ANIMATIONS
   ================================================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-xs);
}

/* For use on dark backgrounds */
.teal-label {
  color: var(--teal-light);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

/* For use on dark backgrounds */
.light-title {
  color: var(--color-bg);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.9rem 2.2rem;
  background: var(--color-teal);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.15s ease;
}

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

.btn-ghost {
  display: inline-block;
  align-self: flex-start;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--color-teal);
  color: var(--color-teal);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-top: var(--space-sm);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-ghost:hover {
  background: var(--color-teal);
  color: var(--color-white);
}

/* Fade-up: starts invisible and 28px lower.
   JS adds .visible when the element scrolls into view. */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }


/* ================================================================
   12. RESPONSIVE
   ================================================================ */

@media (max-width: 900px) {
  #hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .hero-image-side {
    display: none;
  }

  .hero-content-side {
    padding: 5.5rem 2rem 3rem;
    background: rgb(140, 190, 187);
    align-items: center;
    text-align: center;
  }

  .hero-cta {
    align-self: center;
    align-items: center;
  }

  .hero-content-side::before { display: none; }

  .hero-eyebrow { color: rgba(255, 255, 255, 0.85); }
  .hero-title   { color: #ffffff; }
  .hero-tagline { color: rgba(255, 255, 255, 0.9); }
  .hero-phone   { color: rgba(255, 255, 255, 0.85); }

  .hero-content-side .btn-primary {
    background: #ffffff;
    color: var(--color-teal);
  }

  .about-grid,
  .energy-layout,
  .expect-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-image-col {
    position: static;
  }

  .energy-image {
    display: none;
  }

  .shamanic-img-mobile {
    display: block;
    margin: var(--space-md) 0;
  }

  .about-frame-outline {
    display: none;
  }

  nav {
    padding: 1.2rem 1.5rem;
  }

  .nav-links {
    gap: 1.2rem;
  }

  #services, #about, .section-dark, #contact {
    padding: var(--space-lg) var(--space-sm);
  }
}

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 101;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animate hamburger → X when menu is open */
#nav.menu-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; }
#nav.menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

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

  .nav-logo-img {
    display: block;
    width: 48px;
    height: 48px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: 0 8px 24px rgba(44, 40, 37, 0.08);
  }

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

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

}

@media (max-width: 540px) {
  .service-card-img { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  footer { flex-direction: column; text-align: center; }
}
