/*
Theme Name: Salong Le
Theme URI: https://salongle.se
Author: Salong Le
Author URI: https://salongle.se
Description: Ett modernt och lyxigt WordPress-tema för Salong Le i Gustavsberg – nagel- och franssalong. Ljus rosa och guld-stämning med mjuka skuggor och eleganta animationer. Inkluderar Instagram-galleri via Behold.so.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: salong-le
Tags: one-page, beauty, salon, pink, elegant, custom-logo, custom-menu, threaded-comments, translation-ready
*/

/* =========================================================
   SALONG LE – Stylesheet
   Modern + luxurious · Light pink + gold · Soft shadows
   ========================================================= */

:root {
  /* Palette */
  --pink-50:  #FFF7FA;
  --pink-100: #FFE9F1;
  --pink-200: #FFD4E3;
  --pink-300: #FBB6CE;
  --pink-400: #F48FB1;
  --pink-500: #E91E63;
  --blush:    #F7CAD0;
  --rose:     #FADADD;
  --cream:    #FBF5EF;
  --ivory:    #FFFBF7;
  --gold:     #C9A961;
  --gold-deep:#A88A3D;
  --gold-soft:#E8D7A8;
  --charcoal: #2A2226;
  --ink:      #3D2E35;
  --muted:    #8A7983;
  --white:    #ffffff;

  /* Fonts */
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 10px rgba(233, 30, 99, 0.08);
  --shadow-md: 0 10px 30px rgba(233, 30, 99, 0.12), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 25px 50px -12px rgba(233, 30, 99, 0.22), 0 8px 24px rgba(201, 169, 97, 0.12);
  --shadow-xl: 0 40px 80px -20px rgba(233, 30, 99, 0.28), 0 12px 36px rgba(201, 169, 97, 0.18);
  --shadow-gold: 0 10px 30px rgba(201, 169, 97, 0.35);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,0.6);

  /* Radius */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-full: 999px;

  /* Transitions */
  --easing: cubic-bezier(.22,.61,.36,1);
  --t-fast: .25s var(--easing);
  --t-med:  .45s var(--easing);
  --t-slow: .75s var(--easing);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: linear-gradient(180deg, var(--ivory) 0%, var(--pink-50) 40%, var(--cream) 100%);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.015em;
  margin: 0 0 .4em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: 1.25rem; }

em {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--gold-deep);
  font-weight: 500;
}

p { margin: 0 0 1em; }

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: .9rem;
  padding-left: 40px;
  position: relative;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.lead { font-size: 1.1rem; color: var(--muted); max-width: 56ch; }

/* ---------- Decorative blobs ---------- */
.bg-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .45;
  animation: floatBlob 18s ease-in-out infinite;
}
.blob-1 { width: 520px; height: 520px; background: var(--pink-200); top: -150px; right: -120px; }
.blob-2 { width: 420px; height: 420px; background: var(--gold-soft); bottom: 10%; left: -100px; animation-delay: -6s; }
.blob-3 { width: 360px; height: 360px; background: var(--rose); top: 45%; right: 20%; animation-delay: -12s; opacity: .3; }

@keyframes floatBlob {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(40px, -30px) scale(1.08); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
  position: relative;
  white-space: nowrap;
}
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--pink-400) 0%, var(--pink-300) 50%, var(--gold-soft) 100%);
  color: var(--charcoal);
  box-shadow: 0 10px 24px rgba(244,143,177,0.35), 0 4px 8px rgba(201,169,97,0.2), var(--shadow-inset);
  font-weight: 600;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(244,143,177,0.5), 0 8px 16px rgba(201,169,97,0.3), var(--shadow-inset);
  color: #1a1418;
}
.btn-primary:active { transform: translateY(-1px) scale(1); }

