/* ═══════════════════════════════════════════════════════════════
   headshotsbangalore.com — Shared Stylesheet
   Design: Dark Editorial Luxury · Cormorant + Outfit typography
   ═══════════════════════════════════════════════════════════════ */

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

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --bg:        #0B0B0A;
  --bg-2:      #141412;
  --bg-3:      #1D1C19;
  --bg-4:      #252420;
  --fg:        #F0EBE1;
  --fg-2:      #B8B2A7;
  --fg-3:      #706A60;
  --fg-4:      #3A3832;
  --gold:      #C49A4A;
  --gold-hi:   #E0B86A;
  --gold-dim:  #7A5E2A;
  --gold-bg:   rgba(196,154,74,0.08);
  --border:    rgba(240,235,225,0.1);
  --border-2:  rgba(240,235,225,0.06);
  --shadow:    0 4px 40px rgba(0,0,0,0.6);
  --shadow-sm: 0 2px 16px rgba(0,0,0,0.4);
  --r:         4px;
  --r-lg:      8px;
  --font-d:    'Cormorant Garamond', Georgia, serif;
  --font-b:    'Outfit', system-ui, sans-serif;
  --max:       1160px;
  --nav-h:     72px;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-b);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── GRAIN OVERLAY ───────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── TYPOGRAPHY SCALE ────────────────────────────────────────── */
.t-hero   { font-family: var(--font-d); font-size: clamp(3rem,7vw,6.5rem); font-weight: 300; line-height: 1.0; letter-spacing: -0.02em; }
.t-h1     { font-family: var(--font-d); font-size: clamp(2.4rem,5vw,4.5rem); font-weight: 400; line-height: 1.05; letter-spacing: -0.01em; }
.t-h2     { font-family: var(--font-d); font-size: clamp(1.9rem,3.5vw,3.2rem); font-weight: 400; line-height: 1.1; }
.t-h3     { font-family: var(--font-d); font-size: clamp(1.4rem,2.5vw,2rem);  font-weight: 400; line-height: 1.2; }
.t-h4     { font-family: var(--font-b); font-size: 1rem;  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.t-lead   { font-family: var(--font-b); font-size: clamp(1rem,1.5vw,1.15rem); font-weight: 300; line-height: 1.75; color: var(--fg-2); }
.t-body   { font-family: var(--font-b); font-size: 0.95rem; font-weight: 300; line-height: 1.75; color: var(--fg-2); }
.t-small  { font-family: var(--font-b); font-size: 0.8rem; font-weight: 400; letter-spacing: 0.06em; color: var(--fg-3); }
.t-label  { font-family: var(--font-b); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.t-gold   { color: var(--gold); }
.t-dim    { color: var(--fg-2); }
.t-italic { font-style: italic; }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.5rem,5vw,2.5rem); }
.section { padding: clamp(4rem,8vw,8rem) 0; }
.section-sm { padding: clamp(3rem,5vw,5rem) 0; }
.section-lg { padding: clamp(5rem,10vw,10rem) 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.flex    { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm  { gap: 0.75rem; }
.gap-md  { gap: 1.5rem; }
.gap-lg  { gap: 3rem; }
.text-center { text-align: center; }

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(11,11,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-2);
  transition: background 0.3s;
}
.nav-inner { height: 100%; }
.nav-logo { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.nav-logo-main { font-family: var(--font-d); font-size: 1.35rem; font-weight: 400; color: var(--fg); letter-spacing: 0.01em; }
.nav-logo-main span { color: var(--gold); }
.nav-logo-sub  { font-family: var(--font-b); font-size: 0.65rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-3); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-link  { font-family: var(--font-b); font-size: 0.82rem; font-weight: 400; letter-spacing: 0.06em; color: var(--fg-2); transition: color 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--fg); }
.nav-link.active { color: var(--gold); }
.nav-cta { 
  font-family: var(--font-b); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.55rem 1.4rem; 
  border: 1px solid var(--gold); color: var(--gold);
  border-radius: var(--r);
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; width: 24px; }
.nav-hamburger span { display: block; height: 1px; background: var(--fg); transition: all 0.3s; }
.nav-mobile { display: none; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-b); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--r);
  transition: all 0.25s;
}
.btn-gold { background: var(--gold); color: var(--bg); border: 1px solid var(--gold); }
.btn-gold:hover { background: var(--gold-hi); border-color: var(--gold-hi); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(196,154,74,0.25); }
.btn-outline { background: transparent; color: var(--fg); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--fg-2); transform: translateY(-1px); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold-bg); }
.btn-lg { padding: 1rem 2.5rem; font-size: 0.88rem; }
.btn svg { width: 16px; height: 16px; }

