﻿:root {
  --bg: #f5efe8;
  --ink: #1a1110;
  --muted: #5d4a45;
  --accent: #c3544b;
  --accent-dark: #8f2f2a;
  --accent-soft: #f6d6cc;
  --card: #fff7f2;
  --line: #ead7cd;
  --gold: #c8a264;
}

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

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, #fff3ea, transparent 42%),
              radial-gradient(circle at 92% 2%, #f7d9c9, transparent 40%),
              radial-gradient(circle at 80% 85%, #f9efe9, transparent 45%),
              var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(195,84,75,0.22), transparent 45%),
              linear-gradient(200deg, rgba(143,47,42,0.16), transparent 55%);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.hero-copy {
  align-self: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  position: relative;
  padding-left: 14px;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

h1 {
  font-family: "Prata", serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  margin: 12px 0 8px;
  letter-spacing: 0.5px;
}

.subhead {
  font-weight: 600;
  color: var(--muted);
}

.subhead.small {
  font-weight: 400;
  font-size: 0.95rem;
}

.reg {
  margin-top: 8px;
  font-weight: 600;
}

.bio {
  margin: 18px 0 26px;
  max-width: 560px;
  font-size: 1.02rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.btn.clicked {
  transform: translateY(0) scale(0.98);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
}

.btn.primary:hover {
  background: linear-gradient(135deg, var(--accent-dark), #6f241f);
}

.btn.secondary {
  background: #fff;
  border-color: var(--accent);
  color: var(--accent-dark);
  box-shadow: 0 12px 20px rgba(195,84,75,0.12);
}

.btn.ghost {
  background: rgba(255,255,255,0.55);
  border-color: var(--line);
  color: var(--muted);
  backdrop-filter: blur(6px);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  background: rgba(255,255,255,0.78);
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.trust-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--line);
  font-weight: 600;
  color: var(--muted);
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.trust-pill.link {
  color: var(--accent-dark);
}

.trust-pill.link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(0,0,0,0.1);
}

.quick-info span {
  display: block;
}

.quick-info .label {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-card {
  background: var(--card);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.1);
  border: 1px solid var(--line);
}

.image-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #f5e6dc;
  min-height: 320px;
}

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

.image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,0.92);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.card-detail {
  margin-top: 20px;
}

.section {
  padding: 80px 0;
}

.section-head {
  margin-bottom: 32px;
}

.section-head h2 {
  font-family: "Prata", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.section-head p {
  color: var(--muted);
  max-width: 620px;
  margin-top: 12px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(200,162,100,0.12), transparent 45%);
  opacity: 0.9;
  pointer-events: none;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: var(--accent-dark);
}

.service-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.highlights {
  background: linear-gradient(135deg, #fff, #fdf1ea);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.highlight {
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  background: rgba(255,255,255,0.6);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.05);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.contact .address {
  margin: 16px 0 20px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  margin-bottom: 18px;
}

.timing-card {
  background: var(--card);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}

.timing-card .note {
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.map-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--line);
  padding: 18px;
  min-height: 320px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}

.map-placeholder {
  height: 100%;
  border-radius: 18px;
  border: 1px dashed #d6c4b7;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  background: linear-gradient(135deg, #fff4ed, #fff);
}

.footer {
  background: #171210;
  color: #f7efe9;
  padding: 40px 0;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.35);
  display: none;
}

.whatsapp-fab:hover {
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .hero {
    padding: 48px 0 70px;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .image-wrap {
    min-height: 240px;
  }

  .whatsapp-fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy, .hero-card, .service-card, .highlight, .timing-card, .map-card {
  animation: fadeUp 0.8s ease both;
}

.hero-card { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.highlight:nth-child(2) { animation-delay: 0.1s; }
.highlight:nth-child(3) { animation-delay: 0.2s; }