.btn-ghost {
  background: rgba(255,255,255,0.7);
  color: var(--charcoal);
  box-shadow: 0 6px 20px rgba(233,30,99,0.1), var(--shadow-inset);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,169,97,0.3);
}
.btn-ghost:hover {
  background: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(233,30,99,0.18);
  border-color: var(--gold);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background var(--t-med), box-shadow var(--t-med), padding var(--t-med);
}
.site-header.scrolled {
  background: rgba(255, 251, 247, 0.85);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 4px 24px rgba(233,30,99,0.08);
  padding: 0.7rem 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  line-height: 0;
  transition: transform var(--t-fast);
}
.brand:hover { transform: scale(1.04); }

/* WP's custom-logo-link wrapper neutraliseras */
.brand .custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}
.brand .custom-logo-link:hover { opacity: 1; }

/* Loggan – fungerar för både .brand-logo (HTML fallback) och .custom-logo (WP) */
.brand-logo,
.brand .custom-logo {
  height: 62px !important;
  width: auto !important;
  max-width: 220px;
  max-height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(233,30,99,0.22));
  transition: height var(--t-med), max-height var(--t-med);
  display: block;
}
.site-header.scrolled .brand-logo,
.site-header.scrolled .brand .custom-logo {
  height: 48px !important;
  max-height: 48px;
}

@media (max-width: 720px) {
  .brand-logo,
  .brand .custom-logo {
    height: 48px !important;
    max-height: 48px;
  }
  .site-header.scrolled .brand-logo,
  .site-header.scrolled .brand .custom-logo {
    height: 40px !important;
    max-height: 40px;
  }
}

.main-nav ul {
  display: flex;
  gap: 2rem;
}
.main-nav a {
  position: relative;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  padding: .4rem 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -2px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--pink-400));
  transition: width var(--t-fast), left var(--t-fast);
}
.main-nav a:hover { color: var(--gold-deep); }
.main-nav a:hover::after { width: 100%; left: 0; }

.btn-book { padding: 0.7rem 1.4rem; font-size: .9rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--charcoal);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-copy h1 {
  margin-top: .5rem;
  margin-bottom: 1.3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 3rem;
}

.hero-badges {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,169,97,.25);
}
.hero-badges li {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.badge-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-deep);
  line-height: 1;
}
.hero-badges span:not(.badge-num) {
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Hero visual */
.hero-visual { position: relative; }
.hero-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 520px;
  margin-left: auto;
}
.hero-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl) var(--r-xl) var(--r-xl) 80px;
  box-shadow: var(--shadow-xl);
  transform: rotate(-2deg);
  transition: transform var(--t-slow);
}
.hero-img-main:hover { transform: rotate(0deg) scale(1.02); }

.hero-img-float {
  position: absolute;
  bottom: -30px; left: -40px;
  width: 46%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  background: var(--pink-100);
  padding: 12px;
  transform: rotate(4deg);
  animation: floatSoft 6s ease-in-out infinite;
}
@keyframes floatSoft {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50%      { transform: translateY(-14px) rotate(2deg); }
}

