/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --beige: #f5e6d3;
  --rose-gold: #d4a574;
  --rose-gold-dark: #c8966a;
  --rose-gold-light: #e8c5a0;
  --beige-dark: #e8d5c0;
  --text-dark: #4a3e2e;
  --text-medium: #6b5d47;
  --text-light: #8b7a65;
  --shadow: rgba(139, 111, 71, 0.2);
}

body {
  font-family: "Karla", sans-serif;
  color: var(--text-dark);
  background-color: var(--beige);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for sticky footer */
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
  border-bottom: 2px solid var(--rose-gold);
  z-index: 1000;
  box-shadow: 0 2px 10px var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
  transform: scale(1.05);
}

.logo svg {
  display: block;
}

.book-now-btn {
  background: linear-gradient(
    135deg,
    var(--rose-gold) 0%,
    var(--rose-gold-dark) 100%
  );
  color: var(--text-dark);
  border: 2px solid var(--rose-gold-dark);
  padding: 10px 20px;
  font-family: "Karla", sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px var(--shadow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.book-now-btn:hover {
  background: linear-gradient(
    135deg,
    var(--rose-gold-dark) 0%,
    var(--rose-gold) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow);
}

.book-now-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px var(--shadow);
}

/* Main Content */
.main-content {
  margin-top: 0;
  padding: 0;
  contain: layout style;
  transform: translate3d(0, 0, 0);
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 500px;
  overflow: hidden;
  margin-top: 70px;
  contain: layout style paint;
  transform: translate3d(0, 0, 0);
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  contain: layout style paint;
}

.slide.active {
  z-index: 2;
}

.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* SVG pattern background (first slide) - no filters needed */
.slide[data-slide="0"] .slide-background {
  filter: none;
  opacity: 1;
  animation: svgBackgroundMove 25s ease-in-out infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform, background-position;
}

@keyframes svgBackgroundMove {
  0%,
  100% {
    background-position: 0% 0%;
    transform: translate3d(0, 0, 0);
  }
  25% {
    background-position: 5% 3%;
    transform: translate3d(-10px, -5px, 0);
  }
  50% {
    background-position: -3% 5%;
    transform: translate3d(8px, -8px, 0);
  }
  75% {
    background-position: 3% -2%;
    transform: translate3d(-5px, 5px, 0);
  }
}

/* Image backgrounds for other slides */
.slide:not([data-slide="0"]) .slide-background {
  filter: brightness(0.5) contrast(0.9) saturate(0.7);
  opacity: 0.4;
  transform: translate3d(0, 0, 0);
}

.slide.active .slide-background {
  opacity: 1;
}

.slide:not(.active) .slide-background {
  opacity: 0;
}

.slide-foreground {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  padding-right: 0;
}

.slide.active .slide-foreground {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide:not(.active) .slide-foreground {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.foreground-model {
  width: auto;
  max-width: 60%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 -5px 20px rgba(0, 0, 0, 0.2));
  margin-right: 0;
  align-self: flex-end;
  position: relative;
}

.slide.active .foreground-model {
  transform: translateX(0) scale(1);
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.slide:not(.active) .foreground-model {
  transform: translateX(60px) scale(0.95);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px;
  padding-top: 10%;
  padding-bottom: 20px;
  gap: 0;
}

.slide-text {
  max-width: 50%;
  padding: 20px;
  background: rgba(245, 230, 211, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid var(--rose-gold);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  margin-left: 0;
  margin-bottom: 0;
  margin-right: 0;
  z-index: 4;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.slide-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(
    to bottom,
    rgba(245, 230, 211, 0.95) 0%,
    rgba(245, 230, 211, 0.8) 30%,
    rgba(245, 230, 211, 0.4) 70%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Image Reel Carousel - Gallery View */
.image-reel {
  margin-top: auto;
  margin-bottom: 0;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 100%;
}

.reel-track {
  display: flex;
  gap: 15px;
  animation: reelScroll 40s linear infinite;
  will-change: transform;
  width: fit-content;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

.reel-image {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid var(--rose-gold);
  box-shadow: 0 3px 10px var(--shadow);
  background: var(--beige);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reel-image:hover {
  transform: translate3d(0, 0, 0) scale(1.05);
  box-shadow: 0 5px 15px var(--shadow);
  z-index: 10;
  position: relative;
}

.reel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@keyframes reelScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.slide-title {
  font-family: "Karla", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.slide.active .slide-title {
  transform: translateX(0) translateY(0);
  opacity: 1;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.slide:not(.active) .slide-title {
  transform: translateX(-50px) translateY(10px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-name {
  color: var(--rose-gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slide-description {
  font-family: "Karla", sans-serif;
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.slide.active .slide-description {
  transform: translateX(0) translateY(0);
  opacity: 1;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s,
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.slide:not(.active) .slide-description {
  transform: translateX(-50px) translateY(10px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-cta {
  background: linear-gradient(
    135deg,
    var(--rose-gold) 0%,
    var(--rose-gold-dark) 100%
  );
  color: var(--text-dark);
  border: 2px solid var(--rose-gold-dark);
  padding: 12px 24px;
  font-family: "Karla", sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 0 2px 8px var(--shadow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .slide-cta {
  transform: translateX(0) translateY(0);
  opacity: 1;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s,
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s,
    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide:not(.active) .slide-cta {
  transform: translateX(-50px) translateY(10px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-cta:hover {
  background: linear-gradient(
    135deg,
    var(--rose-gold-dark) 0%,
    var(--rose-gold) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow);
}

.slide-cta:active {
  transform: translateY(0);
}

/* Slider Navigation */
.slider-nav {
  position: relative;
  margin-top: 0;
  margin-left: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 4;
  background: rgba(245, 230, 211, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border: 2px solid var(--rose-gold);
  border-top: none;
  border-radius: 0 0 8px 8px;
  width: 100%;
  max-width: 50%;
  box-sizing: border-box;
}

.nav-arrow {
  background: transparent;
  border: 2px solid var(--rose-gold-dark);
  color: var(--text-dark);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0;
}

.nav-arrow:hover {
  background: var(--rose-gold);
  transform: scale(1.1);
}

.nav-arrow:active {
  transform: scale(0.95);
}

.slider-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.dot {
  width: 12px;
  height: 12px;
  border: 2px solid var(--rose-gold-dark);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0;
  padding: 0;
}

.dot.active {
  background: var(--rose-gold-dark);
  transform: scale(1.2);
}

.dot:hover {
  background: var(--rose-gold);
  transform: scale(1.1);
}

/* Mobile adjustments for hero */
@media (max-width: 767px) {
  .slide-text {
    max-width: 85%;
    padding: 15px;
    margin-left: 0;
  }

  .slide-title {
    font-size: 24px;
  }

  .slide-description {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .slide-cta {
    padding: 10px 20px;
    font-size: 12px;
  }

  .foreground-model {
    max-width: 60%;
    max-height: 70vh;
  }

  .slide-text {
    max-width: 85%;
    border: 2px solid var(--rose-gold);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .slider-nav {
    max-width: 85%;
    border: 2px solid var(--rose-gold);
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 10px 15px;
    gap: 15px;
    margin-left: 0;
  }

  .nav-arrow {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

/* Footer Styles */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--beige-dark) 0%, var(--beige) 100%);
  border-top: 2px solid var(--rose-gold);
  z-index: 1000;
  box-shadow: 0 -2px 10px var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text-dark);
  font-family: "Karla", sans-serif;
  font-weight: 500;
  font-size: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 6px 16px;
  border-radius: 0;
  position: relative;
  flex: 1;
  min-width: 0;
}

.footer-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--rose-gold);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.footer-link:hover {
  color: var(--rose-gold-dark);
  transform: translateY(-3px);
}

.footer-link:active {
  transform: translateY(-1px);
}

.footer-icon {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: currentColor;
  font-size: 24px;
  flex-shrink: 0;
  display: block;
}

.footer-link:hover .footer-icon {
  transform: scale(1.15);
  color: var(--rose-gold-dark);
}

.footer-link span {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* Tablet Styles */
@media (min-width: 768px) {
  .header-container {
    padding: 15px 40px;
  }

  .book-now-btn {
    padding: 12px 28px;
    font-size: 16px;
  }

  .logo svg {
    width: 50px;
    height: 50px;
  }

  .footer-container {
    padding: 14px 50px;
    gap: 30px;
  }

  .footer-link {
    font-size: 14px;
    gap: 8px;
    padding: 8px 20px;
  }

  .footer-icon {
    font-size: 26px;
  }

  .hero-slider {
    margin-top: 80px;
  }

  .slide-content {
    padding-top: 8%;
  }

  .foreground-model {
    max-width: 45%;
    max-height: 100%;
  }

  .slide-text {
    max-width: 45%;
    padding: 30px;
    margin-left: 0;
    border: 2px solid var(--rose-gold);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
  }

  .slide-title {
    font-size: 36px;
  }

  .slide-description {
    font-size: 16px;
  }

  .slider-nav {
    max-width: 45%;
    border: 2px solid var(--rose-gold);
    border-top: none;
    border-radius: 0 0 8px 8px;
    margin-left: 0;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .header-container {
    max-width: 1200px;
    padding: 18px 60px;
  }

  .book-now-btn {
    padding: 14px 36px;
    font-size: 18px;
  }

  .logo svg {
    width: 60px;
    height: 60px;
  }

  .footer-container {
    max-width: 1200px;
    padding: 16px 80px;
    justify-content: center;
    gap: 80px;
  }

  .footer-link {
    font-size: 15px;
    gap: 8px;
    padding: 10px 24px;
    flex: 0 1 auto;
  }

  .footer-icon {
    font-size: 28px;
  }

  .hero-slider {
    margin-top: 90px;
  }

  .slide-content {
    padding-top: 6%;
  }

  .foreground-model {
    max-width: 40%;
    max-height: 100%;
  }

  .slide-text {
    max-width: 40%;
    padding: 40px;
    margin-left: 0;
    border: 2px solid var(--rose-gold);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
  }

  .slide-title {
    font-size: 48px;
    margin-bottom: 20px;
  }

  .slide-description {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
  }

  .slide-cta {
    padding: 14px 32px;
    font-size: 16px;
  }

  .slider-nav {
    max-width: 40%;
    border: 2px solid var(--rose-gold);
    border-top: none;
    border-radius: 0 0 8px 8px;
    margin-left: 0;
    padding: 15px 30px;
  }

  .nav-arrow {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .dot {
    width: 14px;
    height: 14px;
  }
}

/* About Section */
.about-section {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  background: var(--beige);
  overflow: hidden;
}

.makeup-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("makeup-pattern.svg");
  background-repeat: repeat;
  background-size: 400px 400px;
  opacity: 0.08;
  z-index: 0;
  animation: makeupPatternMove 30s linear infinite;
}

@keyframes makeupPatternMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 400px 400px;
  }
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-card {
  background: rgba(245, 230, 211, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid var(--rose-gold);
  padding: 50px;
  position: relative;
  box-shadow: 0 10px 40px rgba(139, 111, 71, 0.15);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}

.makeup-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.makeup-item {
  position: absolute;
  color: var(--rose-gold);
  font-size: 32px;
  opacity: 0.25;
  transition: all 0.3s ease;
  animation: makeupFloat 6s ease-in-out infinite;
}

.makeup-item:hover {
  opacity: 0.4;
  transform: scale(1.1);
}

.makeup-brush {
  top: -15px;
  left: 10%;
  animation-delay: 0s;
}

.makeup-lipstick {
  top: -10px;
  right: 15%;
  animation-delay: 1.5s;
  font-size: 28px;
}

.makeup-palette {
  bottom: -15px;
  left: 12%;
  animation-delay: 3s;
  font-size: 36px;
}

.makeup-mirror {
  bottom: -10px;
  right: 10%;
  animation-delay: 4.5s;
  font-size: 30px;
}

@keyframes makeupFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(5deg);
  }
  50% {
    transform: translateY(-5px) rotate(-3deg);
  }
  75% {
    transform: translateY(-15px) rotate(3deg);
  }
}

.about-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    var(--rose-gold) 0%,
    var(--rose-gold-dark) 50%,
    var(--rose-gold) 100%
  );
  z-index: -1;
  opacity: 0.3;
}

.about-header {
  text-align: center;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(212, 165, 116, 0.3);
  position: relative;
  z-index: 2;
}

.about-label {
  font-family: "Karla", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--rose-gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.about-title {
  font-family: "Karla", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0;
}

.about-title .highlight {
  color: var(--rose-gold-dark);
  position: relative;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  z-index: 2;
}

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

.about-intro {
  font-family: "Karla", sans-serif;
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-intro strong {
  color: var(--text-dark);
  font-weight: 600;
}

.about-story {
  font-family: "Karla", sans-serif;
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
  font-style: italic;
}

.about-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.accent-line {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--rose-gold) 50%,
    transparent 100%
  );
}

.accent-icon {
  font-size: 24px;
  color: var(--rose-gold);
  opacity: 0.6;
}

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

/* About Section Responsive */
@media (max-width: 767px) {
  .about-section {
    padding: 40px 15px;
  }

  .about-card {
    padding: 35px 25px;
  }

  .about-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-intro {
    font-size: 15px;
  }

  .about-story {
    font-size: 14px;
  }

  .accent-icon {
    font-size: 20px;
  }

  .makeup-item {
    font-size: 20px;
    opacity: 0.15;
  }

  .makeup-brush {
    top: -10px;
    left: 5%;
  }

  .makeup-lipstick {
    top: -8px;
    right: 8%;
    font-size: 18px;
  }

  .makeup-palette {
    bottom: -10px;
    left: 5%;
    font-size: 22px;
  }

  .makeup-mirror {
    bottom: -8px;
    right: 5%;
    font-size: 20px;
  }

  .makeup-background {
    background-size: 300px 300px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .about-card {
    padding: 45px 40px;
  }

  .about-title {
    font-size: 32px;
  }

  .makeup-item {
    font-size: 26px;
  }

  .makeup-background {
    background-size: 350px 350px;
  }
}

@media (min-width: 1024px) {
  .about-card {
    padding: 60px 70px;
  }

  .about-title {
    font-size: 42px;
  }

  .about-intro {
    font-size: 17px;
  }

  .about-story {
    font-size: 16px;
  }
}

/* Makeup Styles Section */
.makeup-styles-section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--beige-dark) 0%, var(--beige) 100%);
  overflow: hidden;
}

.styles-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("makeup-pattern.svg");
  background-repeat: repeat;
  background-size: 350px 350px;
  opacity: 0.06;
  z-index: 0;
  animation: makeupPatternMove 35s linear infinite;
}

.styles-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.styles-header {
  text-align: center;
  margin-bottom: 60px;
}

.styles-label {
  font-family: "Karla", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--rose-gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.styles-title {
  font-family: "Karla", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 15px;
}

.styles-title .highlight {
  color: var(--rose-gold-dark);
}

.styles-subtitle {
  font-family: "Karla", sans-serif;
  font-size: 16px;
  color: var(--text-medium);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
}

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

.style-card {
  position: relative;
  background: rgba(245, 230, 211, 0.85);
  border: 2px solid var(--rose-gold);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 20px rgba(139, 111, 71, 0.1);
  contain: layout style paint;
}

.style-card:nth-child(1) {
  animation-delay: 0.1s;
}

.style-card:nth-child(2) {
  animation-delay: 0.2s;
}

.style-card:nth-child(3) {
  animation-delay: 0.3s;
}

.style-card:hover {
  transform: translate3d(0, -10px, 0);
  box-shadow: 0 15px 40px rgba(139, 111, 71, 0.25);
  border-color: var(--rose-gold-dark);
}

.style-card.active {
  z-index: 100;
}

.style-card-inner {
  position: relative;
  width: 100%;
}

.style-image-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: var(--beige);
}

.style-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.style-card:hover .style-image {
  transform: translate3d(0, 0, 0) scale(1.1);
}

.style-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.8) 0%,
    rgba(200, 150, 106, 0.9) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.style-overlay i {
  font-size: 48px;
  color: var(--beige);
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.style-card:hover .style-overlay {
  opacity: 1;
}

.style-card:hover .style-overlay i {
  transform: scale(1);
}

.style-content {
  padding: 30px;
  text-align: center;
}

.style-name {
  font-family: "Karla", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.style-description {
  font-family: "Karla", sans-serif;
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 25px;
}

.style-cta {
  background: linear-gradient(
    135deg,
    var(--rose-gold) 0%,
    var(--rose-gold-dark) 100%
  );
  color: var(--text-dark);
  border: 2px solid var(--rose-gold-dark);
  padding: 12px 24px;
  font-family: "Karla", sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 0 2px 8px var(--shadow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.style-cta:hover {
  background: linear-gradient(
    135deg,
    var(--rose-gold-dark) 0%,
    var(--rose-gold) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow);
}

.style-cta i {
  transition: transform 0.3s ease;
}

.style-cta:hover i {
  transform: translateX(5px);
}

/* Expanded Content */
.style-expanded {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(74, 62, 46, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  overflow-y: auto;
  padding: 40px 20px;
}

.style-expanded.active {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.style-close {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--rose-gold);
  border: 2px solid var(--rose-gold-dark);
  color: var(--text-dark);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  box-shadow: 0 4px 15px rgba(139, 111, 71, 0.4);
}

.style-close:hover {
  background: var(--rose-gold-dark);
  transform: rotate(90deg) scale(1.1);
}

.style-expanded-content {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(245, 230, 211, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid var(--rose-gold);
  padding: 50px;
  box-shadow: 0 20px 60px rgba(139, 111, 71, 0.3);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.style-expanded-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(212, 165, 116, 0.3);
}

.style-expanded-title {
  font-family: "Karla", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.style-expanded-subtitle {
  font-family: "Karla", sans-serif;
  font-size: 18px;
  color: var(--text-medium);
  font-style: italic;
}

.style-expanded-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.style-expanded-text {
  font-family: "Karla", sans-serif;
}

.style-expanded-text p {
  font-size: 18px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 30px;
}

.style-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.style-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(212, 165, 116, 0.1);
  border-left: 3px solid var(--rose-gold);
  transition: all 0.3s ease;
}

.style-feature:hover {
  background: rgba(212, 165, 116, 0.2);
  transform: translateX(5px);
}

.style-feature i {
  font-size: 20px;
  color: var(--rose-gold-dark);
  flex-shrink: 0;
}

.style-feature span {
  font-family: "Karla", sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
}

.style-expanded-gallery {
  width: 100%;
}

.style-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.style-gallery-item {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  border: 2px solid var(--rose-gold);
  background: var(--beige);
  cursor: pointer;
  transition: all 0.3s ease;
}

.style-gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(139, 111, 71, 0.3);
  border-color: var(--rose-gold-dark);
}

.style-gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Makeup Styles Section Responsive */
@media (max-width: 1023px) {
  .styles-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .style-expanded-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 767px) {
  .makeup-styles-section {
    padding: 60px 15px;
  }

  .styles-header {
    margin-bottom: 40px;
  }

  .styles-title {
    font-size: 28px;
  }

  .styles-subtitle {
    font-size: 14px;
  }

  .style-image-wrapper {
    height: 250px;
  }

  .style-content {
    padding: 25px 20px;
  }

  .style-name {
    font-size: 24px;
  }

  .style-description {
    font-size: 14px;
  }

  .style-expanded {
    padding: 20px 15px;
  }

  .style-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .style-expanded-content {
    padding: 30px 20px;
  }

  .style-expanded-title {
    font-size: 32px;
  }

  .style-expanded-subtitle {
    font-size: 16px;
  }

  .style-expanded-text p {
    font-size: 16px;
  }

  .style-gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (min-width: 1024px) {
  .style-expanded-content {
    padding: 60px 70px;
  }

  .style-expanded-title {
    font-size: 52px;
  }
}

/* Before & After Section */
.before-after-section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--beige) 0%, var(--beige-dark) 100%);
  overflow: hidden;
}

.ba-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ba-header {
  text-align: center;
  margin-bottom: 60px;
}

.ba-label {
  font-family: "Karla", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--rose-gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.ba-title {
  font-family: "Karla", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 15px;
}

.ba-title .highlight {
  color: var(--rose-gold-dark);
}

.ba-subtitle {
  font-family: "Karla", sans-serif;
  font-size: 16px;
  color: var(--text-medium);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

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

.ba-item {
  position: relative;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ba-featured-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(
    135deg,
    var(--rose-gold) 0%,
    var(--rose-gold-dark) 100%
  );
  color: var(--text-dark);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(139, 111, 71, 0.3);
}

.ba-featured-badge i {
  font-size: 14px;
}

.ba-comparison {
  position: relative;
  width: 100%;
}

.ba-image-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: var(--beige);
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-before {
  z-index: 1;
}

.ba-after {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.1s ease-out;
}

.ba-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--rose-gold);
  z-index: 10;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.ba-slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--rose-gold-dark);
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
}

.ba-slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--rose-gold);
  border: 3px solid var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(139, 111, 71, 0.4);
  transition: all 0.3s ease;
}

.ba-slider:hover .ba-slider-handle {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(139, 111, 71, 0.5);
}

.ba-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ba-label-before {
  color: var(--text-medium);
}

.ba-label-after {
  color: var(--rose-gold-dark);
}

.ba-info {
  display: none;
}

/* Before & After Responsive */
@media (max-width: 767px) {
  .before-after-section {
    padding: 50px 15px;
  }

  .ba-header {
    margin-bottom: 40px;
  }

  .ba-title {
    font-size: 28px;
  }

  .ba-subtitle {
    font-size: 14px;
  }

  .ba-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
  }

  .ba-image-wrapper {
    height: 250px;
  }

  .ba-slider-handle {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}

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

  .ba-image-wrapper {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .ba-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .ba-image-wrapper {
    height: 450px;
  }
}

/* Video Walkthrough Section */
.video-section {
  position: relative;
  width: 100%;
  padding: 100px 20px;
  background: linear-gradient(
    135deg,
    var(--beige) 0%,
    var(--beige-dark) 50%,
    var(--beige) 100%
  );
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("makeup-pattern.svg");
  background-repeat: repeat;
  background-size: 300px 300px;
  opacity: 0.05;
  z-index: 0;
  animation: videoPatternMove 40s linear infinite;
}

@keyframes videoPatternMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 300px 300px;
  }
}

.video-decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.video-decor {
  position: absolute;
  color: var(--rose-gold);
  font-size: 40px;
  opacity: 0.15;
  animation: videoFloat 8s ease-in-out infinite;
}

.video-decor.decor-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.video-decor.decor-2 {
  top: 20%;
  right: 8%;
  animation-delay: 2s;
  font-size: 35px;
}

.video-decor.decor-3 {
  bottom: 25%;
  left: 10%;
  animation-delay: 4s;
  font-size: 30px;
}

.video-decor.decor-4 {
  bottom: 15%;
  right: 5%;
  animation-delay: 6s;
  font-size: 38px;
}

@keyframes videoFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.15;
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
    opacity: 0.25;
  }
}

.video-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.video-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.video-label {
  font-family: "Karla", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--rose-gold-dark);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: block;
  position: relative;
}

.video-title {
  font-family: "Karla", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0 0 20px 0;
  position: relative;
}

.video-title .highlight {
  color: var(--rose-gold-dark);
  position: relative;
}

.video-title-underline {
  width: 100px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--rose-gold) 50%,
    transparent 100%
  );
  margin: 0 auto;
  animation: underlineExpand 1s ease-out;
}

@keyframes underlineExpand {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100px;
    opacity: 1;
  }
}

.video-content {
  max-width: 1000px;
  margin: 0 auto;
}

.video-text-wrapper {
  position: relative;
  padding: 40px;
  background: rgba(245, 230, 211, 0.5);
  backdrop-filter: blur(10px);
  border: 2px solid var(--rose-gold);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(139, 111, 71, 0.15);
  animation: fadeInUp 0.8s ease-out;
}

.video-text {
  position: relative;
}

.video-description {
  font-family: "Karla", sans-serif;
  font-size: 18px;
  color: var(--text-medium);
  line-height: 1.8;
  margin: 30px 0 20px 0;
}

.video-description strong {
  color: var(--text-dark);
  font-weight: 600;
}

.video-description-secondary {
  font-family: "Karla", sans-serif;
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
  margin: 0 0 30px 0;
  font-style: italic;
}

.video-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.video-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(212, 165, 116, 0.1);
  border-left: 3px solid var(--rose-gold);
  transition: all 0.3s ease;
}

.video-feature:hover {
  background: rgba(212, 165, 116, 0.2);
  transform: translateX(5px);
}

.video-feature i {
  font-size: 20px;
  color: var(--rose-gold-dark);
  width: 24px;
}

.video-feature span {
  font-family: "Karla", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.video-wrapper-container {
  position: relative;
  margin: 0 0 30px 0;
}

.video-frame-box {
  position: relative;
  padding: 20px;
  background: rgba(245, 230, 211, 0.4);
  border: 3px solid var(--rose-gold);
  box-shadow: 0 15px 50px rgba(139, 111, 71, 0.2);
  border-radius: 8px;
}

.video-frame-decoration {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 3px solid var(--rose-gold);
  z-index: 10;
  background: var(--beige);
}

.video-frame-decoration.frame-top-left {
  top: -15px;
  left: -15px;
  border-right: none;
  border-bottom: none;
  border-radius: 8px 0 0 0;
}

.video-frame-decoration.frame-top-right {
  top: -15px;
  right: -15px;
  border-left: none;
  border-bottom: none;
  border-radius: 0 8px 0 0;
}

.video-frame-decoration.frame-bottom-left {
  bottom: -15px;
  left: -15px;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 8px;
}

.video-frame-decoration.frame-bottom-right {
  bottom: -15px;
  right: -15px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 8px 0;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  background: var(--beige-dark);
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(139, 111, 71, 0.15);
}

.video-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: linear-gradient(
    135deg,
    var(--rose-gold) 0%,
    var(--rose-gold-dark) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(139, 111, 71, 0.4);
  border: 3px solid var(--beige);
}

.video-wrapper:hover .video-play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-overlay i {
  font-size: 36px;
  color: var(--beige);
  margin-left: 5px;
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 4px;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Video Section Responsive */
@media (max-width: 767px) {
  .video-section {
    padding: 60px 15px;
  }

  .video-header {
    margin-bottom: 40px;
  }

  .video-title {
    font-size: 32px;
  }

  .video-text-wrapper {
    padding: 25px 20px;
  }

  .video-description {
    font-size: 16px;
    margin-top: 25px;
  }

  .video-description-secondary {
    font-size: 14px;
  }

  .video-wrapper-container {
    margin: 0 0 25px 0;
  }

  .video-frame-box {
    padding: 15px;
  }

  .video-frame-decoration {
    width: 40px;
    height: 40px;
  }

  .video-frame-decoration.frame-top-left,
  .video-frame-decoration.frame-top-right,
  .video-frame-decoration.frame-bottom-left,
  .video-frame-decoration.frame-bottom-right {
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
  }

  .video-frame-decoration.frame-top-left {
    top: -12px;
    left: -12px;
  }

  .video-frame-decoration.frame-top-right {
    top: -12px;
    right: -12px;
  }

  .video-frame-decoration.frame-bottom-left {
    bottom: -12px;
    left: -12px;
  }

  .video-frame-decoration.frame-bottom-right {
    bottom: -12px;
    right: -12px;
  }

  .video-wrapper {
    padding-bottom: 56.25%;
  }

  .video-frame-decoration {
    width: 35px;
    height: 35px;
  }

  .video-features {
    gap: 12px;
    margin-top: 25px;
  }

  .video-feature {
    padding: 10px;
  }

  .video-feature i {
    font-size: 18px;
  }

  .video-feature span {
    font-size: 14px;
  }

  .video-decor {
    font-size: 25px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .video-section {
    padding: 80px 20px;
  }

  .video-title {
    font-size: 40px;
  }

  .video-text-wrapper {
    padding: 35px 30px;
  }

  .video-wrapper-container {
    margin: 0 0 35px 0;
  }
}

/* Gallery Ribbon */
.gallery-ribbon {
  position: relative;
  height: 0;
  margin: 80px 0;
  padding-bottom: 100px;
  overflow: hidden;
  pointer-events: none;
  z-index: 5;
  width: 100%;
}

.gallery-ribbon-inner {
  position: absolute;
  left: -50px;
  right: -50px;
  top: -35px;
  transform: rotate(-1.8deg);
  margin: 0 auto;
  border: 2px solid var(--rose-gold);
  box-shadow: 0 6px 20px rgba(74, 62, 46, 0.18),
    0 2px 6px rgba(74, 62, 46, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: transparent;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
  border-radius: 1px;
  max-width: calc(100vw + 100px);
}

/* Ensure track is visible and can animate */
.gallery-ribbon-inner .gallery-ribbon-track {
  position: relative;
  transform-origin: left center;
}

.gallery-ribbon-inner::before,
.gallery-ribbon-inner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 10;
  pointer-events: none;
}

.gallery-ribbon-inner::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(245, 230, 211, 0.9) 0%,
    rgba(245, 230, 211, 0.4) 35%,
    transparent 100%
  );
}

.gallery-ribbon-inner::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(245, 230, 211, 0.9) 0%,
    rgba(245, 230, 211, 0.4) 35%,
    transparent 100%
  );
}

.gallery-ribbon-inner--alt {
  transform: rotate(1.5deg);
  top: -15px;
  left: -45px;
  right: -45px;
  z-index: 4;
  opacity: 1;
  border-color: var(--rose-gold-dark);
  border-width: 2px;
  box-shadow: 0 7px 22px rgba(74, 62, 46, 0.22),
    0 2px 8px rgba(74, 62, 46, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  max-width: calc(100vw + 90px);
  overflow: hidden;
}

/* Homepage Gallery Ribbon Alt Track - Reverse animation */
section.gallery-ribbon .gallery-ribbon-inner--alt > .gallery-ribbon-track {
  animation: galleryRibbonScroll 24s linear infinite reverse !important;
  z-index: 1 !important;
  width: max-content !important;
  display: flex !important;
  gap: 12px !important;
  transform: translate3d(0, 0, 0) !important;
  backface-visibility: hidden !important;
  padding: 14px 30px !important;
  will-change: transform !important;
  position: relative !important;
  flex-wrap: nowrap !important;
}

.gallery-ribbon-inner--alt .gallery-ribbon-item {
  z-index: 2;
}

/* Homepage Gallery Ribbon Track - Must override sub-portfolio styles */
section.gallery-ribbon .gallery-ribbon-inner > .gallery-ribbon-track {
  display: flex !important;
  gap: 12px !important;
  padding: 14px 30px !important;
  animation: galleryRibbonScroll 22s linear infinite !important;
  will-change: transform !important;
  transform: translate3d(0, 0, 0) !important;
  backface-visibility: hidden !important;
  position: relative !important;
  z-index: 1 !important;
  width: max-content !important;
  flex-wrap: nowrap !important;
}

/* Homepage Gallery Ribbon Item - Specific styles */
.gallery-ribbon .gallery-ribbon-item {
  flex: 0 0 130px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--rose-gold);
  box-shadow: 0 3px 10px rgba(74, 62, 46, 0.2), 0 1px 4px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: var(--beige);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
  contain: layout style paint;
  transform: translate3d(0, 0, 0);
}

/* Homepage Gallery Ribbon Item After - Specific styles */
.gallery-ribbon .gallery-ribbon-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  box-shadow: inset 0 0 12px rgba(212, 165, 116, 0.06);
  pointer-events: none;
  z-index: 1;
}

/* Homepage Gallery Ribbon Item Image */
.gallery-ribbon .gallery-ribbon-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.02) contrast(1.05) saturate(1.1);
  position: relative;
  z-index: 0;
  transform: translate3d(0, 0, 0);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Criss-cross pattern enhancement */
.gallery-ribbon-inner::after {
  background: linear-gradient(
    270deg,
    rgba(245, 230, 211, 0.9) 0%,
    rgba(245, 230, 211, 0.4) 35%,
    transparent 100%
  );
}

/* Intersection point styling for better criss-cross visual */
.gallery-ribbon-inner--alt::before {
  background: linear-gradient(
    90deg,
    rgba(245, 230, 211, 0.9) 0%,
    rgba(245, 230, 211, 0.4) 35%,
    transparent 100%
  );
}

.gallery-ribbon-inner--alt::after {
  background: linear-gradient(
    270deg,
    rgba(245, 230, 211, 0.9) 0%,
    rgba(245, 230, 211, 0.4) 35%,
    transparent 100%
  );
}

@keyframes galleryRibbonScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .gallery-ribbon {
    margin: 70px 0;
    padding-bottom: 95px;
  }

  .gallery-ribbon .gallery-ribbon-item {
    flex: 0 0 120px;
    height: 85px;
  }

  section.gallery-ribbon .gallery-ribbon-inner > .gallery-ribbon-track,
  section.gallery-ribbon .gallery-ribbon-inner--alt > .gallery-ribbon-track {
    gap: 11px !important;
    padding: 13px 28px !important;
  }

  .gallery-ribbon-inner {
    left: -45px;
    right: -45px;
    top: -40px;
  }

  .gallery-ribbon-inner--alt {
    top: -18px;
    left: -38px;
    right: -38px;
  }
}

@media (max-width: 767px) {
  .gallery-ribbon {
    margin: 50px 0;
    padding-bottom: 75px;
  }

  .gallery-ribbon .gallery-ribbon-item {
    flex: 0 0 100px;
    height: 70px;
    border-radius: 8px;
    border-width: 1.5px;
  }

  section.gallery-ribbon .gallery-ribbon-inner > .gallery-ribbon-track,
  section.gallery-ribbon .gallery-ribbon-inner--alt > .gallery-ribbon-track {
    gap: 8px !important;
    padding: 10px 20px !important;
  }

  .gallery-ribbon-inner {
    left: -20px;
    right: -20px;
    top: -25px;
    border-width: 1.5px;
    transform: rotate(-1.5deg);
  }

  .gallery-ribbon-inner--alt {
    top: -10px;
    left: -18px;
    right: -18px;
    border-width: 1.5px;
    transform: rotate(1.2deg);
  }

  .gallery-ribbon-inner::before,
  .gallery-ribbon-inner::after {
    width: 60px;
  }

  .gallery-ribbon-inner--alt::before,
  .gallery-ribbon-inner--alt::after {
    width: 60px;
  }
}

@media (max-width: 480px) {
  .gallery-ribbon {
    margin: 40px 0;
    padding-bottom: 65px;
  }

  .gallery-ribbon .gallery-ribbon-item {
    flex: 0 0 90px;
    height: 65px;
  }

  section.gallery-ribbon .gallery-ribbon-inner > .gallery-ribbon-track,
  section.gallery-ribbon .gallery-ribbon-inner--alt > .gallery-ribbon-track {
    gap: 6px !important;
    padding: 8px 15px !important;
  }

  .gallery-ribbon-inner {
    left: -15px;
    right: -15px;
    top: -20px;
  }

  .gallery-ribbon-inner--alt {
    top: -8px;
    left: -12px;
    right: -12px;
  }

  .gallery-ribbon-inner::before,
  .gallery-ribbon-inner::after,
  .gallery-ribbon-inner--alt::before,
  .gallery-ribbon-inner--alt::after {
    width: 50px;
  }
}

@media (min-width: 1024px) {
  .video-title {
    font-size: 48px;
  }

  .video-text-wrapper {
    padding: 50px 40px;
  }

  .video-wrapper-container {
    margin: 0 0 40px 0;
  }
}

/* Philosophy Section */
.philosophy-section {
  position: relative;
  width: 100%;
  padding: 120px 20px;
  background: radial-gradient(
      circle at top,
      rgba(212, 165, 116, 0.08),
      transparent 50%
    ),
    var(--beige);
  overflow: hidden;
}

.philosophy-background {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  height: 1400px;
  background: radial-gradient(
    circle,
    rgba(212, 165, 116, 0.07) 0%,
    rgba(212, 165, 116, 0.03) 40%,
    transparent 70%
  );
  opacity: 0.6;
  pointer-events: none;
}

.philosophy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.philosophy-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
}

.philosophy-label {
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--text-light);
  display: inline-block;
  margin-bottom: 20px;
}

.philosophy-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.2;
}

.philosophy-title .highlight {
  color: var(--rose-gold-dark);
}

.philosophy-title-underline {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--rose-gold) 0%, transparent 100%);
  margin: 0 auto;
}

