/* ============================================================
   V3 — Dark immersive bento · Cincuenta
   Fullscreen hero, bento grid služeb, split CTA
   ============================================================ */
:root {
  --gold:         #f1d13f;
  --gold-dark:    #c9a90e;
  --gold-glow:    rgba(241,209,63,0.08);
  --gold-border:  rgba(241,209,63,0.15);
  --text:         #e8e6e1;
  --text-muted:   #7a7770;
  --text-dim:     #4a4840;
  --bg:           #0f0e13;
  --bg-card:      #18171e;
  --bg-elevated:  #1e1d26;
  --border:       rgba(255,255,255,0.06);

  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-brand:   'Great Vibes', cursive;
  --container:    1280px;
  --radius:       14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body); color: var(--text);
  background: var(--bg); line-height: 1.6;
  min-width: 1440px; overflow-x: hidden;
}
/* Grain overlay */
body::after {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px; pointer-events: none; z-index: 9999;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 2.5rem; }

/* ── NAV — transparent, centered logo ── */
.nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px; display: flex; align-items: center;
}
.nav-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 2rem;
}
.nav-back { font-size: 0.8rem; font-weight: 500; color: var(--text-dim); transition: color 0.2s; }
.nav-back:hover { color: var(--text-muted); }
.nav-center {
  display: flex; align-items: center; justify-content: center; gap: 3rem;
}
.nav-center a { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav-center a:hover { color: var(--text); }
.nav-logo {
  font-family: var(--font-brand); font-size: 2.2rem; color: var(--gold);
}
.nav-cta {
  font-size: 0.85rem; font-weight: 700;
  background: var(--gold); color: var(--bg);
  padding: 0.55rem 1.4rem; border-radius: 8px;
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--gold-dark); box-shadow: 0 4px 20px rgba(241,209,63,0.2); }

/* ── HERO — fullscreen centered ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(241,209,63,0.06) 0%, transparent 60%),
    linear-gradient(180deg, rgba(15,14,19,0.3) 0%, var(--bg) 100%);
  pointer-events: none;
}
.hero-gold-line {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.3;
}
.hero-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 1.25rem;
  padding: 8rem 0 4rem;
}
.hero-kicker {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.25em;
  color: var(--gold);
}
.hero-title .brand {
  font-family: var(--font-brand);
  font-size: 8rem; font-weight: 400;
  background: linear-gradient(135deg, var(--gold) 0%, #f7e88a 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; display: block;
}
.hero-subtitle {
  font-size: 1.15rem; color: var(--text-muted);
  line-height: 1.8; max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; margin-top: 1rem; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 700; font-size: 0.95rem;
  padding: 0.85rem 2rem; border-radius: 10px;
  transition: all 0.25s; border: 2px solid transparent; cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--bg); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(241,209,63,0.2); }
.btn-glass { background: rgba(255,255,255,0.05); color: var(--text); border-color: var(--border); backdrop-filter: blur(10px); }
.btn-glass:hover { border-color: var(--gold-border); background: var(--gold-glow); }
.hero-scroll {
  margin-top: 3rem;
  color: var(--text-dim);
  animation: float 2.5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ── QUOTE — fullwidth testimonial ── */
