/* ============================================================
   MOSMAN LASHES STUDIO — styles.css
   ============================================================ */

/* ---- Google Fonts ----------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ---- Design Tokens ---------------------------------------- */
:root {
  --rose-gold:       #B76E79;
  --rose-gold-dark:  #9C5762;
  --blush-light:     #FBE9E7;
  --blush-mid:       #F3D4D0;
  --champagne:       #FFF8F4;
  --gold-accent:     #D4AF8B;
  --plum-text:       #4A2E33;
  --plum-muted:      #7A5A5F;
  --white:           #FFFFFF;
  --shadow-soft:     0 8px 30px rgba(183,110,121,0.15);

  --font-heading:    'Cormorant Garamond', Georgia, serif;
  --font-body:       'Jost', 'Inter', system-ui, sans-serif;

  --radius-card:     20px;
  --radius-btn:      999px;
  --max-w:           1200px;
  --transition:      0.28s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--plum-text);
  background: var(--champagne);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Utility ---------------------------------------------- */
.container {
  width: min(var(--max-w), 100% - 2rem);
  margin-inline: auto;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-gold);
  display: block;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--plum-text);
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 600px;
  color: var(--plum-muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose-gold), var(--gold-accent));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(183,110,121,0.30);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(183,110,121,0.38);
  background: linear-gradient(135deg, var(--rose-gold-dark), var(--rose-gold));
}

.btn-outline {
  background: transparent;
  color: var(--rose-gold);
  border: 2px solid var(--rose-gold);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--blush-mid);
  transform: translateY(-2px);
}

/* ---- Bubble Field ----------------------------------------- */
.bubble-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bubble {
  position: absolute;
  bottom: -100px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255,255,255,0.65),
    var(--blush-mid) 55%,
    var(--rose-gold) 100%
  );
  filter: blur(0.6px);
  animation: float-up linear infinite;
  will-change: transform, opacity;
}

@keyframes float-up {
  0%   { transform: translateY(0)      translateX(0)    scale(1);    opacity: 0; }
  10%  {                                                              opacity: 0.5; }
  50%  { transform: translateY(-50vh)  translateX(15px) scale(1.05); }
  90%  {                                                              opacity: 0.4; }
  100% { transform: translateY(-115vh) translateX(-10px) scale(0.9); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .bubble-field { display: none; }
  .reviews-track { animation: none !important; }
  .btn, .service-card, .gallery-item { transition: none !important; }
}

/* ---- Navigation ------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-nav.scrolled {
  background: rgba(255,248,244,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(183,110,121,0.12);
  padding: 0.6rem 0;
}

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

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--rose-gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.nav-logo .logo-glyph {
  font-size: 1.1rem;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-btn);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--plum-text);
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--blush-light);
  color: var(--rose-gold);
}

.nav-cta { margin-left: 0.75rem; }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.4rem;
  border-radius: 8px;
  transition: background var(--transition);
}
.nav-toggle:hover { background: var(--blush-mid); }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rose-gold);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,248,244,0.98);
  backdrop-filter: blur(12px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.nav-overlay a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--plum-text);
  transition: color var(--transition);
}
.nav-overlay a:hover { color: var(--rose-gold); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-overlay { display: flex; }
}

/* ---- Hero ------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(150deg, var(--blush-light) 0%, var(--champagne) 60%, var(--blush-mid) 100%);
  padding-top: 5rem;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: 4rem;
}

.hero-content { }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-gold);
  background: rgba(183,110,121,0.1);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--plum-text);
  margin-bottom: 1.2rem;
}
.hero-title em {
  font-style: italic;
  color: var(--rose-gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--plum-muted);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--plum-muted);
}
.hero-trust .stars { color: var(--gold-accent); letter-spacing: 1px; }

/* hero image frame */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  width: min(460px, 100%);
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  overflow: hidden;
  box-shadow: var(--shadow-soft), 0 0 0 8px var(--blush-mid);
  aspect-ratio: 4/5;
  background: var(--blush-mid);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: inherit;
  border: 2px solid var(--gold-accent);
  opacity: 0.4;
  pointer-events: none;
  z-index: 2;
}

