/* ===== Zoba Beauty — pink luxury nail studio ===== */

:root {
  --pink-50:  #fff5f9;
  --pink-100: #ffe6f1;
  --pink-200: #ffc9e2;
  --pink-300: #ffa3cd;
  --pink-400: #ff74b0;
  --pink-500: #ff4d9c;
  --pink-600: #e62e82;
  --pink-700: #b81c66;
  --pink-900: #4a0e2c;
  --gold: #cf9f5b;
  --gold-light: #e9cf9c;
  --cream: #fffaf5;
  --ink: #3a1428;
  --ink-soft: #6b3653;
  --shadow-pink: 0 20px 40px -12px rgba(230, 46, 130, 0.35);
  --radius: 20px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* subtle grain overlay for texture/luxury feel */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 2rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 45px -10px rgba(230,46,130,.45); }
.btn-ghost {
  background: transparent;
  color: var(--pink-700);
  border-color: var(--pink-300);
}
.btn-ghost:hover { background: var(--pink-100); transform: translateY(-3px); }
.btn-outline {
  background: #fff;
  color: var(--pink-700);
  border-color: var(--gold-light);
  box-shadow: 0 10px 25px -10px rgba(58,20,40,.15);
}
.btn-outline:hover { transform: translateY(-3px); border-color: var(--gold); }
.ig-btn { display: inline-flex; align-items: center; gap: .55rem; }
.social-cta-row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ===== Header / Nav ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(207, 159, 91, 0.18);
  transition: box-shadow .3s ease;
}
/* The blur lives on a pseudo-element rather than directly on .site-header
   because backdrop-filter on an element silently makes it the containing
   block for any position:fixed descendant — which trapped the mobile
   full-screen nav panel inside the 76px header box instead of the
   viewport. Keeping it off the real element avoids that entirely. */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 250, 245, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-header.scrolled { box-shadow: 0 10px 30px -15px rgba(58,20,40,.25); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--pink-700);
  letter-spacing: .01em;
}
.logo span { color: var(--gold); font-style: italic; }
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo img { height: 64px; width: auto; display: block; }

/* Mobile-menu-only elements — hidden on desktop, shown inside the
   full-screen takeover panel at the 760px breakpoint below. */
.nav-mobile-brand,
.nav-mobile-tagline,
.nav-links-cta {
  display: none;
}

.nav-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: .25rem;
  margin: 0 auto;
}
.nav-links a {
  position: relative;
  z-index: 1;
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: .55rem 1.05rem;
  border-radius: 999px;
  transition: color .3s ease;
}
.nav-links a:hover { color: var(--pink-700); }
.nav-links a.active { color: var(--pink-700); font-weight: 600; }

/* glossy pill that glides beneath the active section's nav link */
.nav-glider {
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 100%;
  border-radius: 999px;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(255,208,231,.7) 45%, rgba(255,124,182,.45) 100%);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow:
    0 8px 18px -6px rgba(230,46,130,.4),
    inset 0 1px 1px rgba(255,255,255,.95),
    inset 0 -8px 12px -8px rgba(230,46,130,.3);
  transition: left .45s cubic-bezier(.65,0,.35,1), width .45s cubic-bezier(.65,0,.35,1), opacity .3s ease;
}
.nav-glider.visible { opacity: 1; }
.nav-glider::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.85) 48%, transparent 66%);
  background-size: 220% 100%;
  background-position: 160% 0;
  transition: background-position .7s ease;
}
.nav-glider.shine::after { background-position: -60% 0; }

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--pink-700);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,164,205,.5), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(207,159,91,.25), transparent 40%),
    linear-gradient(180deg, var(--pink-50) 0%, var(--cream) 100%);
}
.hero-blob {
  position: absolute;
  top: -10%;
  right: -12%;
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pink-200) 0%, transparent 70%);
  filter: blur(10px);
  z-index: 0;
}
.sparkle {
  position: absolute;
  color: var(--gold);
  font-size: 2rem;
  opacity: .8;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}
.sparkle-1 { top: 22%; left: 6%; font-size: 2.4rem; animation-delay: 0s; }
.sparkle-2 { top: 65%; left: 12%; font-size: 1.5rem; color: var(--pink-400); animation-delay: 1.5s; }
.sparkle-3 { top: 38%; right: 10%; font-size: 2rem; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(15deg); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pink-600);
  background: var(--pink-100);
  border: 1px solid var(--pink-200);
  padding: .4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.eyebrow.center { display: block; width: fit-content; margin-left: auto; margin-right: auto; }

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--pink-700);
  line-height: 1.05;
  margin-bottom: .5rem;
}
.hero h1 .script {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}

