/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --ink: #060606;
  --cream: #F9F9F9;
  --gold: #D9BB70;
  --gold-light: #C8A050;
  --gold-deep: #B59063;
  --gold-pale: #F2E6C4;
  --warm-gray: #6B6B6B;
  --off-white: #FAFAFA;
  --font-display: 'Cormorant Garamond', serif;
  --font-sans: 'Jost', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 400; color: var(--ink); line-height: 1.1; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }
select { font-family: inherit; }
input, textarea, select { font-family: var(--font-sans); font-size: 1rem; }

/* ===== UTILITY CLASSES ===== */
.label-gold {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.gold-rule { display: block; width: 60px; height: 1px; background: var(--gold); }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--ink);
  padding: 0.95rem 2rem;
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.25em;
  border-radius: 2px; border: 1px solid var(--gold);
  transition: all 0.3s ease;
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-dark {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--gold);
  padding: 0.95rem 2rem;
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.25em;
  border-radius: 2px; border: 1px solid var(--ink);
  transition: all 0.3s ease; width: 100%;
}
.btn-dark:hover { background: transparent; color: var(--ink); border-color: var(--ink); }

.btn-outline-gold {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--gold);
  padding: 0.95rem 2rem;
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.25em;
  border-radius: 2px; border: 1px solid var(--gold);
  transition: all 0.3s ease;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--ink); }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== BRAND MARQUEE ===== */
@keyframes brand-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.animate-brand-marquee { animation: brand-marquee 35s linear infinite; }
.brand-track:hover .animate-brand-marquee { animation-play-state: paused; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(6,6,6,0.95); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(217,187,112,0.2);
}
.navbar-inner {
  max-width: 80rem; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.5rem;
}
.navbar-logo { height: 7.5rem; width: auto; object-fit: contain; }
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-link {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cream); transition: color 0.3s;
}
.nav-link:hover { color: var(--gold); }
.nav-cta { padding: 0.625rem 1.25rem !important; font-size: 0.65rem !important; }
.menu-btn { display: block; color: var(--gold); padding: 0.5rem; }
.mobile-menu {
  display: none; background: var(--ink);
  border-top: 1px solid rgba(217,187,112,0.2);
  padding: 1.5rem; flex-direction: column; gap: 1.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cream); transition: color 0.3s;
}
.mobile-link:hover { color: var(--gold); }

@media(min-width:768px) {
  .nav-links { display: flex; }
  .menu-btn { display: none; }
  .navbar-logo { height: 9.5rem; }
}
@media(min-width:1024px) { .navbar-inner { padding: 0.75rem 2.5rem; } }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; justify-content: center;
  background: var(--ink); overflow: hidden; padding-top: 6rem;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.3;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(6,6,6,0.7), rgba(6,6,6,0.5), var(--ink));
}
.hero-content {
  position: relative; z-index: 10; text-align: center;
  max-width: 56rem; padding: 0 1.5rem;
}
.hero h1 {
  font-family: var(--font-display); font-style: italic;
  color: var(--cream); font-size: 3rem; line-height: 1.05;
  margin-top: 2rem; margin-bottom: 1.5rem; font-weight: 300;
}
.hero p {
  color: rgba(249,249,249,0.7); max-width: 36rem; margin: 0 auto;
  font-size: 1rem; font-weight: 300; line-height: 1.7;
}
.hero-btns { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
.hero-line { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: rgba(217,187,112,0.4); }

@media(min-width:640px) { .hero-btns { flex-direction: row; } }
@media(min-width:768px) { .hero h1 { font-size: 4.5rem; } .hero p { font-size: 1.125rem; } }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--cream); border-bottom: 1px solid rgba(217,187,112,0.2); }
.trust-grid {
  max-width: 72rem; margin: 0 auto; padding: 2.5rem 1.5rem;
  display: grid; gap: 2rem; text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.trust-icon { color: var(--gold); font-size: 1.5rem; }
.trust-title { font-family: var(--font-display); font-size: 1.125rem; color: var(--ink); }
.trust-sub { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm-gray); }
@media(min-width:768px) { .trust-grid { grid-template-columns: repeat(3,1fr); } }

