/* 
  GRAND RICH — Custom Style Sheet (Pure CSS)
  Modern, responsive, premium dark/gold aesthetics.
*/

/* ──────────── DESIGN TOKENS (VARIABLES) ──────────── */
:root {
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;

  /* Color Palette */
  --background: #fcfcfc;
  --foreground: #1c1d21;
  --card: #ffffff;
  --card-foreground: #1c1d21;

  --gold: #b38b4d;
  --gold-hover: #9c7339;
  --gold-soft: #fbf7f0;
  --onyx: #121316;
  --graphite: #32353b;
  --border: #e8e8eb;
  --border-dark: rgba(255, 255, 255, 0.1);
  --muted-foreground: #6b6e76;
  --whatsapp: #25d366;
  --whatsapp-hover: #20ba5a;

  /* Gradients & Shadows */
  --gradient-gold: linear-gradient(135deg, #c5a875 0%, #b38b4d 100%);
  --gradient-dark: linear-gradient(180deg, #1c1d21 0%, #121316 100%);
  --shadow-luxe: 0 30px 80px -20px rgba(28, 29, 33, 0.15), 0 0 0 1px rgba(28, 29, 33, 0.05);
  --shadow-gold: 0 20px 60px -20px rgba(179, 139, 77, 0.3);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);

  --radius: 4px;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ──────────── RESET & BASE ──────────── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.text-gold {
  color: var(--gold);
}

.gradient-gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

/* ──────────── LAYOUT UTILITIES ──────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 640px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.section-py {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (min-width: 768px) {
  .section-py {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

/* Grid & Flex */
.grid {
  display: grid;
}

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

@media (min-width: 640px) {
  .grid-cols-sm-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-cols-sm-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .grid-cols-md-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-cols-lg-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-cols-lg-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.gap-px {
  gap: 1px;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.gap-5 {
  gap: 20px;
}

.gap-6 {
  gap: 24px;
}

.gap-12 {
  gap: 48px;
}

.gap-16 {
  gap: 64px;
}

/* ──────────── BUTTONS & LINKS ──────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: var(--transition-smooth);
  cursor: pointer;
  border-radius: var(--radius);
}

.btn-gold {
  background-color: var(--gold);
  color: #ffffff;
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  background-color: var(--gold-hover);
  border-color: var(--gold-hover);
  box-shadow: var(--shadow-gold);
}

.btn-white {
  background-color: #ffffff;
  color: var(--onyx);
  border: 1px solid #ffffff;
}

.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--foreground);
}

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

.btn-outline-gold {
  border: 1px solid rgba(179, 139, 77, 0.4);
  color: var(--gold);
}

.btn-outline-gold:hover {
  background-color: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
}

.btn-link-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.btn-link-gold:hover .arrow-icon {
  transform: translateX(4px);
}

.arrow-icon {
  transition: transform 0.3s ease;
}

/* ──────────── GLASSMORPHISM & CARD EFFECTS ──────────── */
.glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(232, 232, 235, 0.5);
}

/* ──────────── HEADER & NAVIGATION ──────────── */
.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(232, 232, 235, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 44px;
  width: 44px;
  border-radius: 2px;
  object-fit: cover;
  background-color: #ffffff;
  padding: 2px;
}

.logo-text {
  line-height: 1.1;
  color: #ffffff;
  transition: var(--transition-smooth);
}

.header.scrolled .logo-text {
  color: var(--foreground);
}

.logo-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.logo-subtitle {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.9);
}

.header.scrolled .logo-subtitle {
  color: var(--muted-foreground);
}

.nav-menu {
  display: none;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  .nav-link {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-smooth);
  }

  .nav-link:hover {
    color: #ffffff;
  }

  .header.scrolled .nav-link {
    color: rgba(28, 29, 33, 0.8);
  }

  .header.scrolled .nav-link:hover {
    color: var(--gold);
  }
}

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 8px 16px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    border-radius: var(--radius);
  }

  .nav-cta:hover {
    background-color: #ffffff;
    color: var(--onyx);
  }

  .header.scrolled .nav-cta {
    border-color: rgba(179, 139, 77, 0.4);
    color: var(--gold);
    background-color: transparent;
  }

  .header.scrolled .nav-cta:hover {
    background-color: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
  }
}