.philosophy-tabs {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.philosophy-tab-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: 24px;
  padding: 16px;
}

.philosophy-tab {
  background: transparent;
  border: none;
  border-radius: 20px;
  padding: 18px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  color: var(--text-medium);
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.philosophy-tab:focus-visible {
  outline: 2px solid var(--rose-gold);
  outline-offset: 3px;
}

.philosophy-tab.active {
  background: var(--text-dark);
  color: var(--beige);
  box-shadow: 0 18px 35px rgba(74, 62, 46, 0.25);
}

.philosophy-tab-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: rgba(212, 165, 116, 0.2);
  color: var(--rose-gold-dark);
  transition: inherit;
}

.philosophy-tab.active .philosophy-tab-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--beige);
}

.philosophy-tab strong {
  display: block;
  font-size: 18px;
  letter-spacing: 1px;
}

.philosophy-tab-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  opacity: 0.8;
}

.philosophy-tab-panels {
  position: relative;
}

.philosophy-tab-panel {
  background: #fff;
  border-radius: 32px;
  border: 1px solid rgba(212, 165, 116, 0.25);
  box-shadow: 0 35px 70px rgba(139, 111, 71, 0.18);
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.philosophy-tab-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.philosophy-panel-body {
  display: block;
}

.philosophy-panel-text h3 {
  font-size: 30px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.philosophy-panel-text p {
  color: var(--text-medium);
  margin-bottom: 18px;
  line-height: 1.7;
}

.philosophy-accordion {
  display: none;
  flex-direction: column;
  gap: 16px;
}

.philosophy-accordion-item {
  border-radius: 24px;
  border: 1px solid rgba(212, 165, 116, 0.3);
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.philosophy-accordion-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  font-size: 14px;
  color: var(--text-medium);
}

.philosophy-accordion-item summary > div {
  flex: 1;
}

.philosophy-accordion-item summary::-webkit-details-marker {
  display: none;
}

.philosophy-accordion-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(212, 165, 116, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--rose-gold-dark);
  flex-shrink: 0;
}

.philosophy-accordion-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.philosophy-accordion-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  color: var(--text-light);
}

