/* ============================================================
   Happy Nails Salon — Modern Design System
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --gold:         #c49a6c;
  --gold-light:   #e2c9a8;
  --gold-dark:    #9a7040;
  --rose:         #c4848e;
  --rose-light:   #f0d9db;
  --rose-dark:    #8b5a62;
  --dark:         #2a2422;
  --dark-2:       #3e3835;
  --text:         #3d3432;
  --text-muted:   #7a706c;
  --cream:        #fdf9f4;
  --cream-dark:   #f4ede3;
  --border:       #ecddd4;
  --white:        #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;

  --container:    1200px;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --radius-full:  9999px;

  --shadow-sm:    0 1px 4px rgba(42,36,34,.08);
  --shadow-md:    0 4px 16px rgba(42,36,34,.12);
  --shadow-lg:    0 8px 40px rgba(42,36,34,.16);
  --shadow-xl:    0 16px 64px rgba(42,36,34,.20);

  --ease:         cubic-bezier(.4,0,.2,1);
  --t-fast:       .15s;
  --t-base:       .3s;
  --t-slow:       .6s;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 700; letter-spacing: .02em; }
p  { margin-bottom: .5rem; }

/* ---- Layout ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.section-cream { background: var(--cream); }
.section-dark  { background: var(--dark); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-rose   { color: var(--rose); }
.text-muted  { color: var(--text-muted); }

/* ---- Section Heading ---- */
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title { margin-bottom: 1rem; }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
}
.section-header { margin-bottom: 3rem; }

/* ---- Divider ---- */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  border-radius: var(--radius-full);
  margin: 1rem auto 1.5rem;
}
.divider-left { margin-left: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 2rem;
  border-radius: var(--radius-full);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: all var(--t-base) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196,154,108,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,154,108,.45);
}
.btn-rose {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196,132,142,.30);
}
.btn-rose:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,132,142,.40); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--dark);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: .55rem 1.25rem; font-size: .85rem; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }

.header-top {
  background: var(--dark);
  color: var(--cream);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .02em;
  padding: .45rem 0;
}
.header-top .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.header-top span {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.header-top a { color: var(--cream); }
.header-top a:hover { color: var(--gold-light); }
.header-social { margin-left: auto; gap: .8rem !important; }
.header-social a {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  transition: color var(--t-fast) var(--ease);
}
.header-social a:hover { color: var(--gold-light); }

.navbar {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t-base) var(--ease);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.4rem; color: var(--gold); }
.logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}
.logo-tagline {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-link {
  display: block;
  padding: .45rem .9rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--t-fast) var(--ease);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: .9rem; right: .9rem;
  height: 2px;
  background: var(--gold);
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transition: transform var(--t-base) var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: .55rem 1.4rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  border-radius: var(--radius-full);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .03em;
  transition: all var(--t-base) var(--ease);
  box-shadow: 0 4px 12px rgba(196,154,108,.35);
  margin-left: .5rem;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(196,154,108,.45); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: var(--radius-full);
  transition: all var(--t-base) var(--ease);
}

/* ============================================================
   PAGE OFFSET (for fixed header)
   ============================================================ */
.page-content { padding-top: calc(70px + 32px); } /* navbar + top bar */

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: calc(70px + 32px);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1604654894610-df63bc536371?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(42,36,34,.82) 0%,
    rgba(42,36,34,.55) 50%,
    rgba(196,154,108,.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  padding: .35rem 1rem;
  border: 1px solid rgba(226,201,168,.4);
  border-radius: var(--radius-full);
}
.hero-title {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-desc {
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2.25rem;
  line-height: 1.8;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-hours {
  position: absolute;
  right: 2rem;
  bottom: 3rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  color: var(--white);
  z-index: 1;
}
.hero-hours h4 {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .6rem;
}
.hero-hours p { font-size: .88rem; opacity: .9; margin: 0; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   ABOUT STRIP (stats)
   ============================================================ */
.about-strip {
  background: var(--dark);
  padding: 2rem 0;
}
.about-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.strip-item { padding: 1rem; }
.strip-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.strip-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: .3rem;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--t-base) var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}
.service-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: var(--radius-full);
}
.service-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-body h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.service-body p  { font-size: .92rem; color: var(--text-muted); flex: 1; margin-bottom: 1.25rem; }
.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.service-price {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
}
.service-price strong { color: var(--gold-dark); font-size: 1rem; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-main img { width: 100%; height: 500px; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-img-accent img { width: 100%; height: 150px; object-fit: cover; }
.about-badge {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.about-badge-text { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rose-dark);
}
.about-feature-text h5 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .15rem;
}
.about-feature-text p { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   PRICING PREVIEW
   ============================================================ */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  transform: scaleX(0);
  transition: transform var(--t-base) var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold-light); }
