:root {
  --red: #e41f2d;
  --ink: #121212;
  --charcoal: #202225;
  --deep: #171a1f;
  --paper: #f5f2ed;
  --cream: #fbfaf7;
  --line: #ddd7ce;
  --muted: #6f6b64;
  --tan: #c67b3b;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(18, 18, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 0;
}

.logo {
  width: 168px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #242424;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav a {
  padding: 8px 0;
}

.nav .active {
  color: var(--red);
}

.button,
.button-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.button {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(228, 31, 45, 0.25);
}

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

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 22%, rgba(228, 31, 45, 0.12), transparent 24%),
    linear-gradient(135deg, #fbfaf7 0%, #eee8df 100%);
}

.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  padding: clamp(48px, 7vw, 88px) 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
.page-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 7vw, 82px);
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-copy p:not(.eyebrow),
.page-intro {
  max-width: 620px;
  margin: 22px 0 0;
  color: #514d47;
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
  margin-top: 34px;
}

.meta-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 18, 18, 0.08);
}

.meta-card strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.meta-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.hero-media {
  position: relative;
}

.hero-image {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  left: -26px;
  bottom: 28px;
  width: min(290px, 76%);
  padding: 18px;
  background: var(--ink);
  color: var(--white);
  border-left: 5px solid var(--red);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.floating-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.floating-note span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.section {
  padding: clamp(54px, 8vw, 96px) 0;
}

.section.dark {
  background: var(--deep);
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.dark .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

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

.service-card {
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  padding: 22px;
  background: var(--charcoal);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.3s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.82));
}

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

.service-card div {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 22px;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.locations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.locations span {
  padding: 10px 15px;
  background: var(--white);
  border: 1px solid var(--line);
  color: #2f2c29;
  font-weight: 800;
  font-size: 14px;
}

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

.process-card,
.trust-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.process-card .num {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-weight: 900;
}

.process-card h3,
.trust-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.process-card p,
.trust-card p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.split img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border-radius: 22px;
}

.split h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.split p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

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

.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px 0;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.92), rgba(18, 18, 18, 0.72)),
    url("assets/hero-kitchen.jpg") center / cover;
  color: var(--white);
}

.page-hero .wrap {
  padding: clamp(58px, 9vw, 108px) 0;
}

.page-hero .page-title,
.page-hero .page-intro {
  color: var(--white);
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.policy-card,
.summary-card {
  background: var(--white);
  border: 1px solid var(--line);
}

.policy-card {
  padding: clamp(24px, 5vw, 54px);
}

.policy-card h2 {
  margin: 36px 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card p {
  margin: 0 0 18px;
  color: #3f3b36;
}

.summary-card {
  position: sticky;
  top: 96px;
  padding: 26px;
}

.summary-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.summary-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.summary-card li {
  display: grid;
  grid-template-columns: 9px 1fr;
  gap: 11px;
  color: var(--muted);
}

.summary-card li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 8px;
  background: var(--red);
}

.footer {
  background: var(--ink);
  color: var(--white);
}

.footer .wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 32px 0;
}

.footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .hero .wrap,
  .section-heading,
  .split,
  .policy-layout {
    grid-template-columns: 1fr;
  }

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

  .process-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .summary-card {
    position: static;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .topbar .wrap,
  .header-inner,
  .cta-band .wrap,
  .footer .wrap {
    align-items: flex-start;
    flex-direction: column;
    display: flex;
  }

  .topbar .wrap {
    gap: 4px;
  }

  .logo {
    width: 148px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 2px;
    font-size: 12px;
  }

  h1,
  .page-title {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-meta,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .floating-note {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .hero-image {
    border-radius: 18px;
  }

  .service-card {
    min-height: 280px;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }
}
