﻿:root {
  --ink: #12100f;
  --muted: #6f6660;
  --bg: #f4efe9;
  --card: #ffffff;
  --accent: #c23b22;
  --accent-dark: #9f2d18;
  --accent-soft: #ffe2d6;
  --line: #e4d6c8;
  --shadow: rgba(18, 16, 15, 0.12);
  --whatsapp: #1fa463;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Playfair Display", "Georgia", serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff7f0, var(--bg) 60%, #efe5da 100%);
}

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

.site-header {
  padding: 48px 6vw 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  gap: 18px;
  align-items: center;
  max-width: 700px;
  text-align: center;
}

.mark {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(194, 59, 34, 0.2);
}

.mark svg {
  width: 44px;
  height: 44px;
  fill: var(--accent);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(20px, 2.6vw, 32px);
  color: var(--ink);
  margin: 0 0 6px;
  font-weight: 700;
  font-family: "Manrope", "Segoe UI", sans-serif;
}

h1 {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 500;
}

.subhead {
  margin: 10px 0 0;
  color: var(--muted);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.header-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.nav {
  padding: 14px 6vw 24px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
}

main {
  padding: 0 6vw 64px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

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

.hero-card,
.hero-panel {
  background: var(--card);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 32px var(--shadow);
}

.hero-card h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 30px);
}

.hero-card p {
  margin: 0;
  color: var(--muted);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.hero-stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.hero-stats div {
  background: var(--accent-soft);
  border-radius: 14px;
  padding: 12px;
}

.hero-stats span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.hero-panel h3 {
  margin: 0 0 8px;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin: 16px 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.contact-cards div {
  background: #fff6f1;
  border-radius: 14px;
  padding: 12px;
  border: 1px solid var(--line);
}

.contact-cards a {
  display: block;
  margin-top: 6px;
  color: var(--accent);
  font-weight: 700;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-header h2 {
  margin: 0 0 6px;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

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

.card {
  background: var(--card);
  border-radius: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(18, 16, 15, 0.06);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.card h3 {
  margin-top: 0;
}

.card ul {
  margin: 0;
  padding-left: 18px;
}

.highlight {
  background: linear-gradient(120deg, #fff3ea, #fce5d8);
  border-radius: 28px;
  padding: 24px;
}

.gallery-card {
  display: grid;
  gap: 14px;
}

.gallery-media {
  height: 160px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffe7da, #f8d5c3, #f0c4a8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #5e392b;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn.solid {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 20px rgba(194, 59, 34, 0.25);
}

.btn.solid:hover {
  background: var(--accent-dark);
}

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

.btn.full {
  width: 100%;
}

.contact a {
  color: var(--accent);
  font-weight: 700;
}

.footer {
  padding: 24px 6vw 36px;
  text-align: center;
  color: var(--muted);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--whatsapp);
  color: #fff;
  padding: 12px 16px;
  border-radius: 18px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 700;
  box-shadow: 0 14px 26px rgba(31, 146, 88, 0.35);
  z-index: 10;
  display: grid;
  gap: 8px;
}

.whatsapp span {
  font-size: 14px;
}

.whatsapp-actions {
  display: grid;
  gap: 6px;
}

.whatsapp-actions a {
  background: #ffffff;
  color: #0f3f2a;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
}

.whatsapp-actions a:hover {
  background: #e6fff1;
}

@media (max-width: 720px) {
  .site-header {
    padding-top: 32px;
  }

  .header-actions,
  .nav {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .whatsapp {
    right: 14px;
    bottom: 14px;
  }
}
