:root {
  --ink: #003869;
  --ink-soft: #1c4a74;
  --ice: #f5f8fb;
  --white: #ffffff;
  --red: #d52922;
  --red-dark: #a91f1a;
  --steel: #5a7a97;
  --logo-silver: #b2b1bb;
  --line: rgba(0, 56, 105, 0.14);
  --shadow: 0 20px 60px rgba(0, 56, 105, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(0, 39, 73, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--white); }
.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  padding: 3px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.24), 0 0 0 1px rgba(255,255,255,0.18);
}
.brand-text { font-family: "Bebas Neue", sans-serif; font-size: 2rem; letter-spacing: 0.04em; }
.nav-menu { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; color: var(--white); }
.nav-menu a { text-decoration: none; font-weight: 700; opacity: 0.86; }
.nav-menu a:hover { opacity: 1; color: #fff; }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(213,41,34,0.48), transparent 26%),
    linear-gradient(135deg, rgba(0,56,105,0.96), rgba(28,74,116,0.82)),
    url('skate-shop-background.jpeg') center/cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -10% -20%;
  height: 240px;
  background: linear-gradient(10deg, var(--white) 30%, transparent 31%);
}
.hero-content { position: relative; z-index: 2; padding: 100px 0 150px; }
.hero-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 28px;
  padding: 10px 18px 10px 10px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(0, 56, 105, 0.58);
  box-shadow: 0 22px 60px rgba(0,0,0,0.24);
  backdrop-filter: blur(16px);
}
.hero-logo {
  width: 104px;
  height: 104px;
  display: block;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  padding: 5px;
  box-shadow: 0 18px 38px rgba(0,0,0,0.28);
}
.hero-brand-lockup span {
  max-width: 160px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.84);
  font-size: 0.78rem;
}
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--red);
}
.hero .eyebrow { color: #ff9a94; }
h1, h2, h3 { line-height: 1.05; margin: 0; }
h1, h2 { font-family: "Bebas Neue", sans-serif; letter-spacing: 0.02em; }
h1 { font-size: clamp(4rem, 10vw, 8.6rem); max-width: 920px; }
h2 { font-size: clamp(2.7rem, 5.5vw, 5.2rem); }
h3 { font-size: 1.35rem; }
.hero-copy { max-width: 680px; font-size: 1.18rem; color: rgba(255,255,255,0.86); margin: 20px 0 0; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary { color: var(--white); border-color: rgba(255,255,255,0.55); }
.contact-section .btn-secondary { color: var(--ink); border-color: var(--line); }
.btn-light { background: var(--white); color: var(--ink); }
.hero-card {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.hero-card div { padding: 22px; border-right: 1px solid rgba(255,255,255,0.16); }
.hero-card div:last-child { border-right: 0; }
.hero-card strong { display: block; font-size: 1.2rem; }
.hero-card span { display: block; color: rgba(255,255,255,0.76); font-size: 0.92rem; margin-top: 4px; }

.section { padding: 90px 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-heading { text-align: center; max-width: 720px; margin: 0 auto 42px; }
.section-heading.left { text-align: left; margin: 0; }
.section-heading p, .split p, .contact-section p { color: var(--steel); }
.section-dark .section-heading p, .section-dark .card p { color: rgba(255,255,255,0.72); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split > p { font-size: 1.15rem; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  min-height: 210px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
}
.card h3 { margin-bottom: 14px; color: var(--white); }
.pricing-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.pricing-stack { display: grid; gap: 22px; }
.price-list {
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,56,105,0.08);
}
.price-row { display: flex; justify-content: space-between; gap: 20px; padding: 22px 26px; border-bottom: 1px solid var(--line); }
.price-row:last-child { border-bottom: 0; }
.price-row strong { color: var(--red); text-align: right; }
.fbv-panel {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--ice);
  box-shadow: 0 12px 36px rgba(0,56,105,0.08);
}
.fbv-panel h3 { margin-bottom: 10px; }
.fbv-panel p { margin: 0; color: var(--steel); }
.sharpening-logos {
  display: grid;
  gap: 12px;
  align-items: center;
  width: min(100%, 190px);
  margin: 0 auto;
}
.sharpening-logo {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 1px solid rgba(0, 56, 105, 0.14);
  box-shadow: 0 10px 24px rgba(0,56,105,0.08);
}
.fbv-logo {
  max-width: 180px;
  border-radius: 14px;
  background: #000;
}
.blade-master-logo {
  max-width: 132px;
  border-radius: 50%;
}
.sales-section {
  background: var(--ice);
}
.sales-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.sales-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.sales-item {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0,56,105,0.08);
  font-weight: 900;
}
.fundraiser { background: linear-gradient(135deg, var(--red), var(--ink)); color: var(--white); }
.fundraiser .eyebrow { color: rgba(255,255,255,0.84); }
.fundraiser-box { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.fundraiser p { max-width: 780px; color: rgba(255,255,255,0.86); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { padding: 26px; background: var(--ice); border-radius: 24px; border: 1px solid var(--line); }
.feature strong { display: block; margin-bottom: 8px; font-size: 1.1rem; }
.feature span { color: var(--steel); }
.contact-section { background: var(--ice); }
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 70px; align-items: start; }
.contact-card { background: var(--white); padding: 34px; border-radius: 28px; box-shadow: 0 12px 36px rgba(0,56,105,0.08); border: 1px solid var(--line); }
.contact-card p { margin: 20px 0 0; }
.contact-card a { color: var(--red); font-weight: 800; }
.social-follow {
  margin-top: 20px;
}
.social-follow strong {
  display: block;
  margin-bottom: 10px;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ice);
  text-decoration: none;
}
.social-link:hover {
  border-color: rgba(213,41,34,0.35);
  background: var(--white);
}
.social-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: currentColor;
}
.social-link.facebook {
  color: #1877f2;
}
.social-link.instagram {
  color: #d62976;
}
.footer { background: var(--ink); color: rgba(255,255,255,0.72); padding: 26px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer p { margin: 0; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.25); padding: 10px 14px; border-radius: 999px; font-weight: 800; }
  .nav-menu { position: absolute; top: 74px; left: 0; right: 0; display: none; flex-direction: column; gap: 0; background: var(--ink); border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-menu.open { display: flex; }
  .nav-menu a { display: block; padding: 18px 20px; }
  .hero { min-height: auto; }
  .hero-card, .split, .cards, .pricing-layout, .sales-layout, .fundraiser-box, .feature-grid, .contact-grid, .fbv-panel { grid-template-columns: 1fr; }
  .hero-card div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.16); }
  .hero-card div:last-child { border-bottom: 0; }
  .section { padding: 70px 0; }
  .contact-grid { gap: 34px; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  .brand-text { font-size: 1.55rem; }
  .brand-logo { width: 46px; height: 46px; }
  .hero-brand-lockup { gap: 12px; padding: 8px 14px 8px 8px; }
  .hero-logo { width: 82px; height: 82px; }
  h1 { font-size: 3.55rem; }
  .hero-content { padding: 74px 0 120px; }
  .sales-list { grid-template-columns: 1fr; }
  .price-row { flex-direction: column; gap: 6px; }
  .price-row strong { text-align: left; }
}