/* ===== ABOUT ===== */
.about-hero-grid { display: grid; }
.about-quote-panel {
  background: var(--gold-pale); display: flex; align-items: center;
  justify-content: center; padding: 4rem; position: relative;
}
.about-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: 2.25rem; color: var(--ink); text-align: center; line-height: 1.2;
}
.about-carousel { position: relative; min-height: 480px; }
.about-text-section { max-width: 72rem; margin: 0 auto; padding: 6rem 1.5rem; }
.about-text-grid { display: grid; gap: 4rem; }
.about-heading { font-family: var(--font-display); font-size: 2.25rem; line-height: 1.15; }
.about-body { color: var(--warm-gray); line-height: 1.7; font-size: 0.9375rem; }
.about-body p + p { margin-top: 1.25rem; }
.values-grid { display: grid; gap: 3rem; }
.value-card { text-align: center; display: flex; flex-direction: column; align-items: center; }
.value-icon {
  width: 4rem; height: 4rem; border-radius: 50%;
  border: 1px solid var(--gold); display: flex;
  align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.value-icon svg { height: 1.75rem; width: 1.75rem; color: var(--gold); }
.value-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.75rem; }
.value-card p { color: var(--warm-gray); font-size: 0.875rem; line-height: 1.7; max-width: 20rem; }
.leaf-decor { position: absolute; height: 3rem; width: 3rem; color: rgba(217,187,112,0.5); }
.leaf-tl { top: 2rem; left: 2rem; }
.leaf-br { bottom: 2rem; right: 2rem; transform: rotate(180deg); }

@media(min-width:768px) { .about-heading { font-size: 3rem; } .about-quote { font-size: 2.75rem; } }
@media(min-width:1024px) {
  .about-hero-grid { grid-template-columns: 1fr 1fr; }
  .about-quote-panel { padding: 6rem; }
  .about-text-grid { grid-template-columns: 1fr 1fr; }
  .about-text-section { padding: 6rem 2.5rem; }
}
@media(min-width:768px) { .values-grid { grid-template-columns: repeat(3,1fr); } }

/* ===== DIVIDER ===== */
.divider { display: flex; align-items: center; justify-content: center; gap: 1rem; padding: 3rem 0; }
.divider-line { height: 1px; width: 4rem; background: var(--gold); }
.divider svg { height: 1.5rem; width: 1.5rem; color: var(--gold); }

/* ===== CAROUSEL (shared) ===== */
.carousel-wrap { position: absolute; inset: 0; overflow: hidden; background: var(--ink); }
.carousel-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: opacity 1s ease;
}
.carousel-img.hidden { opacity: 0; }
.carousel-img.visible { opacity: 1; }
.carousel-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,0.4), transparent, transparent);
  pointer-events: none;
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  border: 1px solid rgba(217,187,112,0.7);
  background: rgba(6,6,6,0.4); backdrop-filter: blur(4px);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.carousel-btn:hover { background: var(--gold); color: var(--ink); }
.carousel-btn.prev { left: 1rem; }
.carousel-btn.next { right: 1rem; }
.carousel-dots {
  position: absolute; bottom: 1.25rem; left: 0; right: 0;
  display: flex; justify-content: center; gap: 0.5rem;
}
.carousel-dot {
  height: 0.375rem; border-radius: 9999px; transition: all 0.3s; border: none;
}
.carousel-dot.active { width: 1.5rem; background: var(--gold); }
.carousel-dot.inactive { width: 0.375rem; background: rgba(249,249,249,0.5); }
.carousel-dot.inactive:hover { background: rgba(249,249,249,0.8); }