.price-card:hover::before { transform: scaleX(1); }
.price-card.featured {
  background: linear-gradient(160deg, var(--dark) 0%, #3e3430 100%);
  border-color: var(--gold);
  color: var(--white);
}
.price-card.featured::before { transform: scaleX(1); }
.price-card.featured h3, .price-card.featured h4 { color: var(--white); }
.price-card.featured p, .price-card.featured li { color: rgba(255,255,255,.75); }
.price-card.featured .price-amount { color: var(--gold-light); }
.price-card-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
  background: var(--rose-light);
  color: var(--rose-dark);
  margin-bottom: 1rem;
}
.price-card.featured .price-card-tag { background: rgba(196,154,108,.25); color: var(--gold-light); }
.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin: .75rem 0;
}
.price-amount span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.price-card ul { margin: 1.25rem 0; }
.price-card li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  padding: .3rem 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.price-card.featured li { border-bottom-color: rgba(255,255,255,.1); }
.price-card li::before { content: '✦'; font-size: .6rem; color: var(--gold); flex-shrink: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--t-base) var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--rose-light);
  font-family: var(--font-display);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
.stars { color: #f59e0b; font-size: 1rem; letter-spacing: .1em; margin-bottom: 1rem; }
.testimonial-card p {
  font-size: .93rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--rose-dark);
  font-size: .95rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: .9rem; color: var(--dark); }
.author-label { font-size: .78rem; color: var(--text-muted); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #3e3430 40%, #4a3030 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '✦';
  position: absolute;
  font-size: 20rem;
  opacity: .03;
  color: var(--gold);
  top: -4rem;
  right: -2rem;
  font-family: serif;
}
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-banner-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #3e3430 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1604654894610-df63bc536371?auto=format&fit=crop&w=1920&q=20') center/cover;
  opacity: .08;
  pointer-events: none;
}
.page-banner h1 { color: var(--white); position: relative; z-index: 1; }
.page-banner p  { color: rgba(255,255,255,.7); position: relative; z-index: 1; margin-top: .75rem; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }

/* ============================================================
   PRICES PAGE
   ============================================================ */
.price-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}
.price-table-header {
  background: linear-gradient(135deg, var(--dark), #3e3430);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.price-table-header h3 { color: var(--white); margin: 0; font-size: 1.1rem; }
.price-table-icon {
  width: 36px;
  height: 36px;
  background: rgba(196,154,108,.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.price-table-body { padding: .5rem 0; }
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.75rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--t-fast) var(--ease);
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--cream); }
.price-row-name { font-size: .92rem; color: var(--text); }
.price-row-note { font-size: .78rem; color: var(--text-muted); margin-top: .1rem; }
.price-row-amount {
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-dark);
  white-space: nowrap;
}
.price-row-sub { font-size: .78rem; color: var(--text-muted); text-align: right; }

.prices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* ============================================================
   APPOINTMENT PAGE
   ============================================================ */
.appointment-wrap {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.booking-embed-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  margin: 2rem 0;
}
.booking-cta-big {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .03em;
  box-shadow: 0 6px 24px rgba(196,154,108,.4);
  transition: all var(--t-base) var(--ease);
  margin: 1.5rem 0;
}
.booking-cta-big:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(196,154,108,.5); }
.booking-note {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-size: .9rem;
  color: var(--text-muted);
  text-align: left;
  margin-top: 1.5rem;
  border-left: 3px solid var(--gold);
}

/* ============================================================
   GIFT CARD PAGE
   ============================================================ */
.gift-card-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.gift-types-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.gift-type-btn {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  text-align: center;
  background: var(--white);
}
.gift-type-btn:hover { border-color: var(--gold); background: var(--cream); }
.gift-type-btn.selected {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--cream), #f9ede0);
  box-shadow: 0 4px 12px rgba(196,154,108,.2);
}
.gift-type-icon { font-size: 1.6rem; margin-bottom: .4rem; }
.gift-type-name { font-size: .82rem; font-weight: 700; color: var(--dark); }

.gift-form-panel {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.gift-preview-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
}
.gift-preview-card::before {
  content: '✦';
  position: absolute;
  font-size: 8rem;
  opacity: .08;
  right: -1rem;
  bottom: -2rem;
}
.gift-preview-card .card-salon { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; opacity: .7; }
.gift-preview-card .card-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin: .5rem 0; }
.gift-preview-card .card-amount { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold-light); }
.gift-preview-card .card-code { font-size: .7rem; opacity: .5; margin-top: .5rem; letter-spacing: .1em; }

