/* ============================================
   ALICE BEAUTÉ - Design System
   Style: Luxueux, sobre, zen, ambiance Sothys
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Sothys-inspired palette */
  --gold: #c9a96e;
  --gold-light: #d4ba8a;
  --gold-dark: #a88a4e;
  --cream: #faf7f2;
  --cream-dark: #f0ebe3;
  --charcoal: #2c2c2c;
  --charcoal-light: #4a4a4a;
  --text: #3a3a3a;
  --text-light: #7a7a7a;
  --white: #ffffff;
  --black: #1a1a1a;
  --rose: #e8d5d0;
  --rose-light: #f3ebe8;

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-pad: clamp(60px, 8vw, 120px);
  --container: 1200px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.3;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  margin-bottom: 20px;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 30px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}

.navbar.scrolled {
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 50px;
  width: auto;
  transition: height 0.4s var(--ease);
}

.navbar.scrolled .nav-logo img {
  height: 40px;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--charcoal);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding: 5px 0;
}

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

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cart {
  position: relative;
  font-size: 1.1rem;
}

.nav-cart .cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav-toggle span {
  width: 25px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s var(--ease);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  transform: scale(1.05);
  transition: transform 8s linear;
}

.hero:hover .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.3) 0%,
    rgba(26, 26, 26, 0.5) 50%,
    rgba(26, 26, 26, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 700px;
  padding: 0 20px;
}

.hero-content .section-subtitle {
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  margin-bottom: 20px;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.hero-content .gold-line {
  background: var(--gold-light);
  width: 80px;
  margin: 25px auto;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 35px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  position: relative;
  height: 45vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.page-header .hero-bg {
  filter: brightness(0.35);
}

.page-header .hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

/* ---------- About / Intro Section ---------- */
.about-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--gold);
  z-index: -1;
  opacity: 0.4;
}

.about-text h2 {
  margin-bottom: 15px;
}

.about-text p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.about-text .signature {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--gold);
  margin-top: 25px;
}

/* ---------- Services Cards ---------- */
.services-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  overflow: hidden;
  position: relative;
  transition: all 0.5s var(--ease);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.service-card-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

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

.service-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.service-card:hover .service-card-image::after {
  opacity: 1;
}

.service-card-body {
  padding: 30px;
  text-align: center;
}

.service-card-body h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.service-card-body p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.service-card-body .btn {
  padding: 10px 30px;
  font-size: 0.7rem;
}

/* ---------- Services Detail (pricing tables) ---------- */
.services-detail {
  padding: var(--section-pad) 0;
}

.service-category {
  margin-bottom: 60px;
}

.service-category h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.service-category > p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 25px;
}

.service-list {
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  transition: all 0.3s var(--ease);
}

.service-item:hover {
  padding-left: 15px;
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.05), transparent);
}

.service-item-info {
  flex: 1;
}

.service-item-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.service-item-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 300;
}

.service-item-duration {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0 30px;
  white-space: nowrap;
}

.service-item-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}

/* Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.package-card {
  background: var(--white);
  padding: 35px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  text-align: center;
  transition: all 0.4s var(--ease);
  position: relative;
}

.package-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(201, 169, 110, 0.12);
}

.package-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--gold);
}

.package-card ul {
  margin-bottom: 20px;
}

.package-card ul li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.package-card .package-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.package-card .package-price span {
  font-size: 1rem;
  color: var(--text-light);
}

/* ---------- Gift Cards ---------- */
.gift-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.gift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.gift-card {
  background: var(--cream);
  padding: 40px;
  text-align: center;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.gift-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  transform: scaleX(0);
  transition: transform 0.5s var(--ease);
}

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

.gift-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.gift-card img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin: 0 auto 25px;
}

.gift-card h3 {
  margin-bottom: 10px;
}

.gift-card p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.gift-card .price-from {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.gift-amount-select {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 25px;
}

.gift-amount-select button {
  padding: 8px 18px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  color: var(--text);
}

.gift-amount-select button:hover,
.gift-amount-select button.selected {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

/* ---------- Contact / Footer ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.footer p,
.footer a {
  font-size: 0.85rem;
  line-height: 2;
  font-weight: 300;
}

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

.footer-brand p {
  max-width: 350px;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

.footer-bottom .sothys-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-bottom .sothys-badge img {
  height: 25px;
  opacity: 0.7;
}

/* ---------- Cart Sidebar ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: var(--white);
  z-index: 2001;
  transition: right 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: 25px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 1.3rem;
}

.cart-close {
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-light);
  background: none;
  border: none;
  padding: 5px;
  transition: color 0.3s;
}

.cart-close:hover {
  color: var(--charcoal);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 30px;
}

.cart-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 4px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.cart-item-info .cart-item-price {
  font-size: 0.85rem;
  color: var(--gold);
}

.cart-item-remove {
  font-size: 0.75rem;
  color: var(--text-light);
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: underline;
  transition: color 0.3s;
}

.cart-item-remove:hover {
  color: #c0392b;
}

.cart-empty {
  text-align: center;
  padding: 50px 20px;
  color: var(--text-light);
}

.cart-empty svg {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  opacity: 0.3;
}

.cart-footer {
  padding: 20px 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.cart-footer .btn {
  width: 100%;
  text-align: center;
}

.cart-email-group {
  margin-bottom: 14px;
}

.cart-email-group label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #555;
  margin-bottom: 6px;
}

.cart-email-group label span {
  text-transform: none;
  font-style: italic;
  letter-spacing: 0;
  color: #888;
}

.cart-email-group input[type="email"] {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: #333;
  background: #fafafa;
  transition: border-color 0.2s;
  outline: none;
}

.cart-email-group input[type="email"]:focus {
  border-color: var(--color-gold, #c9a96e);
  background: #fff;
}

.cart-email-group input[type="email"].input-error {
  border-color: #c0392b;
  background: #fff5f5;
}

/* ---------- Animations (reveal on scroll) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ---------- Sothys Badge Banner ---------- */
.sothys-banner {
  background: var(--charcoal);
  padding: 25px 0;
  text-align: center;
}

.sothys-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.sothys-banner img {
  height: 35px;
  opacity: 0.8;
}

.sothys-banner p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(201, 169, 110, 0.08) 0%, transparent 60%);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto 30px;
  position: relative;
}

.cta-section .btn {
  position: relative;
}

/* ---------- Note / Info ---------- */
.info-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 110, 0.1);
  padding: 10px 20px;
  font-size: 0.8rem;
  color: var(--gold-dark);
  margin-top: 15px;
  border-left: 3px solid var(--gold);
}

/* ---------- Responsive ---------- */
@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 25px;
    transition: right 0.5s var(--ease-out);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image img {
    height: 350px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gift-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    flex-wrap: wrap;
    gap: 5px;
  }

  .service-item-duration {
    margin: 0;
    width: 100%;
    order: 3;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ---------- Loading screen ---------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--charcoal);
  letter-spacing: 0.1em;
}

.loader-bar {
  width: 120px;
  height: 1px;
  background: rgba(201, 169, 110, 0.2);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderSlide {
  0% { left: -100%; }
  100% { left: 100%; }
}