/* placeholder visual when no real image */
.hero-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(145deg, var(--blush-light), var(--blush-mid));
  color: var(--plum-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 2rem;
}
.hero-placeholder svg { opacity: 0.4; }

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-image-frame { width: min(320px, 80vw); }
}

/* ---- About ------------------------------------------------ */
.about {
  background: var(--white);
  padding-block: 5rem;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-frame {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--blush-mid);
  box-shadow: var(--shadow-soft);
  border: 3px solid var(--blush-mid);
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--white);
  border: 2px solid var(--blush-mid);
  border-radius: var(--radius-card);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  min-width: 130px;
}
.about-badge .badge-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--rose-gold);
  line-height: 1;
}
.about-badge .badge-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--plum-muted);
}

.about-content { }
.about-content .section-intro { max-width: 100%; }

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.highlight-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--blush-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-gold);
}
.highlight-text strong { display: block; font-weight: 600; color: var(--plum-text); }
.highlight-text span { font-size: 0.88rem; color: var(--plum-muted); }

@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-image-frame { aspect-ratio: 4/3; }
  .about-badge { right: 1rem; }
}

/* ---- Services --------------------------------------------- */
.services {
  background: var(--blush-light);
  padding-block: 5rem;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}
.services-header .section-intro { margin-inline: auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(183,110,121,0.2);
  border-color: var(--blush-mid);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blush-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-gold);
  margin-bottom: 0.4rem;
}
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--plum-text);
  line-height: 1.2;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--plum-muted);
  flex-grow: 1;
  line-height: 1.55;
}

.service-price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rose-gold);
  background: var(--blush-light);
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-top: auto;
  align-self: flex-start;
}

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

/* ---- Gallery ---------------------------------------------- */
.gallery {
  background: var(--champagne);
  padding-block: 5rem;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  background: var(--blush-mid);
  cursor: pointer;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:nth-child(3n) { grid-row: span 2; }
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74,46,51,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(74,46,51,0.25);
}
.gallery-item-overlay svg {
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
  width: 32px;
  height: 32px;
}
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; }

/* placeholder tile */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--plum-muted);
  font-size: 0.78rem;
  text-align: center;
  background: linear-gradient(145deg, var(--blush-light), var(--blush-mid));
  padding: 1rem;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item:nth-child(3n) { grid-row: span 1; }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }
}

/* ---- Lightbox --------------------------------------------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(30,10,14,0.92);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: min(900px, 96vw);
  max-height: 90svh;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lightbox img {
  border-radius: 16px;
  max-height: 85svh;
  object-fit: contain;
}

.lightbox-btn {
  background: rgba(255,248,244,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.lightbox-btn:hover { background: rgba(183,110,121,0.5); }

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
}

/* ---- Reviews ---------------------------------------------- */
.reviews {
  position: relative;
  background: var(--blush-light);
  padding-block: 5rem;
  overflow: hidden;
}

.reviews-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 1.5rem;
}

.trust-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 2px solid var(--blush-mid);
  border-radius: var(--radius-card);
  padding: 0.9rem 1.8rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 2.5rem;
}

.trust-rating {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}
.trust-rating .rating-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--plum-text);
  line-height: 1;
}
.trust-stars { color: var(--gold-accent); font-size: 1.1rem; letter-spacing: 1px; }
.trust-divider { width: 1px; height: 36px; background: var(--blush-mid); }
.trust-text { font-size: 0.88rem; color: var(--plum-muted); line-height: 1.35; }
.trust-text strong { display: block; color: var(--plum-text); font-size: 1rem; }

/* carousel */
.reviews-carousel {
  position: relative;
  overflow: hidden;
}
.reviews-carousel::before,
.reviews-carousel::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.reviews-carousel::before { left: 0;  background: linear-gradient(to right, var(--blush-light), transparent); }
.reviews-carousel::after  { right: 0; background: linear-gradient(to left,  var(--blush-light), transparent); }

.reviews-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.reviews-track:hover,
.reviews-track:focus-within { animation-play-state: paused; }

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