.quote-section {
  padding: 8rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.quote-inner {
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; gap: 1.75rem;
  max-width: 800px; margin: 0 auto;
}
.quote-mark {
  font-family: var(--font-brand);
  font-size: 10rem; line-height: 0.4;
  color: var(--gold); opacity: 0.3;
}
.quote-inner blockquote {
  font-size: 2rem; font-weight: 500;
  line-height: 1.6; letter-spacing: -0.01em;
  font-style: italic;
  color: var(--text);
}
.quote-line {
  width: 60px; height: 2px;
  background: var(--gold-border);
  margin: 0.5rem 0;
}
.quote-inner cite {
  font-size: 0.95rem; font-style: normal;
  color: var(--text-muted); font-weight: 500;
}

/* ── SERVICES — bento grid ── */
.services { padding: 6rem 0; }
.section-header {
  margin-bottom: 3.5rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.section-kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--gold);
}
.section-kicker::before { content: ''; width: 28px; height: 1px; background: var(--gold-border); }
.section-title { font-size: 2.4rem; font-weight: 700; letter-spacing: -0.02em; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.bento-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.bento-card:hover { border-color: var(--gold-border); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.bento-card:hover::before { opacity: 1; }
.bento-wide {
  grid-column: 1 / 3;
}
.bento-wide .bento-card-inner {
  display: flex; gap: 2rem; align-items: flex-start;
}
.bento-wide .bento-card-inner > div { display: flex; flex-direction: column; gap: 0.75rem; }
.bento-tall {
  grid-row: 1 / 3;
  grid-column: 3;
  display: flex; flex-direction: column; justify-content: space-between;
}
.bento-icon {
  width: 60px; height: 60px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.3s;
}
.bento-card:hover .bento-icon { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.bento-card h3 { font-size: 1.2rem; font-weight: 700; }
.bento-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.bento-tag {
  display: inline-flex; align-items: center;
  background: var(--gold-glow); border: 1px solid var(--gold-border);
  color: var(--gold); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.35rem 0.9rem; border-radius: 100px;
  width: fit-content; margin-top: auto;
}

/* ── WHY US — icon feature grid ── */
.why-us {
  padding: 8rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 4rem;
}
.why-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  text-align: center; align-items: center;
  transition: all 0.3s;
}
.why-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.why-card svg { color: var(--gold); width: 36px; height: 36px; }
.why-card h3 { font-size: 1.2rem; font-weight: 700; }
.why-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* ── SPLIT CTA — gold left, dark right ── */
.split-cta {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 340px;
}
.split-left {
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  padding: 4rem;
}
.split-left-inner {
  max-width: 400px;
  display: flex; flex-direction: column; gap: 1rem;
  color: var(--bg);
}
.split-left-inner svg { color: var(--bg); opacity: 0.4; }
.split-left-inner h3 { font-size: 1.5rem; font-weight: 700; }
.split-left-inner p { font-size: 0.95rem; opacity: 0.7; line-height: 1.6; }
.split-right {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  padding: 4rem;
}
.split-right-inner {
  max-width: 400px;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.split-right-inner h2 { font-size: 1.8rem; font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; }

/* ── CONTACT — large typographic links ── */
.contact { padding: 6rem 0; }
.contact-typo {
  display: flex; flex-direction: column; gap: 0;
}
.contact-typo .section-kicker { margin-bottom: 2rem; }
.contact-big-link {
  display: flex; align-items: center;
  font-size: 3rem; font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  padding: 2rem 0;
  transition: color 0.3s;
  position: relative;
}
.contact-big-link:hover { color: var(--gold); }
.contact-big-link svg {
  margin-left: auto; color: var(--text-dim);
  transition: all 0.3s;
}
.contact-big-link:hover svg { color: var(--gold); transform: translate(4px, -4px); }
.contact-big-label {
  position: absolute;
  top: 0.75rem; left: 0;
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--text-dim);
}
.contact-big-divider {
  height: 1px;
  background: var(--border);
}
.contact-bottom {
  display: flex; gap: 4rem;
  padding-top: 2.5rem; margin-top: 0.5rem;
}
.contact-bottom strong {
  display: block; font-size: 0.85rem; font-weight: 700;
  color: var(--text-muted); margin-bottom: 0.2rem;
}
.contact-bottom span {
  font-size: 0.82rem; color: var(--text-dim);
}

/* ── FOOTER — minimal ── */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo { font-family: var(--font-brand); font-size: 1.5rem; color: var(--gold); }
.footer p { font-size: 0.78rem; color: var(--text-dim); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.82rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
