:root {
  --ink: #172026;
  --muted: #5e6a72;
  --line: #dce4e8;
  --soft: #f5f7f8;
  --panel: #ffffff;
  --brand: #0f766e;
  --brand-dark: #0b4f4a;
  --accent: #c4512f;
  --warm: #fbf2e9;
  --shadow: 0 18px 45px rgba(23, 32, 38, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(300px, max-content) minmax(0, 1fr) max-content;
  align-items: center;
  gap: 24px;
  min-height: 86px;
  padding: 0 clamp(22px, 7vw, 160px);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(220, 228, 232, 0.76);
  box-shadow: 0 10px 30px rgba(23, 32, 38, 0.04);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #ffffff;
  background: var(--brand);
  border-radius: 6px;
  font-weight: 700;
}

.brand-word {
  color: #e43232;
  font-size: 42px;
  font-weight: 900;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: lowercase;
}

.brand strong,
.brand small {
  display: block;
}

.brand-word + span strong {
  display: none;
}

.brand small {
  color: #1a2227;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: none;
  align-items: center;
  justify-content: center;
  color: #12191d;
  font-size: 16px;
  gap: clamp(16px, 1.75vw, 28px);
  font-weight: 800;
}

.main-nav a:hover {
  color: #e43232;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #12191d;
  min-height: 44px;
}

.nav-trigger::after {
  width: 6px;
  height: 6px;
  content: "";
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 60;
  display: grid;
  min-width: 270px;
  gap: 2px;
  padding: 14px 10px 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
  visibility: hidden;
}

.nav-item::after {
  position: absolute;
  top: 100%;
  left: -18px;
  width: calc(100% + 36px);
  height: 18px;
  content: "";
}

.nav-dropdown a {
  padding: 10px 12px;
  color: var(--ink);
  border-radius: 6px;
  white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  color: var(--brand-dark);
  background: var(--soft);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.header-action,
.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.header-action,
.button.primary,
.contact-form button {
  color: #ffffff;
  background: var(--brand);
}

.header-action {
  justify-self: end;
  min-width: 174px;
  padding-right: 24px;
  padding-left: 24px;
  min-height: 50px;
  background: #e43232;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(228, 50, 50, 0.22);
}

.header-action:hover {
  background: #c92828;
}

.button.secondary {
  color: var(--brand-dark);
  background: #ffffff;
  border-color: #b7d6d2;
}

section {
  padding: 58px 20px;
}

.wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  font-size: clamp(38px, 7vw, 70px);
}

h2 {
  max-width: 760px;
  font-size: clamp(28px, 4.8vw, 44px);
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.lead {
  max-width: 760px;
  font-size: 18px;
}

.hero {
  min-height: auto;
  display: grid;
  align-items: center;
  padding: clamp(64px, 10vw, 112px) 20px clamp(44px, 7vw, 72px);
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 20%, rgba(196, 81, 47, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(8, 22, 28, 0.92), rgba(8, 22, 28, 0.72)),
    linear-gradient(135deg, rgba(15, 118, 110, 0.34), rgba(196, 81, 47, 0.18)),
    #16333a;
}

.hero .wrap {
  display: grid;
  gap: 26px;
}

.kettle-hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.hero-product-card {
  display: grid;
  gap: 10px;
  align-self: stretch;
  padding: 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-product-card img {
  width: 100%;
  height: min(56vw, 430px);
  object-fit: contain;
  background: #f7f9fa;
  border-radius: 6px;
}

.hero-product-card span {
  color: var(--muted);
  font-size: 13px;
}

.hero p {
  color: rgba(255, 255, 255, 0.84);
}

.hero .eyebrow {
  color: #ffd5bf;
}

.catalog-hero {
  padding: 54px 20px 42px;
  background: linear-gradient(135deg, #f7faf9, #eef4f2);
}

.catalog-hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.catalog-hero-copy {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.catalog-hero-copy h1 {
  max-width: 720px;
  color: var(--ink);
  font-size: clamp(34px, 6vw, 58px);
}

.catalog-hero-copy .lead {
  color: var(--muted);
}

.catalog-hero-copy .trust-points li {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.catalog-hero-media {
  display: grid;
  min-width: 0;
  min-height: 360px;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(15, 118, 110, 0.10), rgba(196, 81, 47, 0.08)),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.catalog-hero-media img {
  width: min(100%, 520px);
  max-height: 470px;
  object-fit: contain;
}

.catalog-hero-badges {
  display: grid;
  gap: 8px;
  width: 100%;
  margin-top: 18px;
}

.catalog-hero-badges span,
.supplier-banner-points span {
  padding: 10px 12px;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #b7d6d2;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}

.supplier-banner {
  display: grid;
  gap: 22px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.supplier-banner-points {
  display: grid;
  gap: 10px;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-points,
.grid,
.check-list {
  display: grid;
  gap: 14px;
}

.trust-points {
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-points li {
  padding: 12px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  overflow-wrap: anywhere;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.card {
  min-height: 100%;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.catalog-card {
  overflow: hidden;
  padding: 0;
}

.catalog-card-body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.catalog-card-body h3 {
  font-size: 19px;
}

.catalog-image-link {
  display: block;
  text-decoration: none;
}

.catalog-image-link .image-placeholder {
  min-height: 260px;
  border-width: 0 0 1px;
  border-radius: 0;
}

.catalog-card:hover {
  border-color: var(--brand);
  box-shadow: 0 24px 60px rgba(23, 32, 38, 0.12);
}

.home-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  padding: 64px 28px 50px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 250, 249, 0.92) 45%, rgba(232, 241, 239, 0.78) 100%),
    #e8f1ef;
  border-bottom: 1px solid var(--line);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 3.8vw, 58px);
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
  min-width: 0;
}

.home-hero-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  max-width: 610px;
  min-width: 0;
  padding: 0;
  background: transparent;
}

.home-hero-copy h1 {
  max-width: 680px;
  color: #102926;
  font-size: clamp(38px, 4.4vw, 58px);
}

.home-hero-visual {
  display: flex;
  grid-row: span 2;
  min-width: 0;
  min-height: 500px;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 76%, rgba(255, 255, 255, 0.96) 0 22%, rgba(255, 255, 255, 0.62) 23% 42%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.54));
}

.home-hero-visual img {
  display: block;
  width: min(100%, 860px);
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(0.94) contrast(1.02);
}

.home-stat-grid {
  display: grid;
  grid-column: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-stat-grid span {
  display: grid;
  gap: 4px;
  align-content: start;
  padding: 14px;
  color: var(--muted);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
}

.home-stat-grid strong {
  color: var(--brand-dark);
  font-size: 24px;
  line-height: 1;
}

.home-category-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.home-category-row a {
  display: grid;
  min-height: 238px;
  align-content: start;
  gap: 9px;
  padding: 14px 14px 18px;
  border-right: 1px solid var(--line);
}

.home-category-row a:last-child {
  border-right: 0;
}

.home-category-row a:hover {
  background: #f7faf9;
}

.home-category-row img {
  width: 100%;
  height: 210px;
  padding: 12px;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(135deg, #f7f8f6, #ecefed);
  border-radius: 8px;
}

.home-category-row strong {
  color: var(--ink);
  font-size: 17px;
}

.home-category-row span {
  color: var(--muted);
  font-size: 13px;
}

.home-product-showcase {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faf9 100%);
}

.home-section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.home-section-head h2 {
  max-width: 900px;
}

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

.home-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(23, 32, 38, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.home-product-card:hover {
  border-color: rgba(228, 50, 50, 0.38);
  box-shadow: 0 28px 70px rgba(23, 32, 38, 0.13);
  transform: translateY(-3px);
}

.home-product-media {
  display: grid;
  height: 300px;
  place-items: center;
  overflow: hidden;
  padding: 24px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), transparent 44%),
    linear-gradient(135deg, #f8faf8, #eef3f1);
}

.home-product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform-origin: center;
}

.home-product-media-flush {
  padding: 0;
}

.home-product-media-flush img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.product-image-air-fryer {
  object-fit: contain;
  object-position: center;
  transform: scale(1.08);
}

.product-image-blender,
.product-image-kettle {
  transform: scale(1.08);
}

.product-image-coffee {
  object-fit: cover;
  object-position: center 53%;
  transform: none;
}

.product-image-sandwich {
  transform: scale(1.24);
}

.product-image-rice {
  transform: scale(1.08);
}

.home-product-body {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.home-product-body span {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-product-body h3 {
  font-size: 25px;
}

.home-product-body p {
  color: var(--muted);
  font-size: 15px;
}

.home-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.home-product-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  color: #ffffff;
  background: #e43232;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.home-product-actions a:first-child {
  color: var(--brand-dark);
  background: #eef7f5;
  border: 1px solid #b7d6d2;
}

.home-service-band {
  color: #ffffff;
  background: #102926;
}

.home-service-band h2 {
  color: #ffffff;
}

.home-service-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: start;
}

.home-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.home-service-list span {
  padding: 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.capabilities-section {
  background: linear-gradient(180deg, #f7faf9 0%, #ffffff 100%);
  border-top: 1px solid var(--line);
}

.capabilities-section .eyebrow {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  white-space: normal;
}

.capability-overview {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 24px;
}

.capability-overview h2 {
  max-width: 700px;
  margin-bottom: 0;
}

.capability-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 22px;
}

.capability-hero-photo,
.capability-photo-rail figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #eef4f2;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.capability-hero-photo {
  display: grid;
  min-height: 440px;
}

.capability-hero-photo img,
.capability-photo-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.capability-hero-photo img {
  object-position: center 42%;
}

.capability-hero-photo figcaption,
.capability-photo-rail figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  color: #ffffff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}

.capability-hero-photo figcaption {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(16, 41, 38, 0.9), rgba(16, 41, 38, 0.54));
  border-radius: 8px;
}

.capability-hero-photo figcaption span,
.capability-photo-rail figcaption {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.capability-hero-photo figcaption strong {
  font-size: 24px;
  line-height: 1.1;
}

.capability-photo-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.capability-photo-rail figure {
  min-height: 211px;
}

.capability-photo-rail figure::after,
.capability-hero-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  content: "";
  background: linear-gradient(180deg, rgba(16, 41, 38, 0), rgba(16, 41, 38, 0.58));
  pointer-events: none;
}

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

.capability-link-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  min-height: 124px;
  padding: 17px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.capability-link-card:hover {
  border-color: rgba(15, 118, 110, 0.34);
  box-shadow: 0 24px 60px rgba(23, 32, 38, 0.12);
  transform: translateY(-3px);
}

.capability-link-card span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--brand);
  background: #eef8f6;
  border: 1px solid #c7e3df;
  border-radius: 999px;
  font-weight: 900;
}

.capability-link-card div {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.capability-link-card strong {
  font-size: 19px;
  line-height: 1.2;
}

.capability-link-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.capability-link-cta {
  color: #ffffff;
  background: #102926;
  border-color: #102926;
}

.capability-link-cta span {
  color: #102926;
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
}

.capability-link-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.capability-contact-card img {
  opacity: 0.58;
}

.capability-contact-card .tag,
.capability-contact-card h3,
.capability-contact-card p {
  color: #ffffff;
}

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

.product-catalog-grid {
  display: grid;
  gap: 18px;
}

.product-catalog-grid .catalog-card {
  display: grid;
  overflow: hidden;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.catalog-card-media {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  background: #f7f9fa;
  border-bottom: 1px solid var(--line);
}

.catalog-card-media img {
  width: 100%;
  height: 100%;
  padding: 14px;
  object-fit: contain;
}

.rice-catalog-grid .catalog-card-media {
  aspect-ratio: 4 / 3;
}

.catalog-card-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--brand);
  border-radius: 6px;
  font-weight: 700;
}

.catalog-meta {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

.catalog-meta span {
  padding: 8px 10px;
  background: var(--soft);
  border-radius: 6px;
}

.process-flow {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.process-step {
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-step strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-size: 13px;
  text-transform: uppercase;
}

.card p,
.faq-item p {
  margin-top: 8px;
}

.card .tag {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.soft-band {
  background: var(--soft);
}

.two-col {
  display: grid;
  gap: 24px;
}

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

.image-only-section {
  padding: 48px 0;
}

.wide-image-wrap {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.wide-image-wrap .image-placeholder {
  min-height: 420px;
  background: #ffffff;
}

.wide-image-wrap .image-placeholder.has-image {
  border: 0;
  box-shadow: none;
}

.wide-image-wrap .image-placeholder.has-image img {
  min-height: 0;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.owner-wide-image {
  display: grid;
  min-height: 320px;
  align-content: center;
  gap: 10px;
  padding: 28px;
  color: var(--muted);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(196, 81, 47, 0.08)),
    #ffffff;
  border: 1px dashed #c8b49c;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.owner-wide-image strong {
  color: var(--ink);
  font-size: 20px;
}

.owner-wide-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.image-placeholder {
  display: grid;
  min-height: 220px;
  align-content: center;
  gap: 10px;
  padding: 22px;
  color: var(--muted);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(196, 81, 47, 0.1)),
    var(--warm);
  border: 1px dashed #c8b49c;
  border-radius: 8px;
}

.image-placeholder strong {
  display: block;
  color: var(--ink);
}

.image-placeholder span {
  display: block;
}

.image-placeholder.has-image {
  padding: 0;
  overflow: hidden;
  background: #f7f9fa;
  border-style: solid;
}

.image-placeholder.has-image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: contain;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 13px 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.rfq {
  background: var(--brand-dark);
  color: #ffffff;
}

.rfq p {
  color: rgba(255, 255, 255, 0.78);
}

.rfq-box {
  display: grid;
  gap: 24px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  color: var(--ink);
  background: #ffffff;
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  color: var(--ink);
  background: #f9fbfb;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.success-message {
  display: grid;
  gap: 10px;
}

.faq-item {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 24px 20px;
  color: #ffffff;
  background: #111a1f;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 560px) {
  section .wrap,
  .home-hero-grid {
    width: 100%;
    max-width: 350px;
    margin-left: 0;
    margin-right: 0;
  }

  .site-header {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    min-height: 0;
    padding: 12px 16px;
  }

  .brand {
    width: 100%;
    min-width: 0;
  }

  .brand-word {
    font-size: 34px;
  }

  .brand small {
    line-height: 1.2;
  }

  .header-action {
    justify-self: stretch;
    min-width: 0;
    width: 100%;
  }

  .hero-actions,
  .cta-row {
    align-items: stretch;
    flex-direction: column;
  }

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

  .home-hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0;
  }

  .home-hero {
    min-height: auto;
    display: block;
    padding: 38px 20px 0;
    background:
      linear-gradient(180deg, #f7faf9 0%, #eef5f3 100%);
  }

  .home-hero-grid {
    display: grid;
    gap: 26px;
    min-width: 0;
  }

  .home-hero-visual {
    display: flex;
    grid-row: auto;
    min-height: 270px;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    margin: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), #ffffff);
  }

  .home-hero-visual img {
    display: block;
    width: 108%;
    max-width: 520px;
    height: auto;
    margin: 0 auto -2px;
  }

  .home-hero-copy .eyebrow {
    max-width: 100%;
    font-size: 12px;
    overflow-wrap: anywhere;
  }

  .home-hero-copy h1 {
    width: 100%;
    max-width: 100%;
    font-size: 29px;
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .home-hero-copy .lead {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
  }

  .home-hero-copy .hero-actions,
  .home-hero-copy .home-stat-grid {
    width: 100%;
    max-width: 100%;
  }

  .home-stat-grid {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 720px) {
  section {
    padding: 78px 28px;
  }

  .hero {
    padding: clamp(78px, 9vw, 126px) 28px clamp(50px, 6vw, 84px);
  }

  .trust-points,
  .grid,
  .placeholder-grid,
  .product-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-col,
  .kettle-hero-grid,
  .rfq-box {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .catalog-hero-grid,
  .supplier-banner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  }

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

@media (max-width: 840px) {
  .home-hero-grid,
  .home-stat-grid,
  .home-category-row,
  .home-service-grid,
  .home-service-list,
  .home-product-grid,
  .capability-feature,
  .capability-overview,
  .capability-showcase,
  .capability-link-grid {
    grid-template-columns: 1fr;
  }

  .capability-overview {
    gap: 14px;
    align-items: start;
  }

  .home-hero-grid {
    min-height: auto;
  }

  .home-category-row a {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-category-row a:last-child {
    border-bottom: 0;
  }

  .capability-feature img {
    height: 260px;
  }

  .capability-hero-photo {
    min-height: 330px;
  }

  .capability-photo-rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .capability-photo-rail figure {
    min-height: 170px;
  }

  .home-product-media {
    height: 260px;
  }

  .home-product-media img {
    height: 100%;
  }
}

@media (min-width: 980px) {
  .main-nav {
    display: flex;
  }

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

@media (max-width: 560px) {
  .capabilities-section .wrap {
    max-width: 100%;
  }

  .capability-overview {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
  }

  .capability-overview h2 {
    max-width: 100%;
    font-size: 32px;
    line-height: 1.12;
    overflow-wrap: normal;
    word-break: normal;
  }

  .capability-overview .lead {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.6;
  }

  .capability-overview .eyebrow {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 2px;
    white-space: normal;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
  }

  .capability-showcase {
    gap: 12px;
    margin-bottom: 18px;
  }

  .capability-hero-photo {
    min-height: 255px;
  }

  .capability-photo-rail figure {
    min-height: 145px;
  }

  .capability-hero-photo figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 12px;
  }

  .capability-hero-photo figcaption strong {
    font-size: 19px;
  }

  .capability-link-grid {
    gap: 10px;
  }

  .capability-link-card {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 14px;
  }

  .capability-link-card span {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .capability-link-card strong {
    font-size: 17px;
  }

  .capability-link-card p {
    font-size: 14px;
    line-height: 1.45;
  }

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

  .home-stat-grid span {
    min-height: 90px;
  }
}
