:root {
  --bg-body: #f8f6f3;
  --bg-panel: #ffffff;
  --bg-soft: #efebe4;
  --ink: #0f141c;
  --text-main: #1e232c;
  --text-muted: #6a6f7c;
  --accent: #6f5137;
  --accent-dark: #5a412d;
  --border: rgba(15, 20, 28, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin: 0;
  color: var(--text-main);
  background: var(--bg-body);
  line-height: 1.7;
  font-size: 1rem;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: var(--ink);
  font-weight: 500;
}

p {
  margin-top: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(248, 246, 243, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  z-index: 10;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-symbol {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-panel);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.logo-symbol img {
  width: 120%;
  height: 120%;
  object-fit: cover;
  display: block;
}

.brand-title {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-subtitle {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.site-nav a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fdfcfb;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover:not(.btn-ghost) {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(15, 20, 28, 0.35);
}

.btn-outline:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-ghost {
  background: rgba(111, 81, 55, 0.08);
  color: var(--accent);
  border: 1px solid rgba(111, 81, 55, 0.15);
}

.btn-ghost:hover {
  background: var(--accent);
  color: #fdfcfb;
  border-color: var(--accent);
}

.btn-icon {
  gap: 0.6rem;
  padding-right: 1.3rem;
  padding-left: 1.1rem;
}

.btn-whatsapp {
  background: var(--accent);
  color: #fdfcfb;
  border-color: transparent;
}

.btn-whatsapp:hover {
  background: var(--accent-dark);
  color: #fdfcfb;
}

.icon-circle {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.icon-circle svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.icon-circle img {
  width: 20px;
  height: 20px;
  display: block;
}

main {
  overflow: hidden;
}

.hero {
  padding: 6rem 0 5rem;
  background: var(--bg-body);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin: 0 0 1.25rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(15, 20, 28, 0.08);
}

.card-title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-card ul {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.hero-card li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(15, 20, 28, 0.08);
}

.hero-card li:last-child {
  border-bottom: none;
}

.section {
  padding: 4.5rem 0;
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
}

.section-alt {
  background: var(--bg-soft);
}

.section-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

.section h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.highlight-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
}

.highlight-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.info-card {
  background: var(--bg-panel);
  padding: 1.75rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  min-height: 220px;
}

.info-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.info-card p {
  color: var(--text-muted);
}

.stat-card {
  background: var(--bg-body);
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin: 0 0 0.8rem;
}

.location-card {
  background: var(--bg-panel);
  padding: 3rem;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 25px 55px rgba(15, 20, 28, 0.08);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  align-items: center;
}

.map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  background: #e0ddd7;
  min-height: 340px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 340px;
}

.location-actions {
  margin-top: 2rem;
}

.contact-card {
  background: var(--bg-panel);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 25px 50px rgba(15, 20, 28, 0.08);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.contact-details {
  display: grid;
  gap: 1.2rem;
}

.detail-label {
  margin: 0 0 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.contact-details a:not(.btn) {
  color: var(--accent);
  font-weight: 600;
}

.contact-actions .btn-icon {
  color: #fdfcfb;
}

.contact-actions .btn-outline {
  color: var(--ink);
}

.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  background: var(--bg-panel);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 12px 26px rgba(15, 20, 28, 0.05);
}

.faq-list summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin-top: 0.75rem;
  color: var(--text-muted);
}

.site-footer {
  background: #141a23;
  color: #e3e1dd;
  padding: 2.8rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #c7c4bb;
  font-size: 0.9rem;
}

.small {
  font-size: 0.85rem;
  color: #b7b5ae;
}

@media (max-width: 768px) {
  .site-header .container {
    flex-wrap: wrap;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 4rem;
  }

  .contact-card {
    padding: 2.2rem;
  }

  .location-card {
    padding: 2.2rem;
    gap: 2rem;
  }

  .map-wrapper,
  .map-wrapper iframe {
    min-height: 260px;
  }
}

@media (max-width: 520px) {
  .location-card {
    padding: 1.75rem;
  }

  .map-wrapper,
  .map-wrapper iframe {
    min-height: 220px;
  }
}

@media (max-width: 540px) {
  .site-nav {
    gap: 0.75rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }
}
