@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;0,6..96,700;1,6..96,400&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #FAFAF9; /* Stone 50 */
  --bg-soft: #F5F5F4; /* Stone 100 */
  --surface: rgba(250, 250, 249, 0.85);
  --line: #E7E5E4; /* Stone 200 */
  --line-strong: #D6D3D1; /* Stone 300 */
  
  --text: #1C1917; /* Stone 900 */
  --text-strong: #0C0A09; /* Stone 950 */
  --muted: #57534E; /* Stone 600 */
  --muted-soft: #78716C; /* Stone 500 */
  
  --primary: #1C1917;
  --secondary: #44403C;
  --cta: #CA8A04; /* Gold */
  --cta-hover: #A16207;
  
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Jost", sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-name, .serif {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  color: var(--text-strong);
  margin: 0;
}

p {
  margin: 0;
  line-height: 1.6;
}

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

button {
  border: 0;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

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

/* Layout */
.salon-shell {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
  box-shadow: 0 0 40px rgba(0,0,0,0.02);
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-soft);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--text-strong);
}

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

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

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch {
  display: flex;
  gap: 8px;
  font-size: 12px;
}

.lang-btn {
  color: var(--muted-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  padding: 4px;
}

.lang-btn.active {
  color: var(--text-strong);
  font-weight: 600;
  border-bottom: 1px solid var(--text-strong);
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.3s ease;
}

.primary-link:hover {
  background: var(--cta);
}

.menu-toggle {
  display: none;
  width: 24px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--text-strong);
}

.mobile-menu {
  display: none;
}

/* Sections */
section {
  padding: 80px 40px;
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: 48px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
}

.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cta);
  margin-bottom: 12px;
  display: block;
}

/* Hero Section */
.hero-section {
  padding: 0;
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250,250,249,0.95) 0%, rgba(250,250,249,0.7) 40%, rgba(250,250,249,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 40px;
  max-width: 650px;
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-strong);
}

.hero-content p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 28px;
  border: 1px solid var(--text-strong);
  color: var(--text-strong);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--text-strong);
  color: #fff;
}

/* Proof Strip */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.proof-strip article {
  padding: 40px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.proof-strip article:last-child {
  border-right: none;
}

.proof-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-soft);
  margin-bottom: 8px;
}

.proof-strip h2 {
  font-size: 24px;
  color: var(--text-strong);
}

/* Services */
.services-section {
  background: var(--bg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  /* removed unused tailwind group class */
}

.service-image-wrapper {
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 4/5;
  position: relative;
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .service-image-wrapper img {
  transform: scale(1.05);
}

.service-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.service-chip {
  color: var(--cta);
}

.service-time {
  color: var(--muted-soft);
}

.service-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 15px;
}

.service-price {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Experience */
.experience-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: #fff;
}

.experience-visual {
  position: relative;
  aspect-ratio: 3/4;
}

.experience-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-copy {
  padding-right: 40px;
}

.experience-copy h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 40px;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.process-item {
  display: flex;
  gap: 24px;
}

.process-num {
  font-family: "Bodoni Moda", serif;
  font-size: 24px;
  color: var(--cta);
  font-style: italic;
}

.process-content p {
  color: var(--muted);
  font-size: 16px;
}

/* Testimonials */
.testimonial-section {
  background: var(--bg-soft);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.quote-card {
  padding: 40px;
  background: #fff;
  border: 1px solid var(--line);
}

.quote-icon {
  font-family: "Bodoni Moda", serif;
  font-size: 60px;
  color: var(--cta);
  line-height: 0;
  margin-bottom: 20px;
}

.quote-copy {
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  margin-bottom: 24px;
}

.quote-author {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Booking */
.booking-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--primary);
  color: #fff;
  padding: 0;
  border-bottom: none;
}

.booking-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.booking-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-content .eyebrow {
  color: var(--cta);
}

.booking-content h2 {
  color: #fff;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 24px;
}

.booking-content p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  font-size: 16px;
}

.booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--cta);
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  border: none;
  transition: background 0.3s;
  align-self: flex-start;
}

.booking-btn:hover {
  background: #fff;
  color: var(--primary);
}

/* Footer */
.site-footer {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}

.footer-copy {
  font-size: 13px;
  color: var(--muted-soft);
}

.footer-meta {
  display: flex;
  gap: 24px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* Mobile & Iframe specific styles */
body.force-mobile .salon-shell {
  max-width: 430px;
}

body.force-mobile .topbar {
  padding: 16px 20px;
}

body.force-mobile .nav-links,
body.force-mobile .primary-link,
body.force-mobile .lang-switch {
  display: none;
}

body.force-mobile .menu-toggle {
  display: flex;
}

body.force-mobile .mobile-menu {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

body.force-mobile .mobile-menu.is-open {
  max-height: 300px;
}

body.force-mobile .mobile-menu a {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

body.force-mobile section {
  padding: 50px 20px;
}

body.force-mobile .hero-section {
  height: auto;
  min-height: 500px;
  padding: 0;
}

body.force-mobile .hero-content {
  padding: 40px 20px;
}

body.force-mobile .hero-overlay {
  background: linear-gradient(to bottom, rgba(250,250,249,0.4) 0%, rgba(250,250,249,0.95) 70%, rgba(250,250,249,1) 100%);
}

body.force-mobile .hero-content h1 {
  font-size: 2.5rem;
}

body.force-mobile .hero-actions {
  flex-direction: column;
  align-items: stretch;
}

body.force-mobile .hero-actions a {
  text-align: center;
}

body.force-mobile .proof-strip,
body.force-mobile .service-grid,
body.force-mobile .experience-section,
body.force-mobile .testimonial-grid,
body.force-mobile .booking-section {
  grid-template-columns: 1fr;
}

body.force-mobile .proof-strip article {
  border-right: none;
  border-bottom: 1px solid var(--line);
  padding: 30px 20px;
}

body.force-mobile .proof-strip article:last-child {
  border-bottom: none;
}

body.force-mobile .experience-copy {
  padding-right: 0;
}

body.force-mobile .booking-content {
  padding: 50px 20px;
}

body.force-mobile .site-footer {
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 30px 20px;
}

/* Standard Responsive */
@media (max-width: 1024px) {
  .service-grid, .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .topbar {
    padding: 16px 20px;
  }
  
  .nav-links, .primary-link {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .mobile-menu.is-open {
    max-height: 300px;
  }
  
  .mobile-menu a {
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  
  section {
    padding: 60px 20px;
  }
  
  .hero-section {
    min-height: 500px;
  }
  
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(250,250,249,0.4) 0%, rgba(250,250,249,0.95) 70%, rgba(250,250,249,1) 100%);
  }
  
  .hero-content {
    padding: 40px 20px;
    align-self: flex-end;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-actions a {
    text-align: center;
  }
  
  .proof-strip,
  .service-grid,
  .experience-section,
  .testimonial-grid,
  .booking-section {
    grid-template-columns: 1fr;
  }
  
  .proof-strip article {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  
  .experience-copy {
    padding-right: 0;
  }
  
  .booking-content {
    padding: 60px 20px;
  }
  
  .site-footer {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding: 30px 20px;
  }
}
