/* ============================================================
   Dream'n Grind Printing Shop — styles.css
   Theme: bold streetwear "grind" aesthetic
   Palette: deep charcoal base + amber/gold accent
   ============================================================ */

:root {
  --bg:        #0f0f12;
  --bg-2:      #16161b;
  --surface:   #1d1d24;
  --line:      #2c2c36;
  --text:      #f4f4f6;
  --muted:     #a6a6b2;
  --accent:    #f5b301;   /* grind gold */
  --accent-2:  #ff5a1f;   /* heat orange */
  --accent-ink:#1a1404;
  --radius:    16px;
  --radius-sm: 10px;
  --maxw:      1160px;
  --ease:      cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

.hl { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 800;
  letter-spacing: .02em;
  padding: .8rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: transform .15s var(--ease), background .2s, box-shadow .2s;
  font-size: .95rem;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(245,179,1,.28); }
.btn--sm  { padding: .55rem 1.1rem; font-size: .85rem; }
.btn--lg  { padding: 1rem 1.8rem; font-size: 1.02rem; }
.btn--full{ width: 100%; }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--accent); box-shadow: none; color: var(--accent); }

/* ---------- Brand ---------- */
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand__mark { width: 38px; height: 38px; }
.brand__text {
  font-family: 'Anton', sans-serif;
  font-size: 1.45rem;
  letter-spacing: .04em;
  line-height: 1;
}
.brand__amp { color: var(--accent); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(15,15,18,.55);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.nav.scrolled {
  background: rgba(15,15,18,.92);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__links { display: flex; align-items: center; gap: 1.7rem; }
.nav__links a { font-weight: 600; color: var(--muted); transition: color .2s; }
.nav__links a:hover { color: var(--text); }
.nav__links a.btn { color: var(--accent-ink); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 26px; height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: transform .3s, opacity .3s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 150px 0 0;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(245,179,1,.16), transparent 60%),
    radial-gradient(50% 50% at 0% 30%, rgba(255,90,31,.12), transparent 60%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.015) 0 2px, transparent 2px 14px);
  z-index: -1;
}
.hero__inner { padding-bottom: 70px; }
.hero__eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--accent);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .4rem .9rem;
  margin-bottom: 1.4rem;
}
.hero__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 11vw, 7rem);
  line-height: .92;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.hero__title .hl {
  -webkit-text-stroke: 2px var(--accent);
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero__sub {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.1rem;
  margin: 1.6rem 0 2.2rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3rem;
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--accent);
}
.hero__stats span { color: var(--muted); font-size: .85rem; letter-spacing: .05em; }

/* marquee */
.hero__marquee {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--accent);
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 1.5rem;
  padding: .7rem 0;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .08em;
  color: var(--accent-ink);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-2); }
.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section__eyebrow {
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--accent);
  margin-bottom: .8rem;
}
.section__title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  text-transform: uppercase;
}
.section__lead { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; }

/* ---------- Grid / Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid--services { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .2s var(--ease), border-color .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
}
.card__icon {
  font-size: 2rem;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 1rem;
}
.card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .96rem; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery__item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s var(--ease);
}
.gallery__item::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 0 0 0;
  padding: .6rem .8rem;
  font-size: .82rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  color: var(--text);
  transform: translateY(100%);
  transition: transform .25s var(--ease);
}
.gallery__item:hover { transform: scale(1.03); border-color: var(--accent); }
.gallery__item:hover::after { transform: translateY(0); }
.gallery__note {
  margin-top: 24px;
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
}
.gallery__note code {
  background: var(--surface);
  padding: .15rem .45rem;
  border-radius: 6px;
  border: 1px solid var(--line);
  font-size: .85em;
}

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.step__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: .6rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .94rem; }

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 44px;
  align-items: center;
}
.about__text p { color: var(--muted); margin-top: 1rem; }
.about__list {
  list-style: none;
  margin-top: 1.6rem;
  display: grid;
  gap: .6rem;
}
.about__list li { color: var(--text); font-weight: 500; }
.about__card {
  background: linear-gradient(150deg, var(--accent), var(--accent-2));
  color: var(--accent-ink);
  border-radius: var(--radius);
  padding: 5px;
  text-align: center;
}
.about__quote {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.1;
  text-transform: uppercase;
}
.about__quoteSub { margin-top: 1rem; font-weight: 700; opacity: .8; }

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
}
.contact__form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 18px;
}
.field { display: grid; gap: .4rem; }
.field label { font-weight: 600; font-size: .9rem; }
.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .8rem .9rem;
  color: var(--text);
  font-family: inherit;
  font-size: .98rem;
  transition: border-color .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field textarea { resize: vertical; }
.contact__formNote { font-size: .9rem; color: var(--accent); min-height: 1.2em; }

.contact__info {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.contact__info h3 { font-size: 1.3rem; margin-bottom: 1.2rem; }
.info__list { list-style: none; display: grid; gap: 1.1rem; margin-bottom: 1.6rem; }
.info__list li { display: flex; gap: .9rem; align-items: flex-start; }
.info__ico { font-size: 1.3rem; }
.info__list a { color: var(--accent); }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 56px 0 36px;
}
.footer__inner {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}
.footer__brand { display: inline-flex; align-items: center; gap: .6rem; }
.footer__tag { color: var(--accent); font-weight: 700; letter-spacing: .03em; }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.4rem; justify-content: center; }
.footer__links a { color: var(--muted); font-weight: 500; transition: color .2s; }
.footer__links a:hover { color: var(--accent); }
.footer__copy { color: var(--muted); font-size: .85rem; margin-top: .6rem; }

/* ---------- Floating action button ---------- */
.fab {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 12px 30px rgba(245,179,1,.4);
  z-index: 40;
  transition: transform .2s var(--ease);
}
.fab:hover { transform: scale(1.08); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid--services { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav__links {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    padding: 10px 22px 22px;
    transform: translateY(-130%);
    transition: transform .35s var(--ease);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { width: 100%; padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .nav__links a.btn { margin-top: .8rem; border-bottom: 0; justify-content: center; }
  .nav__toggle { display: flex; }
  .hero { padding-top: 110px; }
  .hero__stats { gap: 1.6rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 70px 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
