/* Ivy Beauty Bar - Complete Stylesheet */

/* ============================================
   CSS Variables (Brand Colors)
   ============================================ */
:root {
  --ivy-brown: #8B7355;
  --ivy-brown-dark: #6B5A45;
  --ivy-gold: #C4A86B;
  --ivy-gold-dark: #A68B4B;
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --amber-50: #fffbeb;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

ul, ol {
  list-style: none;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.75rem; }
}

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

/* ============================================
   Layout & Container
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-white { background-color: var(--white); }
.section-stone { background-color: var(--stone-50); }
.section-gradient {
  background: linear-gradient(to bottom right, var(--stone-100), rgba(255, 251, 235, 0.3));
}
.section-brown {
  background: linear-gradient(to bottom right, var(--ivy-brown), var(--ivy-brown-dark));
  color: var(--white);
}

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

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(1, 1fr); }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
  background-color: var(--ivy-brown);
  color: var(--white);
  padding: 0.5rem 0;
  font-size: 0.875rem;
  display: none;
}

@media (min-width: 768px) {
  .top-bar { display: block; }
}

.top-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.top-bar a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
}

.top-bar a:hover {
  color: var(--ivy-gold);
}

.top-bar span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar svg {
  width: 1rem;
  height: 1rem;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo img {
  height: 3.5rem;
  width: auto;
}

@media (min-width: 768px) {
  .logo img { height: 4rem; }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-links a {
  color: var(--gray-700);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--ivy-brown);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-700);
}

@media (min-width: 768px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--gray-100);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  color: var(--gray-700);
  font-weight: 500;
}

.mobile-menu a:hover {
  color: var(--ivy-brown);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-gold {
  background-color: var(--ivy-gold);
  color: var(--white);
}

.btn-gold:hover {
  background-color: var(--ivy-gold-dark);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-brown {
  background-color: var(--ivy-brown);
  color: var(--white);
}

.btn-brown:hover {
  background-color: var(--ivy-brown-dark);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--ivy-brown);
  color: var(--ivy-brown);
}

.btn-outline:hover {
  background-color: var(--ivy-brown);
  color: var(--white);
}

.btn-white-outline {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-white-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ============================================
   Badge / Tag
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: rgba(196, 168, 107, 0.1);
  color: var(--ivy-brown);
  font-size: 0.875rem;
  font-weight: 500;
}

.badge svg {
  width: 1rem;
  height: 1rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.hero-gradient {
  background: linear-gradient(to bottom right, var(--stone-100), rgba(255, 251, 235, 0.3));
}

.hero-blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(64px);
}

.hero-blob-1 {
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background-color: rgba(196, 168, 107, 0.1);
}

.hero-blob-2 {
  bottom: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background-color: rgba(139, 115, 85, 0.1);
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 2rem;
}

/* ============================================
   Cards
   ============================================ */
.card {
  background-color: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card-text {
  color: var(--gray-600);
  font-size: 0.875rem;
}

/* Service Card with overlay */
.service-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
}

.service-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.service-card-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Video Section
   ============================================ */
.video-container {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   Features / Values Grid
   ============================================ */
.feature-item {
  text-align: center;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, rgba(196, 168, 107, 0.2), rgba(139, 115, 85, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--ivy-brown);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-text {
  color: var(--gray-600);
}

/* ============================================
   About / Story Section
   ============================================ */
.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.about-image-blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(32px);
  z-index: -1;
}

.about-image-blob-1 {
  bottom: -1.5rem;
  right: -1.5rem;
  width: 12rem;
  height: 12rem;
  background-color: rgba(196, 168, 107, 0.1);
}

.about-image-blob-2 {
  top: -1.5rem;
  left: -1.5rem;
  width: 8rem;
  height: 8rem;
  background-color: rgba(139, 115, 85, 0.1);
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-quote {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-100);
}

.about-quote p:first-child {
  color: var(--ivy-brown);
  font-weight: 500;
  font-style: italic;
  font-size: 1.125rem;
}

.about-quote p:last-child {
  color: var(--gray-500);
  margin-top: 0.5rem;
}

/* ============================================
   Treatment Cards
   ============================================ */
.treatment-card {
  background-color: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.treatment-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.treatment-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.treatment-price {
  font-weight: 700;
  color: var(--ivy-gold);
  font-size: 1.125rem;
}

.treatment-description {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.treatment-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--gray-500);
  background-color: var(--gray-50);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.treatment-duration svg {
  width: 0.875rem;
  height: 0.875rem;
}

/* ============================================
   Membership Cards
   ============================================ */
.membership-card {
  background-color: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.membership-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.membership-card.featured {
  border: 2px solid var(--ivy-gold);
  transform: scale(1.02);
}

.membership-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.membership-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--ivy-gold);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.membership-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.membership-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ivy-brown);
}