/* ── SECTION LABEL ───────────────────────────────────────────── */
.section-label {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: '';
  display: block; width: 2rem; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── DIVIDER ─────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border-2); margin: 0; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero { 
  min-height: 100vh;
  padding-top: var(--nav-h);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--bg) 55%, rgba(196,154,74,0.04) 100%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; min-height: calc(100vh - var(--nav-h)); padding: 4rem 0; }
.hero-img-wrap { position: relative; }
.hero-img { 
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  filter: brightness(0.92) contrast(1.05);
}
.hero-img-accent {
  position: absolute; 
  bottom: -1.5rem; left: -1.5rem;
  width: 55%; aspect-ratio: 1;
  border: 1px solid var(--gold-dim);
  border-radius: var(--r-lg);
  z-index: -1;
}
.hero-eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.hero-eyebrow span { font-family: var(--font-b); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.hero-eyebrow::after { content: ''; flex: 1; height: 1px; background: var(--border); max-width: 60px; }
.hero-title { margin-bottom: 1.5rem; }
.hero-body { margin-bottom: 2.5rem; max-width: 460px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border-2); }
.hero-stat-num { font-family: var(--font-d); font-size: 2.2rem; font-weight: 400; color: var(--fg); line-height: 1; }
.hero-stat-label { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--fg-3); margin-top: 0.25rem; }

/* ── PAGE HERO (inner pages) ──────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-2);
}
.page-hero-inner { max-width: 700px; }
.page-hero .breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 2rem; }
.breadcrumb a { font-size: 0.78rem; color: var(--fg-3); letter-spacing: 0.06em; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--fg-2); }
.breadcrumb span { font-size: 0.78rem; color: var(--fg-4); }

/* ── TRUST BAR ───────────────────────────────────────────────── */
.trust-bar { background: var(--bg-2); border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); padding: 1.5rem 0; }
.trust-items { display: flex; gap: 3rem; align-items: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.75rem; }
.trust-item-num { font-family: var(--font-d); font-size: 1.6rem; color: var(--gold); line-height: 1; }
.trust-item-text { font-size: 0.78rem; color: var(--fg-3); letter-spacing: 0.05em; line-height: 1.4; }
.trust-sep { width: 1px; height: 2rem; background: var(--border); }

/* ── CARDS ───────────────────────────────────────────────────── */
.card {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover { border-color: var(--gold-dim); transform: translateY(-3px); }
.card-icon { width: 40px; height: 40px; margin-bottom: 1.25rem; color: var(--gold); }
.card-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--r); margin-bottom: 1.5rem;
  filter: brightness(0.9) contrast(1.05);
}

/* ── PACKAGE CARDS ───────────────────────────────────────────── */
.pkg-card {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.pkg-card:hover { border-color: var(--gold-dim); }
.pkg-card.featured { border-color: var(--gold-dim); position: relative; }
.pkg-badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-family: var(--font-b); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  background: var(--gold); color: var(--bg);
  border-radius: 20px;
}
.pkg-header { padding: 2rem 2rem 1.5rem; border-bottom: 1px solid var(--border-2); }
.pkg-tier { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.pkg-name { font-family: var(--font-d); font-size: 1.7rem; margin-bottom: 0.25rem; }
.pkg-tagline { font-size: 0.85rem; color: var(--fg-3); }
.pkg-price-wrap { margin-top: 1.25rem; }
.pkg-price { font-family: var(--font-d); font-size: 2rem; color: var(--fg); }
.pkg-price-sub { font-size: 0.78rem; color: var(--fg-3); margin-top: 0.2rem; }
.pkg-price-strike { font-size: 0.85rem; color: var(--fg-4); text-decoration: line-through; margin-right: 0.5rem; }
.pkg-body { padding: 1.5rem 2rem 2rem; }
.pkg-list { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.pkg-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.87rem; color: var(--fg-2); line-height: 1.5; }
.pkg-list li::before { content: '✦'; color: var(--gold); font-size: 0.65rem; margin-top: 0.25rem; flex-shrink: 0; }
.pkg-list .no::before { content: '✕'; color: var(--fg-4); }
.pkg-list .no { color: var(--fg-4); }

/* ── PROCESS ─────────────────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 1.75rem; left: calc(100% / 6); right: calc(100% / 6);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), var(--gold-dim), transparent);
}
.process-step { padding: 0 2rem; text-align: center; }
.process-num {
  width: 3.5rem; height: 3.5rem;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-d); font-size: 1.3rem; color: var(--gold);
  background: var(--bg);
  position: relative; z-index: 1;
}
.process-title { font-family: var(--font-d); font-size: 1.3rem; margin-bottom: 0.75rem; }
.process-desc { font-size: 0.87rem; color: var(--fg-3); line-height: 1.65; }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonial {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 2.5rem;
}
.testimonial-quote { font-family: var(--font-d); font-size: 3rem; color: var(--gold-dim); line-height: 1; margin-bottom: 0.5rem; }
.testimonial-text { font-family: var(--font-d); font-size: 1.2rem; font-style: italic; color: var(--fg-2); line-height: 1.6; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); }
.testimonial-name { font-family: var(--font-b); font-size: 0.9rem; font-weight: 500; }
.testimonial-role { font-size: 0.78rem; color: var(--fg-3); }

/* ── GALLERY ─────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--bg-3);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s;
  filter: brightness(0.88) contrast(1.05);
}
.gallery-item:hover img { transform: scale(1.04); filter: brightness(0.95) contrast(1.05); }
.gallery-item.tall  { grid-row: span 2; }
.gallery-item.wide  { grid-column: span 2; }
.gallery-item-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(11,11,10,0.8), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-label { opacity: 1; }
.gallery-item-label span { font-size: 0.78rem; color: var(--fg-2); letter-spacing: 0.06em; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border-2); }
.faq-q {
  width: 100%; text-align: left;
  padding: 1.5rem 0;
  font-family: var(--font-b); font-size: 0.95rem; font-weight: 400;
  color: var(--fg); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-q:hover { color: var(--gold); }
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { 
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.9rem; color: var(--fg-3); line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.5rem; }

/* ── FORM ────────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-3); }
.form-control {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.85rem 1rem;
  color: var(--fg);
  font-family: var(--font-b); font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-control:focus { border-color: var(--gold-dim); }
.form-control::placeholder { color: var(--fg-4); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control option { background: var(--bg-3); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-note { font-size: 0.78rem; color: var(--fg-4); line-height: 1.5; }

/* ── CONTACT INFO ────────────────────────────────────────────── */
.contact-block { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; background: var(--gold-bg); border: 1px solid var(--gold-dim); border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 18px; height: 18px; color: var(--gold); }
.contact-item-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 0.25rem; }
.contact-item-val { font-size: 0.95rem; color: var(--fg-2); }
.contact-item-val a { transition: color 0.2s; }
.contact-item-val a:hover { color: var(--gold); }

