:root {
  --bg: #f7f5f2;
  --bg-accent: #ffffff;
  --text: #1f1f1f;
  --muted: #5f6164;
  --primary: #6fb7b3;
  --primary-dark: #2a7671;
  --accent: #e8d5c4;
  --border: rgba(31, 31, 31, 0.08);
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem clamp(1.5rem, 5vw, 6rem);
  background: rgba(247, 245, 242, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
}

.brand__eyebrow {
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--muted);
}

.brand__name {
  font-size: 1.1rem;
  font-weight: 600;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", "Times New Roman", serif;
  color: var(--text);
}

a {
  color: var(--primary-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.hero {
  min-height: 85vh;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  padding: 4rem clamp(1.5rem, 5vw, 6rem);
  align-items: center;
}

.hero__tag {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 0.5rem;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.hero__description {
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--primary);
  color: white;
}

.btn.primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn.secondary {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.btn.secondary:hover {
  background: rgba(111, 183, 179, 0.1);
}

.btn.ghost {
  border-color: rgba(31, 31, 31, 0.1);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
}

.btn.ghost:hover {
  background: rgba(111, 183, 179, 0.15);
  border-color: var(--primary);
}

.hero__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero__stats span {
  display: block;
  font-size: 2rem;
  font-weight: 600;
}

.hero__visual {
  position: relative;
  display: grid;
  gap: 1.5rem;
}

.hero__portrait {
  background: var(--bg-accent);
  padding: 1.5rem;
  border-radius: 32px;
  border: 1px solid var(--border);
  position: relative;
  box-shadow: 0 20px 60px rgba(31, 31, 31, 0.08);
}

.hero__portrait img {
  border-radius: 24px;
  height: 100%;
  object-fit: cover;
}

.hero__portrait figcaption {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero__thumbs {
  display: flex;
  gap: 1rem;
}

.hero__thumbs img {
  width: clamp(140px, 18vw, 200px);
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.hero__badge {
  position: absolute;
  top: 8%;
  right: 1rem;
  background: var(--accent);
  color: var(--text);
  padding: 1rem 1.25rem;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
}

.badge__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-inline: clamp(1.5rem, 5vw, 6rem);
  padding-bottom: 4rem;
}

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.about__card {
  background: var(--bg-accent);
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.about__media {
  background: var(--bg-accent);
  border-radius: 24px;
  padding: 1rem;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.about__media img {
  border-radius: 18px;
  object-fit: cover;
}

.about__media figcaption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.space {
  background: linear-gradient(120deg, #fdfbf8, #f3fafa);
  padding: 3rem clamp(1.5rem, 5vw, 6rem);
  border-radius: 32px;
  border: 1px solid var(--border);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.space__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.space__item {
  background: var(--bg-accent);
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.space__item img {
  border-radius: 16px;
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.space__item figcaption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.card__title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.about__card ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.section__header {
  text-align: center;
  max-width: 48rem;
  margin-inline: auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--bg-accent);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card ul {
  list-style: none;
  color: var(--muted);
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.testimonial {
  background: linear-gradient(135deg, #fdfaf7, #f5fbfb);
  padding: 3.5rem;
  border-radius: 32px;
  text-align: center;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-block: 2.5rem;
}

.contact__card {
  background: var(--bg-accent);
  border-radius: 20px;
  padding: 1.75rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact__map iframe {
  width: 100%;
  border: 0;
  min-height: 380px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.site-footer {
  text-align: center;
  padding: 2rem;
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease;
  z-index: 10;
}

.whatsapp-float svg {
  width: 28px;
  fill: white;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

@media (max-width: 640px) {
  .top-bar {
    flex-direction: column;
    gap: 0.75rem;
    position: static;
  }

  .hero__portrait {
    padding: 1rem;
  }

  .hero__badge {
    position: static;
    margin-top: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__thumbs {
    flex-wrap: wrap;
  }

  .space {
    padding: 2rem 1.5rem;
  }

  .testimonial {
    padding: 2.5rem;
  }
}