.philosophy-accordion-item summary strong {
  font-size: 18px;
  color: var(--text-dark);
  display: block;
}

.philosophy-accordion-item summary i {
  margin-left: auto;
  transition: transform 0.3s ease;
  color: var(--rose-gold-dark);
}

.philosophy-accordion-item[open] summary {
  background: rgba(74, 62, 46, 0.03);
}

.philosophy-accordion-item[open] summary i {
  transform: rotate(180deg);
}

.philosophy-accordion-body {
  padding: 0 22px 22px;
}

@media (max-width: 767px) {
  .philosophy-section {
    padding: 70px 16px;
  }

  .philosophy-tabs {
    display: none;
  }

  .philosophy-accordion {
    display: flex;
  }

  .philosophy-tab {
    padding: 14px;
  }

  .philosophy-panel-body {
    grid-template-columns: 1fr;
  }

  .philosophy-panel-metrics {
    grid-template-columns: 1fr;
  }
}

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

/* Animation for page load */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Creative Footer Section - Mobile App Design */
.creative-footer {
  position: relative;
  width: 100%;
  padding: 60px 20px 100px;
  background: rgba(245, 230, 211, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  overflow: hidden;
  margin-top: 40px;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
}

.creative-footer-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(212, 165, 116, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(212, 165, 116, 0.1) 0%,
      transparent 50%
    );
  opacity: 0.6;
  pointer-events: none;
}

