/* ERICAN static site — design system (no build step). */
:root {
  --yellow: #fbc50b;
  --charcoal: #332c2b;
  --red: #e62129;
  --warm: #f7f7f4;
  --ink: #181716;
  --sec: #4d5255;
  --muted: #858b90;
  --hair: #e5e7e8;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  background: var(--warm);
  color: var(--ink);
  font-family: "Inter", system-ui, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  color: var(--charcoal);
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
::selection {
  background: var(--yellow);
  color: var(--charcoal);
}
:focus-visible {
  outline: 2px solid var(--charcoal);
  outline-offset: 2px;
}
h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  margin: 0;
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.mono {
  font-family: "IBM Plex Mono", monospace;
}
.sc {
  font-family: "Noto Sans SC", sans-serif;
}

/* skip link (kept on-canvas but above the viewport, so it never causes h-scroll) */
.skip {
  position: absolute;
  left: 8px;
  top: -48px;
  z-index: 100;
  background: var(--charcoal);
  color: #fff;
  padding: 10px 16px;
  font-size: 14px;
}
.skip:focus {
  top: 8px;
}

/* grids/backdrops */
.grid-light {
  background-image:
    repeating-linear-gradient(0deg, rgba(51, 44, 43, 0.035) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(90deg, rgba(51, 44, 43, 0.035) 0 1px, transparent 1px 96px);
}
.grid-dark {
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 96px);
}

/* header */
header.site {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 247, 244, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hair);
}
.hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
  padding: 10px 24px;
  max-width: 1440px;
  margin: 0 auto;
}
.hd .logo img {
  height: 70px;
  width: auto;
}
nav.primary {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
nav.primary a {
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 2px solid transparent;
}
nav.primary a:hover {
  border-bottom-color: var(--yellow);
}
nav.primary a.active {
  border-bottom-color: var(--yellow);
}
.hd-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.langs {
  display: flex;
  gap: 2px;
}
.langs a {
  padding: 8px 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
}
.langs a.zh {
  font-family: "Noto Sans SC", sans-serif;
}
.langs a.on {
  background: var(--charcoal);
  color: #fff;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  padding: 12px 20px;
  font-size: 14px;
  border: 1px solid transparent;
}
.btn-y {
  background: var(--yellow);
  color: var(--charcoal);
}
.btn-y:hover {
  background: var(--charcoal);
  color: #fff;
}
.btn-o {
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-o:hover {
  background: var(--charcoal);
  color: #fff;
}
.btn-lg {
  font-size: 16px;
  padding: 16px 26px;
}
.hamb {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--charcoal);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.hamb span {
  width: 20px;
  height: 2px;
  background: var(--charcoal);
  display: block;
  transition:
    transform 0.2s,
    opacity 0.2s;
}
.hd-mobile {
  display: none;
  align-items: center;
  gap: 10px;
}
#mobnav {
  display: none;
  flex-direction: column;
  background: var(--warm);
  border-bottom: 1px solid var(--hair);
  box-shadow: 0 16px 32px rgba(24, 23, 22, 0.14);
  padding: 8px 0 16px;
}
#mobnav a {
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--hair);
}
#mobnav .mlangs {
  display: flex;
  gap: 8px;
  padding: 16px 24px 4px;
}
#mobnav .mlangs a {
  min-width: 52px;
  min-height: 44px;
  border: 1px solid #bcc0c3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
#mobnav .mlangs a.on {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}
body.menu-open #mobnav {
  display: flex;
}
body.menu-open .hamb span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.menu-open .hamb span:nth-child(2) {
  opacity: 0;
}
body.menu-open .hamb span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 979px) {
  nav.primary,
  .hd-right {
    display: none;
  }
  .hd-mobile {
    display: flex;
  }
  .hamb {
    display: flex;
  }
  .hd .logo img {
    height: 58px;
  }
}
@media (min-width: 980px) {
  #mobnav {
    display: none !important;
  }
}

