/* ==========================================================================
   SAMARA — Dance, Movement & PSICOSOMA | Landing Page Styles
   Teal sidebar + white content layout
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
  /* Teal Palette */
  --color-primary: #1f7a6f;
  --color-primary-dark: #17615a;
  --color-primary-light: rgba(31, 122, 111, 0.08);
  --color-secondary: #2a9d8f;
  --color-secondary-dark: #1f7a6f;
  --color-accent: #2a9d8f;
  --color-earth: #2d3436;

  /* Pacific Colombian warm accents */
  --color-pacific-gold: #c49a3c;
  --color-pacific-terracotta: #b5654a;

  /* Neutrals */
  --color-bg: #FFFFFF;
  --color-bg-alt: #f5f5f5;
  --color-bg-warm: #eef3f2;
  --color-surface: #FFFFFF;
  --color-surface-hover: #f5f5f5;
  --color-text: #2d3436;
  --color-text-muted: #636e72;
  --color-border: rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;

  /* Layout */
  --container-max: 1200px;
  --sidebar-width: 280px;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

strong {
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  position: relative;
  z-index: 1;
}

.section {
  padding: var(--space-2xl) 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.section-title.centered {
  text-align: center;
}

/* --------------------------------------------------------------------------
   Afro-Colombian Pacific Patterns — faint cultural textures
   Inspired by Pacific Colombian weaving (cestería), zigzag & wave motifs
   -------------------------------------------------------------------------- */

/* Zigzag weaving band — replaces simple diamond divider */
.geo-band {
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 16'%3E%3Cpath d='M0 8L10 2L20 8L30 2L40 8' fill='none' stroke='%231f7a6f' stroke-width='1.5'/%3E%3Cpath d='M0 12L10 6L20 12L30 6L40 12' fill='none' stroke='%232a9d8f' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 40px 16px;
  opacity: 0.15;
}

/* Pacific wave pattern — about section background accent */
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Cpath d='M0 40 Q20 30 40 40 Q60 50 80 40' fill='none' stroke='%231f7a6f' stroke-width='0.6' opacity='0.5'/%3E%3Cpath d='M0 60 Q20 50 40 60 Q60 70 80 60' fill='none' stroke='%232a9d8f' stroke-width='0.4' opacity='0.35'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  opacity: 0.06;
  pointer-events: none;
}

/* Concentric circle motif — services section */
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='20' fill='none' stroke='%231f7a6f' stroke-width='0.5' opacity='0.4'/%3E%3Ccircle cx='50' cy='50' r='35' fill='none' stroke='%232a9d8f' stroke-width='0.4' opacity='0.25'/%3E%3Ccircle cx='50' cy='50' r='48' fill='none' stroke='%231f7a6f' stroke-width='0.3' opacity='0.15'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  opacity: 0.08;
  pointer-events: none;
}

/* Woven zigzag — PSICOSOMA section */
.psicosoma::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 40'%3E%3Cpath d='M0 20 L15 8 L30 20 L45 8 L60 20' fill='none' stroke='%231f7a6f' stroke-width='0.5' opacity='0.4'/%3E%3Cpath d='M0 28 L15 16 L30 28 L45 16 L60 28' fill='none' stroke='%232a9d8f' stroke-width='0.4' opacity='0.3'/%3E%3Cpath d='M0 36 L15 24 L30 36 L45 24 L60 36' fill='none' stroke='%231f7a6f' stroke-width='0.3' opacity='0.2'/%3E%3C/svg%3E");
  background-size: 60px 40px;
  opacity: 0.07;
  pointer-events: none;
}

/* Contact section — subtle diamond grid (Pacific basket weave) */
.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath d='M20 0 L40 20 L20 40 L0 20Z' fill='none' stroke='%231f7a6f' stroke-width='0.4' opacity='0.3'/%3E%3Cpath d='M20 8 L32 20 L20 32 L8 20Z' fill='none' stroke='%232a9d8f' stroke-width='0.3' opacity='0.2'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: 0.06;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text-muted);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-large {
  padding: var(--space-md) var(--space-xl);
  font-size: 1.125rem;
}

/* --------------------------------------------------------------------------
   Sidebar
   -------------------------------------------------------------------------- */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--color-primary);
  color: white;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  overflow-y: auto;
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
}

