:root {
  --navy: #142536;
  --blue-gray: #25384a;
  --steel: #778594;
  --light-steel: #ffffff;
  --line: #d8dee5;
  --text: #1b2430;
  --muted: #5d6875;
  --white: #ffffff;
  --accent: #1f6f9f;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 168px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: auto;
  height: 46px;
  max-width: 176px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: #344253;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 0;
}

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

.nav-cta,
.button {
  border-radius: 4px;
}

.nav-cta {
  padding: 10px 14px !important;
  background: var(--navy);
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}

.hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 80px clamp(20px, 6vw, 72px);
}

.hero-metal {
  background:
    linear-gradient(90deg, rgba(13, 28, 43, 0.88), rgba(22, 42, 61, 0.58), rgba(22, 42, 61, 0.3)),
    repeating-linear-gradient(90deg, #aeb8c2 0 3px, #d9dee3 3px 8px, #8d99a6 8px 12px),
    linear-gradient(135deg, #e9edf1, #919daa);
}

.hero-home {
  background:
    linear-gradient(90deg, rgba(13, 28, 43, 0.9), rgba(22, 42, 61, 0.66), rgba(22, 42, 61, 0.2)),
    url("../assets/images/home/image_10_commercial-stainless-steel-kitchen-with-worktables-oven.webp") center / cover;
}

.hero-content {
  max-width: 720px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #c7d8e6;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.16;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.hero p {
  max-width: 620px;
  color: #e8eef3;
  font-size: 20px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  font-weight: 800;
}

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

.button.secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 78px 20px;
}

.section.narrow {
  max-width: 900px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.band {
  max-width: none;
  background: var(--white);
}

.band > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.card-grid,
.feature-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card-grid.compact,
.feature-grid {
  grid-template-columns: repeat(2, 1fr);
}

.product-card,
.feature-grid article,
.steps article,
.contact-panel {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
}

.product-card {
  overflow: hidden;
}

.product-card h3,
.product-card p {
  padding-left: 18px;
  padding-right: 18px;
}

.product-card h3 {
  padding-top: 18px;
}

.product-card p {
  padding-bottom: 20px;
}

.media-placeholder {
  min-height: 145px;
  border-bottom: 0;
  background: var(--white);
}

.card-media {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-bottom: 0;
  background: var(--white);
}

.card-media.contain {
  object-fit: contain;
  padding: 14px;
}

.catalog-section {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

.catalog-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
  gap: 26px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.catalog-card > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--white);
}

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

.spec-list strong {
  color: var(--navy);
}

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

.thumb-grid figure,
.project-card figure {
  margin: 0;
}

.thumb-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border: 0;
  background: var(--white);
}

.thumb-grid figcaption,
.project-card figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.variant-heading {
  margin: 10px 0 18px;
  font-size: 20px;
  color: var(--navy);
}

.product-section {
  margin-top: 44px;
}

.product-section h3 {
  font-size: 26px;
}

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

.workflow-card,
.project-card,
.support-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.workflow-card ol {
  padding-left: 20px;
  margin: 0;
  color: var(--muted);
}

.workflow-card li {
  margin-bottom: 10px;
}

.project-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--white);
}

.project-card.tall img {
  aspect-ratio: 9 / 16;
}

.support-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
  gap: 24px;
  align-items: center;
}

.support-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--white);
}

.social-links a {
  display: inline-block;
  margin-right: 14px;
  margin-bottom: 10px;
  color: var(--accent);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--accent);
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.deliverables-band .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.deliverables-band .check-list {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.deliverables-band .check-list li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc(50% - 6px);
}

.steps article,
.feature-grid article {
  padding: 22px;
}

.steps span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
}

.cta-section {
  padding: 74px 20px;
  text-align: center;
  background: var(--navy);
}

.cta-section h2 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
}

.cta-section p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: #d7e0e8;
}

.page-hero {
  padding: 92px 20px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(20, 37, 54, 0.94), rgba(37, 56, 74, 0.78)),
    repeating-linear-gradient(90deg, #94a0ad 0 4px, #dce1e5 4px 10px, #6f7c88 10px 15px);
}

.page-hero > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.page-hero p {
  max-width: 760px;
  color: #e8eef3;
  font-size: 19px;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 28px;
  align-items: start;
}

