:root {
  --teal-900: #062f36;
  --teal-800: #0d4650;
  --teal-700: #135763;
  --teal-100: #e8f3f2;
  --ink: #172023;
  --muted: #657276;
  --line: #dfe7e5;
  --paper: #ffffff;
  --soft: #f5f8f7;
  --gold: #bc9145;
  --tomato: #b84a31;
  --sage: #748b64;
  --shadow: 0 22px 70px rgba(6, 47, 54, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--teal-900);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 78px;
  padding: 0.75rem max(1rem, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(13, 70, 80, 0.12);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  color: var(--teal-900);
}

.brand img {
  width: 74px;
  height: 48px;
  object-fit: contain;
}

.footer-brand img {
  width: 78px;
  height: 52px;
  object-fit: contain;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.7rem 0.9rem;
  color: var(--muted);
  border-radius: var(--radius);
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--teal-900);
  background: var(--teal-100);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1rem;
  background: var(--teal-800);
  color: white;
  border-radius: var(--radius);
  font-weight: 800;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--teal-900);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--teal-900);
}

.hero {
  position: relative;
  min-height: min(620px, calc(100svh - 132px));
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 47, 54, 0.92) 0%, rgba(6, 47, 54, 0.72) 44%, rgba(6, 47, 54, 0.2) 100%),
    linear-gradient(180deg, rgba(6, 47, 54, 0.16) 0%, rgba(6, 47, 54, 0.64) 100%);
}

.hero-home::before {
  background-image: url("assets/hero-production.png");
}

.hero-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
  padding: 4.5rem 0 3.5rem;
  color: white;
}

.hero-inner h1,
.page-hero h1 {
  max-width: 870px;
  margin: 0;
  font-size: 2.7rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy,
.page-hero p {
  max-width: 680px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero-actions,
.button-row,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--teal-800);
  color: white;
  box-shadow: 0 14px 34px rgba(13, 70, 80, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-900);
}

.button-secondary {
  color: var(--teal-900);
  background: white;
  border-color: var(--line);
}

.button-light {
  color: var(--teal-900);
  background: white;
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-proof {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(780px, 100%);
  margin: 2rem 0 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.15);
}

.hero-proof div {
  padding: 1rem;
  background: rgba(6, 47, 54, 0.28);
}

.hero-proof dt {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 900;
}

.hero-proof dd {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.partner-strip {
  background: var(--teal-900);
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.2rem;
}

.partner-strip span {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

.partner-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-strip li {
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.9);
}

.section {
  padding: 5.5rem 0;
}

.section-muted {
  background: var(--soft);
}

.split,
.request-layout,
.contact-grid,
.two-column-list {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.split {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.split-reverse {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.section-copy h2,
.section-heading h2,
.cta-band h2,
.form-header h2,
.request-sidebar h2,
.contact-card h2 {
  margin: 0;
  color: var(--teal-900);
  font-size: 2.15rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p,
.cta-band p,
.contact-card p,
.request-sidebar p {
  color: var(--muted);
  margin: 1rem 0 0;
}

.section-copy .button {
  margin-top: 1.3rem;
}

.feature-panel,
.quote-panel,
.request-sidebar,
.request-form,
.contact-card,
.info-card,
.catalog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.feature-panel,
.quote-panel,
.request-sidebar,
.request-form {
  padding: 2rem;
  box-shadow: var(--shadow);
}

.feature-panel h3,
.info-card h3,
.catalog-card h3,
.process-list h3 {
  margin: 0;
  color: var(--teal-900);
  line-height: 1.2;
  font-size: 1.24rem;
  letter-spacing: 0;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--gold);
  border-radius: 50%;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading-left {
  margin-inline: 0;
  text-align: left;
}

.card-grid,
.catalog-grid {
  display: grid;
  gap: 1rem;
}

.card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.catalog-card,
.contact-card {
  padding: 1.6rem;
}

.info-card p,
.catalog-card p {
  color: var(--muted);
}

.card-icon,
.catalog-card > span,
.process-list span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--tomato);
  font-weight: 900;
}

.image-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--teal-100);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.cta-band {
  background: var(--teal-900);
  color: white;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2 {
  color: white;
}

.cta-band p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  isolation: isolate;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.page-hero::before {
  z-index: -2;
  background-position: center;
  background-size: cover;
}

.page-hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 47, 54, 0.92) 0%, rgba(6, 47, 54, 0.7) 52%, rgba(6, 47, 54, 0.28) 100%),
    linear-gradient(180deg, rgba(6, 47, 54, 0.18), rgba(6, 47, 54, 0.78));
}

