:root {
  --navy-950: #051429;
  --navy-900: #0a1f3d;
  --navy-800: #12315e;
  --gold-500: #c8a45a;
  --gold-400: #d9b975;
  --gold-300: #e7cc96;
  --white: #ffffff;
  --slate-100: #f2f6fc;
  --slate-200: #dbe4f3;
  --text-700: #253756;
  --shadow-lg: 0 20px 45px rgba(5, 20, 41, 0.2);
  --shadow-md: 0 12px 28px rgba(10, 31, 61, 0.16);
  --radius-md: 14px;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text-700);
  background: radial-gradient(circle at 5% 10%, #102f5d, transparent 24%),
              radial-gradient(circle at 92% 14%, #1b4378, transparent 22%),
              linear-gradient(180deg, #f7f9fe, #eef3fc);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

.container {
  width: min(1150px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background: rgba(5, 20, 41, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.brand-text {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  gap: 1.2rem;
}

.nav a {
  color: #e7edf9;
  font-weight: 600;
  font-size: 0.94rem;
}

.nav a:hover {
  color: var(--gold-300);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-gold {
  color: #1d1401;
  background: linear-gradient(140deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 10px 25px rgba(200, 164, 90, 0.32);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  border-color: var(--gold-300);
  color: var(--gold-300);
}

.hero {
  padding: 4.4rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-family: "Cinzel", serif;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  color: var(--white);
  line-height: 1.15;
  animation: rise-in 0.8s ease-out both;
}

.hero-copy p {
  max-width: 62ch;
  color: #dce7fb;
  line-height: 1.7;
  animation: rise-in 1s ease-out both;
}

.eyebrow {
  margin: 0 0 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-300);
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero-card {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(240, 246, 255, 0.88));
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  border: 1px solid #dae5f7;
  box-shadow: var(--shadow-lg);
  animation: float-in 0.9s ease-out both;
}

.hero-card h2 {
  margin-top: 0;
  color: var(--navy-900);
  font-family: "Cinzel", serif;
}

.card-note {
  color: #4a5f83;
}

.full {
  width: 100%;
}

.discount-banner {
  padding: 0 0 2.5rem;
}

.banner-inner {
  background: linear-gradient(100deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-md);
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-md);
}

.banner-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.banner-instagram {
  width: 40px;
  height: 40px;
}

.section {
  padding: 4rem 0;
}

.alt {
  background: linear-gradient(180deg, #f8fbff, #edf3fc);
}

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

.section-head h2 {
  margin: 0;
  font-family: "Cinzel", serif;
  color: var(--navy-900);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
}

.group-title {
  margin: 2rem 0 1rem;
  color: var(--navy-800);
}

#products .group-title:first-of-type {
  margin-top: 0.5rem;
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #dde8fa;
  box-shadow: 0 8px 24px rgba(16, 47, 93, 0.09);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(16, 47, 93, 0.16);
}

.product-card img {
  height: 190px;
  width: 100%;
  object-fit: cover;
}

.product-card h4,
.product-card p,
.product-card .text-link {
  padding-inline: 1rem;
}

.product-card h4 {
  margin: 0.95rem 0 0.55rem;
  color: var(--navy-900);
}

.product-card p {
  margin: 0 0 0.9rem;
  color: #516486;
}

.text-link {
  display: inline-block;
  margin: 0 0 1rem;
  color: #9a7731;
  font-weight: 800;
}

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

.gallery-grid img {
  border-radius: 10px;
  height: 220px;
  object-fit: cover;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.gallery-grid img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 14px 24px rgba(16, 47, 93, 0.18);
}

.center {
  text-align: center;
  margin-top: 1.5rem;
}

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

.testimonial-card {
  background: linear-gradient(160deg, var(--white), #f8fbff);
  border: 1px solid #d7e4f7;
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: 0 8px 22px rgba(5, 20, 41, 0.07);
}

.testimonial-card p {
  margin-top: 0;
  color: #4a5f83;
}

.testimonial-card h4 {
  margin: 0;
  color: var(--navy-800);
  font-size: 0.95rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  background: var(--white);
  border: 1px solid #d7e4f7;
  border-radius: 12px;
  padding: 0.95rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy-900);
}

.faq-list p {
  margin-bottom: 0;
  color: #4f6284;
  line-height: 1.65;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  min-width: 0;
}

.bullet-points {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: #4f6284;
}

.inquiry-form {
  background: var(--white);
  border: 1px solid #d5e3f8;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.25rem;
  display: grid;
  gap: 0.45rem;
  width: 100%;
  min-width: 0;
}

.inquiry-form label {
  font-weight: 700;
  color: var(--navy-900);
  font-size: 0.92rem;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  font: inherit;
  padding: 0.72rem 0.8rem;
  border-radius: 10px;
  border: 1px solid #cddcf3;
  margin-bottom: 0.7rem;
  width: 100%;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: #9a7731;
  box-shadow: 0 0 0 3px rgba(200, 164, 90, 0.2);
}

.form-note {
  min-height: 20px;
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: #2f7a46;
}

.footer {
  background: var(--navy-950);
  color: #dce7fb;
  padding: 1.25rem 0;
  width: 100%;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-brand > div p {
  margin: 0;
  line-height: 1.18;
}

.footer-brand > div p + p {
  margin-top: 0.18rem;
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.social-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #f6d89f;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-1px);
  border-color: var(--gold-300);
  background: rgba(255, 255, 255, 0.08);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
  background: #25d366;
  color: #042611;
  font-weight: 800;
  padding: 0.86rem 1rem;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(8, 77, 32, 0.28);
  animation: pulse-soft 2.2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.reveal-target {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-target.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulse-soft {
  0%,
  100% {
    box-shadow: 0 10px 25px rgba(8, 77, 32, 0.28);
  }
  50% {
    box-shadow: 0 14px 30px rgba(8, 77, 32, 0.4);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal-target {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .btn {
    padding-block: 0.9rem;
  }

  .hero-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
  }

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

  .product-grid,
  .gallery-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .banner-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .banner-actions {
    width: 100%;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-actions {
    width: 100%;
  }

  .product-grid,
  .gallery-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.4rem;
  }

  .topbar .btn {
    font-size: 0.85rem;
    padding: 0.55rem 0.85rem;
  }

  .whatsapp-float {
    right: 0.8rem;
    bottom: 0.8rem;
  }
}
