/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-dark: #1a1a1a;
  --color-gold: #c8a96e;
  --color-gold-light: #e8d5a3;
  --color-bg: #faf8f5;
  --color-card: #ffffff;
  --color-section-alt: #f5f0e8;
  --color-text: #2d2d2d;
  --color-text-muted: #6b6b6b;
  --color-border: #e0d8cc;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-width: 1200px;
  --section-padding: 100px 0;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --radius: 12px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--color-bg); color: var(--color-text); line-height: 1.7; font-size: 16px; }

/* Container */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }
@media (max-width: 480px) { .container { padding: 0 16px; } }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.25; color: var(--color-dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--color-text-muted); line-height: 1.8; }
strong { color: var(--color-text); }

/* Section base */
section { padding: var(--section-padding); }
.section--alt { background: var(--color-section-alt); }
.section--dark { background: var(--color-dark); color: #fff; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.75); }

.section-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 12px; display: block; }
.section-headline { margin-bottom: 16px; }
.section-subheadline { font-size: 1.1rem; color: var(--color-text-muted); max-width: 600px; margin-bottom: 48px; }
.section-center { text-align: center; }
.section-center .section-subheadline { margin-left: auto; margin-right: auto; }

/* Gold divider */
.gold-divider { width: 60px; height: 3px; background: var(--color-gold); margin: 24px 0; }
.gold-divider--center { margin: 24px auto; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 4px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; text-decoration: none; cursor: pointer; transition: var(--transition); border: 2px solid transparent; letter-spacing: 0.03em; }
.btn--primary { background: var(--color-gold); color: var(--color-dark); border-color: var(--color-gold); }
.btn--primary:hover { background: #b8954f; border-color: #b8954f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,169,110,0.35); }
.btn--outline { background: transparent; color: var(--color-dark); border-color: var(--color-dark); }
.btn--outline:hover { background: var(--color-dark); color: #fff; }
.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn--whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.btn--whatsapp:hover { background: #1da851; border-color: #1da851; }
.btn--sm { padding: 10px 24px; font-size: 0.875rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* Cards */
.card { background: var(--color-card); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; transition: var(--transition); border: 1px solid var(--color-border); }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card__body { padding: 32px; }
.card__icon { width: 52px; height: 52px; background: var(--color-section-alt); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.5rem; }

/* Image placeholder */
.img-placeholder { background: linear-gradient(135deg, #e8d5a3 0%, #d4b896 40%, #c8a96e 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.img-placeholder::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.img-placeholder__icon { font-size: 3rem; opacity: 0.5; position: relative; z-index: 1; }
.img-placeholder__label { position: absolute; bottom: 16px; left: 0; right: 0; text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.7); font-family: var(--font-body); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(40px) saturate(2);
  -webkit-backdrop-filter: blur(40px) saturate(2);
  border-bottom: 1px solid rgba(200, 169, 110, 0.22);
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
/* Gold accent line top */
.navbar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold) 30%, var(--color-gold-light) 50%, var(--color-gold) 70%, transparent 100%);
  opacity: 0.8;
  z-index: 1;
}
/* Subtle bottom glow */
.navbar::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,110,0.3), transparent);
}
.navbar.scrolled {
  background: rgba(250, 248, 245, 0.99);
  box-shadow: 0 2px 40px rgba(0,0,0,0.08), 0 1px 0 rgba(200,169,110,0.15);
  border-bottom-color: rgba(200, 169, 110, 0.35);
}
.navbar.scrolled .navbar__inner { height: 70px; }

/* Grid layout: logo | links centered | cta */
.navbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 92px;
  transition: height 0.4s ease;
  gap: 24px;
}
.navbar__logo { grid-column: 1; }
.navbar__links { grid-column: 2; justify-content: center; }
.navbar__cta { grid-column: 3; }
.navbar__hamburger { grid-column: 3; }

/* Logo */
.navbar__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; transition: opacity 0.3s ease; }
.navbar__logo-img { height: 54px; width: auto; object-fit: contain; transition: height 0.35s ease, transform 0.3s ease; }
.navbar.scrolled .navbar__logo-img { height: 40px; }
.navbar__logo-text { font-family: var(--font-heading); font-size: 1.55rem; font-weight: 700; color: var(--color-dark); line-height: 1; letter-spacing: 0.01em; white-space: nowrap; transition: font-size 0.35s ease; }
.navbar__logo-text em { color: var(--color-gold); font-style: normal; }
.navbar__logo-text span { color: var(--color-gold); font-style: normal; }
.navbar.scrolled .navbar__logo-text { font-size: 1.2rem; }
.navbar__logo:hover { opacity: 0.85; }
.navbar__logo:hover .navbar__logo-img { transform: scale(1.04); }

