/* ═══════════════════════════════════════════
   BUTEMBO PRECIOUS METALS — GLOBAL STYLES
   ═══════════════════════════════════════════ */

:root {
  --navy:   #0D0D2B;
  --navyL:  #14142A;
  --card:   #17173A;
  --card2:  #1E1E48;
  --gold:   #C9952A;
  --gold2:  #E8B84B;
  --gold3:  #F5D070;
  --cream:  #F5EDD6;
  --gray:   rgba(245,237,214,.55);
  --gray2:  rgba(245,237,214,.35);
  --green:  #25D366;
  --radius: .75rem;
  --trans:  .22s ease;
}

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

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

body {
  background: var(--navy);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', 'Georgia', serif; font-weight: 700; line-height: 1.15; }
.serif { font-family: 'Cormorant Garamond', Georgia, serif; }

.text-gold      { color: var(--gold); }
.text-gold2     { color: var(--gold2); }
.text-cream     { color: var(--cream); }
.text-gray      { color: var(--gray); }
.text-gray2     { color: var(--gray2); }

.grad-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2) 50%, var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  background-size: 200%;
  animation: shimmer-text 4s linear infinite;
}
@keyframes shimmer-text { 0%{background-position:0%} 100%{background-position:200%} }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .9375rem;
  padding: .8rem 2rem; border-radius: .5rem; cursor: pointer;
  border: none; text-decoration: none; transition: var(--trans);
  letter-spacing: .02em; white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,149,42,.35); filter: brightness(1.08); }

.btn-outline {
  background: transparent; border: 2px solid var(--gold);
  color: var(--gold2);
}
.btn-outline:hover { background: rgba(201,149,42,.1); transform: translateY(-2px); }

.btn-wa {
  background: var(--green); color: #fff;
}
.btn-wa:hover { background: #20ba5a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.3); }

.btn-sm { padding: .55rem 1.25rem; font-size: .85rem; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,13,43,.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,149,42,.2);
  transition: var(--trans);
}
#navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.4); border-bottom-color: rgba(201,149,42,.35); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.nav-logo-text-main { font-family: 'Cormorant Garamond',serif; font-weight: 700; color: var(--gold2); font-size: 1.1rem; letter-spacing: .12em; line-height:1; }
.nav-logo-text-sub  { font-size: .6rem; color: var(--gray); letter-spacing: .25em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a {
  color: rgba(245,237,214,.7); font-size: .875rem; font-weight: 500;
  text-decoration: none; position: relative; transition: color var(--trans);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gold2); transition: width var(--trans);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold2); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-menu-btn {
  display: none; background: none; border: none; color: var(--cream);
  cursor: pointer; padding: .4rem;
}
.mobile-menu {
  display: none; background: var(--navyL); border-top: 1px solid rgba(201,149,42,.15);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; color: rgba(245,237,214,.75); text-decoration: none; padding: .65rem 0; border-bottom: 1px solid rgba(201,149,42,.08); font-size: .9rem; transition: color var(--trans); }
.mobile-menu a:hover { color: var(--gold2); }

/* ── TRUST STRIP ── */
.trust-strip {
  position: fixed; top: 64px; left: 0; right: 0; z-index: 90;
  background: rgba(201,149,42,.07); border-bottom: 1px solid rgba(201,149,42,.2);
  backdrop-filter: blur(6px);
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; padding: .4rem 1.5rem; flex-wrap: wrap;
}
.trust-badge { color: rgba(201,149,42,.85); font-size: .68rem; font-weight: 600; letter-spacing: .08em; white-space: nowrap; }
@media(max-width:768px){ .trust-strip { display: none; } }

/* ── PAGE OFFSET ── */
.page-offset { padding-top: 7.5rem; }
@media(max-width:768px){ .page-offset { padding-top: 4.5rem; } }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding-top: 7.5rem;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,149,42,.14) 0%, transparent 65%),
              linear-gradient(160deg, #050510 0%, var(--navy) 50%, #1a0d00 100%);
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-particles span {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,149,42,.6), transparent 70%);
  animation: float-particle 8s ease-in-out infinite;
}
@keyframes float-particle { 0%,100%{transform:translateY(0) scale(1); opacity:.4} 50%{transform:translateY(-30px) scale(1.1); opacity:.7} }

.hero-content { position: relative; z-index: 10; text-align: center; max-width: 780px; padding: 2rem 1.5rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,149,42,.1); border: 1px solid rgba(201,149,42,.3);
  color: var(--gold2); font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .45rem 1.1rem; border-radius: 2rem; margin-bottom: 2rem;
}
.hero-badge .pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }

.hero h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); color: #fff; margin-bottom: 1.25rem; }
.hero h1 span { display: block; }
.hero p { font-size: 1.1rem; color: var(--gray); line-height: 1.75; max-width: 560px; margin: 0 auto 2.5rem; }

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }

