.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.home-page,
.ckd-home {
  background: var(--page);
}

.ckd-home .home-utility {
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.8rem;
}

.ckd-home .home-utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  max-width: var(--max-w);
  min-height: 34px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.ckd-home .home-utility a {
  color: #ffffff;
}

.ckd-home .home-utility__brochure {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
}

.ckd-home .home-utility__brochure a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.ckd-home .home-utility__glyph {
  font-size: 0.9rem;
  line-height: 1;
}

.ckd-home .home-utility__tour {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 0.8rem;
  border: 1px solid #ffffff;
  border-radius: 6px;
  background: transparent;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.ckd-home .home-utility__tour:hover,
.ckd-home .home-utility__tour:focus-visible {
  background: #ffffff;
  color: #000000;
}

.ckd-home .home-utility__facebook {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-left: auto;
  background: #1877f2;
  border-radius: 4px;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.ckd-home .site-header {
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.ckd-home .site-header .site-logo img {
  width: auto;
  height: 40px;
}

.ckd-home .primary-nav a {
  position: relative;
  color: #ffffff;
  font-weight: 700;
}

.ckd-home .primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.7);
  transition: opacity 160ms ease, transform 160ms ease;
}

.ckd-home .primary-nav a:hover,
.ckd-home .primary-nav a:focus-visible {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.ckd-home .primary-nav .primary-nav__link--active::after {
  height: 3px;
  background: #2f6fe0;
  opacity: 1;
  transform: scaleX(1);
}

.ckd-home .primary-nav a:not(.primary-nav__link--active):hover::after,
.ckd-home .primary-nav a:not(.primary-nav__link--active):focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.ckd-home .primary-nav__caret {
  display: inline-block;
  margin-left: 0.28rem;
  border-top: 0.34em solid currentColor;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
  vertical-align: middle;
}

.ckd-home .nav-toggle {
  border-color: rgba(255, 255, 255, 0.48);
  background: #000000;
}

.ckd-home .nav-toggle span {
  background: #ffffff;
}

.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-6) var(--space-4);
}

.section--band {
  max-width: none;
  background: var(--surface);
}

.section--band > * {
  max-width: var(--max-w);
  margin-right: auto;
  margin-left: auto;
}

.section__header {
  display: grid;
  gap: var(--space-2);
  max-width: 820px;
  margin: 0 auto var(--space-5);
  text-align: center;
}

.section h2,
.hero h2,
.newsletter h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.12;
}

.section p,
.hero p {
  margin-top: 0;
}

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

.hero {
  width: 100%;
  min-height: clamp(520px, 76vh, 820px);
  overflow: hidden;
  background: #000000;
}

.hero img {
  display: block;
  width: 100%;
  height: clamp(520px, 76vh, 820px);
  object-fit: cover;
  object-position: center;
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.collection__figure,
.arrivals figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--subtle);
  border-radius: var(--radius);
}

.collection__figure img {
  width: 100%;
  aspect-ratio: 2048 / 1448;
  object-fit: cover;
}

.collection__figure figcaption,
.arrivals figcaption {
  position: absolute;
  right: var(--space-2);
  bottom: var(--space-2);
  left: var(--space-2);
  padding: 0.45rem 0.65rem;
  background: rgba(0, 0, 0, 0.72);
  color: #ffffff;
  border-radius: var(--radius);
  font-weight: 700;
}

.benefits {
  background: #ffffff;
  text-align: center;
}

.benefits__bar {
  background: #000000;
  color: #ffffff;
}

.benefits__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-3);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-4);
}

.benefits__list p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 0;
  margin: 0;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.25;
}

.benefits__list p::before {
  display: inline-flex;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #ffffff;
  content: "\2713";
  font-size: 0.95rem;
  font-weight: 800;
}

.benefits__brand {
  display: flex;
  justify-content: center;
  padding: var(--space-3) var(--space-4);
  background: #ffffff;
}

.benefits__logo {
  width: auto;
  max-width: 180px;
  height: auto;
}

.value-prop,
.modern {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-5);
  align-items: center;
}

.value-prop__content,
.modern__content,
.quooker__content {
  min-width: 0;
}

.value-prop__media,
.quooker__media {
  overflow: hidden;
  background: var(--subtle);
  border-radius: var(--radius);
}

.value-prop__media img,
.quooker__media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.modern {
  background: var(--text);
  color: #ffffff;
  max-width: none;
}

.modern > * {
  max-width: calc(var(--max-w) / 2);
}

.modern__media {
  min-height: 420px;
  width: 100%;
  justify-self: end;
  background: url("https://creative-kitchen-design.co.uk/wp-content/uploads/2024/03/oxford_indigo_main_web_1920.jpg") center / cover no-repeat;
}

.modern__content {
  max-width: 560px;
  padding-right: var(--space-4);
}

.modern .btn--outline {
  border-color: #ffffff;
  color: #ffffff;
}

.ckd-home .quooker {
  position: relative;
  display: grid;
  justify-items: center;
  max-width: none;
  padding: var(--space-6) var(--space-4);
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  text-align: center;
}

.ckd-home .quooker > * {
  max-width: min(980px, 100%);
}

