:root {
  --bg: #f7f2ec;
  --panel: rgba(255,255,255,0.72);
  --text: #261c17;
  --muted: #6d5b50;
  --line: rgba(38, 28, 23, 0.12);
  --accent: #b79067;
  --accent-dark: #8a6848;
  --whatsapp: #1fa855;
  --shadow: 0 22px 50px rgba(36, 26, 19, 0.10);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(183,144,103,0.18), transparent 28%),
    linear-gradient(180deg, #fbf8f4 0%, #f7f2ec 50%, #f4ece3 100%);
  line-height: 1.6;
}

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

.hero {
  padding: 28px clamp(20px, 4vw, 56px) 72px;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 56px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-logo {
  width: 78px;
  height: 78px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.75);
}

.brand h1,
.section-heading h3,
.footer h3,
.hero-copy h2,
.instagram-inner h3 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.01em;
}

.brand h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0 0 8px;
}

.nav-actions,
.hero-actions,
.footer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-cta,
.button,
.floating-whatsapp,
.insta-link {
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.nav-cta {
  padding: 12px 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px);
}

.nav-cta:hover,
.button:hover,
.insta-link:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.whatsapp {
  background: var(--whatsapp);
  color: white;
  border-color: transparent;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 32px;
  align-items: end;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy h2 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  margin: 0 0 22px;
  max-width: 11ch;
}

.hero-text {
  max-width: 58ch;
  font-size: 1.04rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.button {
  padding: 14px 24px;
  font-weight: 500;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: white;
  box-shadow: var(--shadow);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.6);
}

.button.whatsapp-outline {
  border: 1px solid rgba(31,168,85,0.28);
  background: rgba(31,168,85,0.08);
  color: #106636;
}

.hero-card,
.feature-card,
.service-list,
.instagram-inner {
  backdrop-filter: blur(18px);
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
  border-radius: var(--radius);
  animation: softGlow 5.5s ease-in-out infinite;
}

.card-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin: 0 0 16px;
}

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

.hero-card li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

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

.section {
  padding: 84px clamp(20px, 4vw, 56px);
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading h3,
.instagram-inner h3,
.footer h3 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  margin: 0 0 10px;
}

.section-heading p:last-child {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  border-radius: 20px;
  padding: 24px;
}

.feature-card h4 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.feature-card p,
.footer p,
.whatsapp-note {
  margin: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #ddd;
  min-height: 300px;
  box-shadow: var(--shadow);
}

.gallery-item.large {
  grid-column: span 2;
  min-height: 520px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services {
  padding-top: 40px;
}

.service-list {
  border-radius: 24px;
  overflow: hidden;
}

.service-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.service-row:last-child { border-bottom: 0; }

.service-row span:last-child {
  color: var(--accent-dark);
  font-weight: 600;
}

.instagram-banner {
  padding-top: 32px;
}

.instagram-inner {
  border-radius: 28px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  font-weight: 600;
}

.insta-icon,
.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  display: inline-flex;
}

.insta-icon svg,
.floating-whatsapp svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer {
  padding: 40px 20px 92px;
  text-align: center;
}

.footer h3 {
  margin-top: 8px;
}

.footer-actions {
  justify-content: center;
  margin: 22px 0 14px;
}

.whatsapp-note {
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 18px 40px rgba(31,168,85,0.34);
  z-index: 1000;
}

.feature-card,
.gallery-item,
.service-list,
.instagram-inner {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.feature-card:hover,
.gallery-item:hover,
.service-list:hover,
.instagram-inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 58px rgba(36, 26, 19, 0.14);
}

.gallery-item img {
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.reveal,
.reveal-card {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.is-visible,
.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }

@keyframes softGlow {
  0%, 100% { box-shadow: 0 22px 50px rgba(36, 26, 19, 0.10); }
  50% { box-shadow: 0 28px 68px rgba(183, 144, 103, 0.18); }
}

@media (max-width: 980px) {
  .hero-content,
  .feature-grid,
  .gallery-grid,
  .instagram-inner {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .instagram-inner {
    display: grid;
  }

  .gallery-item.large {
    grid-column: span 1;
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .nav-cta,
  .button,
  .insta-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-bottom: 48px;
  }

  .brand-logo {
    width: 64px;
    height: 64px;
  }

  .service-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-card {
    opacity: 1 !important;
    transform: none !important;
  }
}
