/* ============================================================
   INZZONE — Global Solutions
   Design system: dark hero + light body, gold accents
   ============================================================ */

:root {
  /* Colors */
  --bg-dark: #0B0B0F;
  --bg-dark-2: #14141A;
  --bg-dark-3: #1C1C24;
  --bg-light: #FAF8F3;
  --bg-light-2: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-dark-soft: #4A4A4A;
  --text-dark-mute: #7A7A7A;
  --text-light: #F5F2EA;
  --text-light-mute: #B8B4A8;
  --gold: #D4AF37;
  --gold-light: #F5D67D;
  --gold-dark: #A07820;
  --gold-pale: #F0E4C2;
  --line-dark: rgba(245, 214, 125, 0.18);
  --line-light: rgba(26, 26, 26, 0.10);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1200px;
  --section-py: clamp(96px, 12vw, 160px);
  --gutter: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'ss02', 'cv01';
  overflow-x: clip;
}

/* Bilingual visibility */
body[data-lang="pt"] [data-lang="es"] { display: none; }
body[data-lang="es"] [data-lang="pt"] { display: none; }

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================================
   LANGUAGE TOGGLE (top-left, fixed)
   ============================================================ */

.lang-toggle {
  position: fixed;
  top: 22px;
  left: 22px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(11, 11, 15, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 214, 125, 0.22);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 500;
  transition: background .35s ease, border-color .35s ease;
}

.lang-btn {
  appearance: none;
  background: none;
  border: 0;
  color: var(--text-light-mute);
  font: inherit;
  letter-spacing: inherit;
  padding: 2px 6px;
  cursor: pointer;
  transition: color .25s ease;
}
.lang-btn:hover { color: var(--gold-light); }
.lang-btn.active { color: var(--gold); }
.lang-divider { color: rgba(245, 214, 125, 0.35); font-size: 10px; }

/* ============================================================
   HEADER (sticky)
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  padding: 16px 0;
  transition: background .35s ease, border-color .35s ease, padding .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(250, 248, 243, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-light);
  padding: 10px 0;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 110px; /* leave space for fixed lang toggle */
}
.header-mono { width: 28px; height: 28px; }
.header-wordmark {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--text-light);
  transition: color .35s ease;
}
.site-header.scrolled .header-wordmark { color: var(--text-dark); }

.header-nav {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: var(--text-light-mute);
  transition: color .35s ease;
}
.site-header.scrolled .header-nav { color: var(--text-dark-soft); }
.header-nav a { position: relative; transition: color .2s ease; }
.header-nav a:not(.nav-cta):hover { color: var(--gold); }

.nav-cta {
  padding: 9px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold) !important;
  transition: background .25s ease, color .25s ease;
}
.nav-cta:hover { background: var(--gold); color: var(--bg-dark) !important; }

.nav-toggle {
  display: none;
  appearance: none;
  background: none;
  border: 0;
  width: 28px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--text-light);
  transition: background .35s ease, transform .25s ease;
}
.site-header.scrolled .nav-toggle span { background: var(--text-dark); }

