:root {
  --bg: #ffffff;
  --text: #2f1a1a;
  --muted: #6f5757;
  --primary: #b23a48;
  --secondary: #f08a24;
  --accent: #ffd166;
  --soft: #fff7f1;
  --line: #f1ddd0;
  --shadow: 0 18px 45px rgba(94, 42, 42, 0.10);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(241,221,208,0.9);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.topbar h1,
.footer h4,
.location-copy h4,
.card h4,
.stat-card p,
.cta-box h3,
.section-heading h3 {
  margin: 0;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

.topbar h1 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(255, 209, 102, 0.28), transparent 32%),
    radial-gradient(circle at left center, rgba(240, 138, 36, 0.13), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fffaf6 100%);
  padding: 56px 0 36px;
}

.hero-grid,
.contact-grid,
.footer-grid,
.cta-box {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.hero-copy h2 {
  margin: 0 0 14px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 700px;
}

.tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 209, 102, 0.28);
  color: #8c4d00;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #cf5b60);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-secondary {
  border: 1px solid var(--line);
  background: #fff;
}

.hero-notes,
.cards {
  display: grid;
  gap: 18px;
}

.hero-notes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.note-card,
.card,
.contact-card,
.schedule-card,
.stat-card,
.cta-box,
.gallery-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.note-card,
.card,
.contact-card,
.schedule-card,
.stat-card { padding: 22px; }

.note-card strong,
.stat-value {
  display: block;
  margin-bottom: 8px;
}

.hero-visual img {
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 6px solid #fff;
}

.section {
  padding: 68px 0;
}
.section.alt {
  background: linear-gradient(180deg, #fffaf7 0%, #ffffff 100%);
}
.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}
.section-heading.left {
  text-align: left;
  margin: 0 0 20px;
}
.section-heading h3 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-family: 'Playfair Display', serif;
}

.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary), var(--accent));
}
.card h4,
.icon-card span,
.contact-card p,
.schedule-card div,
.location-copy h4,
.footer p,
.cta-box p {
  margin: 0;
}

.icon-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  text-align: center;
  font-weight: 700;
}

.service-card h4 { font-size: 1rem; }
.stats-section {
  background:
    radial-gradient(circle at right center, rgba(255, 209, 102, 0.18), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff7f3 100%);
}
.stat-card {
  text-align: center;
  padding: 28px 22px;
}
.stat-value {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary);
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.schedule-card {
  display: grid;
  gap: 12px;
}
.schedule-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.schedule-card div:last-child { border-bottom: 0; padding-bottom: 0; }
.schedule-card span { color: var(--muted); }

.location-block + .location-block { margin-top: 42px; }
.location-copy { margin-bottom: 18px; }
.gallery-grid.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.gallery-item {
  overflow: hidden;
  padding: 0;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.cta-section {
  padding: 0 0 70px;
}
.cta-box {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 28px;
  background: linear-gradient(135deg, #fff6eb, #fff);
}

.footer {
  background: #2d1618;
  color: rgba(255,255,255,0.92);
  padding: 34px 0 42px;
}
.footer-grid {
  grid-template-columns: 1fr 1fr;
}
.footer p { color: rgba(255,255,255,0.78); }

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: linear-gradient(135deg, #25d366, #1fa855);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.32);
  z-index: 30;
}

@media (max-width: 960px) {
  .hero-grid,
  .contact-grid,
  .footer-grid,
  .cta-box,
  .cards.three,
  .cards.four,
  .gallery-grid.two,
  .hero-notes {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .schedule-card div {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 34px;
  }
  .section {
    padding: 52px 0;
  }
  .btn {
    width: 100%;
  }
  .hero-actions {
    flex-direction: column;
  }
  .gallery-item img {
    min-height: 240px;
  }
}
