/* ============================================================
   style.css  —  All visual design & layout
   You don't need to edit this unless changing colors/fonts.

   QUICK COLOR CHANGES (edit these at the top):
   --gold      : main gold color
   --bg        : page background
   --pink      : secondary accent
   --lavender  : secondary accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Great+Vibes&family=Pinyon+Script&display=swap');

:root {
  --bg:           #06080f;
  --bg2:          #0b0e1a;
  --gold:         #C9A84C;
  --gold-light:   #e8c96e;
  --gold-dark:    #a07830;
  --pink:         #7ea8e8;
  --lavender:     #5b7ec9;
  --glass:        rgba(255,255,255,0.04);
  --glass-border: rgba(91,126,201,0.22);
  --text:         #eef1fa;
  --text-muted:   rgba(238,241,250,0.55);
  --card-bg:      rgba(11,14,26,0.75);
  --blue:         #2a4fa0;
  --blue-light:   #4a72d4;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow-x: clip;
  line-height: 1.6;
}
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 10px; }

/* ── NAVIGATION ───────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  padding: 12px 5%;
  background: rgba(10,8,16,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}
.nav-logo          { display: flex; flex-direction: column; align-items: center; gap: 2px; text-decoration: none; }
.nav-tagline       { font-size: 8px; font-weight: 400; letter-spacing: 0.12em; color: var(--gold); opacity: 0.7; font-style: italic; line-height: 1; text-align: center; text-transform: lowercase; }
.logo-box          {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-weight: 700; font-size: 15px; color: #0A0810;
}
.logo-text         { display: flex; flex-direction: column; line-height: 1.2; }
.logo-brand        { font-family: 'Cinzel', serif; font-weight: 600; font-size: 17px; color: var(--text); }
.logo-sub          { font-size: 9px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }
.nav-links         { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a       { text-decoration: none; color: var(--text-muted); font-size: 14px; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--gold); }

/* ── BUTTONS ──────────────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0A0810; border: none; padding: 10px 22px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 14px;
  cursor: pointer; transition: all 0.3s; white-space: nowrap;
  text-decoration: none; display: inline-block;
}
.btn-gold:hover    { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.35); }
.btn-outline {
  background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 22px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 14px;
  cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff; border: none;
  padding: 14px 32px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.3); }

/* ── HAMBURGER ────────────────────────────────── */
.hamburger        { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span   { display: block; width: 24px; height: 2px; background: var(--text); transition: all 0.3s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ──────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(10,8,16,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open    { display: flex; }
.mobile-menu a       { color: var(--text); text-decoration: none; font-family: 'Cinzel', serif; font-size: 22px; font-weight: 500; transition: color 0.3s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close        { position: absolute; top: 24px; right: 5%; font-size: 28px; cursor: pointer; color: var(--text-muted); }

/* ── FLOATING ORB BACKGROUNDS ─────────────────── */
.orbs             { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.orb              { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.18; animation: float 10s ease-in-out infinite; }
.orb-gold         { width: 500px; height: 500px; background: var(--gold);    top: -100px; right: -100px; animation-delay: 0s; }
.orb-pink         { width: 400px; height: 400px; background: var(--pink);    bottom: 0;   left: -100px;  animation-delay: 3s; }
.orb-violet       { width: 350px; height: 350px; background: var(--lavender); top: 30%;   left: 30%;     animation-delay: 6s; }
@keyframes float  { 0%,100%{ transform: translateY(0) scale(1); } 50%{ transform: translateY(-30px) scale(1.05); } }

/* ── SECTION COMMONS ──────────────────────────── */
section           { padding: 90px 5%; }
.section-label    { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-heading  { font-family: 'Cinzel', serif; font-size: clamp(26px,4vw,48px); font-weight: 700; margin-bottom: 16px; }
.grad-text        {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-sub      { color: var(--text-muted); max-width: 600px; font-size: 15px; line-height: 1.8; }

/* ── FADE-IN SCROLL ANIMATION ─────────────────── */
.fade-in         { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── HERO ─────────────────────────────────────── */
#hero            { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; padding: 120px 8% 80px; text-align: center; overflow: visible; }
.hero-inner      { position: relative; z-index: 1; max-width: 960px; margin: 0 auto; overflow: visible; }
.badge           {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--glass-border); border-radius: 50px;
  padding: 8px 18px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); background: rgba(201,168,76,0.07); margin-bottom: 32px; backdrop-filter: blur(10px);
}
.badge::before   { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }
.hero-title      { font-family: 'Pinyon Script', cursive; font-size: clamp(62px, 10vw, 120px); font-weight: 400; line-height: 1.6; margin-bottom: 4px; overflow: visible; padding: 10px 5% 4px; }
.hero-title .hero-gem  { color: #ffffff; }
.hero-title .gold-grad {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-tagline    { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(18px,2.5vw,26px); color: var(--text-muted); margin-bottom: 20px; font-weight: 300; }
.morph-wrap      { font-size: clamp(16px,2vw,20px); color: var(--text-muted); margin-bottom: 16px; }
.morph-word      { display: inline-block; color: var(--gold); font-weight: 600; animation: morphWord 2s ease-in-out infinite; min-width: 110px; text-align: left; }
@keyframes morphWord { 0%,15%{opacity:0;transform:translateY(8px)} 25%,75%{opacity:1;transform:translateY(0)} 85%,100%{opacity:0;transform:translateY(-8px)} }
.hero-desc       { color: var(--text-muted); font-size: 15px; max-width: 580px; margin: 0 auto 36px; line-height: 1.8; }
.hero-btns       { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── DESIGNS STRIP ────────────────────────────── */
#designs         { background: linear-gradient(180deg, transparent, rgba(201,168,76,0.04), transparent); text-align: center; }
.designs-strip-grid { display: flex; gap: 20px; padding: 30px 0 10px; justify-content: center; flex-wrap: wrap; }
.design-chip     { padding: 14px 28px; border-radius: 100px; border: 1px solid var(--glass-border); background: var(--glass); backdrop-filter: blur(10px); font-size: 13px; color: var(--text-muted); transition: all 0.3s; cursor: default; white-space: nowrap; }
.design-chip:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-4px); }

/* ── ABOUT ────────────────────────────────────── */
.about-grid      { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1100px; margin: 0 auto; }
.about-visual    { position: relative; background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(184,160,232,0.06)); border: 1px solid var(--glass-border); border-radius: 24px; padding: 50px 40px; text-align: center; backdrop-filter: blur(10px); overflow: hidden; }
.about-visual::before { content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; background: var(--gold); border-radius: 50%; filter: blur(80px); opacity: 0.12; }
.about-quote     { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(20px,2.5vw,28px); line-height: 1.5; color: var(--text); margin-bottom: 32px; position: relative; z-index: 1; }
.about-quote::before { content: '"'; font-size: 80px; color: var(--gold); opacity: 0.3; font-family: 'Cinzel',serif; line-height: 0.5; display: block; margin-bottom: 12px; }
.about-badge     { display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05)); border: 1px solid var(--gold); border-radius: 50px; font-size: 13px; color: var(--gold); position: relative; z-index: 1; }
.about-content p { color: var(--text-muted); font-size: 15px; line-height: 1.85; margin-bottom: 18px; }
.skill-pills     { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill            { padding: 8px 18px; border-radius: 50px; font-size: 12px; font-weight: 500; border: 1px solid var(--glass-border); background: rgba(201,168,76,0.06); color: var(--gold); letter-spacing: 0.5px; }

/* ── WHY US CARDS ─────────────────────────────── */
#why             { background: linear-gradient(180deg, transparent, rgba(184,160,232,0.03), transparent); }
.why-grid        { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1100px; margin: 48px auto 0; }
.glass-card      { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 20px; padding: 32px 28px; backdrop-filter: blur(15px); transition: all 0.35s; position: relative; overflow: hidden; }
.glass-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.4; }
.glass-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.4); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.card-icon       { font-size: 32px; margin-bottom: 16px; }
.card-title      { font-family: 'Cinzel', serif; font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.card-desc       { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── BANNER ───────────────────────────────────── */
#banner          { margin: 0 5%; border-radius: 28px; padding: 70px 48px; text-align: center; background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(184,160,232,0.08), rgba(201,168,76,0.06)); border: 1px solid var(--glass-border); position: relative; overflow: hidden; }
#banner::before  { content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 400px; height: 400px; background: var(--gold); border-radius: 50%; filter: blur(100px); opacity: 0.08; }
#banner h2       { font-family: 'Cinzel', serif; font-size: clamp(24px,4vw,44px); margin-bottom: 16px; position: relative; }
#banner p        { color: var(--text-muted); max-width: 560px; margin: 0 auto 32px; font-size: 16px; line-height: 1.8; position: relative; }

/* ── PRODUCTS ─────────────────────────────────── */
.tab-pills       { display: flex; flex-wrap: wrap; gap: 10px; margin: 40px 0 32px; }
.tab-pill        { padding: 10px 20px; border-radius: 50px; font-size: 13px; cursor: pointer; border: 1px solid var(--glass-border); background: var(--glass); color: var(--text-muted); transition: all 0.3s; white-space: nowrap; }
.tab-pill.active { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #0A0810; border-color: transparent; font-weight: 600; }
.tab-pill:hover:not(.active) { border-color: var(--gold); color: var(--gold); }
.products-grid   { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 24px; }
.product-card    { background: var(--card-bg); border: 1px solid var(--glass-border); border-radius: 20px; overflow: hidden; transition: all 0.35s; backdrop-filter: blur(15px); }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); border-color: rgba(201,168,76,0.35); }
.product-thumb   { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 52px; position: relative; overflow: hidden; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, var(--card-bg)); }
.product-info    { padding: 18px; }
.product-name    { font-family: 'Cinzel', serif; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.product-desc    { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 6px; }
.product-price   { font-size: 13px; font-weight: 600; color: var(--gold); margin-bottom: 14px; }
.product-price-wrap { display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin-bottom:14px; }
.product-price-new  { font-size:18px; font-weight:700; color:var(--gold); }
.product-price-orig { font-size:13px; color:var(--text-muted); text-decoration:line-through; }
.product-price-badge { font-size:11px; font-weight:700; background:linear-gradient(135deg,#2a4fa0,#4a72d4); color:#fff; padding:2px 8px; border-radius:50px; letter-spacing:0.5px; }
.product-btns    { display: flex; gap: 8px; }
.btn-sm-outline  { flex: 1; padding: 8px; border-radius: 8px; font-size: 12px; font-weight: 500; border: 1px solid rgba(255,255,255,0.18); background: transparent; color: var(--text); cursor: pointer; transition: all 0.3s; }
.btn-sm-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm-outline:disabled { opacity: 0.35; cursor: not-allowed; }
.btn-sm-gold     { flex: 1; padding: 8px; border-radius: 8px; font-size: 12px; font-weight: 600; border: none; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #0A0810; cursor: pointer; transition: all 0.3s; }
.btn-sm-gold:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(201,168,76,0.3); }

/* ── REVIEWS ──────────────────────────────────── */
#reviews         { background: linear-gradient(180deg, transparent, rgba(232,160,180,0.03), transparent); }
.reviews-grid    { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; max-width: 1100px; margin: 48px auto 0; }
.review-card     { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 20px; padding: 28px; backdrop-filter: blur(15px); transition: all 0.35s; }
.review-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.3); }
.stars           { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.review-quote    { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 16px; color: var(--text); line-height: 1.7; margin-bottom: 20px; }
.reviewer        { display: flex; align-items: center; gap: 12px; }
.avatar          { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #0A0810; flex-shrink: 0; }
.reviewer-name   { font-size: 14px; font-weight: 600; color: var(--text); }
.reviewer-event  { font-size: 12px; color: var(--text-muted); }
.reviews-cta     { text-align: center; margin-top: 48px; }

/* ── COMPARISON ───────────────────────────────── */
.compare-wrap    { border: 1px solid var(--glass-border); border-radius: 20px; overflow: hidden; background: var(--glass); backdrop-filter: blur(15px); max-width: 780px; margin: 40px auto 0; overflow-x: auto; }
.compare-table   { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: center; font-size: 14px; }
.compare-table th { font-family: 'Cinzel', serif; font-size: 15px; padding: 20px; }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; }
.compare-table th:nth-child(3) { color: var(--gold); }
.compare-table td:first-child  { color: var(--text); font-weight: 500; }
.compare-table td:nth-child(3) { color: var(--gold); font-weight: 600; }
.compare-table tr              { border-bottom: 1px solid rgba(255,255,255,0.06); transition: background 0.2s; }
.compare-table tr:hover        { background: rgba(201,168,76,0.04); }
.compare-table thead tr        { border-bottom: 1px solid var(--glass-border); }
.compare-table .no  { color: #ef4444; font-size: 16px; }
.compare-table .yes { color: #22c55e; font-size: 16px; }

/* ── FAQ ──────────────────────────────────────── */
.faq-list        { max-width: 760px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item        { border: 1px solid var(--glass-border); border-radius: 14px; overflow: hidden; background: var(--glass); backdrop-filter: blur(10px); }
.faq-q           { padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 15px; transition: color 0.3s; user-select: none; }
.faq-q:hover     { color: var(--gold); }
.faq-icon        { font-size: 18px; transition: transform 0.35s; flex-shrink: 0; color: var(--gold); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a           { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner     { padding: 0 24px 20px; color: var(--text-muted); font-size: 14px; line-height: 1.8; }
.faq-item.open .faq-a { max-height: 400px; }

/* ── MODALS ───────────────────────────────────── */
.modal-overlay   { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal-box       { background: #100d1c; border: 1px solid var(--glass-border); border-radius: 24px; max-width: 560px; width: 100%; max-height: 85vh; overflow-y: auto; padding: 40px; position: relative; animation: modalIn 0.3s ease; }
.modal-box-lg    { max-width: 720px; }
@keyframes modalIn { from{opacity:0;transform:scale(0.95)} to{opacity:1;transform:scale(1)} }
.modal-close     { position: absolute; top: 16px; right: 20px; font-size: 24px; cursor: pointer; color: var(--text-muted); background: none; border: none; line-height: 1; transition: color 0.2s; }
.modal-close:hover { color: var(--text); }
.modal-title     { font-family: 'Cinzel', serif; font-size: 22px; font-weight: 600; color: var(--gold); margin-bottom: 6px; }
.modal-sub       { color: var(--text-muted); font-size: 14px; margin-bottom: 28px; }
.modal-form      { display: flex; flex-direction: column; gap: 16px; }
.modal-form label { font-size: 13px; color: var(--text-muted); display: block; margin-bottom: 6px; }
.modal-form input, .modal-form textarea {
  width: 100%; padding: 12px 16px; background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border); border-radius: 10px;
  color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.3s;
}
.modal-form input:focus, .modal-form textarea:focus { border-color: var(--gold); }
.modal-form textarea { min-height: 90px; resize: vertical; }
.star-btn        { font-size: 28px; cursor: pointer; color: #444; transition: color 0.2s; }
.star-btn.lit    { color: var(--gold); }

/* ── POLICY TEXT IN MODAL ─────────────────────── */
.policy-content      { color: var(--text-muted); font-size: 14px; line-height: 1.8; }
.policy-content h3   { color: var(--gold); font-family: 'Cinzel', serif; font-size: 16px; margin: 24px 0 8px; }
.policy-content p    { margin-bottom: 12px; }

/* ── FOOTER ───────────────────────────────────── */
footer           { background: rgba(5,4,10,0.95); border-top: 1px solid var(--glass-border); padding: 28px 5%; }
.footer-bottom   { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-right    { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.legal-links     { display: flex; gap: 18px; flex-wrap: wrap; }
.legal-links a   { color: var(--text-muted); font-size: 12px; text-decoration: none; cursor: pointer; transition: color 0.3s; }
.legal-links a:hover { color: var(--gold); }
.social-icons    { display: flex; gap: 14px; align-items: center; }
.social-icon     { font-size: 20px; text-decoration: none; color: var(--text-muted); transition: color 0.3s, transform 0.2s; }
.social-icon:hover { transform: translateY(-2px); }
.social-icon.wa:hover  { color: #25D366; }
.social-icon.ig:hover  { color: #e4405f; }
.social-icon.em:hover  { color: var(--gold); }
.social-icon.li:hover  { color: #0A66C2; }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, nav > .btn-gold { display: none; }
  .hamburger { display: flex; }
  #banner    { margin: 0 4%; padding: 50px 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-right  { justify-content: center; }
}
@media (max-width: 480px) {
  section    { padding: 70px 5%; }
  .hero-btns { flex-direction: column; align-items: center; }
}
/* ── SKILL PILLS MOBILE FIX ───────────────────── */
@media (max-width: 600px) {
  .skill-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .skill-pills .pill {
    text-align: center;
    justify-content: center;
  }
}