:root {
  --rose-light: #f5e6e0;
  --rose-mid: #e8d0d4;
  --cream: #fdf9f7;
  --text: #2c2420;
  --muted: #6b5e58;
  --accent: #c97b84;
  --accent-dark: #a85f68;
  --open: #4a9b6e;
  --closed: #c45c5c;
  --divider: rgba(44, 36, 32, 0.08);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --pad: 1rem;
  --bar-h: 56px;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom, 0px));
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

/* Hero — compact, centered */
.hero {
  position: relative;
  padding: 2.75rem var(--pad) 1.1rem;
  background: linear-gradient(180deg, var(--rose-light), var(--rose-mid));
  text-align: center;
}

.lang-toggle {
  position: absolute;
  top: 0.65rem;
  right: var(--pad);
  display: flex;
  border: 1px solid rgba(44, 36, 32, 0.12);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.65);
}

.lang-btn {
  min-height: 32px;
  padding: 0.35rem 0.65rem;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
}

.lang-btn.active {
  background: var(--accent);
  color: white;
}

.lang-btn:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: -2px;
}

.eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.12;
}

.tagline {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 0.35rem;
  max-width: 32ch;
  margin-inline: auto;
}

.hero-side {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.65rem;
  flex-wrap: wrap;
}

.hero-desktop-actions {
  display: none;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 500;
  white-space: nowrap;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--closed);
}

.status-badge.open .status-dot { background: var(--open); }
.status-badge.open .status-text { color: var(--open); }
.status-badge.closed .status-text { color: var(--closed); }

/* Main */
.main {
  padding: 0.75rem var(--pad) 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card {
  background: white;
  border: 1px solid var(--divider);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  text-align: center;
}

.card h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.muted {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.hours-summary {
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Services */
.services-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}

.services-list li {
  font-family: var(--font-display);
  font-size: 0.82rem;
  line-height: 1.3;
  color: var(--text);
  padding: 0.4rem 0.45rem;
  border-radius: 8px;
  background: var(--cream);
}

.services-note {
  margin-top: 0.75rem;
  text-align: center;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--rose-light);
}

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

/* Contact */
.address {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

.phone-link {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.25rem 0;
  min-height: 44px;
  line-height: 44px;
}

.perks {
  margin: 0.5rem 0 0.85rem;
  line-height: 1.5;
  max-width: 36ch;
  margin-inline: auto;
}

.map-wrap {
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.btn-directions {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  background: var(--rose-light);
  color: var(--accent-dark);
  border: 1px solid rgba(201, 123, 132, 0.25);
}

.footer {
  text-align: center;
  padding: 0.5rem 0 0;
  font-size: 0.68rem;
  color: var(--muted);
}

/* Sticky mobile action bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: var(--bar-h);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: white;
  border-top: 1px solid var(--divider);
  box-shadow: 0 -4px 20px rgba(44, 36, 32, 0.08);
}

.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--bar-h);
  font-size: 0.9rem;
  font-weight: 600;
}

.mobile-bar-call {
  background: var(--accent);
  color: white !important;
}

.mobile-bar-directions {
  color: var(--text) !important;
  background: var(--cream);
  border-left: 1px solid var(--divider);
}

/* Desktop enhancements */
@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .mobile-bar {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
    padding: 2.75rem 2rem 1rem;
  }

  .lang-toggle {
    top: 0.85rem;
    right: 2rem;
  }

  .lang-btn {
    min-height: 34px;
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
  }

  .hero-side {
    margin-top: 0;
    justify-content: center;
  }

  .hero-desktop-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .btn {
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
  }

  .btn-primary {
    background: var(--accent);
    color: white;
  }

  .btn-ghost {
    background: rgba(255, 255, 255, 0.55);
    color: var(--text);
    border: 1px solid rgba(44, 36, 32, 0.1);
  }

  .main {
    max-width: 720px;
    margin: 0 auto;
    padding: 1rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .card#contact {
    text-align: center;
  }

  .map-wrap {
    height: 200px;
  }

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

  .services-list {
    gap: 0.4rem;
  }

  .services-list li {
    font-size: 0.88rem;
    padding: 0.45rem 0.55rem;
  }

  .btn-directions {
    display: none;
  }
}