.quote-form {
  display: grid;
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #c7d0d9;
  border-radius: 4px;
  color: var(--text);
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--accent);
  font-weight: 800;
}

.contact-panel {
  padding: 24px;
}

.site-footer {
  background: var(--blue-gray);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 20px;
}

.site-footer h2,
.site-footer h3,
.site-footer p,
.site-footer a {
  color: #edf3f7;
}

.site-footer h2 {
  font-size: 22px;
}

.site-footer h3 {
  margin-bottom: 12px;
  font-size: 15px;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: #cdd7df;
}

.site-footer p {
  margin-bottom: 8px;
  color: #cdd7df;
}

.footer-bottom {
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #cdd7df;
  text-align: center;
}

@media (max-width: 1040px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 18px;
    padding: 12px 18px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 4px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
    border-top: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 10px;
    text-align: center;
  }

  .steps,
  .workflow-grid,
  .project-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid,
  .card-grid.compact {
    grid-template-columns: 1fr;
  }

  .product-card h3,
  .product-card p {
    padding-left: 22px;
    padding-right: 22px;
  }

  .product-card h3 {
    padding-top: 22px;
    font-size: 22px;
  }

  .product-card p {
    padding-bottom: 24px;
    font-size: 17px;
  }

  .card-media {
    height: 260px;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: 500px;
    padding: 64px 20px;
  }

  .page-hero {
    padding: 64px 18px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(25px, 7vw, 34px);
  }

  .card-grid,
  .card-grid.compact {
    grid-template-columns: 1fr;
  }

  .catalog-card,
  .support-card,
  .split,
  .quote-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .brand {
    min-width: 0;
    max-width: calc(100% - 78px);
  }

  .brand-logo {
    height: 38px;
    max-width: 146px;
  }

  .menu-toggle {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 13px;
  }

  .hero {
    min-height: 430px;
    padding: 52px 18px;
    align-items: flex-end;
  }

  .hero p,
  .page-hero p {
    font-size: 17px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .button-row {
    gap: 10px;
  }

  .card-grid,
  .card-grid.compact,
  .feature-grid,
  .steps,
  .catalog-card,
  .workflow-grid,
  .project-grid,
  .support-card,
  .split,
  .check-list,
  .quote-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .thumb-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-media {
    height: 180px;
  }

  .section {
    padding: 46px 16px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .deliverables-band .check-list li:last-child:nth-child(odd) {
    width: 100%;
  }

  .page-hero {
    padding: 54px 16px;
  }
}

@media (hover: none) and (pointer: coarse) {
  body {
    font-size: 18px;
    line-height: 1.65;
  }

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

  .brand-logo {
    height: 42px;
    max-width: 160px;
  }

  .menu-toggle {
    min-height: 42px;
    padding: 9px 14px;
    font-size: 15px;
  }

  .hero {
    min-height: 440px;
    padding: 52px 20px;
    align-items: flex-end;
  }

  h1 {
    font-size: clamp(38px, 9vw, 56px);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(30px, 7vw, 42px);
  }

  h3 {
    font-size: 22px;
  }

  .hero p,
  .page-hero p {
    font-size: 19px;
  }

  .section {
    padding: 54px 20px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .deliverables-band .check-list li:last-child:nth-child(odd) {
    width: 100%;
  }

  .card-grid,
  .card-grid.compact,
  .feature-grid,
  .steps,
  .catalog-card,
  .workflow-grid,
  .project-grid,
  .support-card,
  .split,
  .check-list,
  .quote-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-card h3,
  .product-card p {
    padding-left: 22px;
    padding-right: 22px;
  }

  .product-card h3 {
    padding-top: 22px;
  }

  .product-card p {
    padding-bottom: 24px;
  }

  .card-media {
    height: 260px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .button {
    min-height: 52px;
    font-size: 17px;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding: 10px 14px;
  }

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

  .brand-logo {
    height: 34px;
    max-width: 132px;
  }

  h1 {
    font-size: clamp(30px, 10vw, 38px);
  }

  .hero {
    min-height: 390px;
  }

  .product-card h3,
  .product-card p {
    padding-left: 14px;
    padding-right: 14px;
  }

  .catalog-card,
  .workflow-card,
  .project-card,
  .support-card,
  .steps article,
  .feature-grid article,
  .contact-panel {
    padding: 18px;
  }

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