.hero {
  position: relative;
  min-height: min(68vh, 560px);
  background: #1c1c1c;
  overflow: hidden;
}

.hero .carousel,
.testimonials .carousel {
  position: relative;
}

.hero .slides,
.testimonials .slides {
  position: relative;
}

.hero .slide {
  display: none;
  min-height: min(68vh, 560px);
  background: #1c1c1c;
  position: relative;
}

.hero .slide.is-active {
  display: block;
}

.hero .slide--owners {
  background: #1c1c1c;
  min-height: 0;
}

.hero .slide--owners::after {
  display: none;
}

.hero-owners {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(300px, 640px);
  align-items: center;
  gap: 2rem;
  min-height: min(68vh, 560px);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.hero .slide--owners .hero-copy {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
}

.hero-owners-photo {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-owners-photo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(64vh, 520px);
  object-fit: contain;
}

@media (max-width: 800px) {
  .hero-owners {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: 0;
  }

  .hero .slide--owners .hero-copy h1,
  .hero .slide--owners .hero-copy p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-owners-photo img {
    max-height: min(70vh, 560px);
  }
}

.hero-photo {
  margin: 0;
  min-height: min(68vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1c1c1c;
}

.hero-photo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(68vh, 560px);
  object-fit: contain;
}

.hero .slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 18%;
  color: #fff;
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 16ch;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 42ch;
}

.hero-copy .hero-actions {
  margin-top: 1.15rem;
}

.hero-copy .hero-actions .btn {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.quote-download {
  padding: 2.25rem 0;
  background: var(--color-hero-band);
}

.quote-download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--color-border);
  background: #fff;
}

.quote-download-copy h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

.quote-download-copy p {
  margin: 0;
  color: var(--color-muted);
  max-width: 52ch;
}

@media (max-width: 700px) {
  .quote-download-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.factory-display .section-title {
  margin-bottom: 2rem;
}

.factory-display-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.factory-display-card {
  margin: 0;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--color-border);
}

.factory-display-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #111;
}

@media (max-width: 700px) {
  .factory-display-grid {
    grid-template-columns: 1fr;
  }
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  font-size: 1.25rem;
}

.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }

.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
}

.carousel-dots button.is-active {
  background: var(--color-accent);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-grid--home {
  gap: 1.75rem 1.5rem;
}

.product-figure {
  margin: 0;
  text-align: center;
}

.product-figure a {
  display: block;
  overflow: hidden;
}

.product-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.product-figure a:hover img {
  transform: scale(1.03);
}

.widget-image-caption {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-ink);
}

.product-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f3f3f3;
  min-height: 220px;
  color: #fff;
}

