/* =========================================================================
   ClimbPhysio — Luxury Minimalist Stylesheet
   ========================================================================= */

/* --- Custom Properties -------------------------------------------------- */
:root {
  --space-section: clamp(3rem, 5vw, 6rem);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Urbanist', sans-serif;
  --container-width: 1140px;
  --bg: #F2F3F6;
  --bg-alt: #E5E6ED;
  --text: #2A2B38;
  --text-heading: #1A1C28;
  --border: #C6C8D5;
  --border-card: #D2D4E0;
  --btn-text: #4E4E98;
  --btn-border: #7E7ECA;
  --accent-start: #5E5EAA;
  --accent-end: #42428A;
  --text-muted: #6C6D80;
  --rating: #D4943A;
  --rating-stroke: #9A6420;
  --error: #9B2C2C;
  --success: #2D6A4F;
  --error-bg: #FDE8E8;
  --success-bg: #E6F4ED;
  --btn-text-hover: #FFFFFF;
  --mountain: #BEC0CE;
  --anatomy-default: #8C8D9C;
}

/* --- Dark theme --------------------------------------------------------- */
[data-theme="dark"] {
  --bg: #1B1B28;
  --bg-alt: #14141F;
  --text: #EAEAF4;
  --text-heading: #D6D7E5;
  --border: #35354A;
  --border-card: #2C2C40;
  --btn-text: #9898D8;
  --btn-border: #5E5EAA;
  --accent-start: #7A7AC8;
  --accent-end: #5E5EAA;
  --text-muted: #7E7E96;
  --rating: #D4943A;
  --rating-stroke: #9A6420;
  --error: #FC8181;
  --success: #68D391;
  --error-bg: #2D1515;
  --success-bg: #14291F;
  --btn-text-hover: #FFFFFF;
  --mountain: #35354A;
  --anatomy-default: #6E6E84;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* --- Utility ------------------------------------------------------------ */
.hidden {
  display: none !important;
}

/* --- Typography --------------------------------------------------------- */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--text-heading);
  font-weight: 300;
}

h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.18;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 1rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 0.75rem;
}