/* ===== SERVICE PREVIEW ===== */
.svc-preview { background: var(--cream); padding: 5rem 0; }
.svc-preview-inner { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.svc-preview h2 { font-family: var(--font-display); font-size: 2.25rem; margin-top: 1.5rem; margin-bottom: 1rem; }
.svc-hero { position: relative; margin-top: 3rem; overflow: hidden; background: var(--ink); }
.svc-hero-aspect { padding-top: 56.25%; }
.svc-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,0.8), rgba(6,6,6,0.2), transparent);
}
.svc-hero-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; text-align: left; }
.svc-hero-label h3 {
  font-family: var(--font-display); font-style: italic;
  color: var(--cream); font-size: 1.875rem; margin-top: 0.75rem;
}
.svc-thumbs { margin-top: 1.5rem; display: grid; grid-template-columns: repeat(4,1fr); gap: 0.75rem; }
.svc-thumb {
  position: relative; aspect-ratio: 1; overflow: hidden;
  border: 1px solid rgba(217,187,112,0.3); transition: all 0.3s; cursor: pointer;
  opacity: 0.6; padding: 0;
}
.svc-thumb:hover { opacity: 1; }
.svc-thumb.active { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); opacity: 1; }
.svc-thumb img { width: 100%; height: 100%; object-fit: cover; }

@media(min-width:768px) {
  .svc-preview h2 { font-size: 3rem; }
  .svc-hero-aspect { padding-top: 42.86%; }
  .svc-hero-label { padding: 3rem; }
  .svc-hero-label h3 { font-size: 3rem; }
  .svc-thumbs { grid-template-columns: repeat(8,1fr); }
  .carousel-btn.svc-prev { left: 1.5rem; }
  .carousel-btn.svc-next { right: 1.5rem; }
}

/* ===== SERVICES ACCORDION ===== */
.services-header { background: var(--ink); padding: 5rem 0; text-align: center; }
.services-header h2 {
  font-family: var(--font-display); font-style: italic;
  color: var(--cream); font-size: 3rem; margin-top: 1.5rem;
}
.services-body { background: var(--cream); padding: 5rem 0; }
.services-list { max-width: 56rem; margin: 0 auto; padding: 0 1.5rem; }
.accordion-item { border-bottom: 1px solid rgba(217,187,112,0.3); }
.accordion-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0; text-align: left;
}
.accordion-btn span:first-child { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }
.accordion-toggle {
  color: var(--gold); font-size: 1.5rem; font-weight: 300;
  transition: transform 0.3s; display: inline-block;
}
.accordion-toggle.open { transform: rotate(45deg); }
.accordion-content { padding-bottom: 2rem; display: none; }
.accordion-content.open { display: block; }
.group-title {
  font-family: var(--font-display); font-style: italic;
  color: var(--gold); font-size: 1.25rem; margin-bottom: 1rem;
  letter-spacing: 0.05em; margin-top: 1.5rem;
}
.group-title:first-child { margin-top: 0; }
.price-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; padding: 0.75rem 0;
  border-bottom: 1px solid rgba(217,187,112,0.15);
}
.price-row:last-child { border-bottom: none; }
.price-name { color: var(--warm-gray); font-size: 0.875rem; flex: 1; }
.price-val { color: var(--ink); font-family: var(--font-sans); letter-spacing: 0.2em; font-size: 0.875rem; }
.accordion-note { margin-top: 1.5rem; font-size: 0.75rem; color: var(--warm-gray); font-style: italic; line-height: 1.7; }

@media(min-width:768px) {
  .accordion-btn span:first-child { font-size: 1.875rem; }
  .services-header h2 { font-size: 3.75rem; }
  .group-title { font-size: 1.5rem; }
  .price-name { font-size: 0.9375rem; }
}

/* ===== CONTACT ===== */
.contact { background: var(--cream); padding: 6rem 0; }
.contact-grid { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; display: grid; gap: 4rem; }
.contact h2 { font-family: var(--font-display); font-size: 2.25rem; margin-top: 1.5rem; margin-bottom: 2.5rem; line-height: 1.15; }
.contact-info { list-style: none; }
.contact-info li { padding: 0.5rem 0; color: var(--warm-gray); }
.contact-info .icon { color: var(--gold); margin-right: 0.75rem; }
.contact-info a { color: var(--warm-gray); transition: color 0.3s; }
.contact-info a:hover { color: var(--gold); }
.hours-section { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(217,187,112,0.3); }
.hours-list { margin-top: 1rem; }
.hours-list li { display: flex; justify-content: space-between; padding: 0.5rem 0; color: var(--warm-gray); font-size: 0.875rem; }
.social-links { margin-top: 2rem; display: flex; gap: 1rem; }
.social-btn {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  border: 1px solid var(--gold); display: flex;
  align-items: center; justify-content: center;
  color: var(--gold); transition: all 0.3s;
}
.social-btn:hover { background: var(--gold); color: var(--ink); }
.contact-form {
  background: var(--off-white); border: 1px solid rgba(217,187,112,0.3);
  padding: 2rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; gap: 1.25rem; }