.product-card img,
.product-card .ph {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-card .ph {
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background: linear-gradient(145deg, #3a3a3a, #6b5a3a);
  font-family: var(--font-display);
  font-weight: 700;
}

.product-card figcaption,
.product-card .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  font-weight: 600;
}

.about-section {
  background: linear-gradient(180deg, #f7f4ee 0%, #fff 70%);
}

.about-center .section-lead {
  max-width: 820px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 720px;
  margin: 2rem auto 0;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-accent-dark);
}

.stat span {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.about-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.about-visual {
  min-height: 320px;
  background: linear-gradient(145deg, #2c2c2c, #c4a35a);
}

.partners {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.partner-box {
  border: 1px solid var(--color-border);
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.partner-box:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.partner-box img {
  max-height: 48px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.partners-cta {
  text-align: center;
  margin-top: 1.75rem;
}

.testimonials {
  background: #f5f5f5;
  padding-block: 4.5rem;
}

.testimonials .section-title {
  margin-bottom: 1.5rem;
}

.testimonials-carousel {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 3rem 2.5rem;
}

.testimonials .slide {
  display: none;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0.5rem 0.5rem 1rem;
}

.testimonials .slide.is-active {
  display: block;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from { opacity: 0.35; }
  to { opacity: 1; }
}

.testimonials blockquote {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-ink);
  margin: 0 0 1.25rem;
  font-weight: 500;
}

.testimonials cite {
  display: block;
  color: var(--color-muted);
  font-style: normal;
  font-weight: 600;
}

.testimonials .carousel-prev,
.testimonials .carousel-next {
  background: #ececec;
  width: 40px;
  height: 40px;
}

.testimonials .carousel-dots {
  bottom: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.news-card {
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s ease;
}

.news-card:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.news-card .thumb {
  display: block;
  height: 180px;
  overflow: hidden;
  background: #eee;
}

.news-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-card:hover .thumb img {
  transform: scale(1.04);
}

.news-card .body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.news-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.news-more {
  display: inline-block;
  margin-top: 0.35rem;
  font-weight: 600;
  color: var(--color-accent-dark);
}

.page-hero--news {
  position: relative;
  min-height: 240px;
  padding: 4.75rem 0 3.5rem;
  background-color: #1a1a1a;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: none;
  color: #fff;
}

.page-hero--news::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.page-hero--news .container {
  position: relative;
  z-index: 1;
}

.page-hero--news h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.85rem);
  margin: 0 0 0.45rem;
}

.page-crumbs {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.page-crumbs a {
  color: #fff;
}

.page-crumbs a:hover {
  color: var(--color-accent);
}

.news-list-section {
  padding-top: 3rem;
}

.news-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.news-item {
  display: block;
}

.news-item--media {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.news-item .thumb {
  flex: 0 0 240px;
  width: 240px;
  height: 150px;
  overflow: hidden;
  background: #eee;
}

.news-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item-body {
  min-width: 0;
  flex: 1;
}

.news-item-body h2 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.35;
  margin: 0 0 0.4rem;
}

.news-item-body h2 a {
  color: var(--color-accent);
  font-weight: 700;
}

.news-item-body h2 a:hover {
  color: var(--color-accent-dark);
}

.news-item-body time {
  display: block;
  color: #9a9a9a;
  font-size: 0.88rem;
  margin: 0 0 0.7rem;
}

.news-item-body p {
  margin: 0 0 0.55rem;
  color: var(--color-ink);
}

.news-item .news-more {
  color: var(--color-accent);
  font-weight: 600;
}

@media (max-width: 700px) {
  .news-item--media {
    flex-direction: column;
  }

  .news-item .thumb {
    flex: none;
    width: 100%;
    height: 180px;
  }
}

.news-hero-img {
  margin: 0 0 1.25rem;
}

.news-hero-img img,
.prose .news-ai-shot img {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 4px;
}

.prose .news-ai-shot {
  margin: 1.25rem 0;
}

.prose .news-product {
  margin: 1.35rem 0 1.5rem;
  padding: 0;
  border: 1px solid var(--color-border, #e5e5e5);
  background: #fff;
  overflow: hidden;
}

.prose .news-product-thumb {
  display: block;
  background: #eee;
}

.prose .news-product-thumb img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.prose .news-product figcaption {
  margin: 0;
  padding: 0.75rem 1rem 0.9rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.prose .news-product figcaption a {
  font-weight: 600;
  color: var(--color-accent-dark, #8a6a00);
}

.prose .news-source {
  margin: 1.35rem 0 1.5rem;
  padding: 0;
  border: 1px solid var(--color-border, #e5e5e5);
  background: #fafafa;
  overflow: hidden;
}

.prose .news-source-thumb {
  display: block;
  background: #eee;
}

.prose .news-source-thumb img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.prose .news-source figcaption {
  margin: 0;
  padding: 0.7rem 1rem 0.85rem;
  font-size: 0.92rem;
  line-height: 1.4;
}

.prose .news-source figcaption a {
  font-weight: 600;
  color: var(--color-text, #222);
}

.inquiry {
  background: #111;
  color: #fff;
}

.inquiry .section-title,
.inquiry p {
  color: #fff;
}

.inquiry-form {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}

.inquiry-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.inquiry-form input,
.inquiry-form select {
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-ink);
  font: inherit;
}

.inquiry .inquiry-form input,
.inquiry .inquiry-form select {
  border: 1px solid #444;
  background: #1c1c1c;
  color: #fff;
}

.form-message {
  min-height: 1.25rem;
  color: var(--color-accent);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .product-grid,
  .product-grid--home,
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-split {
    grid-template-columns: 1fr;
  }
  .partners {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .product-grid,
  .product-grid--home,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .partners {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-carousel {
    padding: 0 2.5rem 2.5rem;
  }
}