.ckd-home .quooker__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  max-width: none;
  margin: 0;
  overflow: hidden;
  background: #000000 url("https://creative-kitchen-design.co.uk/wp-content/uploads/2025/12/quooker-taps-1024x576.jpg") center / cover no-repeat;
  pointer-events: none;
}

.ckd-home .quooker__bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.ckd-home .quooker__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  max-width: none;
  margin: 0;
  background: rgba(0, 0, 0, 0.55);
}

.ckd-home .quooker__inner {
  position: relative;
  z-index: 2;
  max-width: min(980px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.quooker__content {
  display: grid;
  justify-items: center;
}

.quooker__logo {
  max-width: 210px;
  margin-bottom: var(--space-3);
}

.quooker__lead {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.15rem;
  font-weight: 700;
}

.quooker__benefits {
  display: grid;
  gap: var(--space-2);
  margin: 0 0 var(--space-3);
  padding: 0;
  list-style: none;
}

.quooker__benefits li {
  position: relative;
  padding-left: 1.8rem;
  text-align: left;
}

.quooker__benefits li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  font-weight: 800;
}

.quooker__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.quooker .btn--solid {
  border-color: #b3122b;
  background: #b3122b;
  color: #ffffff;
}

.quooker .btn--outline {
  border-color: #ffffff;
  color: #ffffff;
}

.quooker__media {
  width: 100%;
  margin-top: var(--space-4);
  overflow: hidden;
  background: #111111;
  border-radius: var(--radius);
}

.quooker__media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: cover;
}

.arrivals__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.arrivals img {
  width: 100%;
  aspect-ratio: 665 / 404;
  object-fit: cover;
}

.range__grid {
  display: grid;
  gap: var(--space-5);
}

.range-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: stretch;
  min-width: 0;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.range-card:nth-child(even) img {
  order: 2;
}

.range-card:nth-child(even) .range-card__body {
  order: 1;
}

.range-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.range-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: var(--space-2);
  justify-content: center;
  padding: var(--space-5);
}

.range-card__badge {
  align-self: flex-start;
  margin: 0;
  padding: 0.32rem 0.65rem;
  background: #eeeeee;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.range-card h3,
.about h3,
.why-us__step h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

.range-card h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  text-transform: uppercase;
}

.range-card p {
  color: var(--muted);
}

.range-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.about {
  display: grid;
  justify-items: center;
  gap: var(--space-4);
  text-align: center;
}

.about__logo {
  max-width: min(360px, 90vw);
}

.about__content {
  display: grid;
  gap: var(--space-3);
  max-width: 860px;
}

.about__content p {
  margin: 0;
}

.why-us .section__header {
  margin-bottom: var(--space-5);
}

.why-us__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.why-us__step {
  min-width: 0;
  padding: var(--space-4);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.why-us__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-3);
  background: var(--text);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 800;
}

.why-us__step h3 {
  text-transform: uppercase;
}

.why-us__step p {
  margin: var(--space-2) 0 0;
  color: var(--muted);
}

.newsletter {
  display: grid;
  justify-items: center;
  gap: var(--space-3);
  text-align: center;
}

.newsletter p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.newsletter__form {
  display: flex;
  gap: var(--space-2);
  width: 100%;
  max-width: 480px;
}

.newsletter__form input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 44px;
  padding: 0 var(--space-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--page);
  color: var(--text);
}

@media (max-width: 1024px) {
  .section {
    padding-right: var(--space-3);
    padding-left: var(--space-3);
  }

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

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

  .value-prop,
  .modern {
    grid-template-columns: 1fr;
  }

  .modern > * {
    max-width: none;
  }

  .modern__content {
    padding-right: var(--space-3);
    padding-left: var(--space-3);
  }
}

@media (max-width: 767px) {
  .section {
    padding-top: var(--space-5);
    padding-bottom: var(--space-5);
  }

  .ckd-home .home-utility__inner {
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.45rem 0.7rem;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
  }

  .ckd-home .home-utility__facebook {
    margin-left: 0;
  }

  .ckd-home .home-utility__brochure {
    margin-left: 0;
  }

  .ckd-home .primary-nav {
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.28);
  }

  .ckd-home .primary-nav .primary-nav__link--active::after {
    display: block;
    bottom: -0.22rem;
  }

  .hero,
  .hero img {
    min-height: 0;
    height: clamp(360px, 64vh, 620px);
  }

  .collection__grid,
  .arrivals__grid,
  .benefits__list,
  .why-us__steps {
    grid-template-columns: 1fr;
  }

  .benefits__list p {
    justify-content: flex-start;
    text-align: left;
  }

  .range-card {
    grid-template-columns: 1fr;
  }

  .range-card:nth-child(even) img,
  .range-card:nth-child(even) .range-card__body {
    order: initial;
  }

  .range-card img {
    min-height: 0;
    height: auto;
  }

  .range-card__body {
    padding: var(--space-4) var(--space-3);
  }

  .value-prop__media img,
  .quooker__media img,
  .modern__media {
    min-height: 260px;
  }

  .newsletter__form {
    flex-direction: column;
  }

  .newsletter__form .btn {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero,
  .modern__media {
    background-attachment: scroll;
  }

  .ckd-home .quooker__bg {
    display: none;
  }
}