/* ============================================================
   HERO — dark + gold
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg-dark);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 0 100px;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.85 0 0 0 0 0.45 0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
  opacity: 0.06;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.06) 35%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(245, 214, 125, 0.08) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}

.hero-brandmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 0 auto 36px;
  animation: monoFloat 6s ease-in-out infinite;
}
.hero-brandmark .hero-wordmark { margin-top: -14px; }
.hero-monogram {
  width: clamp(180px, 22vw, 264px);
  height: clamp(180px, 22vw, 264px);
  filter: drop-shadow(0 14px 38px rgba(212, 175, 55, 0.32));
}
.hero-monogram svg { width: 100%; height: 100%; }

.hero-wordmark {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 56px);
  letter-spacing: clamp(0.18em, 0.8vw, 0.32em);
  margin: 0;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 30px rgba(212, 175, 55, 0.18);
  padding-left: clamp(0.18em, 0.8vw, 0.32em);
}

@keyframes monoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold-light);
  font-weight: 500;
}
.eyebrow-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.eyebrow-text { white-space: nowrap; }

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(38px, 8vw, 104px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
  color: var(--text-light);
  word-wrap: break-word;
}
.hero-headline em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 680px;
  margin: 0 auto 48px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--text-light-mute);
  font-weight: 300;
}

.hero-cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 88px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .35s ease;
  text-transform: uppercase;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  color: var(--bg-dark);
  box-shadow: 0 8px 30px -8px rgba(212, 175, 55, 0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -10px rgba(212, 175, 55, 0.65);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-light);
  border-color: rgba(245, 214, 125, 0.45);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-ghost.btn-dark {
  color: var(--text-dark);
  border-color: rgba(26, 26, 26, 0.25);
}
.btn-ghost.btn-dark:hover {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}

/* Hero marquee */
.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 22px 0;
  border-top: 1px solid var(--line-dark);
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: inline-flex;
  gap: 32px;
  animation: marqueeMove 38s linear infinite;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: rgba(245, 214, 125, 0.55);
  font-weight: 500;
}
@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   GENERIC SECTION PIECES
   ============================================================ */

section { padding: var(--section-py) 0; }

.section-label {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 28px;
}
.section-label.light { color: var(--gold-light); }
.label-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 5.2vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin: 0 0 60px;
  max-width: 900px;
}
.section-title.light { color: var(--text-light); }
.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-dark);
}
.section-title.light em {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   MANIFESTO
   ============================================================ */

.manifesto { background: var(--bg-light); }
.manifesto-body {
  max-width: 780px;
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.75;
  color: var(--text-dark-soft);
  font-weight: 300;
}
.manifesto-body p { margin: 0 0 22px; }
.manifesto-body strong { color: var(--text-dark); font-weight: 500; }
.manifesto-body em {
  font-family: var(--font-serif);
  font-size: 1.12em;
  font-weight: 500;
  font-style: italic;
  color: var(--gold-dark);
}

/* ============================================================
   SERVICES GRID
   ============================================================ */

.services { background: var(--bg-light-2); position: relative; }
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-light), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

.svc-card {
  position: relative;
  padding: 38px 32px 36px;
  background: var(--bg-light-2);
  transition: background .35s ease, transform .35s ease;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
  transition: width .45s ease;
}
.svc-card:hover::before { width: 100%; }
.svc-card:hover { background: #FFFEF8; }

.svc-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  line-height: 1;
  color: var(--gold-dark);
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}
.svc-card h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--text-dark);
}
.svc-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-dark-soft);
  margin: 0;
  font-weight: 300;
}

/* ============================================================
   DIFFERENTIALS
   ============================================================ */

.differentials { background: var(--bg-light); }
.diff-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
.diff-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--line-light);
  align-items: center;
}
.diff-list li:last-child { border-bottom: 1px solid var(--line-light); }

.diff-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  color: var(--gold-dark);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.diff-list h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--text-dark);
}
.diff-list p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark-soft);
  font-weight: 300;
  max-width: 720px;
}

/* ============================================================
   BRANDS
   ============================================================ */

.brands { background: var(--bg-light-2); text-align: left; }
.brands-note {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dark-soft);
  font-weight: 300;
  margin: 0 0 36px;
}

/* ============================================================
   CONTACT — dark again, mirror hero
   ============================================================ */

.contact {
  background: var(--bg-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
  filter: blur(60px);
}

/* Primary contact cards: WhatsApp + Email */
.contact-primary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
  margin-bottom: 56px;
  position: relative;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 26px 28px;
  background: linear-gradient(140deg, rgba(212, 175, 55, 0.06) 0%, rgba(20, 20, 26, 0.4) 100%);
  border: 1px solid rgba(245, 214, 125, 0.22);
  border-radius: 18px;
  color: var(--text-light);
  text-decoration: none;
  transition: transform .35s ease, border-color .35s ease, background .35s ease, box-shadow .45s ease;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(245, 214, 125, 0.10) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .9s ease;
  pointer-events: none;
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 14px 40px -16px rgba(212, 175, 55, 0.45);
}
.contact-card:hover::before { transform: translateX(100%); }

