/* Reset and Base Variables */
:root {
  --color-gold: #c5a059;
  --color-gold-hover: #b08d48;
  --color-dark: #111111;
  --color-light: #fbfbfb;
  --color-white: #ffffff;
  --color-text: #555555;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  line-height: 1.7;
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--color-dark);
}

.text-dark { color: var(--color-dark) !important; }
.text-muted { color: var(--color-text) !important; }
.font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-sans); }
.fs-3 { font-size: 1.5rem; }
.fs-7 { font-size: 0.8rem; letter-spacing: 1px; }
.text-uppercase { text-transform: uppercase; }

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.w-100 { width: 100%; display: block; }
.p-4 { padding: 30px; }
.pb-4 { padding-bottom: 30px; }
.bg-white { background-color: var(--color-white); }
.rounded { border-radius: 4px; }
.shadow-lg { box-shadow: 0 15px 40px rgba(0,0,0,0.08); }


.section-pad {
  padding: 100px 0;
}

.bg-light { background-color: var(--color-light); }
.bg-dark { background-color: var(--color-dark); color: var(--color-white); }
.text-gold { color: var(--color-gold) !important; }
.text-white { color: var(--color-white); }
.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.section-title h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}
.subtitle-text {
  font-size: 1.1rem;
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto;
}
.divider {
  width: 70px;
  height: 2px;
  background-color: var(--color-gold);
  margin-bottom: 40px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 35px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 1px solid transparent;
  font-family: var(--font-sans);
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-white);
}
.btn-gold:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

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

.btn-transparent {
  background-color: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--color-white);
}
.btn-transparent:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: padding 0.3s ease, background 0.3s ease;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-links a {
  margin: 0 18px;
  color: var(--color-text);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--color-gold);
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--color-dark);
  cursor: pointer;
}

/* Hero */
.hero {
  height: 100vh;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(17,17,17,0.9), rgba(17,17,17,0.3));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}
.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--color-white);
  line-height: 1.1;
}
.hero-content p {
  font-size: 1.25rem;
  max-width: 750px;
  margin: 0 auto 40px auto;
  font-weight: 300;
  color: #ddd;
}
.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}
.layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.align-start { align-items: start; }
.align-center { align-items: center; }

/* Differentials */
.card-differential {
  background: var(--color-white);
  padding: 50px 40px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.card-differential:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.card-differential i {
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: 25px;
  display: inline-block;
}
.card-differential h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.card-differential p {
  color: var(--color-text);
  font-size: 1rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/5;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  padding: 40px 30px;
  background: linear-gradient(transparent, rgba(17,17,17,0.9));
  color: var(--color-white);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}
.gallery-overlay h4 { 
  color: var(--color-gold); 
  font-family: var(--font-sans); 
  text-transform: uppercase; 
  font-size: 0.75rem; 
  letter-spacing: 2px; 
  margin-bottom: 5px;
}
.gallery-overlay p {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0;
}

/* Testimonials */
.testimonial-card {
  background: var(--color-white);
  padding: 50px 40px;
  border-top: 4px solid var(--color-gold);
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}
.testimonial-card .stars {
  font-size: 1.2rem;
}
.testimonial-card .review {
  font-style: italic;
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: #666;
}
.testimonial-card .client-name {
  font-weight: 700;
  color: var(--color-dark);
  font-size: 1.1rem;
  font-family: var(--font-sans);
}

/* Store Experience / Info */
.bg-dark h2 { color: var(--color-white); }
.store-image-placeholder {
  width: 100%;
  height: 500px;
  background-color: #333;
  background-image: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}
.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.info-item i {
  margin-top: 4px;
}
.map-container {
  width: 100%;
  height: 450px;
  border-radius: 4px;
  overflow: hidden;
  background: #eee;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.no-map { display:flex; flex-direction: column; align-items:center; justify-content:center; height:100%; color:#999; text-align:center; padding: 20px; }

/* Footer */
.footer {
  background-color: var(--color-dark);
  color: #bbb;
  padding: 100px 0 30px 0;
}
.footer h3 { color: var(--color-white); margin-bottom: 25px; font-size: 1.5rem; letter-spacing: 2px; }
.footer h4 { color: var(--color-white); margin-bottom: 25px; font-size: 1.1rem; font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 1px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { color: #bbb; transition: color 0.3s; }
.footer ul a:hover { color: var(--color-gold); }
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.1rem;
  margin-right: 15px;
  transition: all 0.3s;
}
.social-links a:hover { 
  color: var(--color-dark); 
  background-color: var(--color-gold); 
  border-color: var(--color-gold);
}
.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

/* WPP Float */
.wpp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
  z-index: 100;
  transition: transform 0.3s;
}
.wpp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-content h1 { font-size: 3rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .layout-split { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .navbar .btn { display: none; }
  .hero-btns { flex-direction: column; }
  .section-pad { padding: 60px 0; }
}
