/* ===== SILENSIA — Centro Estetico & Spa ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Great+Vibes&family=Nunito+Sans:wght@200;300;400;600&display=swap');

:root {
  --gold: #C6A96C;
  --gold-light: #dcc99a;
  --gold-dark: #a8875e;
  --emerald: #1B6B3A;
  --emerald-light: #2E8B57;
  --emerald-dark: #145530;
  --rose: #D4A5A5;
  --rose-light: #e8c5c5;
  --rose-dark: #b88585;
  --white: #FFFFFF;
  --off-white: #FAF8F5;
  --cream: #F5F0EB;
  --text: #3a3a3a;
  --text-light: #6b6b6b;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito Sans', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 300;
}

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--emerald);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-dark);
  text-align: center;
  margin-bottom: 48px;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto 28px;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }
.reveal-delay-5 { transition-delay: 0.75s; }

@keyframes float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }
@keyframes pulse-glow { 0%,100%{ box-shadow: 0 0 20px rgba(201,168,130,.3); } 50%{ box-shadow: 0 0 35px rgba(201,168,130,.6); } }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes hero-spin { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.06);
  padding: 12px 0;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #006B24;
  text-decoration: none;
  transition: color 0.4s;
}
.navbar.scrolled .nav-logo { color: var(--text); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}
.navbar.scrolled .nav-toggle span { background: var(--text); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--white);
}
.hero-bg {
  display: none;
}
.hero-overlay {
  display: none;
}
.hero-side {
  position: absolute;
  top: 0;
  height: 100%;
  width: 35%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}
.hero-side-left {
  left: 0;
  mask-image: linear-gradient(to right, black 20%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 20%, transparent 100%);
}
.hero-side-right {
  right: 0;
  mask-image: linear-gradient(to left, black 20%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 20%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text);
  padding: 0 24px;
  padding-top: 80px;
  animation: fadeInUp 1.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo {
  width: clamp(280px, 48vw, 460px);
  height: auto;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease;
}
.hero-content .lotus-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
  animation: float 4s ease-in-out infinite;
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text);
}
.hero-content .tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  margin-bottom: 36px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s;
  background: transparent;
}
.hero-cta:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(201,168,130,0.4);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}
.hero-scroll-indicator span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 2px;
  animation: float 2s ease-in-out infinite;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 100px 0;
  background: url('images/spa-atmosphere.png') center/cover no-repeat fixed;
  position: relative;
  overflow: hidden;
}
.philosophy::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.82);
  z-index: 0;
}
.philosophy > .container {
  position: relative;
  z-index: 1;
}
.philosophy::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: url('images/sacred-geometry.png') center/contain no-repeat;
  opacity: 0.05;
  animation: spin-slow 200s linear infinite;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.philosophy-grid--centered {
  grid-template-columns: 1fr;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}
.philosophy-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.philosophy-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.philosophy-image::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  pointer-events: none;
}
.philosophy-text h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--emerald);
  margin-bottom: 20px;
}
.philosophy-text p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.9;
}
.philosophy-values {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  justify-content: center;
}
.philosophy-value {
  text-align: center;
}
.philosophy-value .icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.philosophy-value span {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
}

/* ===== SERVICES / 5 SENSES ===== */
.services {
  padding: 100px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}
.sense-card {
  background: var(--white);
  border: 1px solid rgba(201,168,130,0.2);
  border-radius: 6px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.sense-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--emerald));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.sense-card:hover::before { transform: scaleX(1); }