.review-card {
  background: var(--white);
  border: 1px solid var(--blush-mid);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.8rem;
  width: 300px;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviewer-info { display: flex; align-items: center; gap: 0.65rem; }

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-gold), var(--gold-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.reviewer-name { font-weight: 600; font-size: 0.9rem; color: var(--plum-text); }
.reviewer-date { font-size: 0.75rem; color: var(--plum-muted); }

.review-stars { color: var(--gold-accent); font-size: 0.9rem; letter-spacing: 1px; }

.review-text {
  font-size: 0.88rem;
  color: var(--plum-muted);
  line-height: 1.6;
  flex-grow: 1;
  font-style: italic;
}

.google-mark {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: var(--plum-muted);
  font-weight: 600;
  margin-top: auto;
}

/* ---- FAQ -------------------------------------------------- */
.faq {
  background: var(--champagne);
  padding-block: 5rem;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.faq-sidebar .section-intro { margin-top: 1rem; }

.accordion { display: flex; flex-direction: column; gap: 0.75rem; }

.accordion-item {
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid var(--blush-mid);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(183,110,121,0.08);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--plum-text);
  text-align: left;
  transition: background var(--transition);
}
.accordion-trigger:hover { background: var(--blush-light); }

.accordion-chevron {
  flex-shrink: 0;
  color: var(--rose-gold);
  transition: transform 0.3s ease;
}
.accordion-item.open .accordion-chevron { transform: rotate(180deg); }

.accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.accordion-item.open .accordion-body { grid-template-rows: 1fr; }

.accordion-body-inner {
  overflow: hidden;
  padding: 0 1.5rem;
}
.accordion-item.open .accordion-body-inner { padding-block: 0 1.4rem; }

.accordion-body-inner p {
  font-size: 0.9rem;
  color: var(--plum-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---- Contact / Booking ------------------------------------ */
.contact {
  background: var(--blush-light);
  padding-block: 5rem;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-block { display: flex; flex-direction: column; gap: 2rem; }

.contact-cta-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--blush-mid);
}
.contact-cta-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.contact-cta-card p { font-size: 0.9rem; color: var(--plum-muted); margin-bottom: 1.4rem; }

.contact-details {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 1.8rem 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--blush-mid);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blush-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-gold);
  flex-shrink: 0;
}
.contact-detail-text { font-size: 0.9rem; color: var(--plum-muted); line-height: 1.5; }
.contact-detail-text strong { display: block; color: var(--plum-text); font-weight: 600; margin-bottom: 0.1rem; }
.contact-detail-text a { color: var(--rose-gold); font-weight: 500; }
.contact-detail-text a:hover { text-decoration: underline; }

/* hours table */
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.hours-table tr { border-bottom: 1px solid var(--blush-mid); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.4rem 0; color: var(--plum-muted); }
.hours-table td:first-child { font-weight: 600; color: var(--plum-text); width: 44%; }

.social-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.5rem;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--blush-mid);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--plum-text);
  background: var(--white);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.social-link:hover {
  background: var(--rose-gold);
  color: var(--white);
  border-color: var(--rose-gold);
}
.social-link svg { flex-shrink: 0; }

.map-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  min-height: 480px;
  border: 2px solid var(--blush-mid);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; }
  .map-wrap { min-height: 320px; }
  .map-wrap iframe { min-height: 320px; }
}

/* ---- Footer ----------------------------------------------- */
.footer {
  background: var(--plum-text);
  color: rgba(255,255,255,0.75);
  padding-block: 3.5rem 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer-brand .nav-logo {
  color: var(--blush-mid);
  margin-bottom: 0.75rem;
}
.footer-tagline { font-size: 0.88rem; line-height: 1.6; margin-bottom: 1.2rem; max-width: 260px; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background var(--transition), color var(--transition);
}
.footer-social-btn:hover { background: var(--rose-gold); color: var(--white); border-color: transparent; }

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blush-mid);
  margin-bottom: 1rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--blush-mid); }

.footer-hours-list { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-hours-item { display: flex; justify-content: space-between; font-size: 0.83rem; gap: 1rem; }
.footer-hours-item .day { color: rgba(255,255,255,0.5); }

.footer-address { font-size: 0.85rem; line-height: 1.65; }
.footer-address a { color: var(--blush-mid); }
.footer-address a:hover { text-decoration: underline; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 1024px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px)  { .footer-inner { grid-template-columns: 1fr; } }

/* ---- Section spacing utility ------------------------------ */
section { scroll-margin-top: 70px; }
