/* =====================
   LOS ANGELES CUSTOM PRINTING LANDING PAGE
   Custom Print Shop
   ===================== */

/* --- Variables --- AKD Ink brand */
:root {
  --bg: #eeeeee;
  --bg-alt: #f2f0eb;
  --bg-dark: #090302;
  --fg: #090302;
  --fg-muted: #6b6459;
  --fg-light: #9c9489;
  --accent: #a9d01e;
  --accent-dark: #36302f;
  --accent-dim: rgba(169, 208, 30, 0.1);
  --border: #d8d0c5;
  --white: #ffffff;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Muli', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-width: 0;
  overflow-x: hidden;
  padding-bottom: var(--deal-banner-h, 0px);
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* --- Typography --- */
h1, h2, h3 {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

/* --- Navigation --- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}
.nav-brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.nav-brand-link { display: flex; align-items: center; gap: 12px; min-width: 0; }
.nav-brand-copy { display: flex; flex-direction: column; min-width: 0; }
.nav-logo {
  width: 40px; height: 40px;
  background: var(--accent);
  color: #090302;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Figtree', sans-serif;
  font-weight: 700; font-size: 16px;
  border-radius: 4px;
}
.nav-name {
  font-family: 'Barlow', sans-serif;
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  max-width: 340px;
}
.nav-tagline { font-size: 11px; color: var(--fg-muted); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 3px; }
.nav-links { display: flex; align-items: center; justify-content: flex-end; gap: 16px; flex-wrap: wrap; }
.nav-link { display: flex; align-items: center; min-height: 44px; padding: 6px 2px; font-size: 14px; font-weight: 600; font-family: 'Muli', system-ui, sans-serif; white-space: nowrap; }
.nav-link:hover { color: var(--accent-dark); }
.nav-quote-link { min-height: 44px; padding: 10px 24px; font-size: 14px; }
.nav-menu-toggle { display: none; align-items: center; gap: 8px; min-height: 44px; padding: 8px 12px; border: 1px solid var(--border); border-radius: 4px; background: transparent; color: var(--fg); font: 600 14px 'Muli', system-ui, sans-serif; cursor: pointer; }
.nav-menu-toggle:hover { background: var(--accent-dim); }

/* --- Nav Services Dropdown --- */
.nav-services-dropdown { position: relative; }
.nav-services-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Muli', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  min-height: 44px;
  padding: 6px 2px;
  letter-spacing: 0.01em;
}
.nav-services-toggle:hover { color: var(--accent); }
.nav-services-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(9,3,2,0.10);
  min-width: 200px;
  z-index: 200;
  overflow: hidden;
}
.nav-services-menu.open { display: block; }
.nav-services-menu a {
  display: block;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.nav-services-menu a:last-child { border-bottom: none; }
.nav-services-menu a:hover { background: var(--accent-dim); color: var(--fg); }

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background: var(--fg);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700; font-size: 15px;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: #36302f; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--fg);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 500; font-size: 15px;
  border: 1.5px solid var(--fg);
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--fg); color: var(--bg); }

.btn-primary-light {
  display: inline-block;
  background: var(--white);
  color: var(--fg);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600; font-size: 15px;
  transition: all 0.2s;
  border: 2px solid var(--white);
}
.btn-primary-light:hover { background: transparent; color: var(--white); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--fg-light);
  padding: 14px 28px;
  font-weight: 500; font-size: 15px;
  border: 1.5px solid var(--fg-light);
  border-radius: 4px;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--fg); color: var(--fg); }

/* --- Section Label --- */
.section-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  background: var(--bg-dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 48px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glyph {
  position: absolute;
  opacity: 0.6;
}
.hero-glyph-1 {
  width: 600px; height: 600px;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  animation: slowSpin 60s linear infinite;
}
.hero-glyph-2 {
  width: 300px; height: 300px;
  left: 5%; bottom: 10%;
  animation: slowSpin 80s linear infinite reverse;
}
@keyframes slowSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}
.hero-bar {
  position: absolute;
  background: var(--accent);
  opacity: 0.06;
}
.hero-bar-1 {
  width: 1px; height: 40%;
  left: 30%; top: 10%;
  animation: pulse 4s ease-in-out infinite;
}
.hero-bar-2 {
  width: 1px; height: 30%;
  right: 25%; top: 40%;
  animation: pulse 4s ease-in-out 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.06; }
  50% { opacity: 0.15; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-headline {
  font-size: clamp(52px, 8vw, 96px);
  color: var(--white);
  margin-bottom: 28px;
  font-style: normal;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 19px;
  color: rgba(247, 243, 236, 0.65);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(247, 243, 236, 0.12);
}
.stat-num {
  font-family: 'Figtree', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(247, 243, 236, 0.45);
  margin-top: 4px;
  letter-spacing: 0.03em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(247, 243, 236, 0.15);
}

/* --- SERVICES --- */
.services {
  padding: 100px 48px;
  background: var(--bg);
}
.services-header {
  max-width: 560px;
  margin-bottom: 64px;
}
.services-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.02em;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.service-card {
  display: block;
  color: inherit;
  text-decoration: none;
  background: var(--white);
  padding: 40px 36px;
  transition: background 0.2s;
}
.service-card:hover, .service-card:focus-visible { background: var(--accent-dim); }
.service-card:focus-visible { outline: 2px solid var(--accent-dark); outline-offset: -2px; }
.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: 'Figtree', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}
.service-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.services-cta { margin-top: 48px; text-align: center; }