/* ──────────── HERO SECTION ──────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  animation: slow-zoom 18s ease-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(18, 19, 22, 0.4);
  z-index: 1;
}

.hero-gradient-top {
  position: absolute;
  inset-x: 0;
  top: 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(18, 19, 22, 0.8) 0%, transparent 100%);
  z-index: 2;
}

.hero-gradient-bottom {
  position: absolute;
  inset-x: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(0deg, var(--background) 0%, rgba(252, 252, 252, 0.7) 70%, transparent 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-bottom: 80px;
  padding-top: 160px;
  animation: float-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (min-width: 640px) {
  .hero-content {
    padding-bottom: 110px;
  }
}

.hero-badge-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-badge-line {
  height: 1px;
  width: 40px;
  background-color: #ffffff;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-width: 900px;
}

.hero-desc {
  margin-top: 24px;
  max-width: 650px;
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    gap: 16px;
  }
}

.hero-cards {
  margin-top: 80px;
  animation: float-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.2s;
}

.hero-card {
  background: #ffffff;
  padding: 24px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.hero-card:hover {
  border-color: rgba(179, 139, 77, 0.4);
  box-shadow: var(--shadow-luxe);
}

.hero-card-title {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.hero-card:hover .hero-card-title {
  color: var(--gold);
}

.hero-card-indicator {
  margin-top: 12px;
  height: 2px;
  width: 32px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.hero-card:hover .hero-card-indicator {
  width: 48px;
}

@media (max-width: 767px) {
  .hero-bg {
    bottom: auto;
    height: 65vh;
    min-height: 540px;
  }

  .hero-img {
    object-position: center 35%;
  }
}

/* ──────────── TRUST BAR ──────────── */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.3);
}

.trust-grid {
  background-color: var(--border);
}

.trust-item {
  position: relative;
  background-color: var(--background);
  padding: 32px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .trust-item {
    padding: 40px;
  }
}

.trust-item:hover {
  background-color: #ffffff;
}

.trust-icon {
  height: 28px;
  width: 28px;
  color: rgba(179, 139, 77, 0.7);
  margin-bottom: 24px;
}

.trust-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.trust-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 24px;
  flex-grow: 1;
}

/* ──────────── ABOUT SECTION ──────────── */
.about {
  position: relative;
}

.about-header {
  display: grid;
  gap: 64px;
  align-items: start;
}

@media (min-width: 1024px) {
  .about-header {
    grid-template-columns: 1fr 1.2fr;
    gap: 96px;
  }
}

.about-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 24px;
}

.about-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1.15;
}

@media (min-width: 640px) {
  .about-title {
    font-size: 3rem;
  }
}

.about-desc-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .about-desc-col {
    font-size: 1.125rem;
  }
}

.about-bold-text {
  color: var(--foreground);
  font-weight: 500;
}

.about-points {
  margin-top: 80px;
  background-color: var(--border);
  border: 1px solid var(--border);
}

.about-point-card {
  background-color: var(--background);
  padding: 32px;
}

.about-point-icon {
  height: 32px;
  width: 32px;
  color: var(--gold);
  margin-bottom: 20px;
}

.about-point-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.about-point-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ──────────── PRODUCTS CATALOG ──────────── */
.products-section {
  background-color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.products-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .products-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.products-desc {
  margin-top: 16px;
  max-width: 650px;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .products-desc {
    font-size: 1rem;
  }
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tab {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 8px 16px;
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  transition: var(--transition-smooth);
  border-radius: var(--radius);
}

.filter-tab:hover {
  border-color: rgba(179, 139, 77, 0.5);
  color: var(--foreground);
}

.filter-tab.active {
  border-color: var(--gold);
  color: var(--gold);
}

/* Product Card */
.product-card {
  background-color: var(--background);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.product-card:hover {
  border-color: rgba(179, 139, 77, 0.4);
  box-shadow: var(--shadow-luxe);
}

.product-img-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.3);
}

.product-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-img {
  transform: scale(1.02);
}

.product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  border: 1px solid rgba(179, 139, 77, 0.3);
  background-color: rgba(18, 19, 22, 0.8);
  padding: 4px 12px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  backdrop-filter: blur(4px);
}