.sidebar-header {
  margin-bottom: var(--space-xl);
}

.sidebar-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  letter-spacing: 4px;
  display: block;
  margin-bottom: var(--space-sm);
}

.sidebar-logo:hover {
  color: rgba(255, 255, 255, 0.85);
}

.sidebar-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.sidebar-nav {
  flex: 1;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.sidebar-links li a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.sidebar-links li a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.12);
}

.sidebar-cta {
  display: block;
  text-align: center;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all var(--transition-fast);
}

.sidebar-cta:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white;
}

.sidebar-bottom {
  margin-top: auto;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(196, 154, 60, 0.3);
}

.sidebar-location {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-md);
  letter-spacing: 0.5px;
}

.sidebar-socials {
  display: flex;
  gap: var(--space-md);
}

.sidebar-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  transition: all var(--transition-fast);
}

.sidebar-socials a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.2);
}

/* Sidebar toggle (mobile) */
.sidebar-toggle {
  display: none;
  position: fixed;
  top: var(--space-md);
  left: var(--space-md);
  z-index: 1001;
  background: var(--color-primary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 12px;
  flex-direction: column;
  gap: 5px;
  box-shadow: var(--shadow-md);
}

.sidebar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  transition: var(--transition-fast);
  border-radius: 1px;
}

.sidebar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.sidebar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.sidebar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.sidebar-overlay.active {
  opacity: 1;
}

/* Main content offset for sidebar */
main {
  margin-left: var(--sidebar-width);
}

.footer {
  margin-left: var(--sidebar-width);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-earth);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
}

/* Teal brand gradient: top-right to bottom-left, keeps centre face visible */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom left,
    rgba(31, 122, 111, 0.85) 0%,
    rgba(31, 122, 111, 0.55) 25%,
    rgba(31, 122, 111, 0.15) 45%,
    rgba(31, 122, 111, 0.05) 55%,
    rgba(31, 122, 111, 0.3) 75%,
    rgba(45, 52, 54, 0.8) 100%
  );
}

/* Pacific Colombian spiral pattern — hero background */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Cpath d='M40 30 Q45 30 45 35 Q45 42 38 42 Q28 42 28 32 Q28 18 42 18 Q58 18 58 38' fill='none' stroke='%231f7a6f' stroke-width='0.5' opacity='0.4'/%3E%3Cpath d='M10 70 L20 60 L30 70 L40 60 L50 70 L60 60 L70 70' fill='none' stroke='%232a9d8f' stroke-width='0.4' opacity='0.25'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  opacity: 0.05;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  align-self: flex-start;
  text-align: left;
  padding-left: var(--space-lg);
}

.hero-tagline {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: #FFFFFF;
}

/* Pacific gold accent underline */
.hero-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-pacific-gold), var(--color-secondary));
  margin: var(--space-md) 0 0;
  border-radius: 2px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: var(--space-md);
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
  position: relative;
}

.scroll-indicator::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about {
  background: var(--color-bg-alt);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 300px 1fr;
  }
}