.creative-footer-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.creative-footer-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(212, 165, 116, 0.15);
}

.creative-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 8px;
}

.creative-footer-logo {
  margin-bottom: 8px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.creative-footer-name {
  font-family: "Karla", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  background: linear-gradient(
    135deg,
    var(--text-dark) 0%,
    var(--rose-gold-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.creative-footer-tagline {
  font-family: "Karla", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--rose-gold-dark);
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.creative-footer-quote {
  font-family: "Karla", sans-serif;
  font-size: 14px;
  font-style: italic;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.6;
  position: relative;
  padding: 0 20px;
  max-width: 100%;
}

.creative-footer-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 36px;
  color: var(--rose-gold);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.creative-footer-quote::after {
  content: '"';
  position: absolute;
  right: 0;
  bottom: -20px;
  font-size: 36px;
  color: var(--rose-gold);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.creative-footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.creative-footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(212, 165, 116, 0.15);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.creative-footer-title {
  font-family: "Karla", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 4px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.creative-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.creative-footer-nav-link {
  font-family: "Karla", sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 14px 16px;
  min-height: 48px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  background: transparent;
  margin-bottom: 4px;
}

.creative-footer-nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.creative-footer-nav-link:active::before,
.creative-footer-nav-link:hover::before {
  opacity: 1;
}

.creative-footer-nav-link:active,
.creative-footer-nav-link:hover {
  color: var(--rose-gold-dark);
  transform: translateX(4px);
}

.creative-footer-social {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.creative-footer-social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Karla", sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  min-height: 48px;
  margin-bottom: 6px;
  border: 1px solid rgba(212, 165, 116, 0.1);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.creative-footer-social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(212, 165, 116, 0.15);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.creative-footer-social-link:active::before,
.creative-footer-social-link:hover::before {
  opacity: 1;
}

.creative-footer-social-link:active,
.creative-footer-social-link:hover {
  color: var(--rose-gold-dark);
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.creative-footer-social-link i {
  font-size: 20px;
  width: 24px;
  text-align: center;
  color: var(--rose-gold);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.creative-footer-social-link:hover i {
  transform: scale(1.1);
}

.creative-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.creative-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Karla", sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 14px 16px;
  min-height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
  border: 1px solid rgba(212, 165, 116, 0.1);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.creative-footer-contact-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(212, 165, 116, 0.15);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.creative-footer-contact-item:active::before,
.creative-footer-contact-item:hover::before {
  opacity: 1;
}

.creative-footer-contact-item:active,
.creative-footer-contact-item:hover {
  color: var(--rose-gold-dark);
  transform: scale(0.98);
}

.creative-footer-contact-item i {
  font-size: 18px;
  width: 24px;
  text-align: center;
  color: var(--rose-gold);
}

.creative-footer-bottom {
  text-align: center;
  padding-top: 24px;
}

.creative-footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.creative-footer-copyright p {
  font-family: "Karla", sans-serif;
  font-size: 12px;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.6;
  opacity: 0.8;
}

.creative-footer-made-with {
  font-size: 12px;
  color: var(--text-light);
}

.creative-footer-made-with i {
  color: var(--rose-gold);
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Tablet and Up */
@media (min-width: 768px) {
  .creative-footer {
    padding: 70px 30px 50px;
    margin-top: 60px;
  }

  .creative-footer-content {
    gap: 50px;
    margin-bottom: 50px;
    padding-bottom: 50px;
  }

  .creative-footer-name {
    font-size: 32px;
  }

  .creative-footer-tagline {
    font-size: 16px;
  }

  .creative-footer-quote {
    font-size: 15px;
    padding: 0 30px;
  }

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

  .creative-footer-title {
    font-size: 17px;
  }

  .creative-footer-social {
    grid-template-columns: 1fr;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .creative-footer {
    padding: 100px 20px 60px;
    margin-top: 80px;
  }

  .creative-footer-container {
    max-width: 1200px;
  }

  .creative-footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
  }

  .creative-footer-brand {
    align-items: flex-start;
    text-align: left;
  }

  .creative-footer-name {
    font-size: 36px;
  }

  .creative-footer-tagline {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .creative-footer-quote {
    font-size: 16px;
    padding-left: 30px;
    padding-right: 0;
  }

  .creative-footer-quote::after {
    display: none;
  }

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

  .creative-footer-title {
    font-size: 18px;
  }

  .creative-footer-nav-link:hover {
    color: var(--rose-gold-dark);
    padding-left: 28px;
  }

  .creative-footer-nav-link:hover::before {
    opacity: 1;
    transform: translateX(4px);
  }

  .creative-footer-social {
    grid-template-columns: 1fr;
  }

  .creative-footer-social-link:hover {
    color: var(--text-dark);
    background: rgba(212, 165, 116, 0.15);
    transform: translateX(5px);
  }

  .creative-footer-social-link:hover i {
    transform: scale(1.2);
    color: var(--rose-gold-dark);
  }

  .creative-footer-contact-item:hover {
    color: var(--text-dark);
  }

  .creative-footer-contact-item:hover i {
    transform: scale(1.2);
    color: var(--rose-gold-dark);
  }
}

.header {
  animation: fadeInDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Portfolio Section */
.portfolio-section {
  position: relative;
  min-height: calc(100vh - 70px);
  padding: 90px 16px 90px;
  background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* Portfolio page specific styles */
body.portfolio-page {
  padding-bottom: 70px; /* Space for sticky footer */
  overflow-x: hidden;
}

.portfolio-background-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

.portfolio-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: carouselFloat 60s linear infinite;
}

.portfolio-carousel-item {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(139, 111, 71, 0.2);
}

.portfolio-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) sepia(20%);
}

@keyframes carouselFloat {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.portfolio-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--rose-gold-dark);
  margin-bottom: 10px;
}

.portfolio-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.2;
}

.portfolio-subtitle {
  font-size: 18px;
  color: var(--text-medium);
  font-weight: 400;
}

.portfolio-pillar-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.portfolio-pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(21, 10, 6, 0.96);
  border: 1px solid rgba(212, 165, 116, 0.6);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  color: var(--beige);
  text-decoration: none;
  isolation: isolate;
  overflow: hidden;
}

.portfolio-pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.12),
    transparent 55%
  );
  opacity: 0.9;
  mix-blend-mode: screen;
  pointer-events: none;
}

.portfolio-pillar-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillar-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid rgba(232, 197, 160, 0.8);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  background: rgba(245, 230, 211, 0.06);
  color: var(--rose-gold-light);
}

.pillar-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 4px 0 2px;
}

.pillar-copy {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(250, 242, 232, 0.9);
}

.pillar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.pillar-meta-tag {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(232, 197, 160, 0.4);
}

.pillar-preview-strip {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.pillar-preview {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transform: translateY(4px);
  transition: transform 0.35s cubic-bezier(0.3, 0.7, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.3, 0.7, 0.2, 1);
}

.pillar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pillar-cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--rose-gold-light);
}

.pillar-cta i {
  font-size: 13px;
}

.portfolio-pillar--bridal {
  background: radial-gradient(
      circle at top,
      rgba(244, 206, 174, 0.3),
      transparent 65%
    ),
    linear-gradient(135deg, #2a1810 0%, #3a2216 60%, #4b2a18 100%);
}

.portfolio-pillar--creative {
  background: radial-gradient(
      circle at top,
      rgba(244, 180, 255, 0.3),
      transparent 65%
    ),
    linear-gradient(135deg, #241226 0%, #35173a 60%, #42204c 100%);
}

.portfolio-pillar--commercial {
  background: radial-gradient(
      circle at top,
      rgba(190, 210, 255, 0.3),
      transparent 65%
    ),
    linear-gradient(135deg, #111827 0%, #182235 60%, #1f2937 100%);
}

.portfolio-pillar:hover .pillar-preview,
.portfolio-pillar:focus-visible .pillar-preview {
  transform: translateY(0);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.6);
}

.portfolio-doors-container {
  position: relative;
  width: 100%;
  margin: 40px auto 0;
}

.portfolio-door-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 420px;
  margin: 0 auto;
}

.portfolio-door {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 18px 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(212, 165, 116, 0.7);
  background: radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.16),
      transparent 55%
    ),
    linear-gradient(135deg, rgba(21, 10, 6, 0.9), rgba(52, 32, 21, 0.95));
  color: var(--beige);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  text-align: left;
  transform-origin: center center;
  transition: transform 0.35s cubic-bezier(0.3, 0.7, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.3, 0.7, 0.2, 1),
    border-color 0.35s cubic-bezier(0.3, 0.7, 0.2, 1),
    background 0.35s cubic-bezier(0.3, 0.7, 0.2, 1);
}

