/* Mew Medical - Fresh logo-led design system */
/* Exact palette: soft mint #5fbfa8, deep #4aa892/#357a69, charcoal #1a1f2a */

:root {
  --primary: #5fbfa8;
  --primary-dark: #4aa892;
  --primary-deep: #357a69;
  --mint-primary: #5fbfa8;
  --surface-alt: #edede7;
  --mint-secondary: #4aa892;
  --mint-deep: #357a69;
  --charcoal-primary: #1a1f2a;
  --charcoal-secondary: rgba(26, 31, 42, 0.8);
  --light-bg: #f3f2ed;
  --glass-bg: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(26, 31, 42, 0.08);
  --radius-soft: 20px;
  --radius-sharp: 8px;
  --shadow-light: 0 8px 32px rgba(0,0,0,0.06);
  --shadow-heavy: 0 25px 50px -12px rgba(0,0,0,0.15);
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.5s;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.08);
  --radius: 12px;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.65;
  color: var(--charcoal-primary);
  background: var(--light-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Geometric backdrop */
.geometric-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.04;
}

.geo-rect {
  position: absolute;
  border: 1px solid var(--mint-primary);
  background: transparent;
}

.geo-1 { top: 10%; left: 10%; width: 200px; height: 150px; }
.geo-2 { top: 60%; right: 15%; width: 180px; height: 120px; }
.geo-3 { bottom: 20%; left: 20%; width: 160px; height: 100px; }

.geo-line {
  position: absolute;
  height: 2px;
  background: var(--mint-primary);
}

.geo-l1 { top: 25%; left: 5%; width: 40%; }
.geo-l2 { bottom: 30%; right: 10%; width: 35%; transform: rotate(-2deg); }

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all var(--duration) var(--ease-out);
}

.nav-container {
  max-width: 1900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.logo-main {
  height: 70px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 48px;
  margin: 0;
}

.nav-menu a {
  text-decoration: none;
  color: var(--charcoal-primary);
  font-weight: 500;
  font-size: 16px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--mint-primary);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mint-primary), var(--mint-secondary));
  transition: width 0.4s var(--ease-out);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 32px;
  background: var(--mint-primary);
  color: white;
  text-decoration: none;
  font-weight: 500;
  border-radius: 12px;
  font-size: 15px;
  transition: all var(--duration) var(--ease-out);
  box-shadow: var(--shadow-light);
}

.nav-cta:hover {
  background: var(--mint-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--charcoal-primary);
  transition: 0.3s ease;
}

/* Mobile menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 31, 42, 0.95);
  backdrop-filter: blur(20px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.mobile-nav-close {
  position: absolute;
  top: 32px;
  right: 32px;
  color: white;
  font-size: 32px;
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu li {
  margin: 24px 0;
}

.mobile-menu a {
  color: white;
  font-size: 28px;
  font-weight: 400;
  text-decoration: none;
}

.mobile-cta {
  display: inline-block;
  margin-top: 48px;
  padding: 20px 48px;
  background: var(--mint-primary);
  color: white;
  border-radius: 32px;
  font-size: 20px;
  font-weight: 500;
}

/* Hero */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 120px;
  text-align: left;
  background:
    radial-gradient(900px 520px at 20% 20%, rgba(95,191,168,0.16), transparent 55%),
    url("images/hero-bg.png");
  background-size: cover;
  background-position: 75% 10%;
}

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

