:root {
  --brand: #d71f35;
  --brand-dark: #981927;
  --ink: #182027;
  --muted: #66727d;
  --paper: #fffaf3;
  --white: #ffffff;
  --line: rgba(24, 32, 39, 0.12);
  --teal: #0f766e;
  --gold: #f2b84b;
  --shadow: 0 24px 70px rgba(24, 32, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #313b44;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--brand);
  background: rgba(215, 31, 53, 0.08);
}

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

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

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: end;
  gap: 28px;
  padding: clamp(84px, 10vw, 150px) clamp(20px, 5vw, 72px) clamp(32px, 7vw, 74px);
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 32, 39, 0.9), rgba(24, 32, 39, 0.58) 48%, rgba(152, 25, 39, 0.45)),
    url("assets/images/hero-kitchen-background.jpg") center / cover;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  background: linear-gradient(0deg, var(--paper), transparent);
  pointer-events: none;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
}

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

.hero h1,
.section-heading h2,
.service-band h2,
.contact-card h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(2.4rem, 6vw, 5.9rem);
}

.hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.7vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions,
.section-heading.split {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 16px 36px rgba(215, 31, 53, 0.34);
}

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

.button.light {
  color: var(--brand-dark);
  background: var(--white);
}

.button.small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.hero-panel {
  align-self: end;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
}

.hero-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-size: 1.1rem;
}

.hero-panel span {
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

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

.section-heading h2,
.service-band h2,
.contact-card h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.intro-band {
  background: var(--paper);
}

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

.company-grid article,
.privacy-grid article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

p {
  line-height: 1.65;
}

.company-grid p,
.privacy-grid p,
.product-card p,
.service-band p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.stats-strip div {
  padding: 34px 22px;
  background: var(--ink);
  color: var(--white);
}

.stats-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 950;
}

.stats-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.products-section {
  background: #ffffff;
}

.section-heading.split {
  max-width: none;
  justify-content: space-between;
}

.section-heading.split > div {
  max-width: 820px;
}

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

.product-card {
  overflow: hidden;
  min-height: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(24, 32, 39, 0.08);
}

.product-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

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

.product-card img.contain-photo {
  object-fit: contain;
  padding: 24px;
  background: #ffffff;
}

.product-card.featured img {
  height: 100%;
  min-height: 340px;
}

.product-card div {
  display: flex;
  min-height: 225px;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
}

.product-card .tag {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-card a {
  margin-top: auto;
  color: var(--brand);
  font-weight: 900;
}

.upcoming-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(255, 250, 243, 0.92)),
    url("assets/images/upcoming-section-background.jpg") center / cover fixed;
}

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.upcoming-grid article {
  overflow: hidden;
  min-height: 210px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(24, 32, 39, 0.08);
}

.upcoming-grid img {
  width: 100%;
  height: 138px;
  object-fit: cover;
}

.upcoming-grid h3 {
  padding: 14px;
  font-size: 0.98rem;
}

.service-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(152, 25, 39, 0.94), rgba(15, 118, 110, 0.82)),
    url("assets/images/service-background.jpg") center / cover;
}

.service-band .eyebrow {
  color: #ffe4a3;
}

.service-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

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

.contact-section {
  background: var(--ink);
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 44px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-list a,
.contact-list p {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  margin: 0;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-list strong {
  color: var(--brand-dark);
}

.contact-list span {
  color: var(--ink);
}

.enquiry-form {
  display: grid;
  gap: 14px;
}

.enquiry-form label {
  display: grid;
  gap: 7px;
  color: #333b43;
  font-size: 0.9rem;
  font-weight: 800;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf9;
  font: inherit;
}

.enquiry-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #10161b;
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 900;
}

.site-footer img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 1050px) {
  .hero,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 560px;
  }

  .product-grid,
  .company-grid,
  .privacy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .brand span {
    max-width: 190px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: auto;
    padding-top: 92px;
  }

  .hero-actions,
  .service-band,
  .site-footer,
  .section-heading.split {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-panel,
  .product-card.featured {
    grid-template-columns: 1fr;
  }

  .company-grid,
  .privacy-grid,
  .product-grid,
  .stats-strip,
  .upcoming-grid {
    grid-template-columns: 1fr;
  }

  .product-card.featured {
    grid-column: auto;
  }

  .product-card.featured img {
    height: 260px;
    min-height: 0;
  }

  .contact-list a,
  .contact-list p {
    grid-template-columns: 1fr;
  }

  .site-footer {
    text-align: center;
  }
}