.portfolio-door::before,
.portfolio-door::after {
  content: "";
  position: absolute;
  inset: -40%;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity 0.45s cubic-bezier(0.3, 0.7, 0.2, 1),
    transform 0.45s cubic-bezier(0.3, 0.7, 0.2, 1);
}

.portfolio-door::before {
  background: radial-gradient(
    circle at 20% 0%,
    rgba(255, 255, 255, 0.6),
    transparent 55%
  );
  transform: translate3d(-10%, -10%, 0) scale(0.9);
}

.portfolio-door::after {
  background: conic-gradient(
    from 210deg,
    rgba(212, 165, 116, 0) 0deg,
    rgba(212, 165, 116, 0.75) 60deg,
    rgba(249, 221, 186, 0.85) 110deg,
    rgba(212, 165, 116, 0) 200deg
  );
  transform: translate3d(15%, 15%, 0) scale(0.9);
}

.portfolio-door:hover,
.portfolio-door:focus-visible {
  transform: translateY(-6px) scale(1.02) rotate3d(1, 0, 0, 6deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  border-color: rgba(232, 197, 160, 0.95);
}

.portfolio-door:hover::before,
.portfolio-door:hover::after,
.portfolio-door:focus-visible::before,
.portfolio-door:focus-visible::after {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.portfolio-door-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  border-radius: 999px;
  border: 1px solid rgba(232, 197, 160, 0.7);
  background: rgba(245, 230, 211, 0.08);
  color: var(--rose-gold-light);
  margin-bottom: 8px;
}

.portfolio-door-title {
  font-size: 22px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.portfolio-door-subtitle {
  font-size: 14px;
  color: var(--beige);
  opacity: 0.8;
  margin-bottom: 14px;
}

.portfolio-door-cta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rose-gold-light);
}

