/* ══════════════════════════════════════════════════════
   ZYLO DIGITAL — Shared Stylesheet
   ══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ──────────────────────────────────────── */
:root {
  --cream:      #FAF8F5;
  --black:      #0A0A0A;
  --orange:     #E8490F;
  --orange-dk:  #C43A0C;
  --orange-lt:  #FFF0EB;
  --white:      #FFFFFF;
  --grey:       #666666;
  --grey-lt:    #999999;
  --off-grey:   #F4F4F4;
  --border:     rgba(10,10,10,0.09);
  --border-lt:  rgba(10,10,10,0.05);
  --nav-h:      70px;
  --max-w:      1200px;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.14);
  --trans:      0.24s ease;
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--black); background: var(--cream); overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--orange); color: white; }

/* ── LAYOUT ─────────────────────────────────────────── */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section     { padding: 96px 0; }
.section-sm  { padding: 64px 0; }
.section-xs  { padding: 40px 0; }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 60px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 0.94;
  color: var(--black);
}

.section-title-white { color: var(--white); }

.section-sub {
  font-size: 16px;
  line-height: 1.72;
  color: var(--grey);
  margin-top: 18px;
  max-width: 580px;
}

.section-sub-white { color: rgba(255,255,255,0.65); }

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: background var(--trans), color var(--trans), transform var(--trans), box-shadow var(--trans);
  white-space: nowrap;
}

.btn-orange { background: var(--orange); color: white; }
.btn-orange:hover { background: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,73,15,0.3); }

.btn-black { background: var(--black); color: white; }
.btn-black:hover { background: #222; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: white; transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline-orange:hover { background: var(--orange); color: white; transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-lg { padding: 18px 36px; font-size: 14px; }

/* ── FADE ANIMATIONS ────────────────────────────────── */
.fade { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade.in { opacity: 1; transform: none; }
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }

/* ══ NAVBAR ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 900;
  transition: box-shadow var(--trans);
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.10); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  flex-shrink: 0;
}
.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 8px 14px;
  transition: color var(--trans);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link:hover, .nav-link.active { color: var(--black); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 23px; height: 2px;
  background: var(--black);
  transition: 0.28s ease;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  padding: 20px 40px 28px;
  z-index: 899;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 13px 0;
  border-bottom: 1px solid var(--border-lt);
  transition: color var(--trans);
}
.mobile-nav a:hover { color: var(--black); }
.mobile-nav .btn-orange { margin-top: 18px; justify-content: center; }

main { margin-top: var(--nav-h); }

/* ══ FOOTER ════════════════════════════════════════════ */
.footer {
  background: #0F0F0F;
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--orange); }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-meta {
  font-size: 12.5px;
  color: rgba(255,255,255,0.28);
  line-height: 1.8;
}

.footer-col-title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-link {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  transition: color var(--trans);
}
.footer-link:hover { color: white; }

.footer-socials {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}
.footer-social {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
  transition: background var(--trans);
}
.footer-social:hover { background: var(--orange); }
.footer-social svg { width: 16px; height: 16px; color: rgba(255,255,255,0.55); }
.footer-social:hover svg { color: white; }

.footer-grating {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  padding: 10px 14px;
  margin-bottom: 16px;
}
.footer-grating-stars { color: #FFB800; font-size: 14px; letter-spacing: 2px; }
.footer-grating-txt { font-size: 12.5px; color: rgba(255,255,255,0.6); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.25); }
.footer-blinks { display: flex; gap: 20px; }
.footer-blink {
  font-size: 12.5px;
  color: rgba(255,255,255,0.25);
  transition: color var(--trans);
}
.footer-blink:hover { color: rgba(255,255,255,0.55); }

/* ══ COMMON SECTION ELEMENTS ═══════════════════════════ */
.section-head { margin-bottom: 52px; }
.section-head-center { text-align: center; }
.section-head-center .section-sub { margin: 18px auto 0; }

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--orange-lt);
  color: var(--orange);
  border: 1px solid rgba(232,73,15,0.2);
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin: 18px 0;
}

/* ══ RESPONSIVE SHARED ═════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .section { padding: 72px 0; }
  .section-title { font-size: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .section-sm { padding: 44px 0; }
  .section-title { font-size: 38px; }
  .section-sub { font-size: 15px; }
  .nav-inner { padding: 0 20px; }
  .mobile-nav { padding: 16px 20px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 52px 0 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .section-title { font-size: 32px; }
  .btn { padding: 13px 22px; font-size: 12px; }
  .btn-lg { padding: 15px 28px; font-size: 13px; }
}