/* sections */
.sec {
  border-bottom: 1px solid var(--hair);
}
.sec-white {
  background: #fff;
}
.sec-warm {
  background: var(--warm);
}
.sec-q {
  background: #f2f3f3;
}
.sec-dark {
  background: var(--charcoal);
  color: var(--warm);
}
/* Vertical rhythm only — keep the container's 24px side gutters intact. */
.pad {
  padding-top: clamp(56px, 8vw, 110px);
  padding-bottom: clamp(56px, 8vw, 110px);
}
.pad-lg {
  padding-top: clamp(64px, 9vw, 120px);
  padding-bottom: clamp(64px, 9vw, 120px);
}
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.kicker .tick {
  width: 2px;
  height: 16px;
  background: var(--red);
  display: inline-block;
}
.kicker span.k {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--sec);
  text-transform: uppercase;
}
.sec-dark .kicker span.k {
  color: #bcc0c3;
}
h1.hero {
  font-weight: 800;
  font-size: clamp(2.5rem, 5.4vw, 6.2rem);
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: pre-line;
}
h1.ph {
  font-weight: 800;
  font-size: clamp(2.1rem, 4.5vw, 5rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #fff;
}
h2.big {
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 4.4rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  white-space: pre-line;
}
h2.mid {
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
/* İkincil (Çince/Türkçe) slogan — okunur ama daha hafif */
.sub {
  font-weight: 300;
  line-height: 1.35;
  white-space: pre-line;
  margin: 12px 0 0;
  color: #5b6266;
}
.sec-dark .sub,
.cta .sub {
  color: rgba(247, 247, 244, 0.82);
}
.intro {
  font-size: clamp(15px, 1.7vw, 19px);
  line-height: 1.65;
  color: var(--sec);
  max-width: 640px;
}
.sec-dark .intro {
  color: #bcc0c3;
}
.lead {
  margin-top: 16px;
}

/* hero */
.hero-sec {
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(56px, 8vw, 96px);
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 36px 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--hair);
  background: #fff;
  padding: 10px 16px;
  max-width: 100%;
}
.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}
.badge span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--charcoal);
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px) 0;
}
.hero-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(90vw, 440px);
  aspect-ratio: 1;
  border: 10px solid var(--yellow);
  border-right-color: transparent;
  border-radius: 50%;
  opacity: 0.9;
  transform: translate(-50%, -50%) rotate(24deg);
  pointer-events: none;
  z-index: 0;
}
.hero-disc-wrap {
  z-index: 1;
}
.hero-disc-wrap {
  position: relative;
  width: min(76vw, 80%, 400px);
  max-width: 100%;
}
.hero-disc {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 42% 40%, #efefec, #dfe0dc);
  box-shadow: 0 18px 40px rgba(24, 23, 22, 0.18);
  animation: fadein 1.2s ease both;
}
/* Kapak tamamen görünsün diye 'contain' (kırpılmaz) */
.hero-disc img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6%;
}
.hero-sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 42%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0) 58%
  );
  animation: sweep 9s linear infinite;
  transform-origin: 50% 50%;
  pointer-events: none;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.hero-label .ln {
  height: 1px;
  flex: 1;
  background: var(--muted);
}
.hero-label .t {
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(10px, 1.4vw, 12px);
  letter-spacing: 0.12em;
  color: var(--charcoal);
  white-space: nowrap;
}

/* marquee */
.marquee {
  overflow: hidden;
  background: var(--charcoal);
  padding: 16px 0;
}
.marquee .track {
  display: flex;
  width: max-content;
  animation: marq 42s linear infinite;
}
.marquee:hover .track {
  animation-play-state: paused;
}
.marquee .track span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--warm);
  white-space: nowrap;
}
.marquee .track span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-block;
}

/* cards / grids */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: 48px;
  align-items: center;
}
.head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.side-note {
  max-width: 380px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--sec);
  margin: 0;
}
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--hair);
  border-left: 1px solid var(--hair);
}
@media (min-width: 760px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}
.card {
  background: #fff;
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card:hover {
  background: var(--warm);
}
.card .imgbox {
  position: relative;
  height: 180px;
}
.card .imgbox img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.status .d {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.status .s {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--sec);
  text-transform: uppercase;
}
.card h3 {
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.02em;
}
.card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--sec);
  margin: 0;
  flex: 1;
}
.card .foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--hair);
  padding-top: 16px;
  gap: 12px;
  flex-wrap: wrap;
}
.card .foot a {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  padding: 6px 0;
}
.card .foot a:hover {
  color: var(--red);
}