.portfolio-door-cta::after {
  content: "↗";
  font-size: 11px;
}

.portfolio-door-previews {
  display: flex;
  gap: 8px;
  margin: 12px 0 8px;
  width: 100%;
}

.door-preview {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
  transform: translateY(4px);
  transition: transform 0.35s cubic-bezier(0.3, 0.7, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.3, 0.7, 0.2, 1);
}

.door-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.05) contrast(1.05);
}

.portfolio-door:hover .door-preview,
.portfolio-door:focus-visible .door-preview {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.portfolio-door--bridal {
  border-image: linear-gradient(135deg, #d4a574, #f4d5a8) 1;
}

.portfolio-door--creative {
  border-image: linear-gradient(135deg, #f2c3ff, #ffe6f0) 1;
}

.portfolio-door--commercial {
  border-image: linear-gradient(135deg, #d0e2ff, #ffe4c6) 1;
}

.portfolio-gallery-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(74, 62, 46, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 40px 20px;
}

.portfolio-gallery-view.active {
  opacity: 1;
  visibility: visible;
}

.portfolio-close-btn {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--rose-gold);
  border: 2px solid var(--rose-gold-dark);
  border-radius: 50%;
  color: var(--text-dark);
  font-size: 24px;
  cursor: pointer;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
}

.portfolio-close-btn:hover {
  background: var(--rose-gold-dark);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(139, 111, 71, 0.5);
}

.portfolio-gallery-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-gallery-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--beige);
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.portfolio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.portfolio-gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--beige-dark);
}