.page-hero-about::before,
.page-hero-request::before,
.page-hero-contact::before {
  background-image: url("assets/hero-production.png");
}

.page-hero-catalog::before {
  background-image: url("assets/catalog-sauces.png");
}

.page-hero-inner {
  padding: 7rem 0 4rem;
}

.quote-panel {
  display: grid;
  gap: 1rem;
}

.quote-panel img {
  width: 150px;
  height: auto;
}

.quote-panel blockquote {
  margin: 0;
  color: var(--teal-900);
  font-size: 1.35rem;
  line-height: 1.35;
  font-weight: 800;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-list article {
  padding: 1.4rem;
  border-left: 4px solid var(--gold);
  background: white;
  border-radius: var(--radius);
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.two-column-list {
  grid-template-columns: 0.8fr 1.2fr;
}

.partner-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.partner-board span {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--teal-900);
  background: white;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(6, 47, 54, 0.08);
}

.catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-card ul {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--teal-800);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--teal-900);
  background: var(--teal-100);
}

tr:last-child td {
  border-bottom: 0;
}

.button-row-spaced {
  margin-top: 1.5rem;
}

.request-section {
  background:
    linear-gradient(180deg, var(--soft), white);
}

.request-layout {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
}

.request-sidebar {
  position: sticky;
  top: 100px;
}

.contact-mini {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.contact-mini span {
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-mini a {
  color: var(--teal-900);
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--teal-900);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  background: white;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(188, 145, 69, 0.28);
  border-color: var(--gold);
}

textarea {
  resize: vertical;
}

.full-field,
.consent {
  margin-top: 1rem;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 500;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.25rem;
}

.form-actions p {
  margin: 0;
  color: var(--teal-800);
  font-weight: 700;
}

.contact-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  align-items: stretch;
}

.primary-contact {
  background: var(--teal-900);
  color: white;
  border-color: var(--teal-900);
}

.primary-contact h2,
.primary-contact p {
  color: white;
}

.primary-contact p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  background: #0a252a;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 2rem;
}

.footer-grid p,
.footer-grid span,
.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: white;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-grid h2 {
  margin: 0 0 0.3rem;
  color: white;
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-brand {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

@media (min-width: 900px) {
  .hero-inner h1,
  .page-hero h1 {
    font-size: 3.6rem;
  }
}

@media (min-width: 900px) and (min-height: 800px) {
  .hero-proof {
    display: grid;
  }
}

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    padding: 0.7rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 0.9rem;
  }

  .header-cta {
    display: none;
  }

  .split,
  .split-reverse,
  .request-layout,
  .contact-grid,
  .two-column-list {
    grid-template-columns: 1fr;
  }

  .request-sidebar {
    position: static;
  }

  .card-grid-3,
  .catalog-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .brand span {
    display: none;
  }

  .hero {
    min-height: min(540px, calc(100svh - 118px));
  }

  .hero::after,
  .page-hero::after {
    background:
      linear-gradient(90deg, rgba(6, 47, 54, 0.94) 0%, rgba(6, 47, 54, 0.74) 100%),
      linear-gradient(180deg, rgba(6, 47, 54, 0.16), rgba(6, 47, 54, 0.74));
  }

  .hero-inner {
    padding: 4rem 0 3rem;
  }

  .hero-inner h1,
  .page-hero h1 {
    font-size: 2.4rem;
  }

  .section {
    padding: 4rem 0;
  }

  .partner-strip-inner,
  .cta-band-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-grid,
  .card-grid-3,
  .catalog-grid,
  .process-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }


  .feature-panel,
  .quote-panel,
  .request-sidebar,
  .request-form,
  .info-card,
  .catalog-card,
  .contact-card {
    padding: 1.25rem;
  }
}