/* ── SECTOR PILLS ────────────────────────────────────────────── */
.sector-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.sector-pill { 
  font-size: 0.75rem; letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--fg-3);
  transition: border-color 0.2s, color 0.2s;
}
.sector-pill:hover { border-color: var(--gold-dim); color: var(--fg); }

/* ── CTA BAND ────────────────────────────────────────────────── */
.cta-band {
  background: var(--bg-2);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  padding: clamp(3rem,6vw,6rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,154,74,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; text-align: center; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { background: var(--bg-2); border-top: 1px solid var(--border-2); padding: 3rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border-2); }
.footer-logo { font-family: var(--font-d); font-size: 1.4rem; margin-bottom: 0.75rem; }
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 0.85rem; color: var(--fg-3); line-height: 1.7; max-width: 320px; }
.footer-heading { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-4); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.87rem; color: var(--fg-3); transition: color 0.2s; }
.footer-links a:hover { color: var(--fg); }
.footer-bottom { padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.78rem; color: var(--fg-4); }
.footer-back a { font-size: 0.78rem; color: var(--fg-3); transition: color 0.2s; }
.footer-back a:hover { color: var(--gold); }

/* ── FADE-IN ANIMATION ───────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-1 { transition-delay: 0.1s; }
.fade-up-2 { transition-delay: 0.2s; }
.fade-up-3 { transition-delay: 0.3s; }
.fade-up-4 { transition-delay: 0.4s; }

/* ── UTILITIES ───────────────────────────────────────────────── */
.mb-sm   { margin-bottom: 0.75rem; }
.mb-md   { margin-bottom: 1.5rem; }
.mb-lg   { margin-bottom: 2.5rem; }
.mb-xl   { margin-bottom: 4rem; }
.mt-sm   { margin-top: 0.75rem; }
.mt-md   { margin-top: 1.5rem; }
.mt-lg   { margin-top: 2.5rem; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.badge {
  display: inline-block;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  background: var(--gold-bg);
}

/* ── MOBILE ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .trust-items { gap: 1.5rem; }
  .trust-sep { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile {
    display: flex; flex-direction: column; gap: 1rem;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(11,11,10,0.98);
    backdrop-filter: blur(16px);
    padding: 2rem;
    border-bottom: 1px solid var(--border-2);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.35s, opacity 0.35s;
    pointer-events: none;
    z-index: 99;
  }
  .nav-mobile.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-mobile a { font-size: 1.1rem; color: var(--fg-2); padding: 0.5rem 0; border-bottom: 1px solid var(--border-2); }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── WHATSAPP FLOAT ──────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 90;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; color: white; }