.tagline {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink-soft);
  margin-bottom: 1.3rem;
}

.hero-copy {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 2.2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-actions.center { margin-bottom: 0; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-stats div { display: flex; flex-direction: column; align-items: center; }
.hero-stats strong {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--pink-700);
}
.hero-stats span {
  font-size: .82rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stat-directions {
  margin-top: .35rem;
  font-size: .82rem;
}

/* ===== Marquee ===== */
.marquee {
  background: linear-gradient(90deg, var(--pink-600), var(--pink-500));
  overflow: hidden;
  padding: .9rem 0;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: scroll 44s linear infinite;
}
.marquee-track span {
  color: #fff;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: .02em;
  white-space: nowrap;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Sections ===== */
.section { padding: 6.5rem 0; }
.section-alt { background: var(--pink-50); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--pink-700);
  margin-bottom: .8rem;
}
.section-sub {
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 3rem;
  font-size: 1.02rem;
}
.center { text-align: center; }

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.6rem;
}
.service-card {
  position: relative;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cg fill='%23cf9f5b' opacity='0.18'%3E%3Ccircle cx='20' cy='30' r='2'/%3E%3Ccircle cx='95' cy='18' r='1.6'/%3E%3Ccircle cx='60' cy='75' r='2.4'/%3E%3Ccircle cx='120' cy='105' r='1.6'/%3E%3Ccircle cx='32' cy='115' r='1.8'/%3E%3Ccircle cx='110' cy='55' r='1.4'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 12% 15%, rgba(255,201,226,.5), transparent 55%),
    radial-gradient(circle at 92% 88%, rgba(207,159,91,.22), transparent 50%),
    linear-gradient(160deg, #fffaf5 0%, #ffeef6 100%);
  background-repeat: repeat, no-repeat, no-repeat, no-repeat;
  background-size: 140px 140px, auto, auto, auto;
  border: 1px solid rgba(207,159,91,.2);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-pink);
}
.service-card.featured {
  background: linear-gradient(160deg, var(--pink-600), var(--pink-700));
  color: #fff;
  border-color: transparent;
}
.service-card.featured p { color: rgba(255,255,255,.85); }
.service-card.featured .price { color: var(--gold-light); }

/* Cards with a real photo background (set via the --card-photo custom
   property so the gradient scrim and cover/position rules stay in the
   stylesheet instead of being clobbered by an inline background-image). */
.service-card.has-photo {
  background-image:
    linear-gradient(180deg, rgba(58,20,40,.1) 0%, rgba(58,20,40,.45) 55%, rgba(88,17,52,.92) 100%),
    var(--card-photo);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  padding: 1.7rem 1.6rem;
}
.service-card.has-photo h3 { color: #fff; font-size: 1.1rem; margin-bottom: .35rem; }
.service-card.has-photo p { color: rgba(255,255,255,.88); font-size: .85rem; margin-bottom: 1rem; min-height: 0; }
.service-card.has-photo .price { color: var(--gold-light); font-size: .9rem; }
.service-card-inner { position: relative; z-index: 1; }
.ribbon {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--gold);
  color: var(--pink-900);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0,0,0,.15);
}
.service-icon { font-size: 2.1rem; margin-bottom: 1rem; }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin-bottom: .5rem;
}
.service-card p {
  font-size: .92rem;
  color: var(--ink-soft);
  margin-bottom: 1.3rem;
  min-height: 42px;
}
.service-card .price {
  display: inline-block;
  font-weight: 600;
  color: var(--pink-600);
  font-size: .98rem;
}
.services-note {
  text-align: center;
  font-size: .85rem;
  color: var(--ink-soft);
  opacity: .75;
  margin-top: 2.5rem;
  font-style: italic;
}

/* ===== Policies ===== */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.3rem;
}
.policy-card {
  display: block;
  width: 100%;
  font-family: inherit;
  text-align: center;
  cursor: pointer;
  background: #fff;
  border: 1px solid rgba(207,159,91,.2);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.policy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-pink);
}
.policy-icon { font-size: 2rem; margin-bottom: .8rem; }
.policy-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--pink-700);
  margin-bottom: .6rem;
}
.policy-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--pink-600);
}