.amount-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  margin: 1rem 0;
}
.amount-btn {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: .6rem .5rem;
  cursor: pointer;
  font-weight: 700;
  font-size: .88rem;
  transition: all var(--t-fast) var(--ease);
  background: var(--white);
  color: var(--text);
  text-align: center;
}
.amount-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.amount-btn.selected { border-color: var(--gold); background: var(--gold); color: var(--white); }

/* Form styles */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .4rem;
  letter-spacing: .02em;
}
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,108,.15);
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-section-title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1.5rem 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}

#paypal-button-container { margin-top: 1.5rem; }
#paypal-button-container > div { border-radius: var(--radius-md) !important; }

/* ============================================================
   SUCCESS / CANCEL PAGES
   ============================================================ */
.result-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
}
.result-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-xl);
  text-align: center;
  max-width: 560px;
  width: 100%;
  border: 1px solid var(--border);
}
.result-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem;
}
.result-icon.success { background: #d1fae5; }
.result-icon.cancel  { background: #fee2e2; }
.gc-code-display {
  background: var(--cream);
  border: 2px dashed var(--gold);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 1.5rem 0;
  font-family: 'Courier New', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: .15em;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--t-base) var(--ease);
}
.contact-info-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-dark);
  flex-shrink: 0;
}
.contact-info-text h4 { font-size: .88rem; font-weight: 700; color: var(--dark); margin-bottom: .25rem; }
.contact-info-text p, .contact-info-text a { font-size: .92rem; color: var(--text-muted); margin: 0; }
.contact-info-text a:hover { color: var(--gold); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: .5rem; }
.hours-table td { padding: .35rem 0; font-size: .88rem; color: var(--text-muted); }
.hours-table td:first-child { font-weight: 600; color: var(--text); }
.hours-table td:last-child { text-align: right; }
.hours-table tr.today td { color: var(--gold-dark); font-weight: 700; }

.contact-form-panel {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 1.5rem;
  border: 1px solid var(--border);
}
.map-embed iframe { width: 100%; height: 280px; border: 0; display: block; }

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: .9rem;
  margin-bottom: 1rem;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ============================================================
   GALLERY STRIP
   ============================================================ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42,36,34,.5);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark); color: rgba(255,255,255,.8); }
.footer-main { padding: 4rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
}
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.6); margin-top: .75rem; max-width: 280px; line-height: 1.7; }
.footer-logo { display: flex; align-items: center; gap: .6rem; }
.footer-logo .logo-name { color: var(--white); }
.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--t-base) var(--ease);
}
.footer-social a:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.footer-nav h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.footer-nav ul li { margin-bottom: .5rem; }
.footer-nav ul a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color var(--t-fast) var(--ease); }
.footer-nav ul a:hover { color: var(--gold-light); }
.footer-contact h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.footer-contact ul { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: .6rem; font-size: .85rem; color: rgba(255,255,255,.6); }
.footer-contact svg { flex-shrink: 0; margin-top: .2rem; opacity: .7; }
.footer-contact a { color: rgba(255,255,255,.6); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.4); transition: color var(--t-fast) var(--ease); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap { max-width: 600px; margin: 0 auto; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand  { grid-column: span 2; }
  .gift-card-layout { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .prices-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .section-lg { padding: 4.5rem 0; }

  .header-top { display: none; }
  .page-content { padding-top: 70px; }
  .hero { padding-top: 70px; }

  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 2rem;
    gap: .25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--t-base) var(--ease);
    z-index: 999;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link { padding: .7rem .5rem; font-size: 1rem; }
  .nav-cta { margin: .75rem 0 0; text-align: center; justify-content: center; }

  .hero-hours { display: none; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .about-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .gift-types-list { grid-template-columns: repeat(2, 1fr); }
  .amount-options { grid-template-columns: repeat(4, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .about-badge { display: none; }
  .about-img-accent { display: none; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .amount-options { grid-template-columns: repeat(3, 1fr); }
  .gift-form-panel { padding: 1.5rem; }
  .result-card { padding: 2rem 1.5rem; }
}

/* ============================================================
   ANIMATIONS & UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in {
  opacity: 0;
  transition: opacity var(--t-slow) var(--ease);
}
.fade-in.visible { opacity: 1; }
.stagger-1 { transition-delay: .1s; }
.stagger-2 { transition-delay: .2s; }
.stagger-3 { transition-delay: .3s; }
.stagger-4 { transition-delay: .4s; }
.stagger-5 { transition-delay: .5s; }

.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

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

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