.contact-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  color: var(--bg-dark);
  flex-shrink: 0;
}
.contact-card-icon svg { width: 26px; height: 26px; }

.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.contact-card-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.contact-card-value {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.25;
  color: var(--text-light);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contact-card-hint {
  font-size: 12px;
  color: var(--text-light-mute);
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.contact-card-arrow {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(245, 214, 125, 0.32);
  color: var(--gold-light);
  transition: transform .35s ease, background .35s ease, color .35s ease;
}
.contact-card-arrow svg { width: 16px; height: 16px; }
.contact-card:hover .contact-card-arrow {
  background: var(--gold);
  color: var(--bg-dark);
  transform: translateX(4px);
}

/* Secondary info: address, hours, legal */
.contact-secondary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.contact-info {
  padding: 28px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info + .contact-info {
  padding-left: 28px;
  border-left: 1px solid var(--line-dark);
}
.contact-info-label {
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.contact-info-value {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-light-mute);
  font-weight: 300;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--bg-dark-2);
  color: var(--text-light-mute);
  padding: 56px 0 36px;
  font-size: 13px;
  border-top: 1px solid var(--line-dark);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-wordmark {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.16em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-tag { color: var(--text-light-mute); font-size: 12px; letter-spacing: 0.05em; }
.footer-legal p { margin: 0 0 4px; line-height: 1.55; }
.footer-rights { text-align: right; font-size: 12px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 880px) {
  .header-logo { margin-left: 100px; }
  .header-nav { display: none; }
  .nav-toggle { display: flex; }

  .contact-info + .contact-info { padding-left: 0; padding-top: 24px; border-left: 0; border-top: 1px solid var(--line-dark); }
  .contact-info { padding: 24px 0 4px; }
  .contact-secondary { gap: 0; }
  .contact-card { padding: 22px 18px; gap: 14px; }
  .contact-card-value { font-size: 17px; white-space: normal; word-break: break-word; }
  .contact-card-icon { width: 46px; height: 46px; }
  .contact-card-icon svg { width: 22px; height: 22px; }
  .contact-card-arrow { width: 32px; height: 32px; }

  .header-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-light-2);
    padding: 14px var(--gutter) 24px;
    border-bottom: 1px solid var(--line-light);
    color: var(--text-dark);
  }
  .header-nav.open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-light);
    color: var(--text-dark);
  }
  .header-nav.open .nav-cta {
    margin-top: 14px;
    border-bottom: 0;
    text-align: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-rights { text-align: left; }

  .diff-list li { grid-template-columns: 80px 1fr; gap: 20px; }
  .diff-num { font-size: 48px; }

  .hero-eyebrow { gap: 10px; font-size: 10px; }
  .eyebrow-line { width: 20px; }
}

@media (max-width: 520px) {
  .lang-toggle { top: 14px; left: 14px; padding: 5px 10px; font-size: 10px; gap: 4px; }
  .header-logo { margin-left: 0; }
  .header-wordmark { font-size: 16px; letter-spacing: 0.14em; }
  .header-mono { width: 22px; height: 22px; }
  .header-inner { padding: 0 16px 0 90px; }
  .hero { padding: 130px 0 90px; }
  .hero-inner { padding: 0 20px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
  .contact-block { padding: 24px 20px; }
  .svc-card { padding: 30px 24px; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 0.22em; }
  .eyebrow-line { width: 14px; }
  .eyebrow-text { white-space: normal; text-align: center; }
  .footer-inner { padding: 0 20px; }
}

/* ============================================================
   ENTRY ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
