:root {
  --bg: #f3f0ea;
  --surface: #ffffff;
  --text: #181512;
  --muted: #5b544a;
  --gold: #d7b36a;
  --gold-strong: #b68b3a;
  --dark: #19140f;
  --line: #e8dfd1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

h1,
h2,
h3,
.brand {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  letter-spacing: 0.01em;
}

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

.section {
  padding: 76px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 18% 18%, #7a6031 0%, #2a2218 48%, #110d09 100%);
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.48));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 24px 0 84px;
}

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

.brand {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(215, 179, 106, 0.5);
  background: rgba(215, 179, 106, 0.14);
  color: #f7e6bf;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.06;
  font-weight: 700;
}

.hero p {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
}

.hero-highlights li {
  background: rgba(215, 179, 106, 0.14);
  border: 1px solid rgba(215, 179, 106, 0.32);
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 0.92rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-gold {
  background: linear-gradient(135deg, #e1c17f, #b88d3a);
  color: #17120a;
  box-shadow: 0 8px 20px rgba(209, 162, 72, 0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #d9b264, #ab8031);
}

.btn-dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(215, 179, 106, 0.35);
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(215, 179, 106, 0.48);
  background: rgba(215, 179, 106, 0.12);
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
}

.section-title p {
  color: var(--muted);
  margin: 10px 0 0;
  max-width: 700px;
}

.features {
  margin-top: 28px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 14px 28px rgba(24, 24, 24, 0.05);
}

.feature-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.feature-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.alt-bg {
  background: linear-gradient(180deg, #fcfaf6 0%, #f3ecde 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.material-chips {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.material-chips span {
  background: #fff;
  border: 1px solid #e3d7bc;
  color: #483514;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.products-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 16px;
}

.product-card {
  background: var(--surface);
  border: 1px solid #e5dbc8;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 30px rgba(20, 20, 20, 0.06);
}

.product-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.product-content {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card h3 {
  margin: 6px 0 0;
}

.product-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #5f4517;
  background: #f6e9c6;
  border: 1px solid #e5cd91;
  border-radius: 999px;
  padding: 6px 10px;
}

.product-card .btn {
  margin-top: auto;
  width: 100%;
}

.product-card .btn-dark {
  background: #2f2417;
  border: 1px solid #2f2417;
  color: #fff;
}

.product-card .btn-dark:hover {
  background: #241c12;
  border-color: #241c12;
}

.gallery-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.gallery-filters {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-filter {
  border: 1px solid #d9c9aa;
  background: #fff8ea;
  color: #5d451c;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-filter:hover {
  transform: translateY(-1px);
  border-color: #be9850;
}

.gallery-filter.active {
  background: linear-gradient(135deg, #e1c17f, #b88d3a);
  border-color: #b88d3a;
  color: #17120a;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 280px;
  box-shadow: 0 14px 30px rgba(20, 20, 20, 0.12);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

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

.gallery-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.7));
  backdrop-filter: blur(2px);
}

.gallery-caption span {
  display: block;
  font-weight: 600;
}

.gallery-caption small {
  display: block;
  margin-top: 4px;
  opacity: 0.88;
}

.testimonials-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid #e5dbc8;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(20, 20, 20, 0.05);
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
}

.testimonial-card strong {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: #3f3218;
}

.contact-card {
  background: linear-gradient(140deg, #1f180f, #3a2914);
  color: #fff;
  border-radius: 18px;
  padding: 34px;
  border: 1px solid #6a4b1f;
}

.contact-card h2 {
  margin: 0;
}

.contact-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.contact-details {
  margin-top: 16px;
}

.contact-details p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
}

.contact-map-link {
  display: inline-block;
  margin-top: 8px;
  color: #f0cf89;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-card .btn {
  margin-top: 20px;
}

.footer {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 24px 0;
  margin-top: 20px;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer-link {
  color: #f0cf89;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.26);
  z-index: 12;
}

@media (max-width: 720px) {
  .section {
    padding: 56px 0;
  }

  .topbar {
    margin-bottom: 40px;
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-card {
    padding: 24px;
  }

  .gallery-card {
    min-height: 230px;
  }
}