/* --- DIFFERENCE --- */
.difference {
  padding: 100px 48px;
  background: var(--bg-alt);
}
.difference-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.difference-headline {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.difference-body {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 840px;
}
.diff-item { display: flex; gap: 16px; align-items: flex-start; }
.diff-check {
  width: 24px; height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.diff-check svg { width: 100%; height: 100%; }
.diff-title { font-weight: 600; font-size: 16px; margin-bottom: 4px; }
.diff-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }

/* --- PHILOSOPHY --- */
.philosophy {
  background: var(--fg);
  padding: 100px 48px;
  text-align: center;
}
.philosophy-inner { max-width: 680px; margin: 0 auto; }
.philosophy-quote-mark {
  font-family: 'Figtree', sans-serif;
  font-size: 120px;
  color: var(--accent);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 24px;
}
blockquote {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.philosophy-source {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.4);
}
.philosophy-line {
  width: 40px; height: 1px;
  background: rgba(247, 243, 236, 0.3);
}
.philosophy-body {
  font-size: 16px;
  color: rgba(247, 243, 236, 0.55);
  line-height: 1.7;
  margin-bottom: 44px;
}

/* --- CLOSING --- */
.closing {
  padding: 100px 48px;
  background: var(--bg);
  text-align: center;
}
.closing-content { max-width: 600px; margin: 0 auto; }
.closing h2 {
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.closing p { font-size: 18px; color: var(--fg-muted); margin-bottom: 40px; }
.closing-cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.closing-contact { font-size: 14px; color: var(--fg-muted); }
.closing-contact a { color: var(--accent); }
.closing-contact a:hover { text-decoration: underline; }
.contact-sep { margin: 0 12px; opacity: 0.4; }

/* --- FOOTER --- */
.footer {
  background: var(--fg);
  padding: 48px;
  color: rgba(247, 243, 236, 0.5);
  border-top: 1px solid rgba(247, 243, 236, 0.08);
}
.footer-brand { display: flex; gap: 16px; align-items: center; margin-bottom: 32px; }
.footer-brand .footer-logo {
  background: #a9d01e;
  color: #090302;
}
.footer-logo {
  width: 44px; height: 44px;
  background: var(--accent);
  color: #090302;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Figtree', sans-serif;
  font-size: 16px; font-weight: 700;
  border-radius: 4px;
  flex-shrink: 0;
}
.footer-name {
  font-family: 'Figtree', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-tagline { font-size: 12px; color: rgba(247, 243, 236, 0.55); margin-bottom: 2px; }
.footer-location { font-size: 13px; color: rgba(247, 243, 236, 0.4); }
.footer-phone { font-size: 13px; color: rgba(247, 243, 236, 0.4); margin-top: 2px; }
.footer-links {
  display: flex; gap: 28px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  font-size: 14px;
}
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 12px; color: rgba(247, 243, 236, 0.25); }

/* --- PROMO --- */
.promo {
  background: var(--bg-dark);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}
.promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255, 20, 147, 0.03) 40px,
    rgba(255, 20, 147, 0.03) 80px
  );
  pointer-events: none;
}
.promo-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.promo-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FF1493;
  font-weight: 600;
  margin-bottom: 12px;
}
.promo-price {
  font-family: 'Figtree', sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.promo-headline {
  font-family: 'Figtree', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.promo-sub {
  font-size: 16px;
  color: rgba(247, 243, 236, 0.6);
}
.promo-col-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.promo-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.promo-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--white);
}
.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.promo-urgency {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FF1493;
  font-weight: 600;
}
.btn-promo {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-dark);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 36px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-promo:hover { background: #8ab818; }
.btn-promo .btn-promo-ext {
  display: inline-block;
  margin-left: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
  .nav { padding: 16px 24px; }
  .nav-menu-toggle { display: inline-flex; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 12px 24px 20px; background: var(--bg); border-bottom: 1px solid var(--border); box-shadow: 0 8px 18px rgba(9,3,2,0.08); align-items: stretch; flex-direction: column; gap: 2px; }
  .nav-links.open { display: flex; }
  .nav-link, .nav-quote-link { width: 100%; justify-content: flex-start; }
  .nav-quote-link { margin-top: 6px; justify-content: center; }
  .nav-services-dropdown { width: 100%; }
  .nav-services-toggle { width: 100%; text-align: left; }
  .nav-services-menu { position: static; min-width: 0; width: 100%; box-shadow: none; margin-bottom: 4px; }
}
@media (max-width: 768px) {
  .promo { padding: 48px 24px; }
  .promo-inner { flex-direction: column; gap: 32px; }
  .promo-price { font-size: 56px; }
  .promo-col-right { align-items: center; width: 100%; }
  .btn-promo { width: 100%; text-align: center; }
  .nav { padding: 16px 24px; }
  .nav-name { font-size: 15px; }
  .nav-tagline { font-size: 10px; }
  .hero { padding: 80px 24px 60px; }
  .hero-glyph-1 { width: 300px; height: 300px; }
  .hero-glyph-2 { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .services { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .difference { padding: 60px 24px; }
  .diff-grid { grid-template-columns: 1fr; }
  .philosophy { padding: 60px 24px; }
  .closing { padding: 60px 24px; }
  .footer { padding: 32px 24px; }
  .footer-links { gap: 16px; }
}
@media (max-width: 480px) {
  .nav { padding-left: 16px; padding-right: 16px; }
  .nav-logo { width: 34px; height: 34px; font-size: 14px; }
  .nav-name { font-size: 13px; }
  .nav-tagline { font-size: 9px; letter-spacing: 0.02em; }
  .nav-links { padding-left: 16px; padding-right: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { text-align: center; }
  .closing-cta-group { flex-direction: column; }
}