.about-image {
  display: flex;
  justify-content: center;
}

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.profile-photo {
  width: 280px;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(31, 122, 111, 0.15);
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  filter: contrast(1.02) brightness(1.01);
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: #0A66C2;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.linkedin-link:hover {
  background: #004182;
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.linkedin-link svg {
  flex-shrink: 0;
}

.about-intro {
  font-size: 1.125rem;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.about-philosophy {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-primary);
  padding: var(--space-lg);
  border-left: 3px solid var(--color-secondary);
  background: var(--color-surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.about-highlights {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.highlight {
  text-align: center;
}

.highlight-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.highlight-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.about-content h3 {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  margin-top: var(--space-lg);
}

.about-list {
  margin-bottom: var(--space-lg);
}

.about-list li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-lg);
  position: relative;
  color: var(--color-text-muted);
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

.about-languages {
  color: var(--color-text-muted);
  padding: var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  display: inline-block;
}

/* --------------------------------------------------------------------------
   Services Section
   -------------------------------------------------------------------------- */
.services {
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card.featured {
  border-top: 3px solid var(--color-secondary);
}

.service-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--color-secondary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.service-location {
  font-size: 0.875rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.service-card > p:not(.service-location) {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.service-card ul {
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.service-card li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding: var(--space-xs) 0;
  padding-left: var(--space-md);
  position: relative;
}

.service-card li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
}

.service-pricing {
  padding: var(--space-md) 0;
  border-top: 1px solid var(--color-border);
  margin-bottom: var(--space-md);
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-xs) 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.price-row .price {
  font-weight: 600;
  color: var(--color-primary);
}

.service-card .btn {
  width: 100%;
}

/* --------------------------------------------------------------------------
   PSICOSOMA Section
   -------------------------------------------------------------------------- */
.psicosoma {
  background: var(--color-bg-alt);
  position: relative;
}

.psicosoma-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .psicosoma-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.psicosoma-label {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

.psicosoma-subtitle {
  font-size: 1.125rem;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.psicosoma-intro {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.psicosoma-content h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  margin-top: var(--space-lg);
}

.psicosoma-list {
  margin-bottom: var(--space-lg);
}

.psicosoma-list li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-lg);
  position: relative;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.psicosoma-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
}

.psicosoma-safety {
  background: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  border-left: 3px solid var(--color-secondary);
}

.psicosoma-safety h3 {
  margin-top: 0;
}

.psicosoma-safety ul li {
  padding: var(--space-xs) 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.psicosoma-pricing {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.psicosoma-price {
  background: var(--color-surface);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
}

.price-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.price-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
}

.psicosoma-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.session-structure {
  background: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow-sm);
}

.session-structure h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
  text-transform: none;
  letter-spacing: normal;
  margin-top: 0;
}

.session-structure ol {
  counter-reset: steps;
}

.session-structure li {
  counter-increment: steps;
  padding: var(--space-sm) 0;
  padding-left: var(--space-xl);
  position: relative;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  border-left: 2px solid var(--color-bg-alt);
  margin-left: var(--space-md);
}

.session-structure li::before {
  content: counter(steps);
  position: absolute;
  left: calc(-1 * var(--space-md) - 12px);
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Hero — dark bg button overrides
   -------------------------------------------------------------------------- */
.hero .btn-secondary {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn-secondary:hover {
  color: white;
  border-color: white;
}

/* --------------------------------------------------------------------------
   Service Card Images
   -------------------------------------------------------------------------- */
.service-card-image {
  margin: calc(-1 * var(--space-lg));
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  height: 180px;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   PSICOSOMA Photo
   -------------------------------------------------------------------------- */
.psicosoma-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-lg);
  max-width: 600px;
}

.psicosoma-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 60%;
  border-radius: var(--radius-lg);
}

/* --------------------------------------------------------------------------
   Video Showcase Section
   -------------------------------------------------------------------------- */
.video-section {
  background: var(--color-bg);
}

.video-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.video-subtitle.centered {
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.video-item {
  position: relative;
  padding-bottom: 177.78%; /* 9:16 aspect ratio for shorts */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--color-earth);
}

.video-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-lg);
}

.video-follow {
  text-align: center;
  margin-top: var(--space-xl);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-earth);
  transition: color var(--transition-fast);
}

.instagram-link:hover {
  color: var(--color-primary);
}

.instagram-link svg {
  color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   Photo Gallery Section — thumbnail grid + lightbox
   -------------------------------------------------------------------------- */
.gallery-section {
  padding: var(--space-xl) 0 var(--space-2xl);
  background: var(--color-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.gallery-thumb {
  display: block;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 180px;
  position: relative;
}

.gallery-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background var(--transition-fast);
  border-radius: var(--radius-lg);
}

.gallery-thumb:hover::after {
  background: rgba(0, 0, 0, 0.15);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-thumb:hover img {
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox[hidden] {
  display: flex;
  pointer-events: none;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition-fast);
  z-index: 1;
  line-height: 1;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 3rem;
  cursor: pointer;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-fast);
  z-index: 1;
  line-height: 1;
}

.lightbox-prev { left: var(--space-md); }
.lightbox-next { right: var(--space-md); }

.lightbox-prev:hover,
.lightbox-next:hover {
  color: white;
  background: rgba(255, 255, 255, 0.12);
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact {
  background: var(--color-bg-alt);
  position: relative;
}

.contact-intro {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.contact-intro.centered {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact channels — horizontal row */
.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
  color: var(--color-text);
  text-align: center;
  text-decoration: none;
}

.contact-channel:hover {
  border-color: rgba(31, 122, 111, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--color-primary);
}

.contact-channel-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.contact-channel-icon svg {
  color: var(--color-primary);
}

.contact-channel-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
}

.contact-channel-value {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
}

.contact-channel:hover .contact-channel-value {
  color: var(--color-primary);
}

/* Contact note — practicalities */
.contact-note {
  background: var(--color-surface);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-md);
  margin-top: var(--space-xl);
}

.contact-note h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.contact-note-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md) var(--space-xl);
}

.contact-note-grid p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Contact Form — full width
   -------------------------------------------------------------------------- */
.contact-form-full {
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  padding: var(--space-xl) var(--space-xl) var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  width: 100%;
}

.form-header {
  margin-bottom: var(--space-xl);
}

.form-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.form-header p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text);
}

