﻿:root {
  --blush: #f7d9d0;
  --sage: #a9ba9d;
  --cream: #fbf7f0;
  --plum: #4a2e35;
  --plum-soft: #6c4b54;
  --white: #ffffff;
  --radius: 1rem;
  --shadow: 0 12px 28px rgba(74, 46, 53, 0.12);
  --transition: 250ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--plum);
  background: var(--cream);
  line-height: 1.6;
}

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

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--plum);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 1001;
}

.skip-link:focus {
  left: 1rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 247, 240, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(74, 46, 53, 0.08);
  transition: var(--transition);
}

.header.shrink {
  box-shadow: 0 8px 24px rgba(74, 46, 53, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 1rem;
  transition: min-height var(--transition);
}

.header.shrink .nav {
  min-height: 68px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--plum-soft);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.2rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.6rem;
  height: 2px;
  background: var(--plum);
  margin: 0.3rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  background: var(--plum);
  color: var(--white);
  font-weight: 600;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  opacity: 0.95;
}

.btn-whatsapp {
  background: #1f9c5a;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: center;
  background: url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(74, 46, 53, 0.74), rgba(74, 46, 53, 0.3));
}

.hero-content {
  position: relative;
  color: var(--white);
  max-width: 680px;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  margin-bottom: 0.8rem;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--plum-soft);
}

.hero .eyebrow {
  color: #fbe7e2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 2rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 1.8rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.filter-btn {
  border: 1px solid rgba(74, 46, 53, 0.25);
  background: var(--white);
  color: var(--plum);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  cursor: pointer;
  font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover,
.filter-btn:focus-visible {
  background: var(--sage);
  border-color: var(--sage);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.card:hover {
  transform: translateY(-4px);
}

.card img {
  aspect-ratio: 1 / 1;
  transition: transform var(--transition);
}

.card:hover img {
  transform: scale(1.04);
}

.card-body {
  padding: 1rem;
}

.price {
  display: block;
  margin: 0.5rem 0 0.8rem;
  font-weight: 700;
}

.text-link {
  color: var(--plum-soft);
  font-weight: 700;
}

.banner {
  background: #f2ece3;
  border-top: 1px solid rgba(74, 46, 53, 0.1);
  border-bottom: 1px solid rgba(74, 46, 53, 0.1);
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.banner p {
  margin: 0.3rem 0 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.image-frame img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonials {
  background: #f7efe9;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.slides {
  overflow: hidden;
}

.slide {
  display: none;
  text-align: center;
  background: var(--white);
  padding: 1.8rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.slide.active {
  display: block;
}

.slider-btn {
  border: 1px solid rgba(74, 46, 53, 0.2);
  background: var(--white);
  color: var(--plum);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  cursor: pointer;
}

.forms-wrap {
  align-items: stretch;
}

.form-card {
  background: var(--white);
  padding: 1.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 0.55rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(74, 46, 53, 0.25);
  border-radius: 0.7rem;
  padding: 0.68rem;
  font: inherit;
  background: #fffdfa;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--sage);
  border-color: var(--sage);
}

.form-msg {
  min-height: 1.1rem;
  margin: 0.2rem 0 0;
  font-weight: 600;
}

.form-msg.error {
  color: #8b0000;
}

.form-msg.success {
  color: #0b6b3a;
}

.gallery-section {
  background: #fffaf7;
}

.gallery-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid img {
  aspect-ratio: 1 / 1;
  border-radius: 0.8rem;
}

.footer {
  background: var(--plum);
  color: var(--cream);
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.map-placeholder {
  background: rgba(255, 255, 255, 0.12);
  border: 1px dashed rgba(255, 255, 255, 0.45);
  border-radius: 0.8rem;
  min-height: 110px;
  display: grid;
  place-items: center;
}

.copyright {
  text-align: center;
  margin: 1.5rem 0 0;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hidden {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .card-grid,
  .products,
  .gallery-grid,
  .footer-grid,
  .banner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 4%;
    border-bottom: 1px solid rgba(74, 46, 53, 0.1);
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-menu.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .section {
    padding: 4rem 0;
  }

  .testimonial-slider {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    justify-self: center;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 76vh;
  }

  .card-grid,
  .products,
  .gallery-grid,
  .footer-grid,
  .banner-grid {
    grid-template-columns: 1fr;
  }

  .logo {
    font-size: 1.3rem;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