.hero-stamp {
  position: absolute;
  top: -20px; right: -20px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  box-shadow: var(--shadow-gold);
  animation: spinSlow 20s linear infinite;
  text-align: center;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-stamp strong {
  font-size: 2rem;
  font-style: italic;
  font-family: var(--font-display);
  text-transform: none;
  letter-spacing: 0;
  display: block;
  margin: .1rem 0;
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(70px, 10vw, 130px) 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section-head .eyebrow { padding-left: 0; padding-right: 40px; }
.section-head .eyebrow::before { left: auto; right: 0; background: linear-gradient(-90deg, var(--gold), transparent); }
.section-head .lead { margin: 0 auto; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 1/1;
}
.about-img-1, .about-img-2 {
  position: absolute;
  border-radius: var(--r-lg);
  object-fit: cover;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.about-img-1 {
  width: 72%; height: 82%;
  top: 0; left: 0;
  box-shadow: var(--shadow-lg);
}
.about-img-2 {
  width: 54%; height: 58%;
  bottom: 0; right: 0;
  box-shadow: var(--shadow-xl);
  border: 10px solid var(--white);
}
.about-img-1:hover, .about-img-2:hover {
  transform: translateY(-8px);
}

.team-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.team-card {
  background: rgba(255,255,255,0.7);
  padding: 1.4rem;
  border-radius: var(--r-md);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,169,97,0.2);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.team-card h3 { margin-bottom: .1rem; }
.team-card .role {
  color: var(--gold-deep);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .7rem;
  font-weight: 500;
}
.team-card p { font-size: .92rem; color: var(--muted); margin: 0; }

/* ---------- Services / Tabs ---------- */
.services { background: linear-gradient(180deg, transparent 0%, rgba(255, 233, 241, 0.35) 50%, transparent 100%); }

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.tab {
  padding: .7rem 1.3rem;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.7);
  color: var(--ink);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .02em;
  box-shadow: var(--shadow-sm), var(--shadow-inset);
  border: 1px solid rgba(201,169,97,0.2);
  transition: all var(--t-fast);
}
.tab:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.tab.active {
  background: linear-gradient(135deg, var(--pink-300), var(--gold-soft));
  color: var(--charcoal);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  font-weight: 600;
}

.panels { position: relative; }
.panel { display: none; animation: fadeInUp .5s var(--easing); }
.panel.active { display: block; }

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

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.3rem;
}

.price-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255, 247, 250, 0.95));
  border-radius: var(--r-md);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm), var(--shadow-inset);
  border: 1px solid rgba(255,255,255,0.6);
  transition: transform var(--t-med), box-shadow var(--t-med);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(201,169,97,0.08) 100%);
  opacity: 0;
  transition: opacity var(--t-med);
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.price-card:hover::before { opacity: 1; }

.price-card h3 {
  font-size: 1.2rem;
  margin-bottom: .3rem;
  position: relative;
  z-index: 1;
}
.price-card .desc {
  color: var(--muted);
  font-size: .88rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.price-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px dashed rgba(201,169,97,0.3);
  position: relative;
  z-index: 1;
}
.price-card .meta span:first-child {
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.price-card .price {
  font-family: var(--font-serif);
  font-size: 1.35rem !important;
  font-weight: 600;
  color: var(--gold-deep);
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.price-card.featured {
  background: linear-gradient(135deg, var(--pink-100), var(--cream));
  border: 1px solid var(--gold);
  box-shadow: var(--shadow-md), 0 0 0 4px rgba(201,169,97,0.08);
}
.price-card.featured::after {
  content: '★ Populär';
  position: absolute;
  top: 14px; right: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: white;
  font-size: .7rem;
  padding: .2rem .6rem;
  border-radius: var(--r-full);
  letter-spacing: .1em;
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}

.cta-row {
  text-align: center;
  margin-top: 3rem;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.gallery-grid > *:nth-child(1),
.gallery-grid > *:nth-child(6) {
  border-radius: var(--r-xl) var(--r-lg) var(--r-lg) var(--r-lg);
}
.gallery-grid > *:nth-child(3),
.gallery-grid > *:nth-child(4) {
  border-radius: var(--r-lg) var(--r-xl) var(--r-lg) var(--r-lg);
}
.gallery-item {
  margin: 0;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform var(--t-med), box-shadow var(--t-med);
  background: var(--pink-100);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(233, 30, 99, 0.15) 100%);
  opacity: 0;
  transition: opacity var(--t-med);
}
.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-xl);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover::after { opacity: 1; }

/* Instagram-specifika stilar */
.ig-item {
  display: block;
  cursor: pointer;
  color: var(--charcoal);
}
.ig-play {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--pink-500);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  z-index: 2;
  transition: transform var(--t-fast);
}
.ig-play svg { width: 20px; height: 20px; margin-left: 2px; }
.ig-item:hover .ig-play { transform: scale(1.1); }

.ig-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, rgba(233,30,99,0.55), rgba(201,169,97,0.55));
  opacity: 0;
  transition: opacity var(--t-med);
  z-index: 1;
  backdrop-filter: blur(2px);
}
.ig-item:hover .ig-hover { opacity: 1; }