.form-label {
  display: block; font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--warm-gray); margin-bottom: 0.5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid rgba(217,187,112,0.4);
  padding: 0.5rem 0; color: var(--ink); font-size: 1rem;
  outline: none; transition: border-color 0.3s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-bottom-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { cursor: pointer; }
.form-note { font-size: 0.75rem; color: var(--warm-gray); font-style: italic; text-align: center; margin-top: 1rem; }
.form-success { text-align: center; padding: 3rem 0; }
.form-success h3 { font-family: var(--font-display); font-size: 1.875rem; margin: 1rem 0 0.5rem; }
.form-success p { color: var(--warm-gray); font-size: 0.875rem; }
/* Hidden honeypot */
.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

@media(min-width:768px) {
  .contact-form { padding: 2.5rem; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .contact h2 { font-size: 3rem; }
}
@media(min-width:1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

/* ===== BRANDS ===== */
.brands {
  background: var(--cream); border-top: 1px solid rgba(217,187,112,0.3);
  padding: 3.5rem 0; overflow: hidden;
}
.brands-track { position: relative; width: 100%; overflow: hidden; margin-top: 2.5rem; }
.brands-inner {
  display: flex; width: max-content; align-items: center; gap: 4rem;
}
.brands-inner img { height: 3.5rem; width: auto; object-fit: contain; flex-shrink: 0; mix-blend-mode: multiply; }
@media(min-width:768px) { .brands-inner img { height: 4rem; } }

/* ===== FOOTER ===== */
.footer { background: var(--ink); color: rgba(249,249,249,0.8); padding: 5rem 0 2rem; position: relative; }
.footer-social-top { position: absolute; top: 2rem; right: 2rem; display: flex; gap: 0.75rem; }
.footer-social-top a { color: var(--gold); transition: color 0.3s; }
.footer-social-top a:hover { color: var(--gold-light); }
.footer-grid { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; display: grid; gap: 3rem; }
.footer-brand p.tagline { font-family: var(--font-display); font-style: italic; color: var(--gold); margin-top: 1rem; }
.footer-brand p.desc { margin-top: 1.25rem; font-size: 0.875rem; line-height: 1.7; color: rgba(249,249,249,0.6); }
.footer-logo { height: 5.5rem; width: auto; object-fit: contain; }
.footer h4 { color: var(--gold); font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 1.25rem; font-family: var(--font-sans); font-weight: 500; }
.footer ul { list-style: none; }
.footer ul li { padding: 0.25rem 0; font-size: 0.875rem; }
.footer ul li a { transition: color 0.3s; }
.footer ul li a:hover { color: var(--gold); }
.footer-contact li { color: rgba(249,249,249,0.7); word-break: break-all; }
.footer-contact a { color: rgba(249,249,249,0.7); }
.footer-contact a:hover { color: var(--gold); }
.footer-hours li { color: rgba(249,249,249,0.7); }
.footer-bottom {
  max-width: 80rem; margin: 4rem auto 0; padding: 1.5rem;
  border-top: 1px solid rgba(217,187,112,0.3);
  text-align: center; font-size: 0.75rem; color: rgba(249,249,249,0.5); letter-spacing: 0.2em;
}
@media(min-width:768px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } .footer-grid { padding: 0 2.5rem; } }

/* ===== WHATSAPP BUBBLE ===== */
.whatsapp-bubble {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: background 0.3s;
}
.whatsapp-bubble:hover { background: var(--gold-light); }

/* ===== SECTION LABEL (centered) ===== */
.section-label { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.section-label .gold-rule { margin: 0 auto; }