.portfolio-gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
}

.portfolio-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-gallery-item:hover img {
  transform: scale(1.1);
}

/* Sub‑portfolio pages */
.sub-portfolio-section {
  position: relative;
  min-height: calc(100vh - 70px);
  padding: 100px 20px 90px;
  background: radial-gradient(
      circle at top,
      rgba(250, 240, 230, 0.7),
      transparent 60%
    ),
    linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
}

.sub-portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sub-portfolio-header {
  max-width: 680px;
  margin-bottom: 32px;
}

/* Breadcrumb Navigation */
.breadcrumb {
  margin-bottom: 20px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-medium);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 4px 8px;
  border-radius: 4px;
}

.breadcrumb-link:hover {
  color: var(--rose-gold-dark);
  background: rgba(212, 165, 116, 0.1);
  transform: translateX(2px);
}

.breadcrumb-link i {
  font-size: 12px;
}

.breadcrumb-separator {
  color: var(--rose-gold);
  font-size: 10px;
  opacity: 0.6;
  display: flex;
  align-items: center;
}

.breadcrumb-item--current {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
}

.breadcrumb-item--current span {
  padding: 4px 12px;
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.15),
    rgba(232, 213, 192, 0.15)
  );
  border-radius: 6px;
  border: 1px solid rgba(212, 165, 116, 0.3);
}

.sub-portfolio-title {
  font-size: 32px;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.sub-portfolio-lede {
  font-size: 15px;
  color: var(--text-medium);
  max-width: 560px;
}

.sub-portfolio-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 24px 0 32px;
}

.sub-meta-item {
  padding-left: 12px;
  border-left: 2px solid var(--rose-gold);
}

.sub-meta-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.sub-meta-value {
  font-size: 14px;
  color: var(--text-dark);
}