/* Nav links — truly premium */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar__links li { position: relative; }
.navbar__links a {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  color: #777;
  text-decoration: none;
  padding: 10px 18px;
  position: relative;
  letter-spacing: 0.05em;
  transition: color 0.25s ease;
  white-space: nowrap;
}

/* Gold dash — expands from center on hover */
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover */
.navbar__links a:hover { color: var(--color-dark); }
.navbar__links a:hover::after { left: 18px; right: 18px; }

/* Active — you are here */
.navbar__links a.active {
  color: var(--color-gold);
  font-weight: 700;
  font-size: 1.08rem;
}
.navbar__links a.active::after {
  left: 18px;
  right: 18px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
  box-shadow: 0 2px 10px rgba(200,169,110,0.55);
}

/* CTA button in navbar */
.navbar__cta { font-size: 0.85rem; padding: 11px 26px; border-radius: 4px; letter-spacing: 0.07em; font-weight: 600; white-space: nowrap; }

.navbar__hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 8px; background: none; border: none; z-index: 1001; flex-shrink: 0; justify-content: center; align-items: center; }
.navbar__hamburger span { width: 26px; height: 2px; background: var(--color-dark); transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); border-radius: 2px; }
.navbar__hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--color-gold); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-20px); }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--color-gold); }