/* ===== Policies modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(58,20,40,.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius);
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 60px -15px rgba(58,20,40,.4);
  transform: translateY(16px) scale(.98);
  transition: transform .3s ease;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: .9rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: var(--pink-100);
  color: var(--pink-700);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}
.modal-close:hover { background: var(--pink-200); }
.modal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  padding: 1.5rem 3rem 0 1.5rem;
}
.modal-tab {
  font-family: inherit;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--pink-50);
  border: 1px solid rgba(207,159,91,.25);
  border-radius: 999px;
  padding: .5rem 1rem;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.modal-tab:hover { background: var(--pink-100); }
.modal-tab.active {
  background: var(--pink-600);
  border-color: transparent;
  color: #fff;
}
.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
}
.modal-panel { display: none; }
.modal-panel.active { display: block; }
.modal-panel h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--pink-700);
  margin-bottom: .9rem;
}
.modal-panel ul { display: flex; flex-direction: column; gap: .7rem; }
.modal-panel li {
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.55;
  padding-left: 1.2rem;
  position: relative;
}
.modal-panel li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .8rem;
}
.pricelist-wrap {
  max-width: 380px;
  margin: 0 auto;
}
.pricelist-wrap .policy-card { padding: 2.5rem 2rem; }
.pricelist-wrap .policy-icon { font-size: 2.4rem; }
.pricelist-wrap .policy-card h3 { font-size: 1.3rem; }
.pricelist-wrap .policy-link { font-size: .95rem; }
.modal-panel .price-list { gap: 0; }
.modal-panel .price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .55rem 0;
  border-bottom: 1px dashed rgba(207,159,91,.25);
}
.modal-panel .price-list li:last-child { border-bottom: none; }
.modal-panel .price-list li::before { content: none; }
.price-list li span:first-child { color: var(--ink-soft); }
.price-list li span:last-child {
  font-weight: 600;
  color: var(--pink-600);
  white-space: nowrap;
}
.modal-note {
  font-size: .78rem;
  font-style: italic;
  color: var(--ink-soft);
  opacity: .75;
  text-align: center;
  padding: 0 1.5rem 1.3rem;
  margin: 0;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--pink-100);
  box-shadow: 0 10px 25px -12px rgba(58,20,40,.25);
  transition: transform .3s ease;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== About ===== */
.about-inner {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
}
.about-frame {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--pink-300), var(--pink-600));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-pink);
  position: relative;
}
.about-frame::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1.5px solid rgba(255,255,255,.55);
  border-radius: calc(var(--radius) - 6px);
}
.about-frame span { font-size: 5rem; }
.about-logo {
  width: 84%;
  max-width: 320px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 22px rgba(58,20,40,.25));
}
.about-copy p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.about-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.about-list li { color: var(--pink-700); font-weight: 500; font-size: .95rem; }

/* ===== Testimonials ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.2rem;
  border: 1px solid rgba(207,159,91,.2);
}
.stars { color: var(--gold); letter-spacing: .1em; margin-bottom: .9rem; }
.testimonial-card p { font-style: italic; color: var(--ink-soft); margin-bottom: 1.2rem; }
.t-name { font-weight: 600; color: var(--pink-700); font-size: .9rem; }
.review-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.reviews-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--ink-soft);
  font-style: italic;
  padding: 1.5rem 0;
}

/* ===== Review submission form ===== */
.review-form-wrap { max-width: 560px; margin: 3rem auto 0; text-align: center; }
.review-form {
  margin-top: 1.6rem;
  background: #fff;
  border: 1px solid rgba(207,159,91,.2);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.review-form.hidden { display: none; }
.form-row { display: flex; flex-direction: column; gap: .4rem; }
.form-row label { font-size: .86rem; font-weight: 600; color: var(--pink-700); }
.form-row input[type="text"],
.form-row textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  padding: .75rem .9rem;
  border: 1px solid rgba(207,159,91,.35);
  border-radius: 12px;
  background: var(--pink-50);
  color: var(--ink);
  resize: vertical;
}
.form-row input[type="text"]:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--pink-500);
  background: #fff;
}
.form-row input[type="file"] { font-size: .86rem; color: var(--ink-soft); }