/* Gallery Ribbon Wall - Carousel Effect with Multiple Rows (Sub-Portfolio Pages) */
.gallery-ribbon-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 40px 0;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.gallery-ribbon-wrapper .gallery-ribbon-row {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gallery-ribbon-wrapper .gallery-ribbon-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: galleryRibbonScroll 80s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

.gallery-ribbon-wrapper .gallery-ribbon-track--reverse {
  animation: galleryRibbonScrollReverse 80s linear infinite;
}

.gallery-ribbon-wrapper .gallery-ribbon-item {
  flex-shrink: 0;
  width: 280px;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background: var(--beige-dark);
}

.gallery-ribbon-wrapper .gallery-ribbon-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.gallery-ribbon-wrapper .gallery-ribbon-item:hover {
  transform: translate3d(0, -8px, 0) scale(1.03);
  box-shadow: 0 16px 40px rgba(212, 165, 116, 0.4);
}

.gallery-ribbon-wrapper .gallery-ribbon-item:hover::before {
  opacity: 1;
}

.gallery-ribbon-wrapper .gallery-ribbon-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.gallery-ribbon-wrapper .gallery-ribbon-item:hover img {
  transform: translate3d(0, 0, 0) scale(1.1);
}

.gallery-ribbon-wrapper .gallery-quote {
  flex-shrink: 0;
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-dark);
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(245, 230, 211, 0.9),
    rgba(232, 213, 192, 0.9)
  );
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.3);
  box-shadow: 0 4px 16px rgba(139, 111, 71, 0.15);
  backdrop-filter: blur(10px);
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.gallery-ribbon-wrapper .gallery-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 60px;
  color: var(--rose-gold);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.gallery-ribbon-wrapper .gallery-quote::after {
  content: '"';
  position: absolute;
  bottom: -20px;
  right: 10px;
  font-size: 60px;
  color: var(--rose-gold);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

@keyframes galleryRibbonScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes galleryRibbonScrollReverse {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* Pause animation on hover */
.gallery-ribbon-wrapper:hover .gallery-ribbon-track {
  animation-play-state: paused;
}

/* Ensure homepage ribbon animations work */
section.gallery-ribbon:hover .gallery-ribbon-inner > .gallery-ribbon-track,
section.gallery-ribbon:hover
  .gallery-ribbon-inner--alt
  > .gallery-ribbon-track {
  animation-play-state: paused !important;
}

/* Lightbox Styles */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 10, 6, 0.98);
  backdrop-filter: blur(20px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 40px 20px;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: lightboxFadeIn 0.5s ease-out;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--rose-gold);
  border: 2px solid var(--rose-gold-dark);
  border-radius: 50%;
  color: var(--text-dark);
  font-size: 24px;
  cursor: pointer;
  z-index: 3001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
}

.lightbox-close:hover {
  background: var(--rose-gold-dark);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(139, 111, 71, 0.5);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(212, 165, 116, 0.9);
  border: 2px solid var(--rose-gold-dark);
  border-radius: 50%;
  color: var(--text-dark);
  font-size: 20px;
  cursor: pointer;
  z-index: 3001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
  backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
  background: var(--rose-gold);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(139, 111, 71, 0.5);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.sub-portfolio-section--bridal {
  background: radial-gradient(
      circle at top,
      rgba(250, 240, 230, 0.9),
      transparent 65%
    ),
    linear-gradient(135deg, #f5e6d3 0%, #e8d5c0 100%);
}

/* Mobile Styles for Breadcrumb */
@media (max-width: 767px) {
  .breadcrumb-list {
    gap: 6px;
    font-size: 12px;
  }

  .breadcrumb-link {
    font-size: 12px;
    padding: 3px 6px;
  }

  .breadcrumb-link span {
    display: none;
  }

  .breadcrumb-link i {
    font-size: 14px;
  }

  .breadcrumb-separator {
    font-size: 9px;
  }

  .breadcrumb-item--current {
    font-size: 12px;
  }

  .breadcrumb-item--current span {
    padding: 3px 10px;
  }
}

/* Mobile Styles for Gallery Ribbon (Sub-Portfolio) */
@media (max-width: 767px) {
  .gallery-ribbon-wrapper {
    gap: 20px;
    padding: 15px 0;
  }

  .gallery-ribbon-wrapper .gallery-ribbon-item,
  .gallery-ribbon-wrapper .gallery-quote {
    width: 200px;
    height: 250px;
  }

  .gallery-ribbon-wrapper .gallery-quote {
    font-size: 13px;
    padding: 14px;
  }

  .gallery-ribbon-wrapper .gallery-ribbon-track {
    gap: 12px;
  }

  .lightbox-close,
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .lightbox-prev {
    left: 15px;
  }

  .lightbox-next {
    right: 15px;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
  }

  .portfolio-section {
    padding: 80px 16px 80px;
  }

  .portfolio-title {
    font-size: 32px;
  }

  .portfolio-subtitle {
    font-size: 16px;
  }

  .portfolio-door-grid {
    max-width: 360px;
    gap: 14px;
  }

  .portfolio-gallery-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .portfolio-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-close-btn {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .portfolio-carousel-item {
    width: 150px;
    height: 150px;
  }

  .sub-portfolio-section {
    padding: 95px 16px 80px;
  }

  .sub-portfolio-title {
    font-size: 26px;
  }

  .sub-portfolio-meta {
    gap: 10px;
  }
}

/* Tablet Styles for Portfolio */
@media (min-width: 768px) and (max-width: 1023px) {
  .portfolio-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (min-width: 1024px) {
  .sub-portfolio-section {
    padding: 120px 40px 100px;
  }

  .sub-portfolio-container {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
    gap: 48px;
    align-items: flex-start;
  }

  .sub-portfolio-header {
    margin-bottom: 22px;
  }

  .sub-portfolio-meta {
    max-width: 420px;
  }
}

/* Booking Modal Styles */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.booking-modal.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 10, 6, 0.85);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.booking-modal-content {
  position: relative;
  background: var(--beige);
  border-radius: 4px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translate3d(0, 0, 0) scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10001;
  border: 2px solid var(--rose-gold);
}

.booking-modal.active .booking-modal-content {
  transform: translate3d(0, 0, 0) scale(1);
}

.booking-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(212, 165, 116, 0.2);
  border: 2px solid var(--rose-gold);
  color: var(--rose-gold-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  z-index: 10002;
}

.booking-modal-close:hover {
  background: var(--rose-gold);
  color: var(--beige);
  transform: rotate(90deg);
}

.booking-modal-header {
  padding: 40px 40px 30px;
  text-align: center;
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.booking-modal-title {
  font-family: "Karla", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.booking-modal-subtitle {
  font-family: "Karla", sans-serif;
  font-size: 14px;
  color: var(--text-medium);
}

.booking-form {
  padding: 30px 40px 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: "Karla", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group .required {
  color: var(--rose-gold-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: "Karla", sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(212, 165, 116, 0.3);
  border-radius: 4px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose-gold);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a3e2e' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-actions {
  margin-top: 32px;
  text-align: center;
}

.form-submit-btn {
  background: linear-gradient(
    135deg,
    var(--rose-gold) 0%,
    var(--rose-gold-dark) 100%
  );
  color: var(--beige);
  border: none;
  padding: 16px 40px;
  font-family: "Karla", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
  transform: translate3d(0, 0, 0);
}

.form-submit-btn:hover {
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.form-submit-btn:active {
  transform: translate3d(0, 0, 0);
}

.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: translate3d(0, 0, 0);
}

.form-message {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: "Karla", sans-serif;
  font-size: 14px;
  text-align: center;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 4px;
}

.form-message.error {
  display: block;
  background: rgba(244, 67, 54, 0.1);
  color: #f44336;
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: 4px;
}

.form-message.loading {
  display: block;
  background: rgba(212, 165, 116, 0.1);
  color: var(--rose-gold-dark);
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: 4px;
}

@media (max-width: 767px) {
  .booking-modal-content {
    max-width: 100%;
    border-radius: 4px;
    max-height: 95vh;
  }

  .booking-modal-header {
    padding: 30px 20px 20px;
  }

  .booking-modal-title {
    font-size: 24px;
  }

  .booking-form {
    padding: 20px;
  }

  .booking-modal-close {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
  }
}