.appcards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 560px) {
  .appcards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 980px) {
  .appcards {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Applications CTA band */
.prodcta {
  margin-top: 48px;
  background: var(--yellow);
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  align-items: center;
  justify-content: space-between;
}
.prodcta .txt {
  max-width: 720px;
}
.prodcta h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.03;
  color: var(--charcoal);
  margin: 0 0 14px;
}
.prodcta p {
  margin: 0;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.6;
  color: #5a4d12;
}
.prodcta-btn {
  background: var(--charcoal);
  color: #fff;
  flex-shrink: 0;
}
.prodcta-btn:hover {
  background: #000;
  color: #fff;
}
.appcard {
  border: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
}
.appcard .imgbox {
  position: relative;
  height: 150px;
  border-bottom: 1px solid var(--hair);
}
.appcard .imgbox img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.appcard .body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.appcard h3 {
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.appcard p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--sec);
  margin: 0;
  flex: 1;
}
.appcard .fam {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.note {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 32px;
}

/* construction */
.constr {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 860px) {
  .constr {
    grid-template-columns: 1fr 1fr;
  }
}
.constr .canwrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.constr .canbox {
  position: relative;
  min-height: clamp(400px, 54vw, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Gerçek konserve kutusu görseli + üzerinden geçen parlama efekti */
.can-product {
  position: relative;
  width: min(92%, 460px);
  margin: 0 auto;
  overflow: hidden;
  animation: fadein 1s ease both;
}
.can-product img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 26px rgba(24, 23, 22, 0.18));
}
.can-product .shine {
  position: absolute;
  top: -10%;
  bottom: -10%;
  left: 0;
  width: 42%;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  mix-blend-mode: screen;
  animation: shineMove 5.5s ease-in-out infinite;
}
@keyframes shineMove {
  0% {
    transform: translateX(-70%) skewX(-8deg);
    opacity: 0;
  }
  25% {
    opacity: 0.9;
  }
  70% {
    opacity: 0.9;
  }
  100% {
    transform: translateX(330%) skewX(-8deg);
    opacity: 0;
  }
}
.constr svg {
  height: 100%;
  width: auto;
  max-width: 100%;
}
/* Montaj döngüsü SVG'nin kendi animasyonuyla (SMIL) yapılır — her tarayıcıda
   çalışır. Hareket-azaltma tercihi açıksa app.js animasyonu durdurur. */
.explabel {
  display: grid;
  grid-template-columns: minmax(96px, 120px) 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--hair);
  align-items: baseline;
}
.explabel .p {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  display: block;
  color: var(--sec);
}
.explabel .z {
  font-family: "Noto Sans SC", sans-serif;
  font-size: 12px;
  color: var(--muted);
}
.explabel p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--sec);
  margin: 0;
}

/* process */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: 0;
  border-top: 1px solid var(--hair);
  border-left: 1px solid var(--hair);
}
.step {
  background: var(--warm);
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 28px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step:hover {
  background: #fff;
}
.step .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.step .num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.step .bar {
  width: 24px;
  height: 2px;
  background: var(--hair);
  display: inline-block;
}
.step h3 {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.015em;
}
.step p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* support dark */
.suphead .line {
  height: 2px;
  background: linear-gradient(90deg, var(--yellow) 0, var(--yellow) 66%, rgba(251, 197, 11, 0.25) 66%);
  margin: clamp(40px, 6vw, 72px) 0 0;
}
.supgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 48px;
  margin-top: 48px;
}
.supcol .n {
  font-family: "IBM Plex Mono", monospace;
  font-size: 44px;
  color: var(--yellow);
  display: block;
  margin-bottom: 20px;
}
.supcol h3 {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
}
.supcol p {
  font-size: 15px;
  line-height: 1.65;
  color: #bcc0c3;
  margin: 0 0 24px;
}
.supcol .pts {
  display: flex;
  flex-direction: column;
}
.supcol .pts span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 9px 0;
  border-top: 1px solid rgba(229, 231, 232, 0.14);
}