/* --- Layout ------------------------------------------------------------- */
.section-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* --- Watzmann mountain -------------------------------------------------- */
.watzmann {
  width: 100%;
  aspect-ratio: 670.5 / 239.4;
  pointer-events: none;
  margin-bottom: 2rem;
  background-color: var(--mountain);
  -webkit-mask-image: url(/images/svg/watzman.svg);
  mask-image: url(/images/svg/watzman.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

/* --- Nav ---------------------------------------------------------------- */
.site-header {
  position: relative;
  z-index: 2;
  padding: 1.5rem 0;
  background: var(--bg-alt);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 32px;
  width: auto;
  max-width: none;
  display: block;
}

.logo-body, .logo-l { transition: fill 0.3s; }
.logo-body { fill: #484848; }
.logo-l    { fill: #000400; }

[data-theme="dark"] .logo-body { fill: #9AA0AA; }
[data-theme="dark"] .logo-l    { fill: #FFFFFF; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  transition: color 0.3s;
}

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

/* Language toggle */
.lang-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  transition: color 0.3s;
}

.lang-toggle:hover {
  color: var(--accent-start);
}

.lang-toggle svg {
  height: 22px;
  width: auto;
  display: block;
}

/* Theme toggle */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  transition: color 0.3s;
}

.theme-toggle:hover {
  color: var(--accent-start);
}

.theme-toggle svg {
  height: 18px;
  width: auto;
  display: block;
  overflow: visible;
}

/* Light mode: no fills, no rays */
.headlamp-rays { display: none; }
.headlamp-lens { fill: none; }
.headlamp-dot  { fill: none; }

/* Dark mode: rays visible, lens and rays yellow */
[data-theme="dark"] .headlamp-rays { display: block; color: #F5C518; }
[data-theme="dark"] .headlamp-lens  { fill: #F5C518; }
[data-theme="dark"] .headlamp-dot   { fill: #F5C518; }

/* Palette toggle */
.palette-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  transition: color 0.3s;
}

.palette-toggle:hover {
  color: var(--accent-start);
}

.palette-toggle svg {
  height: 18px;
  width: auto;
  display: block;
}


/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--btn-text);
  background: var(--bg);
  border: 1px solid var(--btn-border);
  border-radius: 50px;
  padding: 12px 32px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background: linear-gradient(300deg, var(--accent-start) 0%, var(--accent-end) 100%);
  color: var(--btn-text-hover);
  border-color: transparent;
}

.btn.loading {
  opacity: 0.6;
  cursor: not-allowed;
}

/* --- Healed / Anatomy animation ----------------------------------------- */
.healed {
  padding: var(--space-section) 0;
  text-align: center;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

.anatomy-figures {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  max-width: 75%;
  margin: 3rem auto;
}

.anatomy-svg {
  min-width: 0;
  height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Distribute width proportionally to each SVG's viewBox aspect ratio
   so both render at the same visual height.
   Male  viewBox: 634.95 / 611.49  ≈ 1.0384
   Female viewBox: 1586.95 / 1704.40 ≈ 0.9311  */
#anatomy-male   { flex: 1.0384 1 0; }
#anatomy-female { flex: 0.9311 1 0; }

.anatomy-svg svg {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
}

/* Default muscle path color */
/* transition-duration is overridden inline by anatomy.js to match each counter's speed */
.anatomy-svg path[data-muscle] {
  fill: var(--anatomy-default);
  transition: fill 1s ease-out;
}

/* Outline / detail paths stay as-is */
.anatomy-svg path[data-muscle="outline"] {
  transition: none;
}

.anatomy-svg path[data-muscle="detail"] {
  transition: none;
}

/* Healed state — transition to green */
.anatomy-svg path[data-muscle].healed {
  fill: var(--accent-start) !important;
}

/* Counter grid */
.counter-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
}

.counter-value {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--text-heading);
  font-variant-numeric: tabular-nums;
  min-width: 3ch;
  display: inline-block;
  line-height: 1.2;
}

.counter-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .anatomy-svg path[data-muscle] {
    transition: none;
  }
  .review-slide.active {
    animation: none;
  }
  .review-slide.active .rating-icon {
    animation: none !important;
  }
}

/* Responsive: keep figures side-by-side, just shrink */
@media (max-width: 768px) {
  .anatomy-figures {
    gap: 0.5rem;
    margin: 1.5rem auto 0.75rem;
  }

  .anatomy-svg {
    height: 200px;
  }

  .counter-grid {
    gap: 1.5rem 2rem;
  }
}

/* --- Hero --------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 15vh;
}

.hero::before,
.healed::after,
.about::after,
.reviews::after,
.review-form-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

[data-theme="dark"] .hero::before,
[data-theme="dark"] .healed::after,
[data-theme="dark"] .about::after,
[data-theme="dark"] .reviews::after,
[data-theme="dark"] .review-form-section::after {
  background: rgba(0, 0, 0, 0.15);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}

.hero-content h1 {
  color: var(--text-heading);
}

/* --- About -------------------------------------------------------------- */
.about {
  padding: var(--space-section) 0;
  text-align: center;
  position: relative;
}

.about-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  text-align: left;
  max-width: 900px;
  margin: 2rem auto 0;
}

.about-photo img {
  width: 180px;
  min-width: 180px;
  height: 180px;
  max-width: none;
  border-radius: 50%;
  object-fit: cover;
}

.about-text p {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* --- Photo Dividers ----------------------------------------------------- */
.photo-divider {
  min-height: clamp(200px, 30vh, 400px);
  position: relative;
  overflow: hidden;
}

.photo-divider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

/* --- Reviews Carousel --------------------------------------------------- */
.reviews {
  padding: var(--space-section) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: clamp(300px, 40vw, 500px);
  font-weight: 300;
  color: var(--accent-start);
  opacity: 0.04;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.reviews-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: var(--container-width);
  margin: 2rem auto 0;
  padding: 0 2rem;
  min-height: 300px;
}

.carousel-track {
  flex: 1;
  max-width: 900px;
  position: relative;
  display: grid;
  align-items: center;
}

.review-slide {
  grid-area: 1 / 1;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.review-slide.active {
  visibility: visible;
  animation: carouselFade 0.5s ease;
  opacity: 1;
}

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

/* Alternate photo side: even slides put photo on right */
.review-slide:nth-child(even) {
  flex-direction: row-reverse;
}

.review-photo {
  flex-shrink: 0;
  width: 220px;
}

.review-thumbnail {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
}

.review-body {
  flex: 1;
  text-align: center;
}

.review-stars {
  margin-bottom: 1rem;
}

.rating-icons {
  display: inline-flex;
  gap: 2px;
  align-items: center;
}

.rating-icon svg,
.star svg {
  display: block;
  width: 20px;
  height: 20px;
}

.star-svg .star-shape {
  stroke: var(--rating-stroke);
  fill: none;
}

.filled .star-svg .star-shape,
.rating-icon.filled .star-svg .star-shape {
  fill: var(--rating);
}

@keyframes starPop {
  0%   { transform: scale(0.8); opacity: 0; }
  50%  { transform: scale(1.25); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.review-slide.active .rating-icon:nth-child(1) { animation: starPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both; }
.review-slide.active .rating-icon:nth-child(2) { animation: starPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.21s both; }
.review-slide.active .rating-icon:nth-child(3) { animation: starPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.27s both; }
.review-slide.active .rating-icon:nth-child(4) { animation: starPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.33s both; }
.review-slide.active .rating-icon:nth-child(5) { animation: starPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.39s both; }

.review-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.review-text::before { content: "\201C"; }
.review-text::after  { content: "\201D"; }

.review-name {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.review-injury {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Arrows */
.carousel-arrow {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 3rem;
  color: var(--text);
  opacity: 0.3;
  transition: opacity 0.2s, color 0.2s, transform 0.2s;
  padding: 1rem;
  user-select: none;
  flex-shrink: 0;
}

.carousel-arrow:hover {
  opacity: 1;
  color: var(--accent-start);
  transform: scale(1.15);
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--border-card);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  padding: 0;
}

.carousel-dot.active {
  background: var(--text);
  border-color: var(--text);
}

.carousel-dot:hover {
  border-color: var(--accent-start);
}

.reviews-empty {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  text-align: center;
  padding: 3rem 0;
}

.reviews-actions {
  text-align: center;
  margin-top: 2rem;
}

/* --- Review Form -------------------------------------------------------- */
.review-form-section {
  background: var(--bg);
  padding: var(--space-section) 0;
  text-align: center;
  position: relative;
}

.review-form-section form {
  max-width: 600px;
  margin: 2rem auto 0;
  text-align: left;
}

.review-form-section form > .btn {
  display: block;
  margin: 1.5rem auto 0;
}

.review-form-section label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.review-form-section .required {
  color: var(--accent-start);
}

.review-form-section input[type="text"]:not(#injury-input),
.review-form-section textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  margin-bottom: 1.5rem;
}

.review-form-section input[type="text"]:not(#injury-input):focus,
.review-form-section textarea:focus {
  border-color: var(--accent-start);
}

.review-form-section textarea {
  min-height: 120px;
  resize: vertical;
}

.review-form-section input[type="file"] {
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

/* Star rating */
#star-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
  color: #FFC107;
}

#star-rating .star {
  cursor: pointer;
  transition: transform 0.2s, color 0.2s;
  user-select: none;
  color: inherit;
}

#star-rating .star svg {
  pointer-events: none;
}

#star-rating .star:hover,
#star-rating .star:hover ~ .star {
  transform: scale(1.15);
}

/* Honeypot */
.honeypot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* Image preview — square crop container */
.image-preview-container {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-top: 0.75rem;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  border: 1px solid var(--border);
}

.image-preview-container.dragging {
  cursor: grabbing;
}

.image-preview-container .image-preview {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.image-preview-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 4px 0;
  pointer-events: none;
  letter-spacing: 0.5px;
}

.image-error {
  color: var(--error);
  font-size: 14px;
  display: block;
  margin-top: 0.25rem;
}

/* Injury tags (multi-select chips) */
.injury-tag-input {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  cursor: text;
  min-height: 46px;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s;
}

.injury-tag-input:focus-within {
  border-color: var(--accent-start);
}

#injury-input {
  border: none;
  background: transparent;
  outline: none;
  padding: 0;
  margin: 0;
  flex: 1;
  min-width: 8ch;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
}

.injury-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: color-mix(in srgb, var(--accent-start) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent-start) 40%, transparent);
  color: var(--text);
  border-radius: 20px;
  padding: 3px 10px 3px 12px;
  font-size: 13px;
  font-weight: 400;
}

.injury-tag-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1;
  padding: 0 2px;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}