.membership-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-500);
}

.membership-features {
  margin: 1.5rem 0;
  text-align: left;
}

.membership-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--gray-600);
  font-size: 0.875rem;
}

.membership-features svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--ivy-gold);
  flex-shrink: 0;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: rgba(196, 168, 107, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--ivy-gold);
}

.contact-info-title {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.contact-info-text {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.contact-info-text a {
  color: var(--ivy-brown);
}

.contact-info-text a:hover {
  color: var(--ivy-gold);
}

.map-container {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
}

/* Opening Hours */
.opening-hours {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.opening-hours-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.opening-hours-title svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--ivy-gold);
}

.opening-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.875rem;
}

.opening-hours-list li:last-child {
  border-bottom: none;
}

.opening-hours-list .day {
  color: var(--gray-700);
}

.opening-hours-list .time {
  color: var(--gray-600);
}

.opening-hours-list .closed {
  color: var(--ivy-gold);
}

/* ============================================
   Job / Vacancy Card
   ============================================ */
.vacancy-card {
  background: linear-gradient(to bottom right, var(--stone-50), rgba(255, 251, 235, 0.3));
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .vacancy-card { padding: 3rem; }
}

.vacancy-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.vacancy-title {
  font-size: 1.75rem;
}

.vacancy-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-600);
}

.vacancy-location svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--ivy-gold);
}

.vacancy-section {
  margin-bottom: 2.5rem;
}

.vacancy-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.vacancy-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--gray-600);
}

.vacancy-list svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--ivy-gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.benefits-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--white);
  border-radius: 0.75rem;
}

.benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: rgba(196, 168, 107, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--ivy-gold);
}

.benefit-text {
  color: var(--gray-700);
  font-size: 0.875rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background-color: var(--ivy-brown);
  color: var(--white);
}

.footer-main {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-top: 1.5rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--ivy-gold);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--ivy-gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
  color: var(--ivy-gold);
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-hours .closed {
  color: var(--ivy-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--ivy-gold);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  background: linear-gradient(to bottom right, var(--ivy-brown), var(--ivy-brown-dark));
  color: var(--white);
  padding: 5rem 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* ============================================
   Floating Book Button
   ============================================ */
.floating-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background-color: var(--ivy-gold);
  color: var(--white);
  border-radius: 9999px;
  font-weight: 600;
  box-shadow: 0 10px 40px rgba(196, 168, 107, 0.4);
  transition: all 0.3s ease;
}

.floating-btn:hover {
  background-color: var(--ivy-gold-dark);
  transform: scale(1.05);
}

.floating-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ============================================
   Collapsible / Accordion
   ============================================ */
.accordion {
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background-color: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: var(--gray-50);
}

.accordion-header svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gray-500);
  transition: transform 0.3s ease;
}

.accordion-header.active svg {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 1.5rem;
  background-color: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.accordion-content.active {
  display: block;
}

.accordion-content ol {
  counter-reset: item;
  padding-left: 0;
}

.accordion-content ol li {
  counter-increment: item;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.6;
}

.accordion-content ol li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  font-weight: 600;
  color: var(--ivy-brown);
}

/* ============================================
   Utilities
   ============================================ */
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-white { color: var(--white); }
.text-gold { color: var(--ivy-gold); }
.text-brown { color: var(--ivy-brown); }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }

/* ============================================
   Studio Images Grid
   ============================================ */
.studio-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .studio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.studio-image {
  aspect-ratio: 1;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: relative;
}

.studio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.studio-image:hover img {
  transform: scale(1.05);
}

/* ============================================
   Hero Video Section
   ============================================ */
.hero-video {
  display: none;
}

@media (min-width: 1024px) {
  .hero-video {
    display: block;
  }
}


