:root {
  --ink: #151515;
  --ink-2: #242421;
  --steel: #626866;
  --muted: #767a75;
  --paper: #f4f0e8;
  --paper-2: #fffaf0;
  --line: rgba(21, 21, 21, 0.16);
  --line-dark: rgba(255, 250, 240, 0.14);
  --safety: #f5b700;
  --copper: #bf6a3a;
  --green: #2f6f54;
  --white: #fffdfa;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  --radius: 8px;
  --max: 1180px;
  --header: 76px;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 56px 56px;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3,
.brand-mark,
.eyebrow,
.strip-item span,
.flow-list span {
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(48px, 7.4vw, 106px);
  line-height: 0.98;
  font-weight: 900;
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.04;
  font-weight: 900;
}

h3 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 30;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--safety);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: var(--header);
  padding: 14px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: rgba(17, 17, 16, 0.74);
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 17, 16, 0.94);
  border-color: rgba(245, 183, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--safety);
  border-radius: 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}

.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
  white-space: nowrap;
}

.brand small {
  display: block;
  color: rgba(255, 253, 250, 0.62);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.site-nav a {
  padding: 8px 10px;
  color: rgba(255, 253, 250, 0.8);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-link,
.header-cta,
.primary-action,
.secondary-action,
.text-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-link {
  color: var(--white);
  border: 1px solid rgba(255, 250, 240, 0.18);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
}

.header-cta,
.primary-action {
  color: var(--ink);
  background: var(--safety);
  border: 1px solid var(--safety);
  box-shadow: 0 10px 26px rgba(245, 183, 0, 0.24);
}

.secondary-action {
  color: var(--white);
  border: 1px solid rgba(255, 250, 240, 0.42);
  background: rgba(255, 253, 250, 0.06);
}

.header-link:hover,
.header-cta:hover,
.primary-action:hover,
.secondary-action:hover,
.text-action:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--header) + 70px) max(20px, calc((100vw - var(--max)) / 2)) 66px;
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("assets/images/metal-yard.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 12, 11, 0.92) 0%, rgba(12, 12, 11, 0.68) 42%, rgba(12, 12, 11, 0.28) 100%),
    linear-gradient(180deg, rgba(12, 12, 11, 0.52) 0%, rgba(12, 12, 11, 0.08) 46%, rgba(12, 12, 11, 0.86) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 96px);
}

.hero-content {
  width: min(940px, 100%);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--copper);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.hero .eyebrow {
  color: var(--safety);
}

.hero-copy {
  width: min(720px, 100%);
  margin-top: 24px;
  color: rgba(255, 253, 250, 0.86);
  font-size: 20px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(780px, 100%);
  margin: 44px 0 0;
  color: var(--white);
  border: 1px solid rgba(255, 250, 240, 0.16);
  background: rgba(255, 250, 240, 0.14);
}

.hero-proof div {
  padding: 18px;
  background: rgba(12, 12, 11, 0.48);
}

.proof-term {
  display: block;
  color: var(--safety);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.proof-value {
  display: block;
  margin-top: 7px;
  color: rgba(255, 253, 250, 0.76);
  font-size: 14px;
  line-height: 1.45;
}

.scroll-cue {
  position: absolute;
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 32px;
  color: rgba(255, 253, 250, 0.62);
  writing-mode: vertical-rl;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  margin: 10px auto 0;
  background: var(--safety);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
  background: #1b1b19;
}

.strip-item {
  display: flex;
  align-items: center;
  min-height: 84px;
  gap: 14px;
  padding: 20px 26px;
  border-right: 1px solid var(--line-dark);
  font-weight: 800;
  line-height: 1.35;
}

.strip-item span {
  color: var(--safety);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 25px;
  line-height: 1;
}

.section {
  padding: 104px max(20px, calc((100vw - var(--max)) / 2));
}

.section-light {
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(191, 106, 58, 0.12), transparent 28%),
    var(--paper);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(rgba(21, 21, 21, 0.86), rgba(21, 21, 21, 0.92)),
    url("assets/images/metal-texture.jpg") center / cover;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.8fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 40px;
}

.section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -20px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.section-dark .section-head p:not(.eyebrow) {
  color: rgba(255, 253, 250, 0.7);
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.material-card {
  min-height: 430px;
  display: grid;
  grid-template-rows: 210px 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(21, 21, 21, 0.08);
}

.material-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.material-card > div {
  padding: 24px;
}

.material-label {
  display: block;
  margin-bottom: 12px;
  color: var(--copper);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.material-card p {
  margin-top: 14px;
  color: var(--muted);
}

.flow-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list::before {
  content: "";
  position: absolute;
  top: 53px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: linear-gradient(90deg, var(--safety), rgba(245, 183, 0, 0.08));
}

.flow-list li {
  position: relative;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.055);
  backdrop-filter: blur(8px);
}

.flow-list span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 32px;
  color: var(--ink);
  background: var(--safety);
  border-radius: 50%;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.flow-list p {
  margin-top: 14px;
  color: rgba(255, 253, 250, 0.72);
}

.cleanup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  align-items: stretch;
  min-height: 620px;
  color: var(--white);
  background: var(--ink);
}