.star-input { display: flex; gap: .3rem; }
.star-input .star {
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: rgba(207,159,91,.35);
  cursor: pointer;
  padding: 0;
  transition: color .15s ease, transform .15s ease;
}
.star-input .star:hover { transform: scale(1.12); }
.star-input .star.active { color: var(--gold); }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.review-form-msg { font-size: .86rem; min-height: 1.1em; margin: 0; }
.review-form-msg.success { color: #1e8a4c; }
.review-form-msg.error { color: var(--pink-700); }
.review-form-note { font-size: .78rem; color: var(--ink-soft); opacity: .8; text-align: center; margin: 0; }

/* ===== Location ===== */
.location-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}
.location-card {
  background: linear-gradient(160deg, #fff, var(--pink-50));
  border: 1px solid rgba(207,159,91,.2);
  border-radius: var(--radius);
  padding: 2.2rem;
}
.location-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--pink-700);
  margin-bottom: .7rem;
}
.location-card p { color: var(--ink-soft); margin-bottom: .8rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: .92rem;
  color: var(--ink-soft);
  padding: .35rem 0;
  border-bottom: 1px dashed rgba(207,159,91,.25);
}
.hours-list li:last-child { border-bottom: none; }
.link-arrow {
  color: var(--pink-600);
  font-weight: 600;
  font-size: .92rem;
}
.link-arrow:hover { color: var(--pink-700); }

/* ===== CTA ===== */
.cta-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.12), transparent 40%),
    linear-gradient(135deg, var(--pink-600), var(--pink-700));
}
.cta-section .eyebrow { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); color: #fff; }
.cta-section .section-title { color: #fff; }
.cta-section .section-sub { color: rgba(255,255,255,.85); }
.cta-section .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.cta-section .btn-ghost:hover { background: rgba(255,255,255,.12); }

/* ===== Footer ===== */
.site-footer {
  background: var(--pink-900);
  color: rgba(255,255,255,.75);
  padding: 3.5rem 0 2rem;
  text-align: center;
}
.site-footer .logo { color: #fff; }
.site-footer .logo span { color: var(--gold-light); }
.footer-tagline { font-family: var(--font-head); font-style: italic; margin: .8rem 0 1.5rem; color: var(--pink-200); }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.8rem; }
.footer-links a { font-size: .9rem; font-weight: 500; }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { font-size: .8rem; opacity: .6; }

/* ===== Floating buttons ===== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -6px rgba(37,211,102,.55);
  z-index: 900;
  transition: transform .25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

.back-to-top {
  position: fixed;
  bottom: 26px;
  left: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--pink-700);
  box-shadow: 0 10px 25px -8px rgba(58,20,40,.3);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 900;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-frame { max-width: 340px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .nav-cta { display: none; }
  .hamburger { display: flex; padding: .7rem; }

  /* Full-screen takeover menu instead of a squeezed dropdown — see
     .nav-links-cta / .nav-mobile-brand below, which only render in this
     panel (hidden on desktop, where the horizontal pill nav + separate
     .nav-cta button are used instead). */
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    position: fixed;
    top: 76px;
    left: 0; right: 0; bottom: 0;
    background:
      radial-gradient(circle at 20% 15%, rgba(255,164,205,.4), transparent 45%),
      radial-gradient(circle at 85% 85%, rgba(207,159,91,.22), transparent 45%),
      linear-gradient(180deg, var(--pink-50) 0%, var(--cream) 100%);
    padding: 2rem 1.5rem 3rem;
    overflow-y: auto;
    z-index: 950;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity .35s ease, visibility .35s ease, transform .35s ease;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-glider { display: none; }

  .nav-links a {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 600;
    padding: .3rem 1.2rem;
    border-radius: 999px;
  }
  .nav-links a.active { background: var(--pink-100); }

  .nav-mobile-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    margin-bottom: -.4rem;
  }
  .nav-mobile-logo { height: 46px; width: auto; }
  .nav-mobile-sparkle { color: var(--gold); font-size: 1.3rem; }
  .nav-mobile-tagline {
    display: block;
    font-family: var(--font-head);
    font-style: italic;
    color: var(--ink-soft);
    font-size: 1rem;
    text-align: center;
  }
  .nav-links-cta {
    display: inline-flex;
    margin-top: .6rem;
  }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 1.8rem; }
}

@media (max-width: 480px) {
  .hero { padding-top: 110px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}

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

/* ===== Accessibility: keyboard focus ===== */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--pink-600);
  outline-offset: 3px;
  border-radius: 6px;
}
.form-row input:focus-visible,
.form-row textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(230,46,130,.3);
}