.hero-badge {
  background: var(--mint-primary);
  color: white;
  padding: 8px 24px;
  border-radius: 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.logo-hero {
  height: 180px;
  width: auto;
  margin: 0 auto 48px;
  display: block;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 32px;
  background: linear-gradient(135deg, var(--mint-secondary), var(--mint-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--charcoal-secondary);
  margin-bottom: 72px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  gap: 64px;
  justify-content: left;
  margin-bottom: 72px;
  flex-wrap: wrap;
}
.hero-section .container {
  display: flex !important;
  align-items: left !important;
  padding-right: 40% !important;
}

.hero-content {
  text-align: left !important;
  max-width: 1200px !important;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--mint-deep), var(--mint-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-item span {
  font-size: 0.95rem;
  color: var(--charcoal-secondary);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 32px;
  justify-content: left;
  flex-wrap: wrap;
}
.hero-logo-large,
.logo-hero {
  margin-left: 0 !important;
  margin-right: auto !important;
  display: block !important;
  text-align: left !important;
}
.hero-subtitle {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  max-width: 650px !important;  /* Keeps readable width */
}
.btn {
  padding: 18px 44px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all var(--duration) var(--ease-out);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-lg {
  padding: 22px 52px;
  font-size: 17px;
}

.btn-primary {
  background: var(--mint-primary);
  color: white;
  box-shadow: var(--shadow-light);
}

.btn-primary:hover {
  background: var(--mint-deep);
  transform: translateY(-4px);
  box-shadow: var(--shadow-heavy);
}

.btn-ghost {
  color: var(--mint-primary);
  border-color: var(--mint-primary);
  background: transparent;
}

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

.btn.full {
  width: 100%;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--mint-primary);
  font-size: 24px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-12px); }
  60% { transform: translateX(-50%) translateY(-6px); }
}

/* Sections */
.section {
  padding: 160px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 120px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 28px;
}

.section-header p {
  font-size: 1.3rem;
  color: var(--charcoal-secondary);
  max-width: 600px;
  margin: 0 auto;
}
.section-header h2 {
  position: relative;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: var(--mint-primary);  /* #5fbfa8 */
  border-radius: 2px;
  opacity: 0.9;
}
/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--surface-alt);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(95, 191, 168, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
}
/* Service icons – flat, solid, on-brand */
.service-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--surface);  /* pure white, matches cards */
    border: 2px solid rgba(95, 191, 168, 0.25);  /* subtle green border */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-md);  /* clean shadow */
}

.service-icon-svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-dark);   /* #4aa892 - your deeper green */
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}


.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-deep);
    margin-top: 16px;
}
/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.text-column {
  font-size: 1.1rem;
  line-height: 1.75;
}

.section-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 36px;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 32px;
    line-height: 1.2;
}

.about-features {
    list-style: none;
    margin: 32px 0;
    padding: 0;
}

.about-features li {
    padding: 8px 0;
    font-size: 1.125rem;
    color: var(--text-muted);
}

.about-features li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 16px;
    vertical-align: middle;
}

.image-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}




/* Gallery */
.transformations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.transformation-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
}

.transformation-before,
.transformation-after {
  aspect-ratio: 1;
  border-radius: var(--radius-soft);
  overflow: hidden;
  background: linear-gradient(135deg, var(--mint-primary), var(--mint-secondary));
  position: relative;
  box-shadow: var(--shadow-light);
  transition: transform 0.6s var(--ease-out);
}

.transformation-before:hover,
.transformation-after:hover {
  transform: scale(1.03);
}

.before-label,
.after-label {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--charcoal-primary);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.after-label {
  background: var(--mint-primary);
}

/* Process */
.process-timeline {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.process-step {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--mint-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  margin: 0 auto 28px;
  box-shadow: var(--shadow-light);
}

.process-step h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 16px;
  font-weight: 400;
}

/* Studio */
.studio-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.studio-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.detail-item h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--mint-primary);
}

.studio-placeholder {
  position: relative;
  height: 480px;
  border-radius: var(--radius-soft);
  background: linear-gradient(145deg, var(--mint-secondary), var(--mint-deep));
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.logo-accent {
  position: absolute;
  bottom: 40px;
  right: 40px;
  opacity: 0.2;
  font-size: 140px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  background: var(--charcoal-primary);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.cta-logo img {
  height: 120px;
  margin-bottom: 48px;
  filter: brightness(1.2) drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}

.cta-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 24px;
  font-weight: 400;
}

.cta-form {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-soft);
  padding: 64px;
  margin: 72px auto;
  max-width: 700px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 24px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-soft);
  font-family: inherit;
  font-size: 16px;
  background: var(--white);
  transition: all 0.3s ease;
}

.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--mint-primary);
  box-shadow: 0 0 0 4px rgba(95, 191, 168, 0.15);
}

.contact-direct {
  opacity: 0.8;
  font-size: 16px;
}

.contact-direct a {
  color: var(--mint-primary);
  text-decoration: none;
}

.contact-direct a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
  .content-grid,
  .studio-content {
    grid-template-columns: 1fr;
    gap: 80px;
    text-align: center;
  }

  .principle {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
}

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

  .hamburger {
    display: flex;
  }

  .hero-stats {
    gap: 32px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

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

  .process-timeline {
    flex-direction: column;
    align-items: center;
  }

  .transformation-pair {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 120px 0;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