.product-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 24px;
}

@media (min-width: 640px) {
  .product-info {
    padding: 28px;
  }
}

.product-prefix {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(179, 139, 77, 0.8);
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
  line-height: 1.2;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-specs {
  list-style: none;
  margin-bottom: 24px;
  font-size: 0.875rem;
}

.product-spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(28, 29, 33, 0.8);
  margin-bottom: 8px;
}

.product-spec-line {
  height: 1px;
  width: 12px;
  background-color: var(--gold);
  flex-shrink: 0;
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}

@media (min-width: 640px) {
  .product-price {
    font-size: 1.875rem;
  }
}

.product-price-unit {
  margin-top: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
}

.product-card .btn {
  padding: 12px 20px;
}

/* ──────────── ADVANTAGES ──────────── */
.advantages {
  background-color: var(--background);
}

.advantages-title {
  max-width: 700px;
  margin-bottom: 56px;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(232, 232, 235, 0.5);
  border-left: 2px solid rgba(179, 139, 77, 0.4);
  padding: 32px;
  transition: var(--transition-smooth);
}

.advantage-card:hover {
  border-left-color: var(--gold);
}

.advantage-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(179, 139, 77, 0.3);
  margin-bottom: 12px;
  line-height: 1;
  transition: color 0.3s ease;
}

.advantage-card:hover .advantage-num {
  color: rgba(179, 139, 77, 0.6);
}

.advantage-text {
  font-size: 1.125rem;
  font-weight: 400;
}

/* ──────────── SHOWROOM SECTION ──────────── */
.showroom-section {
  position: relative;
}

.showroom-grid {
  align-items: center;
}

.showroom-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

.showroom-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(179, 139, 77, 0.2);
  pointer-events: none;
}

.showroom-list {
  list-style: none;
  margin-bottom: 40px;
}

.showroom-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: rgba(28, 29, 33, 0.85);
  margin-bottom: 16px;
}

.showroom-list-line {
  height: 1px;
  width: 24px;
  background-color: var(--gold);
  flex-shrink: 0;
  margin-top: 12px;
}

.showroom-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ──────────── GALLERY & LIGHTBOX ──────────── */
.gallery-section {
  background-color: rgba(255, 255, 255, 0.4);
}

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.gallery-desc {
  color: var(--muted-foreground);
  max-width: 320px;
}

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

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.gallery-btn {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background-color: var(--onyx);
  width: 100%;
}

.gallery-btn-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-btn:hover .gallery-btn-img {
  transform: scale(1.1);
}

.gallery-btn-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(18, 19, 22, 0.3);
  transition: background-color 0.4s ease;
}