.cleanup-image {
  min-height: 500px;
}

.cleanup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cleanup-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(24px, calc((100vw - var(--max)) / 2)) 80px 64px;
  background:
    linear-gradient(135deg, rgba(21, 21, 21, 0.96), rgba(47, 111, 84, 0.74)),
    radial-gradient(circle at top right, rgba(245, 183, 0, 0.22), transparent 34%);
}

.cleanup-copy p {
  margin-top: 20px;
  color: rgba(255, 253, 250, 0.76);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 253, 250, 0.86);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--safety);
  border-bottom: 2px solid var(--safety);
  transform: rotate(-45deg);
}

.text-action {
  width: fit-content;
  margin-top: 34px;
  color: var(--safety);
  border: 1px solid rgba(245, 183, 0, 0.46);
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 26px;
}

.company-statement {
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(21, 21, 21, 0.92), rgba(21, 21, 21, 0.76)),
    url("assets/images/metal-offcuts.jpg") center / cover;
  border-radius: var(--radius);
}

.large-copy {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 900;
}

.company-statement p:not(.large-copy) {
  margin-top: 26px;
  color: rgba(255, 253, 250, 0.74);
}

.company-data,
.access-data {
  display: grid;
  border-top: 1px solid var(--line);
}

.company-data div,
.access-data div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.data-term {
  color: var(--copper);
  font-weight: 900;
}

.data-value {
  color: var(--steel);
}

.contact-section {
  padding: 104px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(rgba(21, 21, 21, 0.9), rgba(21, 21, 21, 0.94)),
    url("assets/images/scrap-heap.jpg") center / cover fixed;
}

.contact-panel {
  max-width: 760px;
}

.contact-panel p {
  margin-top: 20px;
  color: rgba(255, 253, 250, 0.74);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: 28px;
  margin-top: 48px;
}

.map-frame {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.05);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  filter: grayscale(0.92) contrast(1.06) brightness(0.78);
}

.map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(21, 21, 21, 0.18), transparent 36%, rgba(21, 21, 21, 0.22)),
    linear-gradient(90deg, rgba(245, 183, 0, 0.14), transparent 32%);
  mix-blend-mode: multiply;
}

.map-note {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--safety);
  border-radius: 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.map-placeholder {
  min-height: 340px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    rgba(255, 253, 250, 0.05);
  background-size: 44px 44px;
  text-align: center;
}

.map-placeholder span {
  color: var(--safety);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
}

.map-placeholder strong {
  font-size: 15px;
}

.contact-section .access-data {
  border-color: var(--line-dark);
}

.contact-section .access-data div {
  border-color: var(--line-dark);
}

.contact-section .data-value {
  color: rgba(255, 253, 250, 0.74);
}

.faq-section {
  padding-bottom: 120px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.72);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 900;
  line-height: 1.35;
}

details p {
  padding: 0 24px 24px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px max(20px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 253, 250, 0.7);
  background: #111110;
  border-top: 1px solid var(--line-dark);
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin-top: 6px;
  font-size: 13px;
}

.credit {
  max-width: 430px;
  text-align: right;
}

.mobile-contact {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav {
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 8px 20px 20px;
    background: rgba(17, 17, 16, 0.98);
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line-dark);
    border-radius: 0;
  }

  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 11px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line-dark);
    border-radius: 4px;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    background: currentColor;
  }

  .quick-strip,
  .material-grid,
  .flow-list,
  .company-layout,
  .access-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-list::before {
    display: none;
  }

  .cleanup {
    grid-template-columns: 1fr;
  }

  .cleanup-copy {
    padding: 70px 24px;
  }
}

@media (max-width: 720px) {
  :root {
    --header: 68px;
  }

  body {
    padding-bottom: 74px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .brand strong {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand small {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 82svh;
    padding: calc(var(--header) + 40px) 18px 40px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.02;
  }

  h2 {
    font-size: 36px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .hero-proof {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .quick-strip,
  .material-grid,
  .flow-list,
  .company-layout,
  .access-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .strip-item {
    min-height: 68px;
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .section,
  .contact-section {
    padding: 72px 18px;
  }

  .section-head {
    gap: 18px;
    margin-bottom: 30px;
  }

  .section-head .eyebrow {
    margin-bottom: 0;
  }

  .material-card {
    min-height: auto;
    grid-template-rows: 190px auto;
  }

  .flow-list li {
    min-height: 220px;
  }

  .cleanup-image {
    min-height: 320px;
  }

  .company-statement {
    padding: 26px;
  }

  .company-data div,
  .access-data div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .map-frame,
  .map-frame iframe,
  .map-placeholder {
    min-height: 260px;
  }

  .site-footer {
    display: block;
    padding: 28px 18px;
  }

  .credit {
    margin-top: 18px;
    text-align: left;
  }

  .mobile-contact {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 24;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid rgba(255, 250, 240, 0.16);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .mobile-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 54px;
    color: var(--ink);
    background: var(--safety);
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-contact a + a {
    color: var(--white);
    background: var(--green);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
