/* DG3 Game Day Customs — concept demo
   Palette sampled from DG3's own logo + flyer: black / electric blue / gold / white.
   Fonts: Kanit (display) + Barlow (body) + Permanent Marker (brush accent). */

:root {
  --night: #0b0e15;
  --ink: #11141c;
  --steel: #1a1f2b;
  --paper: #f6f7fa;
  --line: #dfe3ec;
  --white: #ffffff;
  --blue: #2563e3;
  --blue-deep: #1c48ad;
  --sky: #4fa0e8;
  --gold: #ffc117;
  --muted: #5a6272;
  --muted-light: #aab2c4;
  --radius: 16px;
  --pill: 999px;
  --spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { overflow-x: clip; }
body {
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--gold); color: var(--night); }

/* Reveal */
html.js [data-reveal] { opacity: 0; transform: translateY(22px); }
html.js [data-reveal].is-in {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--night); padding: .6rem 1rem; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Demo note */
.demo-note {
  background: var(--gold);
  color: var(--night);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 7px 16px;
  letter-spacing: .01em;
}

/* Topbar */
.topbar { background: var(--night); color: var(--muted-light); font-size: 13.5px; }
.topbar__inner {
  max-width: 1160px; margin: 0 auto; padding: 8px 20px;
  display: flex; gap: 18px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.topbar__phone { color: var(--gold); font-weight: 700; text-decoration: none; letter-spacing: .02em; }
.topbar__phone:hover { color: var(--white); }
@media (max-width: 640px) { .topbar__item--hours { display: none; } }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.nav.is-stuck { box-shadow: 0 6px 24px rgba(11, 14, 21, .08); }
.nav__inner {
  max-width: 1160px; margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; gap: 28px;
}
.nav__brand {
  font-family: "Kanit", sans-serif; font-weight: 800; font-style: italic;
  font-size: 24px; color: var(--night); text-decoration: none; letter-spacing: .01em;
  white-space: nowrap;
}
.nav__brand span { color: var(--blue); }
.nav__brand em {
  font-family: "Barlow", sans-serif; font-style: normal; font-weight: 600;
  font-size: 11px; text-transform: uppercase; letter-spacing: .22em; color: var(--muted);
  display: block; margin-top: -6px;
}
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a {
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: 15px;
  border-bottom: 2px solid transparent; padding-bottom: 2px;
}
.nav__links a:hover { border-color: var(--gold); }
@media (max-width: 860px) { .nav__links { display: none; } .nav__cta { margin-left: auto; } }

/* Buttons */
.btn {
  display: inline-block; border-radius: var(--pill); text-decoration: none;
  font-family: "Kanit", sans-serif; font-weight: 700; font-size: 15px;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 11px 26px; transition: transform .35s var(--spring), background .25s, color .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 15px 34px; font-size: 16px; }
.btn--blue { background: var(--blue); color: var(--white); box-shadow: 0 8px 24px rgba(37, 99, 227, .35); }
.btn--blue:hover { background: var(--blue-deep); }
.btn--gold { background: var(--gold); color: var(--night); box-shadow: 0 8px 24px rgba(255, 193, 23, .3); }
.btn--gold:hover { background: #ffd04a; }
.btn--ghost { background: transparent; color: var(--white); border: 2px solid rgba(255, 255, 255, .55); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--ink { background: var(--night); color: var(--white); }
.btn--ink:hover { background: var(--steel); }

/* Type helpers */
.eyebrow {
  font-family: "Barlow", sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: .28em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--gold); }
.marker { font-family: "Permanent Marker", cursive; font-weight: 400; color: var(--gold); }
.marker--blue { color: var(--blue); }
.link-blue { color: var(--blue); font-weight: 600; }
.link-gold { color: var(--gold); font-weight: 600; }
.link-big { font-family: "Kanit", sans-serif; font-size: 26px; font-weight: 800; text-decoration: none; }

/* Bands (fixed-bg parallax; solid color fallback always underneath) */
.band { position: relative; background-color: var(--night); background-size: cover; background-position: center; }
.band::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 14, 21, .82), rgba(11, 14, 21, .68));
}
.band > * { position: relative; }
.band--mask { background-image: url("/assets/img/splatter-mask-1200.webp"); }
.band--cleats { background-image: url("/assets/img/cleats-zay-1200.webp"); }
.band--glove { background-image: url("/assets/img/glove-night-1200.webp"); background-position: center 30%; }
@media (min-width: 1024px) and (hover: hover) {
  .band { background-attachment: fixed; }
}