.injury-tag-remove:hover {
  color: var(--text);
}

/* Injury suggestions dropdown */
.injury-input-wrapper {
  position: relative;
}

#injury-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
  display: none;
}

#injury-suggestions.visible {
  display: block;
}

#injury-suggestions .suggestion {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  transition: background 0.2s;
}

#injury-suggestions .suggestion:hover {
  background: var(--bg-alt);
}

/* Form message */
.form-message {
  display: none;
  max-width: 600px;
  margin: 1rem auto;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.form-message.success,
.form-message.error {
  display: block;
}

.form-message.success {
  background: var(--success-bg);
  color: var(--success);
}

.form-message.error {
  background: var(--error-bg);
  color: var(--error);
}

/* --- Capsule Cards (Certificates & Specialisations) --------------------- */
.page-intro {
  text-align: center;
  padding: var(--space-section) 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding-bottom: var(--space-section);
}

.capsule-card {
  border: 1px solid var(--border-card);
  border-radius: 165px;
  padding: 80px 50px;
  text-align: center;
  transition: box-shadow 0.3s;
}

.capsule-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.capsule-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 1rem;
}

.capsule-card p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.6;
}

.card-detail {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

/* --- Footer ------------------------------------------------------------- */
.site-footer {
  padding: 1.5rem 0;
  text-align: center;
  background: var(--bg-alt);
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.footer-contact {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.footer-contact a {
  color: var(--text);
  transition: color 0.3s;
}

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

.footer-copy {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* --- Responsive --------------------------------------------------------- */

/* Tablet */
@media (max-width: 1024px) {
  .section-label {
    font-size: 12px;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .capsule-card {
    border-radius: 80px;
    padding: 50px 30px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .section-label {
    font-size: 10px;
  }

  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links a {
    font-size: 12px;
  }

  .hero {
    min-height: 100vh;
  }

  .reviews-carousel {
    gap: 0.5rem;
    padding: 0 0.5rem;
    min-height: 300px;
  }

  .review-slide,
  .review-slide:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }

  .review-body {
    text-align: center;
  }

  .review-photo {
    width: 150px;
  }

  .review-thumbnail {
    width: 150px;
    height: 150px;
  }

  .carousel-dots {
    margin-top: 1.5rem;
  }

  .reviews-actions {
    margin-top: 1.5rem;
  }

  .carousel-arrow {
    font-size: 2rem;
    padding: 0.5rem;
  }

  .capsule-card {
    border: none;
    border-radius: 0;
    padding: 2rem 1rem;
    border-bottom: 1px solid var(--border);
  }

  .capsule-card:hover {
    box-shadow: none;
  }

  .about-photo img {
    width: 150px;
    min-width: 150px;
    height: 150px;
  }

  .image-preview-container {
    width: 150px;
    height: 150px;
  }
}