.gallery-btn:hover .gallery-btn-overlay {
  background-color: transparent;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: rgba(18, 19, 22, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 48px;
  width: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(179, 139, 77, 0.4);
  color: var(--gold);
  background-color: transparent;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  background-color: var(--gold);
  color: #ffffff;
}

.lightbox-img {
  max-height: 90vh;
  max-width: 95vw;
  object-fit: contain;
  transform: translateY(24px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lightbox.active .lightbox-img {
  transform: translateY(0);
  opacity: 1;
}

/* ──────────── REVIEWS ──────────── */
.reviews-section {
  background-color: var(--background);
}

.reviews-grid {
  margin-top: 56px;
}

.review-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background-color: var(--card);
}

.review-img-wrapper {
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

.review-content {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.review-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}

.review-star-icon {
  height: 14px;
  width: 14px;
  fill: currentColor;
}

.review-text {
  color: rgba(28, 29, 33, 0.85);
  line-height: 1.6;
  flex-grow: 1;
}

.review-author {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.review-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
}

.review-role {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  margin-top: 4px;
}

/* ──────────── FAQ ACCORDION ──────────── */
.faq-section {
  background-color: rgba(255, 255, 255, 0.4);
}

.faq-container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-title-main {
  margin-bottom: 48px;
}

.faq-accordion {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-trigger:hover {
  color: var(--gold);
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

@media (min-width: 640px) {
  .faq-question {
    font-size: 1.5rem;
  }
}

.faq-icon-box {
  height: 36px;
  width: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.faq-trigger:hover .faq-icon-box {
  border-color: var(--gold);
}

.faq-icon-plus,
.faq-icon-minus {
  height: 16px;
  width: 16px;
}

.faq-icon-minus {
  display: none;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-answer {
  padding-bottom: 28px;
  color: var(--muted-foreground);
  line-height: 1.6;
  max-width: 650px;
  font-size: 0.95rem;
}

@media (min-width: 640px) {
  .faq-answer {
    font-size: 1rem;
  }
}

/* Accordion Active State */
.faq-item.active .faq-icon-minus {
  display: block;
}

.faq-item.active .faq-icon-plus {
  display: none;
}

.faq-item.active .faq-content {
  max-height: 250px;
  /* safety cap */
  opacity: 1;
}

/* ──────────── CONTACTS SECTION ──────────── */
.contacts-grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contacts-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
  }
}

.contacts-title {
  margin-bottom: 32px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-icon-box {
  height: 48px;
  width: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(179, 139, 77, 0.3);
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-row:hover .contact-icon-box {
  background-color: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
}

.contact-row-info {
  min-width: 0;
}

.contact-row-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
}

.contact-row-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.contacts-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Map Card */
.map-card {
  position: relative;
  border: 1px solid rgba(179, 139, 77, 0.2);
  background-color: rgba(255, 255, 255, 0.4);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
}

@media (min-width: 640px) {
  .map-card {
    padding: 40px;
  }
}

.map-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 16px;
}

.map-address {
  font-family: var(--font-display);
  font-size: 1.875rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

@media (min-width: 640px) {
  .map-address {
    font-size: 2.25rem;
  }
}

.map-desc {
  color: var(--muted-foreground);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

/* ──────────── FOOTER ──────────── */
.footer {
  border-top: 1px solid var(--border);
  background-color: rgba(18, 19, 22, 0.95);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 48px;
  padding-bottom: 48px;
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

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

.footer-logo-box {
  display: grid;
  height: 36px;
  width: 36px;
  place-items: center;
  border-radius: 2px;
  border: 1px solid rgba(179, 139, 77, 0.4);
  background-color: #ffffff;
}

.footer-logo-letter {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  font-weight: bold;
}

.footer-logo-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.footer-logo-subtitle {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted-foreground);
}

.footer-desc {
  margin-top: 20px;
  color: var(--muted-foreground);
  max-width: 320px;
  line-height: 1.6;
}

.footer-col-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-list {
  list-style: none;
}

.footer-list-item {
  color: var(--muted-foreground);
  margin-bottom: 8px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom-badge {
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ──────────── STICKY FLOAT ACTIONS ──────────── */
.sticky-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-btn {
  height: 56px;
  width: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  color: #ffffff;
}

.sticky-btn:hover {
  transform: scale(1.05);
}

.sticky-btn-wa {
  background-color: var(--whatsapp);
}

.sticky-btn-wa:hover {
  background-color: var(--whatsapp-hover);
}

.sticky-btn-phone {
  background-color: var(--gold);
}

.sticky-btn-phone:hover {
  background-color: var(--gold-hover);
}

.sticky-btn-icon {
  height: 24px;
  width: 24px;
}

/* ──────────── ANIMATION KEYFRAMES ──────────── */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes float-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slow-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

/* ──────────── UTILITIES FOR ANIMATION ──────────── */
.animate-float-up {
  animation: float-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}