/* quality */
.qpoints {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 0;
  border-top: 1px solid var(--hair);
  border-left: 1px solid var(--hair);
  align-content: start;
}
.qpoint {
  background: #f2f3f3;
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.qpoint:hover {
  background: #fff;
}
.qpoint .d {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}
.qpoint span {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
}
.imgframe {
  position: relative;
}
.imgframe img {
  width: 100%;
  height: auto;
  border: 1px solid var(--hair);
}

/* sustainability list */
.slist {
  display: flex;
  flex-direction: column;
}
.sitem {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--hair);
  align-items: baseline;
}
.sitem .n {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--muted);
}
.sitem h3 {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.sitem p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--sec);
  margin: 0;
}

/* locations */
.loc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 24px;
}
.loccard {
  background: #fff;
  border: 1px solid var(--hair);
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.loccard .lbl {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.loccard h3 {
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.03em;
}
.loccard p.addr {
  font-size: 15px;
  line-height: 1.7;
  color: var(--sec);
  margin: 0;
  white-space: pre-line;
}
.loccard .lnote {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.loccard .acts {
  display: flex;
  gap: 12px;
  margin-top: auto;
  flex-wrap: wrap;
}
.loccard .acts a,
.loccard .acts button {
  border: 1px solid var(--charcoal);
  background: transparent;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  color: var(--charcoal);
}
.loccard .acts a:hover,
.loccard .acts button:hover {
  background: var(--charcoal);
  color: #fff;
}
.loccard .acts button.ghost {
  border-color: var(--hair);
  color: var(--sec);
}
.loccard .acts button.ghost:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}

/* final CTA */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}
.cta .ring {
  position: absolute;
  right: -140px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 80px solid var(--yellow);
  opacity: 0.95;
  pointer-events: none;
}
.cta .inner {
  position: relative;
}
.cta .cta-btns {
  display: flex;
  gap: 14px;
  margin-top: 44px;
  flex-wrap: wrap;
}

/* prose / legal / about */
.prose {
  max-width: 820px;
}
.prose p {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  color: var(--sec);
  margin: 0 0 18px;
}
.prose h2 {
  font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
  margin: 28px 0 8px;
}
.draft {
  border: 1px solid var(--yellow);
  background: #fff8e0;
  padding: 16px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.specrow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
@media (min-width: 560px) {
  .specrow {
    grid-template-columns: 1fr 1fr;
  }
}
.specrow .cell {
  background: #fff;
  padding: 16px;
}
.specrow .cell dt {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.specrow .cell dd {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--charcoal);
}

/* contact form (mailto) */
.form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 720px;
}
@media (min-width: 560px) {
  .form {
    grid-template-columns: 1fr 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-size: 13px;
  font-weight: 600;
}
.field input,
.field textarea {
  border: 1px solid #bcc0c3;
  background: var(--warm);
  padding: 13px 14px;
  font-size: 15px;
  font-family: inherit;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--charcoal);
  outline: none;
}
.emailbig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--charcoal);
}
.emailbig:hover {
  color: var(--red);
}

/* footer */
footer.site {
  background: var(--ink);
  color: #bcc0c3;
}
.ft {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 24px 36px;
}
.ft-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(229, 231, 232, 0.12);
}
.ft img {
  height: 88px;
  width: auto;
  margin-bottom: 20px;
}
.ft .blurb {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 300px;
  margin: 0;
}
.ft h4 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--sec);
  font-weight: 400;
  margin: 0 0 10px;
}
.ft-col a {
  display: block;
  color: #bcc0c3;
  font-size: 14px;
  padding: 6px 0;
}
.ft-col a:hover {
  color: #fff;
}
.ft .addr {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  white-space: pre-line;
  margin: 0 0 12px;
}
.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  flex-wrap: wrap;
}
.ft-bottom .cp {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--sec);
}
.ft-bottom .links {
  display: flex;
  gap: 8px 20px;
  flex-wrap: wrap;
}
.ft-bottom .links a {
  color: var(--muted);
  font-size: 12px;
  padding: 6px 0;
}
.ft-bottom .links a:hover {
  color: #fff;
}

