/* ============================================================
   Gee'WaWa — Safety Footwear Brand Site
   Simple static stylesheet. No build step required.
   ============================================================ */

:root {
  --ink: #171714;
  --ink-soft: #55554f;
  --ink-faint: #8a8a82;
  --paper: #ffffff;
  --surface: #f4f2ee;
  --surface-alt: #ece8e0;
  --line: #e2ded4;
  --accent: #c8551f;
  --accent-dark: #a4441a;
  --steel: #34505f;

  --container: 1180px;
  --radius: 4px;
  --font-display: "Oswald", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 600;
}

.section {
  padding: 88px 0;
}

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section--alt { background: var(--surface); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--accent); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-outline.on-dark {
  color: var(--paper);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline.on-dark:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.btn-accent {
  background: var(--accent);
  color: var(--paper);
}
.btn-accent:hover { background: var(--accent-dark); }

/* ---------- Header ---------- */

.site-header {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand img {
  height: 26px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--paper);
  border-color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--paper);
  display: block;
}

/* ---------- Hero ---------- */

.hero {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.hero .container {
  padding-top: 100px;
  padding-bottom: 110px;
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(38px, 5.5vw, 64px);
  margin-bottom: 22px;
  color: var(--paper);
}

.hero-lede {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-art {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art svg {
  width: 100%;
  max-width: 380px;
  height: auto;
  color: rgba(255,255,255,0.9);
}

.hero-photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 3;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.55);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-mark-bg {
  position: absolute;
  right: -60px;
  top: -40px;
  opacity: 0.05;
  width: 520px;
  height: 520px;
  z-index: 1;
  pointer-events: none;
}

.hero-strip {
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
}

.hero-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 36px;
  padding: 20px 28px;
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ---------- Feature grid ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-card {
  background: var(--paper);
  padding: 36px 32px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  color: var(--accent);
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14.5px;
  margin: 0;
}

/* ---------- Industries ---------- */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.industry-card {
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 14px;
}

.industry-icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  color: var(--steel);
}

.industry-card span {
  display: block;
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}

/* ---------- Shoe placeholder media ---------- */

.shoe-placeholder {
  aspect-ratio: 4 / 3;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
}

.shoe-placeholder svg {
  width: 46%;
  height: 46%;
  color: var(--ink-faint);
}

.shoe-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shoe-placeholder.tone-a { background: #f4efe6; }
.shoe-placeholder.tone-b { background: #eef1ee; }
.shoe-placeholder.tone-c { background: #f1eeee; }
.shoe-placeholder.tone-d { background: #eceef1; }

/* ---------- Shoe cards (home preview) ---------- */

.shoe-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.shoe-card { display: block; }

.shoe-card .shoe-media { margin-bottom: 16px; }

.shoe-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.shoe-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.tag {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--steel);
  background: var(--surface-alt);
  border-radius: 3px;
  padding: 4px 8px;
}

/* ---------- Story teaser ---------- */

.story-teaser {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.story-teaser blockquote {
  margin: 0 0 26px;
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  line-height: 1.4;
  border-left: 3px solid var(--accent);
  padding-left: 22px;
}

.story-visual {
  background: var(--ink);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-visual svg {
  width: 40%;
  height: 40%;
  color: rgba(255,255,255,0.85);
}

/* ---------- Products page ---------- */

.page-hero {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0 56px;
}

.page-hero .eyebrow { color: #e9a276; }
.page-hero h1 { color: var(--paper); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.68); max-width: 620px; margin: 0; }

.category-block + .category-block {
  margin-top: 72px;
}

.category-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 32px;
}

.category-head h2 {
  font-size: 24px;
  margin: 0;
}

.category-head p {
  margin: 0;
  font-size: 14px;
  max-width: 380px;
  text-align: right;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}

.product-card .shoe-placeholder {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
}

.product-body {
  padding: 18px 18px 22px;
}

.product-body h3 {
  font-size: 15.5px;
  margin-bottom: 6px;
}

.product-body p {
  font-size: 13.5px;
  margin-bottom: 10px;
}

/* ---------- About page ---------- */

.about-hero {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0 80px;
}

.about-hero .container { max-width: 760px; text-align: center; }
.about-hero h1 { color: var(--paper); font-size: clamp(32px, 5vw, 48px); }
.about-hero p { color: rgba(255,255,255,0.72); font-size: 18px; margin: 0 auto; }

.about-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.about-block.reverse .about-visual { order: 2; }
.about-block.reverse .about-copy { order: 1; }

.about-visual {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual svg {
  width: 38%;
  height: 38%;
  color: var(--steel);
}

.about-copy h2 {
  font-size: 26px;
  margin-bottom: 16px;
}

.about-copy p { font-size: 15.5px; }

.about-block + .about-block {
  margin-top: 88px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  padding: 30px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.value-card .feature-icon { margin-bottom: 16px; }
.value-card h3 { font-size: 16px; margin-bottom: 8px; }
.value-card p { font-size: 13.5px; margin: 0; }

.closing-cta {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 80px 0;
}

.closing-cta h2 { color: var(--paper); font-size: clamp(26px, 4vw, 38px); max-width: 640px; margin: 0 auto 16px; }
.closing-cta p { color: rgba(255,255,255,0.68); max-width: 520px; margin: 0 auto 32px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  padding: 56px 0 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.footer-brand img { height: 22px; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 13.5px; max-width: 320px; margin: 0; }

.footer-nav {
  display: flex;
  gap: 56px;
}

.footer-col h4 {
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
}
.footer-col a:hover { color: var(--paper); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .shoe-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .story-teaser { grid-template-columns: 1fr; }
  .story-visual { max-width: 420px; }
  .about-block,
  .about-block.reverse { grid-template-columns: 1fr; }
  .about-block.reverse .about-visual,
  .about-block.reverse .about-copy { order: initial; }
  .about-visual { max-width: 420px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .section { padding: 64px 0; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .category-head { flex-direction: column; align-items: flex-start; }
  .category-head p { text-align: left; }
  .footer-top { flex-direction: column; }
  .footer-nav { gap: 36px; }
}

@media (max-width: 520px) {
  .feature-grid { grid-template-columns: 1fr; }
  .shoe-preview-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-nav { flex-wrap: wrap; }
}

/* ---------- Mobile nav open state ---------- */

.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ink);
  padding: 24px 28px 28px;
  gap: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 200;
  overflow-y: auto;
}

.nav-open .nav-links a {
  font-size: 20px;
}

body.nav-locked { overflow: hidden; }