.label-optional {
  font-weight: 400;
  color: var(--color-text-muted);
  text-transform: none;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.875rem var(--space-md);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
  background: var(--color-bg);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
}

.form-actions .btn {
  width: 100%;
  max-width: 400px;
}

.form-submit-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
}

.form-confirmation {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-primary-light);
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.form-confirmation.visible {
  opacity: 1;
  transform: translateY(0);
}

.form-confirmation p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.6;
}

.form-confirmation p + p {
  margin-top: var(--space-xs);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.form-confirmation a {
  color: var(--color-primary);
  text-decoration: underline;
}

.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
}

.form-checkboxes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-sm) var(--space-lg);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--color-text);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--color-primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.newsletter-label {
  padding: var(--space-md);
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  border: 1px solid rgba(31, 122, 111, 0.15);
}

.newsletter-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--color-earth);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-xl) 0 var(--space-lg);
  position: relative;
}

/* Gradient accent at top of footer — Pacific-inspired warm tones woven with teal */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-pacific-gold),
    var(--color-secondary),
    var(--color-pacific-terracotta),
    var(--color-primary)
  );
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: 3px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-top: var(--space-xs);
}

.footer-tagline {
  color: var(--color-secondary) !important;
  font-size: 0.875rem;
}

.footer-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-lg);
}

.footer-services span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-social {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-social a:hover {
  color: var(--color-secondary);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   Mobile Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  /* Sidebar becomes off-canvas */
  .sidebar {
    transform: translateX(-100%);
    transition: transform var(--transition-base);
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .sidebar-toggle {
    display: flex;
  }

  .sidebar-overlay.active {
    display: block;
  }

  main {
    margin-left: 0;
  }

  .footer {
    margin-left: 0;
  }

  .hero {
    padding-top: var(--space-2xl);
  }

  .hero-bg img {
    object-position: 40% 30%;
  }

  .hero-content {
    align-self: center;
    text-align: center;
    padding-left: 0;
  }

  .hero-title::after {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-scroll {
    display: none;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-highlights {
    justify-content: center;
  }

  .psicosoma-pricing {
    flex-direction: column;
  }

  .psicosoma-price {
    width: 100%;
  }

  .footer-social {
    flex-direction: column;
    gap: var(--space-md);
  }

  .video-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-thumb {
    height: 140px;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 2rem;
    width: 40px;
    height: 40px;
  }

  .contact-channels {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-checkboxes-grid {
    grid-template-columns: 1fr;
  }

  .contact-note-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-full {
    padding: var(--space-lg);
  }
}

/* --------------------------------------------------------------------------
   Skip Link (Accessibility)
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--color-primary);
  color: white;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  z-index: 2000;
  font-weight: 500;
}

.skip-link:focus {
  top: var(--space-sm);
  color: white;
}

/* --------------------------------------------------------------------------
   Reduced Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scroll-indicator::before {
    animation: none;
  }

  .service-card:hover {
    transform: none;
  }

  .btn-primary:hover {
    transform: none;
  }

  .sidebar {
    transition: none;
  }

  .service-card:hover .service-card-image img,
  .gallery-thumb:hover img {
    transform: none;
  }
}