.ticker-pill {
  display: inline-flex; align-items: center; gap: .75rem;
  background: rgba(23,23,58,.85); border: 1px solid rgba(201,149,42,.3);
  padding: .65rem 1.4rem; border-radius: .75rem; backdrop-filter: blur(8px);
}
.ticker-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: pulse 1.5s ease infinite; }
.ticker-label { color: var(--gray2); font-size: .8rem; }
.ticker-val { color: var(--gold2); font-weight: 700; font-size: 1.15rem; font-family: 'DM Mono', monospace; }
.ticker-unit { color: var(--gray2); font-size: .78rem; }

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 10; animation: bounce-down 2s ease infinite;
}
.scroll-hint-inner { width: 24px; height: 40px; border: 2px solid rgba(201,149,42,.35); border-radius: 12px; display: flex; align-items: flex-start; justify-content: center; padding: 4px; }
.scroll-hint-dot { width: 4px; height: 8px; background: var(--gold); border-radius: 2px; animation: scroll-dot 2s ease infinite; }
@keyframes bounce-down { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
@keyframes scroll-dot { 0%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(14px)} }

/* ── SECTION TITLES ── */
.section-tag {
  display: inline-block; color: var(--gold); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em; margin-bottom: .6rem;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.75rem); color: #fff; margin-bottom: .8rem; }
.section-sub { color: var(--gray); line-height: 1.75; max-width: 560px; }
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head .section-sub { margin: 0 auto; }

.gold-rule { width: 48px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold2)); border-radius: 2px; margin: .75rem 0 1.25rem; }
.section-head .gold-rule { margin: .75rem auto 1.25rem; }

/* ── CARDS ── */
.card {
  background: var(--card); border: 1px solid rgba(201,149,42,.18);
  border-radius: var(--radius); padding: 1.75rem;
  transition: all var(--trans);
}
.card:hover { border-color: rgba(201,149,42,.4); box-shadow: 0 0 32px rgba(201,149,42,.08); transform: translateY(-4px); }

.card-accent {
  background: var(--card);
  border: 1px solid rgba(201,149,42,.2);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.card-accent::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: linear-gradient(180deg, var(--gold), var(--gold2));
}
.card-accent-inner { padding: 1.5rem 1.5rem 1.5rem 1.9rem; }

/* ── SPEC GRID ── */
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.spec-item {
  background: rgba(255,255,255,.03); border: 1px solid rgba(201,149,42,.12);
  border-radius: .4rem; padding: .6rem .85rem;
}
.spec-label { font-size: .6rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gray2); display: block; margin-bottom: 2px; }
.spec-val { font-size: .875rem; font-weight: 600; color: var(--cream); }
.spec-val.highlight { color: var(--gold2); font-size: 1rem; font-weight: 700; }

/* ── PRODUCT CARD ── */
.product-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(201,149,42,.18);
  transition: all .35s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(201,149,42,.14); border-color: rgba(201,149,42,.4); }
.product-img {
  height: 220px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #2a1500, var(--card));
  display: flex; align-items: center; justify-content: center;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; opacity: .8; position: absolute; inset: 0; }
.product-img-fallback { position: relative; z-index: 1; text-align: center; }
.product-img-fallback .icon { font-size: 3.5rem; display: block; }
.product-img-fallback span { font-size: .65rem; color: rgba(201,149,42,.5); text-transform: uppercase; letter-spacing: .12em; }
.product-badge {
  position: absolute; top: .8rem; font-size: .7rem; font-weight: 700;
  padding: .3rem .75rem; border-radius: 2rem;
}
.product-badge-karat { right: .8rem; background: var(--gold); color: var(--navy); }
.product-badge-purity { left: .8rem; background: rgba(23,23,58,.9); border: 1px solid rgba(201,149,42,.5); color: var(--gold2); }
.product-body { background: var(--card); padding: 1.5rem; }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; position: relative; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--gold); background: rgba(201,149,42,.08);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond',serif; font-size: 1.4rem; font-weight: 700; color: var(--gold2);
  margin: 0 auto 1.25rem;
}

/* ── TRUST CARDS ── */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.trust-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }

/* ── STATS ── */
.stats-bar { background: var(--navyL); border-top: 1px solid rgba(201,149,42,.15); border-bottom: 1px solid rgba(201,149,42,.15); padding: 2.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
@media(max-width:640px){ .stats-grid { grid-template-columns: repeat(2,1fr); gap: 1.5rem; } }
.stat-val { font-family: 'Cormorant Garamond',serif; font-size: 2.6rem; font-weight: 700; color: var(--gold2); line-height: 1; }
.stat-label { font-size: .65rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gray2); margin-top: .3rem; }