/* Hero */
.hero { color: var(--white); }
.hero__inner {
  max-width: 880px; margin: 0 auto; padding: 90px 20px 100px; text-align: center;
}
.hero__logo {
  width: 112px; height: 112px; border-radius: 50%; margin: 0 auto 22px;
  border: 3px solid rgba(255, 255, 255, .85); box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
}
.hero__title {
  font-family: "Kanit", sans-serif; font-style: italic; font-weight: 800;
  font-size: clamp(42px, 7.5vw, 78px); line-height: 1.04; text-transform: uppercase;
  letter-spacing: .01em; margin-bottom: 22px;
}
.hero__title .marker { font-size: .92em; text-transform: none; letter-spacing: 0; }
.hero__sub {
  font-size: clamp(16px, 2vw, 19px); color: rgba(255, 255, 255, .88);
  max-width: 640px; margin: 0 auto 26px;
}
.hero__chips { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.chip {
  border: 1px solid rgba(255, 255, 255, .35); border-radius: var(--pill);
  padding: 6px 16px; font-size: 13.5px; font-weight: 600; color: rgba(255, 255, 255, .92);
  background: rgba(11, 14, 21, .35);
}
.chip--gold { border-color: var(--gold); color: var(--gold); }
.hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__ig {
  display: inline-block; margin-top: 26px; color: var(--muted-light);
  font-size: 14px; letter-spacing: .08em; text-decoration: none;
}
.hero__ig:hover { color: var(--gold); }

/* Sections */
.section { padding: 90px 0; }
.section__inner { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.section__title {
  font-family: "Kanit", sans-serif; font-style: italic; font-weight: 800;
  font-size: clamp(30px, 4.6vw, 48px); text-transform: uppercase; line-height: 1.1;
  margin-bottom: 44px; color: var(--night);
}
.section__title .marker { text-transform: none; }
.section__title--light { color: var(--white); }
.section__cta { margin-top: 40px; font-size: 17px; }
.section__cta--light { color: var(--muted-light); }
.on-ink { background: var(--night); }

/* Services — numbered editorial list */
.services { list-style: none; max-width: 860px; }
.service {
  display: grid; grid-template-columns: 92px 1fr; gap: 20px;
  padding: 26px 0; border-bottom: 1px solid var(--line); align-items: baseline;
}
.service:first-child { border-top: 1px solid var(--line); }
.service__no {
  font-family: "Kanit", sans-serif; font-weight: 700; font-style: italic;
  color: var(--blue); font-size: 15px; letter-spacing: .06em;
}
.service h3 {
  font-family: "Kanit", sans-serif; font-weight: 700; font-size: 21px;
  text-transform: uppercase; letter-spacing: .02em; margin-bottom: 6px;
}
.service p { color: var(--muted); max-width: 620px; }
@media (max-width: 560px) { .service { grid-template-columns: 1fr; gap: 4px; } }

/* Mid band */
.band__inner { max-width: 820px; margin: 0 auto; padding: 84px 20px; text-align: center; color: var(--white); }
.band__line { font-size: clamp(30px, 5vw, 52px); line-height: 1.15; margin-bottom: 14px; }
.band__sub { color: rgba(255, 255, 255, .85); margin-bottom: 28px; font-size: 17px; }

/* Gallery */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.gallery__item {
  border-radius: var(--radius); overflow: hidden; background: var(--steel);
  position: relative;
}
.gallery__item img {
  width: 100%; height: 340px; object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item figcaption {
  padding: 12px 16px; font-size: 14px; color: var(--muted-light);
  border-top: 2px solid var(--blue);
}
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery { grid-template-columns: 1fr; } .gallery__item img { height: 300px; } }

/* Story */
.story { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.story__quote {
  border-left: 4px solid var(--gold); padding: 6px 0 6px 22px; margin: 8px 0 22px;
  font-size: 19px; line-height: 1.65; color: var(--ink);
}
.story__quote cite { display: block; margin-top: 12px; font-style: normal; font-size: 14px; color: var(--muted); }
.story__text > p { color: var(--muted); margin-bottom: 24px; max-width: 560px; }
.story__photo { border-radius: var(--radius); overflow: hidden; }
.story__photo img { width: 100%; height: 480px; object-fit: cover; object-position: center 30%; }
.story__photo figcaption { font-size: 13px; color: var(--muted); padding-top: 8px; }
@media (max-width: 900px) { .story { grid-template-columns: 1fr; } .story__photo img { height: 380px; } }

/* Socials */
.socials { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }
.social-card {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--radius); padding: 16px 24px; text-decoration: none; color: var(--white);
  transition: transform .35s var(--spring), border-color .25s, background .25s;
}
.social-card:hover { transform: translateY(-3px); border-color: var(--gold); background: rgba(255, 255, 255, .12); }
.social-card svg { color: var(--gold); flex-shrink: 0; }
.social-card span { display: flex; flex-direction: column; text-align: left; font-size: 14px; color: var(--muted-light); }
.social-card strong { font-family: "Kanit", sans-serif; font-size: 16px; color: var(--white); letter-spacing: .03em; }

/* Contact */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 28px; }
.contact-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px;
}
.contact-card h3 {
  font-family: "Kanit", sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: 15px; letter-spacing: .1em; color: var(--blue); margin-bottom: 10px;
}
.contact-card__note { font-size: 14px; color: var(--muted); margin-top: 8px; }
@media (max-width: 860px) { .contact-cards { grid-template-columns: 1fr; } }
.mapwrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.mapwrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* Footer */
.footer { background: var(--night); color: var(--muted-light); padding: 64px 0 40px; }
.footer__inner { max-width: 1160px; margin: 0 auto; padding: 0 20px; text-align: center; }
.footer__brand {
  font-family: "Kanit", sans-serif; font-style: italic; font-weight: 800;
  font-size: 28px; color: var(--white); text-transform: uppercase;
}
.footer__brand span { color: var(--sky); }
.footer__tag { font-size: 20px; margin: 6px 0 18px; }
.footer__meta { font-size: 14.5px; margin-bottom: 26px; }
.footer__meta a { color: var(--muted-light); }
.footer__meta a:hover { color: var(--gold); }
.footer__demo {
  max-width: 720px; margin: 0 auto; font-size: 12.5px; line-height: 1.7;
  color: #6b7280; border-top: 1px solid #232838; padding-top: 22px;
}
