/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Fira Sans', sans-serif;
  color: #e0e0e0;
  background: #0a0a0f;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: #c9a84c; text-decoration: none; transition: color .3s; }
a:hover { color: #f0d78c; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; color: #fff; }

/* ===== UTILITY ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.section-padding { padding: 80px 0; }
.gold { color: #c9a84c; }
.btn {
  display: inline-block;
  padding: 14px 36px;
  border: 2px solid #c9a84c;
  color: #c9a84c;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .85rem;
  transition: all .3s;
  cursor: pointer;
  background: transparent;
}
.btn:hover { background: #c9a84c; color: #0a0a0f; }
.btn-filled { background: #c9a84c; color: #0a0a0f; }
.btn-filled:hover { background: #f0d78c; border-color: #f0d78c; }
.section-title {
  font-size: 2.4rem;
  margin-bottom: 12px;
  position: relative;
}
.section-subtitle {
  color: #c9a84c;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.divider {
  width: 60px;
  height: 2px;
  background: #c9a84c;
  margin: 16px auto 30px;
}

/* ===== HEADER / NAV ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,15,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,.15);
  transition: background .3s;
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  max-width: 1140px;
  margin: 0 auto;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 1px;
}
.logo span { color: #c9a84c; }
nav ul { list-style: none; display: flex; gap: 30px; }
nav a {
  color: #ccc;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  transition: color .3s;
}
nav a:hover, nav a.active { color: #c9a84c; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.hamburger span { width: 25px; height: 2px; background: #c9a84c; transition: .3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.75)),
              url('https://images.unsplash.com/photo-1515187029135-18ee286d815b?w=1600&q=80') center/cover no-repeat;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 {
  font-size: 4rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 8px rgba(0,0,0,.6);
}
.hero .tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: #c9a84c;
  margin-bottom: 30px;
}
.hero .btn { margin-top: 10px; }

/* Cross decoration */
.hero::after {
  content: '✝';
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: rgba(201,168,76,.3);
}

/* ===== VIDEO SECTION ===== */
.video-section { background: #0e0e14; }
.video-section .content-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.video-section .text-side p { margin-bottom: 20px; font-size: 1.05rem; color: #bbb; }
.video-section .text-side .highlight {
  color: #c9a84c;
  font-weight: 700;
  font-size: 1.1rem;
}
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border: 2px solid rgba(201,168,76,.2);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ===== LIVE SECTION ===== */
.live-section { background: #0a0a0f; }
.live-section .video-wrap { max-width: 800px; margin: 0 auto; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: linear-gradient(135deg, #0e0e14, #12121c); }
.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(201,168,76,.05);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 4px;
  text-align: center;
}
.testimonial-card .quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: #ddd;
  margin-bottom: 20px;
}
.testimonial-card .quote::before { content: '\201C'; color: #c9a84c; font-size: 3rem; line-height: 0; vertical-align: -0.5em; margin-right: 4px; }
.testimonial-card .author { color: #c9a84c; font-weight: 600; }
.testimonial-card .role { color: #888; font-size: .9rem; }

/* ===== GALLERY ===== */
.gallery { background: #0e0e14; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  filter: grayscale(30%);
  transition: all .4s;
}
.gallery-grid img:hover { filter: grayscale(0%); transform: scale(1.03); }

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.8)),
              url('https://images.unsplash.com/photo-1494972308805-463bc619d34e?w=1200&q=80') center/cover;
  text-align: center;
}
.cta-section h2 { font-size: 2.5rem; margin-bottom: 10px; }
.cta-section p { color: #c9a84c; font-style: italic; font-size: 1.2rem; margin-bottom: 30px; }

/* ===== SUBSCRIBE ===== */
.subscribe { background: #0a0a0f; }
.subscribe-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}
.subscribe-form input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.25);
  color: #fff;
  font-size: 1rem;
  outline: none;
}
.subscribe-form input::placeholder { color: #666; }
.subscribe-form input:focus { border-color: #c9a84c; }

/* ===== FOOTER ===== */
footer {
  background: #060609;
  border-top: 1px solid rgba(201,168,76,.1);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: #c9a84c;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer-col p, .footer-col a { color: #888; font-size: .9rem; }
.footer-col a:hover { color: #c9a84c; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col .contact-item { margin-bottom: 12px; }
.footer-col .contact-item i { color: #c9a84c; margin-right: 8px; width: 16px; text-align: center; }
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(201,168,76,.08);
  color: #555;
  font-size: .85rem;
}
.social-links { display: flex; gap: 16px; margin-top: 16px; }
.social-links a {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  transition: all .3s;
}
.social-links a:hover { background: #c9a84c; color: #0a0a0f; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.8)),
              url('https://images.unsplash.com/photo-1494972308805-463bc619d34e?w=1200&q=80') center/cover;
}
.page-hero h1 { font-size: 3rem; margin-bottom: 8px; }
.page-hero p { color: #c9a84c; font-style: italic; }

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.product-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,168,76,.12);
  padding: 40px 30px;
  text-align: center;
  transition: all .3s;
  border-radius: 4px;
}
.product-card:hover { border-color: #c9a84c; transform: translateY(-4px); }
.product-card .icon { font-size: 2.5rem; color: #c9a84c; margin-bottom: 20px; }
.product-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.product-card p { color: #888; font-size: .95rem; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
  display: block;
  color: #c9a84c;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.2);
  color: #fff;
  font-size: 1rem;
  font-family: 'Fira Sans', sans-serif;
  outline: none;
  transition: border-color .3s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: #c9a84c; }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-info-side .info-block { margin-bottom: 30px; }
.contact-info-side .info-block h4 { color: #c9a84c; margin-bottom: 8px; }
.contact-info-side .info-block p { color: #999; }
.locations-list { list-style: none; }
.locations-list li { padding: 8px 0; color: #999; border-bottom: 1px solid rgba(201,168,76,.06); }
.locations-list li::before { content: '📍 '; }

/* ===== ABOUT / LIFE REMEMBERED ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-content .text-block p { color: #bbb; margin-bottom: 18px; }
.about-image img {
  border-radius: 4px;
  border: 2px solid rgba(201,168,76,.15);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.value-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(201,168,76,.03);
  border-radius: 4px;
}
.value-card .icon { font-size: 2rem; color: #c9a84c; margin-bottom: 15px; }
.value-card h4 { margin-bottom: 8px; }
.value-card p { color: #888; font-size: .9rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero h1 { font-size: 3rem; }
  .video-section .content-wrap { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .social-links { justify-content: center; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav ul {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: #0a0a0f;
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    transition: right .3s;
    border-left: 1px solid rgba(201,168,76,.15);
  }
  nav ul.open { right: 0; }
  .hero h1 { font-size: 2.2rem; }
  .hero .tagline { font-size: 1.1rem; }
  .section-title { font-size: 1.8rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 160px; }
  .subscribe-form { flex-direction: column; }
  .products-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .section-padding { padding: 50px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
}