/* animations */
@keyframes marq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes sweep {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* --- quality: compliance, certificates, standards, bpa-free --- */
.qblock {
  margin-top: 56px;
}
.qblock h2.mid {
  margin-bottom: 14px;
}
.qgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}
@media (min-width: 760px) {
  .qgrid {
    grid-template-columns: 1fr 1fr;
  }
}
.qcard {
  border: 1px solid var(--hair);
  background: #fff;
  padding: 26px 28px;
}
.qcard h3 {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.qcard p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--sec);
}
.stds {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.std {
  border: 1px solid var(--hair);
  background: var(--warm);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  padding: 9px 12px;
  line-height: 1.3;
}
.std b {
  color: var(--red);
  font-weight: 600;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  align-items: center;
}
.qbadge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid var(--charcoal);
  border-radius: 999px;
  padding: 9px 16px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  background: #fff;
}
.qbadge.bpa {
  border-color: var(--red);
  color: var(--red);
}
.qbadge .rg {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid currentColor;
}
.qnote {
  margin-top: 26px;
  border-left: 3px solid var(--yellow);
  background: var(--warm);
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--sec);
}
/* map */
.mapwrap {
  margin-top: 32px;
  border: 1px solid var(--hair);
  overflow: hidden;
  background: #fff;
}
.mapwrap iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  filter: grayscale(0.12);
}
@media (max-width: 600px) {
  .mapwrap iframe {
    height: 300px;
  }
}
/* about sister sites */
.sisters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}
.sister {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--hair);
  background: #fff;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.sister:hover {
  border-color: var(--yellow);
  transform: translateY(-1px);
}
.sister .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}
.sister .u {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}
/* traceability strip (support) */
.traceband {
  border: 1px solid var(--hair);
  background: var(--warm);
  padding: 28px;
  margin-top: 8px;
}
.traceband h3 {
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.traceband > p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--sec);
  max-width: 720px;
}
.tracechips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tracechip {
  border: 1px solid var(--hair);
  background: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  padding: 9px 13px;
}

/* Ø73 positioning block (products) */
.o73 {
  margin-top: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  padding: 22px 24px;
  max-width: 720px;
}
.sec-white .o73,
.sec-warm .o73 {
  border-color: var(--hair);
  background: #fff;
}
.o73p {
  margin: 0 0 12px;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.6;
  color: #fff;
}
.sec-white .o73p,
.sec-warm .o73p {
  color: var(--ink);
}
.o73 b {
  color: var(--yellow);
}
.sec-white .o73 b,
.sec-warm .o73 b {
  color: var(--charcoal);
}
.o73cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--yellow);
}
.sec-white .o73cta,
.sec-warm .o73cta {
  color: var(--charcoal);
}
.o73cta:hover {
  text-decoration: underline;
}

/* capacity band (capabilities) */
.capband {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  margin-top: 8px;
}
@media (min-width: 640px) {
  .capband {
    grid-template-columns: 1fr 1fr;
  }
}
.capcell {
  background: #fff;
  padding: 32px 28px;
}
.capcell .big-n {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  color: var(--charcoal);
  line-height: 1.05;
}
.capcell .lbl {
  margin-top: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}
.capnote {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--sec);
  max-width: 640px;
}

/* certification / badge logos */
.certlogos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px 30px;
  margin-top: 26px;
}
.certlogos img {
  height: 74px;
  width: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 600px) {
  .certlogos img {
    height: 56px;
  }
}
.loclogo {
  height: 110px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}
.recycle-emblem {
  height: 100px;
  width: auto;
  float: right;
  margin: 0 0 14px 26px;
}
@media (max-width: 600px) {
  .recycle-emblem {
    height: 68px;
    margin-left: 14px;
  }
}