/* Galleri-laddare */
.gallery-loader {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 1rem;
  color: var(--muted);
}
.spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid rgba(201,169,97,0.25);
  border-top-color: var(--gold);
  animation: spin 0.9s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.contact-list {
  display: grid;
  gap: 1.3rem;
  margin: 2rem 0;
}
.contact-list li {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.7);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,169,97,0.15);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.contact-list li:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.ci-ico {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-100), var(--gold-soft));
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.contact-list strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: .15rem;
}
.contact-list p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}
.contact-list a:hover { color: var(--gold-deep); }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}

.contact-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 8px solid var(--white);
  aspect-ratio: 4/3;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--cream), var(--pink-100));
  padding: 5rem 0 2rem;
  margin-top: 4rem;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  width: 140px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 10px rgba(233,30,99,0.15));
}
.footer-brand p { color: var(--muted); font-size: .95rem; max-width: 280px; }

.site-footer h4 {
  font-size: 1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.2rem;
  font-family: var(--font-sans);
  font-weight: 600;
}
.site-footer ul { display: grid; gap: .6rem; }
.site-footer li { font-size: .92rem; color: var(--muted); }
.site-footer a:hover { color: var(--gold-deep); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(201,169,97,0.2);
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
}

/* ---------- Floating Action Button ---------- */
a.fab,
.fab {
  position: fixed !important;
  right: 24px !important;
  bottom: 24px !important;
  z-index: 90;
  width: 72px !important;
  height: 72px !important;
  min-width: 72px;
  min-height: 72px;
  max-width: 72px;
  max-height: 72px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, var(--pink-400), var(--gold-soft)) !important;
  color: var(--charcoal) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1;
  text-decoration: none !important;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(244,143,177,0.45), 0 6px 14px rgba(201,169,97,0.25);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  animation: pulseFab 3s ease-in-out infinite;
  box-sizing: border-box;
}
.fab > span {
  display: inline-block;
  line-height: 1;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.fab:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 24px 50px rgba(244,143,177,0.6);
  animation-play-state: paused;
  color: var(--charcoal) !important;
}
.fab:focus,
.fab:visited,
.fab:active { color: var(--charcoal) !important; text-decoration: none !important; }
@keyframes pulseFab {
  0%, 100% { box-shadow: 0 16px 40px rgba(244,143,177,0.45), 0 6px 14px rgba(201,169,97,0.25), 0 0 0 0 rgba(244,143,177,0.5); }
  50%      { box-shadow: 0 16px 40px rgba(244,143,177,0.45), 0 6px 14px rgba(201,169,97,0.25), 0 0 0 14px rgba(244,143,177,0); }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--easing), transform .9s var(--easing);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-image-wrap { margin: 0 auto; }
  .about-visual { aspect-ratio: 4/3; max-width: 560px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-cards { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: rgba(255, 251, 247, 0.98);
    backdrop-filter: blur(20px);
    padding: 100px 2rem 2rem;
    box-shadow: -20px 0 60px rgba(233,30,99,0.15);
    transition: right var(--t-med);
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 1.5rem; }
  .main-nav a { font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 102; }
  .btn-book { display: none; }

  .hero { padding-top: 110px; }
  .hero-stamp { width: 90px; height: 90px; font-size: .6rem; top: -10px; right: -10px; }
  .hero-stamp strong { font-size: 1.4rem; }
  .hero-badges { gap: 1.2rem; }
  .badge-num { font-size: 1.6rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: .5rem; }
  .tab { flex-shrink: 0; }

  a.fab,
  .fab {
    width: 62px !important;
    height: 62px !important;
    min-width: 62px;
    min-height: 62px;
    max-width: 62px;
    max-height: 62px;
    font-size: .85rem;
    right: 16px !important;
    bottom: 16px !important;
  }
}

@media (max-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .price-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero-img-float { display: none; }
}