/* ── FORM ── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .8rem; font-weight: 600; color: var(--gray); margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .08em; }
.form-input {
  width: 100%; background: var(--card2); border: 1px solid rgba(201,149,42,.22);
  border-radius: .5rem; color: var(--cream); padding: .8rem 1rem;
  font-size: .9375rem; font-family: 'DM Sans',sans-serif; transition: var(--trans);
}
.form-input::placeholder { color: rgba(245,237,214,.25); }
.form-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,149,42,.12); }
textarea.form-input { resize: vertical; min-height: 120px; }
select.form-input { cursor: pointer; }

.form-success {
  background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.35);
  border-radius: .6rem; padding: 1rem 1.25rem; margin-bottom: 1.25rem; display: none;
}
.form-success p { color: #4ade80; font-weight: 600; }
.form-success span { color: var(--gray); font-size: .875rem; }

/* ── CALCULATOR ── */
.calc-box { background: var(--card); border: 1px solid rgba(201,149,42,.2); border-radius: 1rem; padding: 2rem; }
.calc-result { background: var(--navyL); border: 1px solid rgba(201,149,42,.2); border-radius: .75rem; padding: 1.5rem; margin-top: 1.5rem; display: none; }
.calc-total { font-family: 'Cormorant Garamond',serif; font-size: 2.2rem; font-weight: 700; color: var(--gold2); text-align: center; }
.calc-breakdown-row { display: flex; justify-content: space-between; align-items: center; padding: .4rem 0; border-bottom: 1px solid rgba(201,149,42,.08); font-size: .875rem; }
.calc-breakdown-row:last-child { border-bottom: none; }
.calc-breakdown-row .row-label { color: var(--gray); }
.calc-breakdown-row .row-val { color: var(--cream); font-weight: 500; }
.calc-note { font-size: .75rem; color: var(--gray2); margin-top: .75rem; line-height: 1.6; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid rgba(201,149,42,.12); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.2rem 0; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; color: var(--cream); font-size: .9375rem; font-weight: 600;
  font-family: 'DM Sans',sans-serif; transition: color var(--trans); gap: 1rem;
}
.faq-q:hover { color: var(--gold2); }
.faq-chevron { flex-shrink: 0; width: 18px; height: 18px; color: var(--gold); transition: transform var(--trans); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open .faq-q { color: var(--gold2); }
.faq-a { display: none; padding-bottom: 1.2rem; color: var(--gray); font-size: .9rem; line-height: 1.8; }
.faq-item.open .faq-a { display: block; }

/* ── CRED CARD ── */
.cred-card {
  background: var(--card); border: 1px solid rgba(201,149,42,.2);
  border-radius: var(--radius); padding: 1.75rem; display: flex; gap: 1.25rem; align-items: flex-start;
  transition: all var(--trans);
}
.cred-card:hover { border-color: rgba(201,149,42,.45); box-shadow: 0 0 28px rgba(201,149,42,.08); }
.cred-icon {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: .6rem;
  background: rgba(201,149,42,.08); border: 1px solid rgba(201,149,42,.25);
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.cred-rows { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: .75rem; }
.cred-row { font-size: .8rem; }
.cred-row .cl { color: var(--gray2); }
.cred-row .cv { color: var(--cream); font-weight: 500; }
.cred-row .cv.active { color: #4ade80; font-weight: 700; }
.cred-row .cv.bold { color: var(--gold2); font-weight: 700; }

/* ── CONTACT ── */
.contact-channel {
  display: flex; align-items: center; gap: 1rem;
  background: var(--card); border: 1px solid rgba(201,149,42,.15);
  border-radius: var(--radius); padding: 1.1rem 1.25rem; text-decoration: none;
  transition: all var(--trans); margin-bottom: .75rem;
}
.contact-channel:hover { border-color: rgba(201,149,42,.45); transform: translateX(4px); }
.contact-channel:hover.wa-channel { border-color: rgba(37,211,102,.45); }
.channel-icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.channel-meta .label { font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gray2); }
.channel-meta .value { font-weight: 600; color: var(--cream); font-size: .9375rem; transition: color var(--trans); }
.contact-channel:hover .value { color: var(--gold2); }

/* ── MAP ── */
.map-wrap {
  border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(201,149,42,.2);
  height: 220px; background: var(--card); display: flex; align-items: center; justify-content: center;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: invert(90%) hue-rotate(180deg); }

/* ── PAGE HERO ── */
.page-hero {
  padding: 7.5rem 0 4rem; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #040410 0%, var(--navy) 60%, #0e0800 100%);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(201,149,42,.1), transparent 65%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }

/* ── FOOTER ── */
footer {
  background: var(--navyL); border-top: 1px solid rgba(201,149,42,.15);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
@media(max-width:768px){ .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-logo-text { font-family: 'Cormorant Garamond',serif; font-weight: 700; color: var(--gold2); font-size: 1.2rem; letter-spacing: .1em; }
.footer-desc { color: var(--gray); font-size: .875rem; line-height: 1.75; margin-top: .6rem; max-width: 340px; }
.footer-certs { display: flex; gap: .5rem; margin-top: 1rem; flex-wrap: wrap; }
.footer-cert { background: var(--card); border: 1px solid rgba(201,149,42,.25); color: var(--gold2); font-size: .65rem; font-weight: 600; padding: .25rem .75rem; border-radius: .25rem; letter-spacing: .06em; }
.footer-col-title { color: var(--gold); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: var(--gray); font-size: .875rem; text-decoration: none; transition: color var(--trans); }
.footer-links a:hover { color: var(--gold2); }
.footer-contact-item { display: flex; gap: .6rem; margin-bottom: .75rem; font-size: .875rem; color: var(--gray); }
.footer-contact-item .icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--gray); text-decoration: none; transition: color var(--trans); }
.footer-contact-item a:hover { color: var(--gold2); }
.footer-bottom { border-top: 1px solid rgba(201,149,42,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; font-size: .78rem; color: var(--gray2); }
.footer-bottom a { color: rgba(201,149,42,.5); text-decoration: none; transition: color var(--trans); }
.footer-bottom a:hover { color: var(--gold2); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
  transition: all var(--trans); text-decoration: none;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,.45); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── DIVIDER ── */
.section-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(201,149,42,.25), transparent); margin: 0; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
@media(max-width:640px){ .gallery-grid { grid-template-columns: repeat(2,1fr); } }
.gallery-item {
  border-radius: .6rem; overflow: hidden; border: 1px solid rgba(201,149,42,.12);
  background: var(--card); aspect-ratio: 4/3; position: relative;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: .5rem;
  transition: all var(--trans);
}
.gallery-item:hover { border-color: rgba(201,149,42,.4); }
.gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .8; }
.gallery-item .placeholder { position: relative; z-index: 1; text-align: center; }

/* ── TESTIMONIAL ── */
.testimonial-card { background: var(--card); border: 1px solid rgba(201,149,42,.15); border-radius: var(--radius); padding: 1.75rem; position: relative; }
.testimonial-card::before { content: '\201C'; font-family: 'Cormorant Garamond',serif; font-size: 5rem; color: rgba(201,149,42,.15); position: absolute; top: .5rem; left: 1rem; line-height: 1; }
.testimonial-meta { display: flex; align-items: center; gap: .75rem; border-top: 1px solid rgba(201,149,42,.1); padding-top: 1rem; margin-top: 1rem; }
.testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; background: rgba(201,149,42,.12); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }

/* ── BLOG ── */
.blog-card { background: var(--card); border: 1px solid rgba(201,149,42,.15); border-radius: var(--radius); overflow: hidden; transition: all var(--trans); text-decoration: none; display: block; }
.blog-card:hover { border-color: rgba(201,149,42,.4); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.blog-img { height: 180px; background: linear-gradient(135deg, #1a1000, var(--card)); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-body { padding: 1.25rem; }
.blog-tag { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: .5rem; }
.blog-title { font-size: 1.05rem; color: var(--cream); font-weight: 600; margin-bottom: .6rem; line-height: 1.4; font-family: 'DM Sans',sans-serif; }
.blog-excerpt { font-size: .82rem; color: var(--gray); line-height: 1.7; }
.blog-more { color: var(--gold2); font-size: .82rem; font-weight: 600; margin-top: .75rem; display: inline-block; }

/* ── 404 ── */
.not-found { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.not-found-num { font-family: 'Cormorant Garamond',serif; font-size: clamp(6rem,20vw,12rem); font-weight: 700; color: rgba(201,149,42,.15); line-height: 1; }

/* ── ANIMATIONS ── */
[data-aos] { opacity: 0; transition: opacity .7s ease, transform .7s ease; }
[data-aos="fade-up"] { transform: translateY(28px); }
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="fade-left"] { transform: translateX(28px); }
[data-aos="fade-down"] { transform: translateY(-20px); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .nav-links, .nav-cta { display: none; }
  .nav-menu-btn { display: block; }
}
@media(max-width:640px){
  .section { padding: 4rem 0; }
  .hero { padding-top: 5rem; }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::selection { background: rgba(201,149,42,.3); color: var(--cream); }

/* ── TWO-COL GRID ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media(max-width:900px){ .grid-2 { grid-template-columns: 1fr; } }
@media(max-width:768px){ .grid-3 { grid-template-columns: 1fr 1fr; } }
@media(max-width:500px){ .grid-3 { grid-template-columns: 1fr; } }
