/* Theme tokens used across the whole site. */
:root {
  --bg: #fff7fb;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-alt: #fff0f6;
  --primary: #e889aa;
  --primary-dark: #c95f84;
  --accent: #f3b8cb;
  --accent-strong: #8fc8c5;
  --text: #342a31;
  --muted: #78656f;
  --border: rgba(221, 157, 181, 0.26);
  --shadow: 0 18px 46px rgba(172, 104, 133, 0.14);
  --radius: 22px;
  --max: 1180px;
}

/* Global reset and page-level defaults. */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(243, 184, 203, 0.34), transparent 28%),
    radial-gradient(circle at top right, rgba(143, 200, 197, 0.16), transparent 22%),
    radial-gradient(circle at 50% 12%, rgba(232, 137, 170, 0.12), transparent 30%),
    var(--bg);
  line-height: 1.55;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

/* Announcement bar and sticky header navigation. */
.topbar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: white;
  text-align: center;
  padding: 0.9rem 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 0.95rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 247, 251, 0.82);
  border-bottom: 1px solid rgba(221, 157, 181, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-badge {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--primary), var(--accent-strong));
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
}

.brand-logo {
  width: auto;
  height: 56px;
  max-width: 160px;
  object-fit: contain;
  border-radius: 0;
  flex-shrink: 0;
}

.brand span small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: end;
}

nav a {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--muted);
}

nav a:hover,
nav a:focus-visible {
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary-dark);
  outline: none;
}

/* Hero section with primary call-to-action content. */
.hero {
  padding: 4.25rem 0 3.25rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 137, 170, 0.12);
  color: var(--primary-dark);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(221, 157, 181, 0.18);
}

h1, h2, h3 {
  line-height: 1.1;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.7rem);
  letter-spacing: -0.04em;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 62ch;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: var(--shadow);
}

.button:hover { transform: translateY(-1px); }

.button-primary {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  border: 1px solid var(--border);
}

.mobile-cta {
  display: none;
}