.navbar__mobile { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(160deg, #0d0d0d 0%, #1a1208 100%); padding: 96px 32px 40px; display: flex; flex-direction: column; gap: 8px; z-index: 1000; transform: translateX(100%); transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1); visibility: hidden; overflow-y: auto; text-align: center; }
.navbar__mobile.open { transform: translateX(0); visibility: visible; }
.navbar__mobile a { padding: 18px; font-family: var(--font-heading); font-size: 1.6rem; font-weight: 600; color: rgba(255,255,255,0.85); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.07); transition: var(--transition); opacity: 0; transform: translateY(20px); }
.navbar__mobile.open a { opacity: 1; transform: translateY(0); }
.navbar__mobile.open a:nth-child(1) { transition-delay: 0.1s; }
.navbar__mobile.open a:nth-child(2) { transition-delay: 0.15s; }
.navbar__mobile.open a:nth-child(3) { transition-delay: 0.2s; }
.navbar__mobile.open a:nth-child(4) { transition-delay: 0.25s; }
.navbar__mobile.open a:nth-child(5) { transition-delay: 0.3s; }
.navbar__mobile.open a:nth-child(6) { transition-delay: 0.35s; }
.navbar__mobile a:hover { color: var(--color-gold); }
.navbar__close { position: absolute; top: 24px; right: 24px; background: none; border: 1px solid rgba(200,169,110,0.3); color: var(--color-gold); font-size: 1rem; cursor: pointer; padding: 8px 12px; border-radius: 6px; line-height: 1; transition: var(--transition); z-index: 2; }
.navbar__close:hover { background: rgba(200,169,110,0.15); border-color: var(--color-gold); }
.navbar__mobile-brand { display: flex; flex-direction: column; align-items: center; gap: 8px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 8px; opacity: 0; transform: translateY(16px); transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s; }
.navbar__mobile.open .navbar__mobile-brand { opacity: 1; transform: translateY(0); }
.navbar__mobile-logo { height: 68px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.92; }
.navbar__mobile-brand span { font-family: var(--font-heading); font-size: 1.3rem; color: rgba(255,255,255,0.85); letter-spacing: 0.03em; }
.navbar__mobile-brand em { color: var(--color-gold); font-style: normal; }
.navbar__mobile-brand i { color: var(--color-gold-light); font-style: normal; }
.navbar__mobile .btn { margin-top: 32px; font-size: 1rem; padding: 18px 40px; border-radius: 8px; transition-delay: 0.4s !important; display: flex; width: 100%; justify-content: center; align-self: center; }

/* FOOTER */
.footer { background: #0c0c0c; color: rgba(255,255,255,0.7); padding: 80px 0 40px; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(to right, transparent, var(--color-gold), transparent); opacity: 0.5; }

/* Footer Top: Brand (left) + Map (right) */
.footer__top { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: stretch; margin-bottom: 64px; min-height: 320px; }
.footer__brand-block { display: flex; flex-direction: column; }
.footer__brand-name { font-family: var(--font-heading); font-size: 2.2rem; color: #fff; margin-bottom: 14px; font-weight: 700; letter-spacing: 0.01em; }
.footer__brand-name span { color: var(--color-gold); }
.footer__brand-name em { color: var(--color-gold-light); font-style: normal; }
.footer__brand-desc { font-size: 0.92rem; line-height: 1.9; margin-bottom: 24px; color: rgba(255,255,255,0.6); max-width: 400px; }
.footer__social { display: flex; gap: 12px; margin-bottom: auto; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; text-decoration: none; color: rgba(255,255,255,0.85); transition: var(--transition); }

/* Colorful Brand Hover States */
.footer__social a[aria-label="Instagram"] { color: #E1306C; border-color: rgba(225, 48, 108, 0.25); }
.footer__social a[aria-label="Instagram"]:hover { background: #E1306C; color: #fff; border-color: #E1306C; box-shadow: 0 0 15px rgba(225, 48, 108, 0.4); }

.footer__social a[aria-label="Facebook"] { color: #1877F2; border-color: rgba(24, 119, 242, 0.25); }
.footer__social a[aria-label="Facebook"]:hover { background: #1877F2; color: #fff; border-color: #1877F2; box-shadow: 0 0 15px rgba(24, 119, 242, 0.4); }

.footer__social a[aria-label="YouTube"] { color: #FF0000; border-color: rgba(255, 0, 0, 0.25); }
.footer__social a[aria-label="YouTube"]:hover { background: #FF0000; color: #fff; border-color: #FF0000; box-shadow: 0 0 15px rgba(255, 0, 0, 0.4); }

.footer__social a[aria-label="WhatsApp"] { color: #25D366; border-color: rgba(37, 211, 102, 0.25); background: transparent; }
.footer__social a[aria-label="WhatsApp"]:hover { background: #25D366; color: #fff; border-color: #25D366; box-shadow: 0 0 15px rgba(37, 211, 102, 0.4); }
.footer__studio-address { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); }
.footer__address-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-gold); display: block; margin-bottom: 8px; }
.footer__address-value { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; display: block; margin-bottom: 10px; }
.footer__directions-link { font-size: 0.82rem; color: var(--color-gold); text-decoration: none; font-weight: 600; letter-spacing: 0.03em; transition: var(--transition); }
.footer__directions-link:hover { opacity: 0.75; letter-spacing: 0.06em; }
.footer__map-block { border-radius: 12px; overflow: hidden; border: 1px solid rgba(200,169,110,0.2); box-shadow: 0 8px 40px rgba(0,0,0,0.4); }
.footer__map-block iframe { width: 100%; height: 100%; display: block; filter: grayscale(10%) brightness(0.88); min-height: 320px; }

/* Footer Gold Divider */
.footer__gold-rule { width: 100%; height: 1px; background: linear-gradient(to right, transparent, rgba(200,169,110,0.25), transparent); margin: 0 0 56px; }

/* Footer Links Grid — 3 equal columns */
.footer__links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-bottom: 56px; }
.footer__heading { font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid rgba(200,169,110,0.15); }
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 12px; }
.footer__links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.9rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.footer__links a::before { content: ''; width: 0; height: 1px; background: var(--color-gold); transition: var(--transition); }
.footer__links a:hover { color: #fff; }
.footer__links a:hover::before { width: 12px; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 0.88rem; }
.footer__contact-item .icon { color: var(--color-gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer__contact-item a { color: rgba(255,255,255,0.65); text-decoration: none; transition: var(--transition); }
.footer__contact-item a:hover { color: var(--color-gold); }

/* Footer Bottom Bar */
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer__certifications { display: flex; gap: 10px; flex-wrap: wrap; }
.footer__cert-badge { padding: 6px 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 30px; font-size: 0.72rem; color: rgba(255,255,255,0.35); letter-spacing: 0.04em; }

/* ── FLOATING ACTION BUTTONS (WhatsApp + Call) ── */
.fab-group {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 9999;
}
.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.fab:hover {
  transform: scale(1.1);
}
.fab svg { display: block; flex-shrink: 0; }
.fab__label { display: none; }

.fab--whatsapp {
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.fab--whatsapp:hover {
  background: #20c45c;
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

.fab--call {
  background: var(--color-gold);
  box-shadow: 0 4px 20px rgba(200,169,110,0.45);
}
.fab--call:hover {
  background: #b8954f;
  box-shadow: 0 8px 28px rgba(200,169,110,0.55);
}

@media (max-width: 480px) {
  .fab-group { bottom: 20px; right: 16px; gap: 12px; }
  .fab { width: 50px; height: 50px; }
}

/* Media queries consolidated below */

/* TRUST BADGES */
.trust-bar { background: var(--color-dark); padding: 20px 0; }
.trust-bar__inner { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.trust-bar__item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.75); font-size: 0.85rem; font-weight: 500; }
.trust-bar__item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-gold); }

/* STATS GRID */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-card { text-align: center; padding: 40px 24px; }
.stat-card__value { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700; color: var(--color-gold); margin-bottom: 8px; display: block; }
.stat-card__label { font-size: 0.9rem; color: var(--color-text-muted); font-weight: 500; }
.stat-card__icon { font-size: 2rem; margin-bottom: 16px; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: var(--color-card); border-radius: var(--radius); padding: 32px; border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.testimonial-card__stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card__quote { font-size: 0.95rem; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-card__author { font-weight: 600; color: var(--color-dark); font-size: 0.9rem; }
.testimonial-card__detail { font-size: 0.8rem; color: var(--color-gold); font-weight: 500; margin-top: 4px; }

/* PROCESS STEPS */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 40px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(to right, var(--color-gold), var(--color-gold-light)); z-index: 0; }
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.process-step__number { width: 80px; height: 80px; border-radius: 50%; background: var(--color-gold); color: var(--color-dark); font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; box-shadow: 0 8px 24px rgba(200,169,110,0.35); }
.process-step__title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; }
.process-step__desc { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.7; }

/* OFFERINGS GRID */
.offerings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.offering-card { background: var(--color-card); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--color-border); transition: var(--transition); box-shadow: var(--shadow-sm); }
.offering-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.offering-card__image { height: 220px; overflow: hidden; }
.offering-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.offering-card__body { padding: clamp(20px, 4vw, 28px); }
.offering-card__title { font-family: var(--font-heading); font-size: clamp(1.1rem, 2.5vw, 1.25rem); font-weight: 600; margin-bottom: 12px; line-height: 1.4; }
.offering-card__summary { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 20px; }
.offering-card__summary ul { list-style: none; padding: 0; }
.offering-card__summary ul li { padding: 4px 0; padding-left: 20px; position: relative; }
.offering-card__summary ul li::before { content: '•'; color: var(--color-gold); position: absolute; left: 0; font-weight: bold; }
.offering-card__link { font-size: 0.875rem; font-weight: 600; color: var(--color-gold); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.offering-card__link:hover { gap: 10px; }

/* CONCERN CARDS */
.concern-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.concern-card { background: var(--color-card); border-radius: var(--radius); padding: 36px; border-left: 4px solid var(--color-gold); box-shadow: var(--shadow-sm); }
.concern-card__question { font-style: italic; color: var(--color-text-muted); font-size: 1rem; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--color-border); }
.concern-card__answer { color: var(--color-text); font-size: 0.95rem; line-height: 1.8; margin-bottom: 20px; }
.concern-card__proof { font-size: 0.85rem; color: var(--color-gold); font-weight: 600; }
.concern-card__proof p { color: var(--color-gold); }

/* ── FAQ — Premium Design ── */
.faq-section-wrap {
  background: linear-gradient(160deg, #0f0e0b 0%, #1a1610 60%, #0f0e0b 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
/* Ambient gold glow top */
.faq-section-wrap::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(200,169,110,0.12) 0%, transparent 70%);
  pointer-events: none;
}
/* Gold top line */
.faq-section-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), var(--color-gold-light), var(--color-gold), transparent);
  opacity: 0.5;
}

/* Override section labels inside dark faq wrap */
.faq-section-wrap .section-label { color: var(--color-gold-light); }
.faq-section-wrap .section-headline { color: #fff; }
.faq-section-wrap .gold-divider { background: var(--color-gold); }

.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,169,110,0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.faq-item:hover { border-color: rgba(200,169,110,0.35); background: rgba(255,255,255,0.06); }
.faq-item.open {
  border-color: rgba(200,169,110,0.5);
  background: rgba(200,169,110,0.06);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  gap: 20px;
  user-select: none;
  transition: color 0.25s ease;
}
.faq-item.open .faq-item__question { color: var(--color-gold-light); }

/* Plus/minus icon as a styled box */
.faq-item__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(200,169,110,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-gold);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
              background 0.25s ease,
              border-color 0.25s ease;
  line-height: 1;
}
.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--color-gold);
  color: #0f0e0b;
  border-color: var(--color-gold);
}

.faq-item__answer {
  display: none;
  padding: 0 28px 24px 28px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  border-top: 1px solid rgba(200,169,110,0.12);
}
.faq-item.open .faq-item__answer { display: block; }

/* Gold left accent bar on open item answer */
.faq-item.open .faq-item__answer {
  padding-left: 28px;
  border-left: 3px solid var(--color-gold);
  margin-left: 28px;
  margin-right: 28px;
  padding-right: 0;
  padding-bottom: 24px;
  padding-top: 16px;
  border-top: none;
}

/* CTA BLOCK */
.cta-block { background: linear-gradient(135deg, var(--color-dark) 0%, #2d2418 100%); padding: 100px 0; text-align: center; }
.cta-block h2 { color: #fff; margin-bottom: 16px; }
.cta-block p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 40px; }
.cta-block .btn-group { justify-content: center; }

/* CONTACT PREVIEW */
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item__icon { width: 44px; height: 44px; background: var(--color-section-alt); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item__label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-muted); font-weight: 600; margin-bottom: 4px; }
.contact-item__value { font-size: 0.95rem; font-weight: 500; color: var(--color-dark); }
.contact-item__value a { color: var(--color-dark); text-decoration: none; }
.contact-item__value a:hover { color: var(--color-gold); }

/* PREMIUM CONTACT CARDS */
.contact-cards-premium { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-card-premium { background: rgba(255,255,255,0.04); border: 1px solid rgba(200,169,110,0.2); border-radius: var(--radius); padding: 32px 24px; text-decoration: none; transition: var(--transition); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.contact-card-premium:hover { background: rgba(200,169,110,0.08); border-color: var(--color-gold); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(200,169,110,0.15); }
.contact-card-premium--whatsapp:hover { background: rgba(37,211,102,0.08); border-color: #25D366; box-shadow: 0 12px 40px rgba(37,211,102,0.15); }
.contact-card-premium__icon { font-size: 2rem; margin-bottom: 4px; }
.contact-card-premium__label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-gold); }
.contact-card-premium__value { font-size: 0.9rem; color: rgba(255,255,255,0.85); font-weight: 500; line-height: 1.4; }
.contact-card-premium__action { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 4px; transition: var(--transition); }
.contact-card-premium:hover .contact-card-premium__action { color: var(--color-gold); }

/* Responsive */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .concern-cards { grid-template-columns: 1fr; }
  .contact-cards-premium { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__links-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
  :root { --section-padding: 64px 0; }
  .navbar__links, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; margin-right: 0; }
  .navbar__inner { grid-template-columns: auto 1fr 48px; gap: 12px; padding-right: 4px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .offerings-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust-bar__inner { gap: 24px; }

  /* Footer responsive — centered */
  .footer { padding: 60px 0 32px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; min-height: auto; }
  .footer__brand-block { align-items: center; text-align: center; }
  .footer__brand-desc { max-width: 100%; text-align: center; }
  .footer__social { justify-content: center; }
  .footer__studio-address { text-align: center; }
  .footer__map-block iframe { min-height: 240px; }
  .footer__gold-rule { margin-bottom: 40px; }
  .footer__links-grid { grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; text-align: center; }
  .footer__heading { text-align: center; }
  .footer__links a { justify-content: center; }
  .footer__links a::before { display: none; }
  .footer__contact-item { justify-content: center; text-align: center; }
  .footer__bottom { flex-direction: column; text-align: center; align-items: center; }
  .footer__certifications { justify-content: center; }

  .contact-cards-premium { grid-template-columns: repeat(2, 1fr); }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards-premium { grid-template-columns: 1fr; }
  .footer__links-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__top { gap: 32px; }
  .footer__links-grid > div { display: flex; flex-direction: column; align-items: center; }
}