.sense-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: var(--gold);
}
.sense-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
  display: block;
}
.sense-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--emerald-dark);
  margin-bottom: 6px;
}
.sense-card .sense-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold-dark);
  margin-bottom: 16px;
  display: block;
}
.sense-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.treatment-list {
  list-style: none;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(201,168,130,0.15);
  text-align: left;
}
.treatment-list li {
  font-size: 0.82rem;
  color: var(--text-light);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.treatment-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/sacred-geometry.png') center/600px no-repeat;
  opacity: 0.04;
  animation: spin-slow 180s linear infinite;
}
.testimonials .section-title { color: var(--white); }
.testimonials .section-subtitle { color: var(--gold-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 36px;
  transition: transform 0.4s, box-shadow 0.4s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.testimonial-card .quote-mark {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
}
.testimonial-card .author {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.8;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail .c-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail div strong {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 2px;
}
.contact-detail div span {
  color: var(--text-light);
  font-size: 0.95rem;
}
.contact-cta {
  background: var(--white);
  border-radius: 8px;
  padding: 48px;
  text-align: center;
  border: 1px solid rgba(201,168,130,0.2);
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}
.contact-cta .cta-icon { font-size: 3rem; margin-bottom: 16px; }
.contact-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.contact-cta p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 28px;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s;
  box-shadow: 0 6px 25px rgba(37,211,102,0.3);
}
.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(37,211,102,0.45);
  background: #20bd5a;
}
.whatsapp-btn svg { width: 22px; height: 22px; fill: currentColor; }

/* ===== TRATTAMENTI ===== */
.treatments {
  padding: 80px 0;
  background: var(--white);
}
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.treatment-category {
  background: var(--cream);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(198,169,108,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}
.treatment-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.treatment-cat-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.treatment-category h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: #006B24;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(198,169,108,0.25);
}
.treatment-category ul {
  list-style: none;
  padding: 0;
}
.treatment-category li {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-light);
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  letter-spacing: 0.01em;
}
.treatment-category li:last-child {
  border-bottom: none;
}

/* ===== SPA PRIVATA ===== */
.private-spa {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  text-align: center;
}
.spa-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  padding: 6px 24px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.spa-description {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.9;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 0 24px;
  background: #1a1a1a;
  color: rgba(255,255,255,0.6);
  text-align: center;
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #006B24;
  margin-bottom: 12px;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.social-link {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s, transform 0.3s;
  display: flex;
}
.social-link:hover {
  color: var(--gold);
  transform: scale(1.15);
}
.footer p { font-size: 0.85rem; margin-bottom: 6px; }
.footer .footer-divider {
  width: 60px;
  height: 1px;
  background: var(--gold-dark);
  margin: 20px auto;
  opacity: 0.4;
}
.footer .copy { font-size: 0.8rem; opacity: 0.5; }
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.82rem;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-links span { color: rgba(255,255,255,0.3); }

/* ===== POLICY MODAL ===== */
.policy-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.policy-content {
  background: var(--white);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 12px;
  padding: 48px 40px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.policy-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
  color: #006B24;
  margin-bottom: 8px;
}
.policy-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  margin: 24px 0 8px;
}
.policy-content p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 12px;
}
.policy-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s;
}
.policy-close:hover { color: var(--text); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(8px);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-family: var(--font-body);
  margin: 0;
  line-height: 1.5;
}
.cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
  transition: color 0.3s;
}
.cookie-banner a:hover { color: var(--gold-dark); }
.cookie-banner button {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 8px 28px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}
.cookie-banner button:hover { background: var(--gold-dark); }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(37,211,102,0.4);
  transition: all 0.4s;
  animation: pulse-glow 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(37,211,102,0.6);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

/* ===== MUSIC TOGGLE ===== */
.music-toggle {
  position: fixed;
  bottom: 100px;
  right: 32px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: rgba(201,168,130,0.9);
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(201,168,130,0.3);
}
.music-toggle:hover {
  transform: scale(1.1);
  background: var(--gold);
}
.music-icon {
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1;
}
.music-toggle.playing .music-icon {
  animation: pulse-note 1s ease-in-out infinite;
}
@keyframes pulse-note {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
.music-toggle.muted {
  opacity: 0.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .philosophy { background-attachment: scroll; }
  .philosophy-grid,
  .contact-wrapper { grid-template-columns: 1fr; }
  .philosophy-image { order: -1; }
  .philosophy-image img { height: 320px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-side { opacity: 0.35; width: 30%; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    padding: 24px 0;
    gap: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }
  .nav-links.active a { color: var(--text) !important; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-cta { padding: 32px 20px; }
  .hero-content h1 { letter-spacing: 0.1em; }
  .hero-side { display: none; }
  .philosophy-values { flex-wrap: wrap; gap: 20px; justify-content: center; }
}