.hero-card,
.card {
  background: var(--surface);
  border: 1px solid rgba(221, 157, 181, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card {
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(143, 200, 197, 0.2);
  filter: blur(2px);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -10%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(243, 184, 203, 0.18);
  filter: blur(10px);
  pointer-events: none;
}

.placeholder-image {
  min-height: 420px;
  border-radius: 20px;
  background:
    linear-gradient(140deg, rgba(243, 184, 203, 0.34), rgba(143, 200, 197, 0.18)),
    radial-gradient(circle at 25% 28%, rgba(255,255,255,0.95), transparent 15%),
    radial-gradient(circle at 72% 40%, rgba(255,255,255,0.8), transparent 16%),
    linear-gradient(180deg, #fffdfd 0%, #fff0f6 100%);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  isolation: isolate;
}

.hero-image {
  width: 96%;
  height: 96%;
  object-fit: contain;
  object-position: center;
  border-radius: 20px;
}

.placeholder-image.hero-photo-frame::before {
  content: none;
  display: none;
}

.placeholder-image.hero-photo-frame {
  padding: 2% 3.5%;
  overflow: hidden;
}

.placeholder-image strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

/* Shared section spacing and reusable section headings. */
section {
  padding: 2rem 0 4rem;
}

section[id] {
  scroll-margin-top: 72px;
}

.section-head {
  margin-bottom: 1.5rem;
  max-width: 62ch;
}

.section-head h2 {
  color: var(--primary-dark);
}

.section-head p { color: var(--muted); }

.stats,
.services-grid,
.reviews-grid,
.contact-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

/* Team and About section layouts. */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: clamp(1.75rem, 5vw, 4rem);
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.team-member strong {
  display: block;
  font-size: 1rem;
}

.about-copy-title {
  color: var(--primary-dark);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.35rem;
}

.about-copy-subtitle {
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.about-quote {
  font-style: italic;
}

#about .section-head p {
  display: none;
}

#about .section-head .about-copy-title {
  display: none;
}

.about-card > div:last-child > h3:not(.about-copy-subtitle),
.about-card > div:last-child > p:not(.about-body):not(.about-quote) {
  display: none;
}

.about-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: center;
}

.about-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

/* Stats and service card layouts. */
.stats {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1rem;
}

.stat {
  padding: 1.3rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.9rem;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.services-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.services-stack {
  display: grid;
  gap: 1rem;
}

.services-featured {
  height: 100%;
}

.card {
  padding: 1.4rem;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.card p,
.card li,
.hours,
.address,
.review {
  color: var(--muted);
}

.card ul {
  padding-left: 1.1rem;
  margin: 0.75rem 0 0;
}

.price-breakdown {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.95rem;
  color: var(--text);
}

/* Gallery and reviews sections. */
.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review .stars {
  color: var(--primary-dark);
  font-size: 1rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
}

.review strong {
  display: block;
  margin-top: 1rem;
  color: var(--text);
}

/* Contact details and shop hours. */
.contact-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.contact-item {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 240, 246, 0.95), rgba(255, 247, 251, 0.95));
  border: 1px solid var(--border);
}

.contact-item span {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
}

.hours {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.hours-booking-button {
  width: 100%;
  margin-top: 1.2rem;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px dashed var(--border);
}

.team-member img,
.gallery-item,
.contact-item,
.card,
.hero-card {
  position: relative;
}

.team-member img {
  box-shadow: var(--shadow);
  border: 1px solid rgba(221, 157, 181, 0.16);
}

/* Footer layout. */
footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
}

.footer-card {
  padding: 1.25rem 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Tablet layout adjustments. */
@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .reviews-grid,
  .gallery-grid,
  .stats {
    grid-template-columns: 1fr 1fr;
  }

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

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

/* Mobile layout adjustments. */
@media (max-width: 720px) {
  html {
    scroll-padding-top: 120px;
  }

  body {
    line-height: 1.6;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .topbar {
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
  }

  .nav {
    flex-direction: column;
    align-items: center;
    padding: 0.85rem 0;
  }

  .brand {
    gap: 0.7rem;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .brand-logo {
    height: 48px;
  }

  nav {
    overflow-x: auto;
    width: 100%;
  }

  nav ul {
    justify-content: center;
    flex-wrap: nowrap;
    min-width: max-content;
    padding-bottom: 0.25rem;
  }

  nav a {
    padding: 0.6rem 0.8rem;
    font-size: 0.92rem;
  }

  nav a:not(.is-active):hover,
  nav a:not(.is-active):focus {
    background: transparent;
    color: var(--muted);
  }

  nav a.is-active {
    background: rgba(255, 255, 255, 0.82);
    color: var(--primary-dark);
  }

  .mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: min(calc(100% - 1.25rem), var(--max));
    margin: 1rem auto 0;
  }

  .mobile-cta .button:last-child {
    grid-column: 1 / -1;
  }

  .mobile-hidden-nav,
  .hero,
  section[aria-label="Highlights"],
  #photos,
  #reviews {
    display: none;
  }

  .hero-card {
    display: none;
  }

  .hero-grid,
  .reviews-grid,
  .team-grid,
  .stats {
    grid-template-columns: 1fr;
  }

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

  .about-card {
    grid-template-columns: 1fr;
  }

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

  .services-featured {
    order: -1;
  }

  .hero {
    padding-top: 2.25rem;
    padding-bottom: 2.5rem;
  }

  .hero p,
  .section-head p,
  .card p,
  .card li {
    font-size: 0.98rem;
  }

  .cta-row {
    gap: 0.75rem;
  }

  .button {
    width: 100%;
    padding: 0.95rem 1rem;
  }

  .card {
    padding: 1.15rem;
  }

  .card ul {
    padding-left: 1rem;
  }

  .price-breakdown {
    margin-top: 0.35rem;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .stats {
    gap: 0.85rem;
  }

  .stat {
    padding: 1.05rem;
  }

  .team-grid {
    gap: 1rem;
  }

  .team-member img {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .placeholder-image {
    min-height: 280px;
    padding: 1rem;
  }

  .hero-image {
    width: 100%;
    height: auto;
  }

  .contact-item,
  .footer-card {
    padding: 1rem;
  }

  .hours div {
    align-items: center;
  }

  .footer-card {
    justify-content: center;
    text-align: center;
  }
}
