:root {
  --ink: #111111;
  --muted: #5e5550;
  --paper: #f7f4ef;
  --photo-paper: #ffffff;
  --white: #ffffff;
  --red: #CE2029;
  --red-dark: #CE2029;
  --brown: #6f4a31;
  --brown-dark: #342116;
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 14px 34px rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: #ffffff;
  border-bottom: 2px solid var(--red);
  backdrop-filter: blur(16px);
}

.brand {
  --brand-height: clamp(42px, 4.9vw, 68px);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: var(--brand-height);
  max-width: min(400px, calc(100vw - 150px));
  object-fit: contain;
}

.brand-anniversary {
  display: block;
  width: auto;
  height: var(--brand-height);
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--red);
}

.header-contact {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.25;
  text-align: right;
  white-space: nowrap;
}

.header-contact a {
  text-decoration: none;
}

.header-contact a:hover {
  color: var(--red);
}

.language-switch {
  display: inline-flex;
  padding: 3px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.language-switch button {
  width: 42px;
  min-height: 34px;
  border: 0;
  color: var(--muted);
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}

.language-switch button.active {
  color: var(--white);
  background: var(--red);
}

.hero {
  position: relative;
  min-height: min(620px, calc(100vh - 72px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  transform: scale(1.02);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(17, 17, 17, 0.78),
    rgba(52, 33, 22, 0.48) 52%,
    rgba(17, 17, 17, 0.12)
  );
}

.hero-media span {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  animation: heroFade 24s infinite;
}

.hero-media span:nth-child(1) {
  animation-delay: 0s;
  background-position: center 42%;
}

.hero-media span:nth-child(2) {
  animation-delay: 4s;
  background-position: center 48%;
}

.hero-media span:nth-child(3) {
  animation-delay: 8s;
  background-position: 58% center;
}

.hero-media span:nth-child(4) {
  animation-delay: 12s;
  background-position: 44% center;
}

.hero-media span:nth-child(5) {
  animation-delay: 16s;
  background-position: 68% center;
}

.hero-media span:nth-child(6) {
  animation-delay: 20s;
  background-position: 58% center;
}

@keyframes heroFade {
  0%,
  24% {
    opacity: 0;
  }

  4%,
  16% {
    opacity: 0.82;
  }

  20%,
  100% {
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin: 0 0 clamp(42px, 8vh, 82px) clamp(18px, 6vw, 86px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(2.15rem, 4.2vw, 4.3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-question {
  max-width: 600px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  font-weight: 600;
  line-height: 1.35;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(1.16rem, 1.92vw, 1.92rem);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.28;
}

.feature-grid h3 {
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 800;
}

.hero-content p:not(.eyebrow):not(.hero-question) {
  max-width: 610px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--red-dark);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.44);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.proof-band div {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 26px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.proof-band strong {
  color: var(--red);
  font-size: clamp(1.45rem, 2.7vw, 2.25rem);
  line-height: 1;
}

.proof-band span {
  color: var(--muted);
}

.split-section,
.service-section,
.environment-section,
.contact-section {
  padding: clamp(48px, 7vw, 92px) clamp(18px, 6vw, 86px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 345px;
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  background: var(--photo-paper);
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.06rem;
}

.company-photos {
  display: grid;
  gap: 14px;
  width: 345px;
  max-width: 100%;
}

.company-photos img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--photo-paper);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.1);
}

.service-section {
  background: var(--paper);
}

.service-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(24px, 5vw, 56px);
  align-items: end;
  margin-bottom: 36px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 0;
}

.inline-photo,
.contact-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.inline-photo {
  max-width: 300px;
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  margin: -8px 0 18px;
}

.service-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-gallery .service-gallery-contain {
  object-fit: contain;
  background: #f2f0ec;
}

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

.feature-grid article,
.environment-list article {
  min-height: 250px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-grid p,
.environment-list p {
  margin: 0;
  color: var(--muted);
}

.text-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.text-list li + li {
  margin-top: 10px;
}

.service-note {
  margin-top: 30px;
  padding: 22px 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-note strong {
  display: block;
  color: var(--red);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.3;
  text-transform: none;
}

.service-note p {
  margin: 12px 0 0;
  font-weight: 800;
}

.service-reasons {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 38%);
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 26px;
  background: var(--white);
  border: 2px solid rgba(206, 32, 41, 0.22);
  border-left: 6px solid var(--red);
  border-radius: 8px;
}

.service-reasons strong {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.25;
}

.service-reasons-photo {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

.environment-section {
  color: var(--white);
  background: var(--brown-dark);
}

.environment-section .section-heading p,
.environment-section .section-heading h2 {
  color: var(--white);
}

.environment-section p.eyebrow[data-i18n="environmentEyebrow"] {
  color: var(--red) !important;
}

.environment-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.recycle-mark {
  width: clamp(150px, 20vw, 230px);
  height: auto;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

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

.environment-list article {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.environment-list p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(240px, 300px) 400px minmax(280px, 380px);
  gap: 22px;
  align-items: start;
  justify-content: center;
  padding-top: clamp(38px, 5vw, 64px);
  padding-bottom: clamp(38px, 5vw, 64px);
  background: var(--white);
}

.contact-section > div:first-child {
  grid-column: 1;
}

.contact-section address {
  grid-column: 1;
}

.contact-media {
  grid-column: 2 / span 2;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: 400px minmax(280px, 380px);
  gap: 18px;
  align-items: start;
}

.contact-photo {
  width: 400px;
  max-width: 100%;
}

.map-embed {
  width: 100%;
  height: 277px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.jobs-note {
  grid-column: 1;
  justify-self: stretch;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 8px;
  padding-top: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.jobs-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--red);
  border: 1px solid rgba(206, 32, 41, 0.28);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.jobs-link:hover {
  border-color: var(--red);
}

address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

address strong,
address a {
  color: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 6vw, 86px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--brown-dark);
}

@media (max-width: 860px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px 18px;
    padding: 10px 18px;
  }

  .brand {
    --brand-height: clamp(34px, 7vw, 54px);
    min-width: 0;
    gap: 10px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    overflow-x: hidden;
    padding-top: 4px;
  }

  .header-contact {
    margin-left: auto;
    max-width: 100%;
  }

  .hero {
    min-height: 540px;
  }

  .hero-media {
    transform: scale(1.01);
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.68), rgba(52, 33, 22, 0.74));
  }

  .hero-media span:nth-child(2) {
    background-position: 42% center;
  }

  .hero-media span:nth-child(3) {
    background-position: 66% center;
  }

  .hero-media span:nth-child(4) {
    background-position: 44% center;
  }

  .hero-media span:nth-child(5) {
    background-position: 72% center;
  }

  .hero-media span:nth-child(6) {
    background-position: 62% center;
  }

  .hero-content {
    margin: 0 auto 54px;
    width: min(100% - 32px, 720px);
  }

  .proof-band,
  .split-section,
  .service-intro,
  .service-gallery,
  .feature-grid,
  .environment-list,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-media {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: 1fr;
    max-width: 430px;
    width: 100%;
  }

  .environment-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-band div {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .company-photos {
    width: min(100%, 345px);
    justify-self: center;
  }

  .inline-photo {
    justify-self: center;
  }

  .feature-grid article,
  .environment-list article {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 0.95rem;
  }

  .site-header {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 12px;
    padding: 10px 14px;
  }

  .brand {
    --brand-height: clamp(27px, 8vw, 34px);
    width: auto;
    min-width: 0;
    max-width: 100%;
    gap: 6px;
    overflow: visible;
  }

  .brand-logo {
    width: auto;
    height: var(--brand-height);
    max-width: calc(100% - 44px);
    min-width: 0;
    object-fit: contain;
  }

  .brand-anniversary {
    width: auto;
    height: var(--brand-height);
    flex: 0 0 auto;
    object-fit: contain;
  }

  .language-switch {
    margin-left: auto;
  }

  .header-contact {
    grid-column: 1 / -1;
    order: initial;
    width: 100%;
    margin-left: 0;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.82rem;
    text-align: left;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: initial;
    gap: 10px 14px;
    justify-content: flex-start;
    font-size: 0.88rem;
    padding-bottom: 2px;
    max-width: 100%;
  }

  .hero {
    min-height: 520px;
  }

  .hero-content {
    margin-bottom: 34px;
  }

  h1 {
    font-size: clamp(1.9rem, 11vw, 2.8rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.08rem, 5.6vw, 1.48rem);
    line-height: 1.18;
  }

  .hero-question {
    margin-top: 14px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .button {
    width: 100%;
  }

  img,
  iframe {
    max-width: 100%;
  }

  .proof-band div {
    min-height: auto;
    padding: 18px 16px;
  }

  .split-section,
  .service-section,
  .environment-section,
  .contact-section {
    padding: 38px 16px;
  }

  .section-copy p:not(.eyebrow),
  .section-heading p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .service-intro {
    gap: 22px;
    margin-bottom: 26px;
  }

  .service-gallery {
    gap: 12px;
    margin-bottom: 16px;
  }

  .service-gallery img {
    width: 100%;
    max-width: 100%;
  }

  .feature-grid article,
  .environment-list article,
  .service-reasons,
  .service-note {
    padding: 20px;
  }

  .service-reasons {
    grid-template-columns: 1fr;
  }

  .service-reasons-photo {
    height: auto;
    max-height: none;
  }

  .text-list {
    padding-left: 16px;
  }

  .recycle-mark {
    width: min(72vw, 190px);
    align-self: center;
  }

  .contact-section {
    gap: 18px;
  }

  .contact-photo {
    width: min(100%, 400px);
  }

  .company-photos,
  .inline-photo,
  .contact-media,
  .contact-photo,
  .map-embed {
    width: 100%;
    max-width: 100%;
  }

  .map-embed {
    height: 230px;
  }

  .jobs-note {
    grid-column: 1;
    justify-content: flex-start;
    font-size: 0.86rem;
  }

  .site-footer {
    padding: 20px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 380px) {
  .brand {
    --brand-height: 26px;
    max-width: 100%;
    gap: 5px;
  }

  .brand-logo {
    max-width: calc(100% - 34px);
  }

  .brand-anniversary {
    height: var(--brand-height);
  }

  .header-contact {
    flex-direction: column;
    gap: 2px;
  }

  .main-nav {
    gap: 12px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 500px;
  }
}
