@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap");

:root {
  --ink: #151515;
  --muted: #666a62;
  --line: #dddcd5;
  --paper: #fbfaf4;
  --panel: #ffffff;
  --sun: #ff8617;
  --leaf: #2f5d50;
  --clay: #b95e36;
  --blue: #1f5f9f;
  --shadow: 0 12px 30px rgba(21, 21, 21, 0.12);
}

@media (max-width: 980px) {
  .designer-summary span {
    display: inline;
    white-space: normal;
  }

  .designer-summary span:not(:last-child)::after {
    content: " ";
  }

  .designer-portrait {
    width: min(100%, 320px);
  }

  .designer-portrait img {
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center top;
  }
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.4;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 244, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.top-strip,
.main-bar,
.category-nav,
main,
.site-footer {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
}

.top-strip {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  padding: 8px 0;
  color: var(--muted);
  font-size: 13px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.main-bar {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.brand-image {
  width: clamp(142px, 17vw, 220px);
  height: 58px;
  align-items: center;
}

.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand span {
  padding: 8px 6px 8px 10px;
  background: var(--sun);
  border: 2px solid var(--ink);
  border-right: 0;
}

.brand strong {
  padding: 8px 10px 8px 6px;
  color: #fff;
  background: var(--blue);
  border: 2px solid var(--ink);
}

.search {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  background: #ecebe3;
  border: 1px solid transparent;
  border-radius: 999px;
}

.search:focus-within {
  border-color: var(--ink);
  background: #fff;
}

.search svg,
.icon-button svg,
.cart-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}

.quick-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-button,
.cart-button {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.icon-button:hover,
.cart-button:hover {
  background: #ecebe3;
}

.cart-button span {
  position: absolute;
  right: 3px;
  top: 2px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--clay);
  font-size: 12px;
  font-weight: 700;
}

.category-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0 14px;
  scrollbar-width: thin;
}

.category-pill {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(21, 21, 21, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.category-pill.is-active,
.category-pill:hover {
  background: rgba(21, 21, 21, 0.92);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 9px 20px rgba(21, 21, 21, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.hero {
  min-height: min(680px, calc(100vh - 142px));
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 1.2fr);
  gap: 20px;
  align-items: stretch;
  padding: 24px 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 6vw, 84px);
  color: #fff;
  background: var(--sun);
  border: 2px solid var(--sun);
}

.kicker {
  margin: 0 0 12px;
  color: var(--leaf);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-brand {
  margin: 0;
  width: min(100%, 500px);
}

.hero-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.hero p:not(.kicker) {
  max-width: 520px;
  margin: clamp(42px, 5vw, 68px) 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(24px, 1.9vw, 29px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0;
}

.hero p:not(.kicker) strong {
  font-weight: 700;
}

.hero-statement strong,
.hero-statement span {
  display: block;
  white-space: nowrap;
}

.hero-carousel {
  position: relative;
  min-width: 0;
  min-height: 420px;
  overflow: hidden;
  background: var(--ink);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 600ms ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.carousel-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #fff;
  background: rgba(21, 21, 21, 0.55);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: var(--ink);
}

.carousel-arrow svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.carousel-previous {
  left: 18px;
}

.carousel-next {
  right: 18px;
}

.carousel-dots {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: 50%;
  display: flex;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.5);
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.carousel-dot.is-active {
  background: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-actions .secondary-link {
  color: var(--ink);
}

.primary-link,
.secondary-link,
.checkout-button,
.add-button,
.copy-button,
.whatsapp-button,
.enquiry-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  box-shadow: 0 10px 24px rgba(21, 21, 21, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.primary-link,
.checkout-button,
.add-button {
  color: #fff;
  background: rgba(21, 21, 21, 0.92);
}

.primary-link.dark {
  color: var(--ink);
  background: rgba(255, 134, 23, 0.88);
}

.secondary-link {
  background: rgba(255, 255, 255, 0.68);
}

.primary-link:hover,
.secondary-link:hover,
.checkout-button:hover,
.add-button:hover,
.copy-button:hover,
.whatsapp-button:hover,
.enquiry-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(21, 21, 21, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.primary-link:focus-visible,
.secondary-link:focus-visible,
.checkout-button:focus-visible,
.add-button:focus-visible,
.copy-button:focus-visible,
.whatsapp-button:focus-visible,
.enquiry-button:focus-visible {
  outline: 3px solid rgba(255, 134, 23, 0.45);
  outline-offset: 3px;
}

.shop-by-room,
.subdomains,
.designer-section,
.gift-section,
.featured-product,
.scent-list,
.contact-section,
.commerce-layout,
.services {
  padding: 36px 0;
}

.section-heading,
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-heading h2,
.toolbar h2,
.promo-band h2,
.filters h2,
.services h2 {
  margin: 0;
  font-size: clamp(24px, 3.5vw, 42px);
  letter-spacing: 0;
}

.section-heading a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section-heading span {
  color: var(--muted);
  font-weight: 800;
}

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

.room-link {
  min-height: 250px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--leaf);
}

.room-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.room-link:hover img {
  transform: scale(1.035);
}

.dining-room img {
  object-position: center 48%;
}

.room-link span,
.room-link small {
  position: relative;
  z-index: 1;
}

.room-link span {
  margin: 16px;
  padding: 10px 14px;
  color: #fff;
  background: rgba(21, 21, 21, 0.85);
  font-weight: 900;
}

.editorial-room {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--leaf), var(--blue));
}

.editorial-room span {
  margin: 0;
  padding: 0;
  background: transparent;
  font-size: clamp(24px, 4vw, 44px);
  line-height: 1;
}

.editorial-room small {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

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

.brand-tile {
  min-height: 240px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.brand-tile:hover {
  box-shadow: var(--shadow);
}

.brand-tile img {
  width: 100%;
  height: 86px;
  object-fit: contain;
  object-position: left center;
}

.brand-tile strong {
  font-size: 22px;
}

.brand-tile span {
  color: var(--muted);
}

.lighting-tile {
  background: #fff200;
}

.gallery-tile {
  background: #f7f7f7;
}

.gallery-tile img {
  object-fit: cover;
  object-position: left top;
}

.candle-tile {
  background: #f8f5ed;
}

.promo-band {
  width: min(1376px, calc(100% - 64px));
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(32px, 6vw, 96px);
  padding: clamp(26px, 3vw, 42px) clamp(32px, 4vw, 58px);
  color: #fff;
  background: var(--sun);
}

.promo-band .kicker {
  margin: 0 0 16px;
  color: #fff;
  font-size: 13px;
  line-height: 1;
}

.promo-band h2 {
  max-width: none;
  font-size: clamp(30px, 2.65vw, 42px);
  line-height: 1.12;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .promo-band {
    width: min(100% - 32px, 1376px);
  }

  .promo-band h2 {
    white-space: normal;
  }
}

.promo-band .primary-link.dark {
  min-width: 220px;
  justify-content: center;
  padding: 14px 24px;
  color: #fff;
  border: 0;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.88);
  box-shadow: 0 10px 26px rgba(39, 20, 7, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.promo-band .primary-link.dark:hover {
  transform: translateY(-2px);
  background: #151515;
  box-shadow: 0 14px 30px rgba(39, 20, 7, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.promo-band .primary-link.dark:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 4px;
}

.designer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
  min-height: 0;
  padding: clamp(46px, 5vw, 72px) clamp(42px, 5.5vw, 82px);
  color: #fff;
  background: var(--ink);
  border: 1px solid #303030;
}

.designer-copy {
  display: grid;
  align-content: center;
  justify-items: start;
}

.designer-copy h2 {
  margin: 0;
  font-size: clamp(48px, 5.2vw, 78px);
  line-height: 1;
}

.designer-copy p:not(.kicker) {
  max-width: none;
  margin: clamp(34px, 4vw, 56px) 0 0;
  font-size: clamp(21px, 2vw, 32px);
  line-height: 1.55;
}

.designer-copy .secondary-link {
  color: #fff;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.designer-portrait {
  position: relative;
  align-self: center;
  margin: 0;
  overflow: visible;
  aspect-ratio: auto;
}

.designer-portrait img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
}

.designer-portrait figcaption {
  position: static;
  padding: 14px 0 0;
  color: #fff;
  background: none;
  font-size: clamp(24px, 2.5vw, 38px);
  text-align: center;
}

/* Compact three-line designer profile */
@media (min-width: 981px) {
  .designer-section {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
    gap: clamp(44px, 6vw, 88px);
    min-height: 0;
    padding: clamp(46px, 5vw, 72px) clamp(42px, 5.5vw, 82px);
  }

  .designer-copy {
    min-width: 0;
  }

  .designer-copy h2 {
    font-size: clamp(52px, 4.8vw, 76px);
    line-height: 1;
  }

  .designer-copy p.designer-summary {
    width: 100%;
    max-width: none;
    margin: clamp(28px, 3vw, 42px) 0 0;
    font-size: clamp(18px, 1.55vw, 25px);
    line-height: 1.55;
    letter-spacing: 0;
  }

  .designer-summary span {
    display: block;
    white-space: nowrap;
  }

  .designer-portrait {
    width: min(100%, 350px);
    justify-self: center;
  }

  .designer-portrait figcaption {
    margin-top: 12px;
    font-size: clamp(24px, 2.2vw, 36px);
    line-height: 1.2;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .designer-section {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 320px);
    gap: 40px;
    padding-inline: 40px;
  }

  .designer-copy p.designer-summary {
    font-size: 17px;
  }
}

.designer-gallery {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  place-items: center;
  padding: clamp(12px, 3vw, 36px);
  background: rgba(0, 0, 0, 0.88);
}

.designer-gallery.is-open {
  display: grid;
}

.designer-gallery-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-width: 0;
  width: min(1180px, 100%);
  max-width: 100%;
  height: min(880px, 94vh);
  overflow: hidden;
  color: #fff;
  background: #141414;
}

.designer-gallery-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  border-bottom: 1px solid #3a3a3a;
}

.designer-gallery-head h2,
.designer-gallery-head p {
  margin: 0;
}

.designer-gallery-head .kicker {
  color: var(--sun);
}

.designer-gallery-close {
  position: absolute;
  top: 20px;
  right: 22px;
  z-index: 4;
  flex: 0 0 auto;
  color: #fff;
  border: 1px solid #888;
}

.designer-gallery-stage {
  display: grid;
  min-width: 0;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  background: #090909;
}

.designer-gallery-stage img,
.designer-gallery-stage video {
  min-width: 0;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-step {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  font-size: 26px;
  cursor: pointer;
}

.gallery-step-prev {
  left: 18px;
}

.gallery-step-next {
  right: 18px;
}

.designer-gallery-thumbs {
  display: grid;
  grid-auto-columns: 112px;
  grid-auto-flow: column;
  min-width: 0;
  gap: 8px;
  overflow-x: auto;
  padding: 10px;
  border-top: 1px solid #3a3a3a;
}

.designer-gallery-thumb {
  min-height: 74px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 2px;
  color: #fff;
  background: #292929;
  cursor: pointer;
}

.designer-gallery-thumb.is-active {
  border-color: var(--sun);
}

.designer-gallery-thumb img {
  width: 100%;
  height: 70px;
  object-fit: cover;
}

.designer-gallery-thumb span {
  display: grid;
  min-height: 70px;
  place-items: center;
  padding: 8px;
  font-weight: 800;
}

body.gallery-open {
  overflow: hidden;
}

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

.shop-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.shop-category-tabs a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.shop-category-tabs a:hover {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.gift-grid a {
  min-height: 320px;
  display: grid;
  grid-template-rows: 180px auto auto;
  gap: 12px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.gift-grid a:hover {
  box-shadow: var(--shadow);
}

.gift-grid img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #f0efe8;
}

.gift-grid img:not(.category-product) {
  object-fit: cover;
}

.gift-grid img.category-product {
  padding: 10px;
  object-fit: contain;
  background: #f6f5f0;
}

.gift-grid img[src*="kikabila"],
.gift-grid img[src*="tabletop"] {
  object-fit: cover;
}

.gift-grid strong {
  font-size: 22px;
}

.gift-grid span {
  color: var(--muted);
}

.shop-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 0 36px;
}

.shop-guide article {
  padding: 24px;
  background: #ecebe3;
}

.shop-guide h2 {
  margin: 0 0 10px;
}

.shop-guide p {
  margin: 0;
  color: var(--muted);
}

.branch-guide {
  margin-top: 6px;
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.branch-grid a {
  min-height: 138px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 20px;
  align-content: center;
  padding: 26px 30px;
  color: var(--ink);
  background: transparent;
}

.branch-grid a + a {
  border-left: 1px solid var(--line);
}

.branch-grid a::after {
  content: "\2197";
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: center;
  font-size: 24px;
  color: var(--sun);
}

.branch-grid strong {
  grid-column: 1;
  color: var(--sun);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

.branch-grid span,
.branch-grid em {
  grid-column: 1;
  font-style: normal;
}

.branch-grid span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.branch-grid em {
  color: var(--muted);
  font-size: 14px;
}

.bespoke-band {
  width: min(1440px, calc(100% - 32px));
  margin: 10px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 54px);
  color: #fff;
  background: #24211e;
}

.bespoke-band .primary-link.dark {
  color: #fff;
  background: rgba(255, 134, 23, 0.78);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.bespoke-band p:not(.kicker) {
  max-width: 720px;
  margin: 12px 0 0;
}

.bespoke-band .kicker {
  color: var(--sun);
}

.bespoke-band h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1;
}

.featured-product-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(280px, 0.85fr);
  gap: 20px;
  align-items: stretch;
}

.featured-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.featured-gallery img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  background: #fff;
}

.featured-gallery img:first-child {
  grid-row: span 2;
}

.featured-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 16px;
  padding: clamp(26px, 4vw, 48px);
  background: #fff;
  border: 1px solid var(--line);
}

.featured-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

.featured-copy p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.featured-copy > strong {
  font-size: 28px;
}

.bespoke-hero {
  background: #e7efe7;
}

.bespoke-hero img {
  max-height: 420px;
  object-fit: cover;
}

.bespoke-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 340px;
  gap: 24px;
  padding: 36px 0;
}

.bespoke-form,
.bespoke-help {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.bespoke-form {
  display: grid;
  gap: 12px;
}

.bespoke-form label {
  color: var(--muted);
  font-weight: 800;
}

.bespoke-form input,
.bespoke-form select,
.bespoke-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.bespoke-form textarea {
  resize: vertical;
}

.upload-note {
  margin: 0;
  color: var(--muted);
}

.bespoke-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.bespoke-help h2 {
  margin: 0 0 14px;
}

.bespoke-help ul {
  margin: 0 0 18px;
  padding-left: 20px;
}

.bespoke-help li {
  margin-bottom: 8px;
}

.commerce-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 150px;
  display: grid;
  gap: 18px;
}

.filter-block {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.filter-block h3,
.filter-block p {
  margin: 0 0 10px;
}

.filter-block p,
.product-card p,
.services p,
.site-footer p,
.meta {
  color: var(--muted);
}

.filter-block label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--leaf);
}

.toolbar select {
  min-height: 42px;
  padding: 0 36px 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

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

.product-card {
  display: grid;
  min-height: 100%;
  background: #fff;
  border: 1px solid transparent;
}

.product-card:hover {
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.product-media {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f0efe8;
}

.product-media img {
  width: 100%;
  height: 100%;
  padding: 12px;
  object-fit: contain;
}

.product-media img[src*="logo"] {
  padding: 24px;
  object-fit: contain;
}

.product-media img[src*="kikabila"] {
  object-fit: cover;
  object-position: center top;
}

.product-body {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.product-body h3 {
  min-height: 44px;
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.product-card p {
  min-height: 40px;
  margin: 0;
  font-size: 14px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-row strong {
  font-size: 19px;
}

.rating {
  color: var(--clay);
  font-weight: 800;
}

.add-button {
  width: 100%;
  border-radius: 999px;
}

.enquiry-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: rgba(21, 21, 21, 0.9);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 48px 20px;
  background: #fff;
  text-align: center;
}

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

.services article {
  padding: 24px;
  background: #ecebe3;
}

.services h2 {
  font-size: 24px;
}

.payment-note {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: #fff7cf;
  border: 1px solid #e6c85b;
}

.payment-note span {
  color: var(--muted);
  font-size: 14px;
}

.copy-button,
.whatsapp-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  text-align: center;
}

.whatsapp-button {
  color: #fff;
  background: rgba(47, 93, 80, 0.9);
}

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

.scent-grid article {
  min-height: 132px;
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.scent-grid strong {
  font-size: 18px;
}

.scent-grid span {
  color: var(--muted);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  overflow: hidden;
  pointer-events: none;
  background: rgba(21, 21, 21, 0);
  transition: background 160ms ease;
}

.cart-drawer.is-open {
  pointer-events: auto;
  background: rgba(21, 21, 21, 0.34);
}

.cart-panel {
  width: min(430px, 100%);
  max-width: 100vw;
  min-width: 0;
  height: 100%;
  margin-left: auto;
  display: grid;
  grid-template-rows: auto minmax(120px, 1fr) auto auto;
  background: #fff;
  transform: translateX(100%);
  transition: transform 180ms ease;
}

.cart-panel > * {
  min-width: 0;
}

.cart-drawer.is-open .cart-panel {
  transform: translateX(0);
}

.cart-head,
.cart-summary {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-head h2 {
  margin: 0;
}

.cart-items {
  overflow: auto;
  padding: 8px 18px;
}

.checkout-form {
  display: grid;
  gap: 9px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  background: #fbfaf4;
}

.checkout-form h3 {
  margin: 0 0 2px;
  font-size: 18px;
}

.checkout-form label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.checkout-form input[type="text"],
.checkout-form input[type="tel"],
.checkout-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
}

.checkout-form textarea {
  resize: vertical;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.payment-methods label {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: #fff;
}

.cart-item {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  background: #f0efe8;
}

.cart-item h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.quantity button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.cart-summary {
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.checkout-button {
  width: 100%;
  border-radius: 999px;
}

.site-footer {
  width: 100%;
  display: grid;
  gap: 26px;
  margin: 48px 0 0;
  padding: clamp(26px, 3vw, 42px);
  color: #fff;
  background: var(--ink);
}

.footer-intro {
  display: grid;
  grid-template-columns: minmax(150px, 200px) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(26px, 5vw, 64px);
  padding-bottom: 24px;
  border-bottom: 1px solid #444;
}

.footer-logo {
  display: block;
  width: min(100%, 220px);
  padding: 14px;
  background: #fff;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-kicker {
  margin: 0 0 8px;
  color: var(--sun);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-intro h2 {
  max-width: none;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.25vw, 46px);
  line-height: 1.02;
  letter-spacing: 0;
  white-space: nowrap;
}

.footer-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, 1fr) minmax(250px, 1fr);
  gap: 0;
}

.footer-column {
  min-width: 0;
  padding: 0 clamp(18px, 3vw, 38px);
  border-left: 1px solid #444;
}

.footer-column:first-child {
  padding-left: 0;
  border-left: 0;
}

.footer-column h3 {
  margin: 0 0 20px;
  color: var(--sun);
  font-size: 14px;
  text-transform: uppercase;
}

.footer-column a {
  display: grid;
  gap: 3px;
  padding: 12px 0;
  border-top: 1px solid #333;
}

.footer-column a:first-of-type {
  border-top: 0;
}

.footer-column span,
.footer-column small {
  color: #aaa;
  font-size: 13px;
}

.footer-column strong {
  color: #fff;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.footer-socials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.footer-column .social-pill {
  --social-color: #151515;
  min-height: 64px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 18px;
  padding: 8px 16px 8px 42px;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.footer-column .social-pill::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  width: 54px;
  height: 54px;
  border: 5px solid var(--social-color);
  border-right-color: transparent;
  border-radius: 50%;
  transform: translateY(-50%);
}

.social-pill-icon {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 50%;
  left: -8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--social-color);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%);
}

.social-pill-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-facebook {
  --social-color: #3159a7;
}

.social-facebook .social-pill-icon {
  background: #3159a7;
}

.social-facebook .social-pill-icon svg {
  fill: currentColor;
  stroke: none;
}

.social-instagram {
  --social-color: #d52b72;
}

.social-instagram .social-pill-icon {
  background: linear-gradient(135deg, #ffb02e 0%, #f3266f 48%, #7046c7 100%);
}

.social-whatsapp {
  --social-color: #21b852;
}

.social-whatsapp .social-pill-icon {
  background: #21b852;
}

.social-call {
  --social-color: #ff8216;
}

.social-call .social-pill-icon {
  background: #ff8216;
}

.social-email {
  --social-color: #d9583b;
}

.social-email .social-pill-icon {
  background: #d9583b;
}

.social-tripadvisor {
  --social-color: #00aa6c;
}

.social-tripadvisor .social-pill-icon {
  background: #00aa6c;
}

.social-pill {
  box-shadow: 0 8px 18px color-mix(in srgb, var(--social-color) 24%, transparent);
}

.footer-column .social-pill strong {
  color: var(--ink);
  font-size: 14px;
}

.footer-column .social-pill:hover strong,
.footer-column .social-pill:focus-visible strong {
  color: var(--social-color);
}

.footer-column a:hover strong,
.footer-column a:focus-visible strong,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--sun);
}

.footer-bottom {
  display: grid;
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid #444;
}

.site-footer .footer-bottom p {
  margin: 0;
  color: #aaa;
}

.footer-legal {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 18px;
}

.footer-legal small {
  color: #777;
  font-size: 12px;
}

.footer-copyright {
  justify-self: center;
  text-align: center;
}

.footer-designer {
  justify-self: end;
  color: var(--sun);
  font-weight: 800;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  font-weight: 800;
}

.floating-shop {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  width: 70px;
  height: 70px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 2px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--sun);
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-shop:hover,
.floating-shop:focus-visible {
  background: var(--ink);
}

.floating-shop svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.sub-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.sub-nav a {
  padding: 7px 0 6px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.sub-nav a:hover,
.sub-nav a:focus-visible {
  color: var(--sun);
  border-bottom-color: currentColor;
}

.sub-brand-page main {
  padding-top: 24px;
}

.sub-brand-page .main-bar {
  grid-template-columns: minmax(180px, 320px) 1fr;
  justify-content: space-between;
}

.sub-hero {
  min-height: min(620px, calc(100vh - 110px));
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: 20px;
  align-items: center;
  padding: clamp(26px, 5vw, 72px);
}

.sub-hero h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 96px);
  line-height: 0.95;
}

.sub-hero p:not(.kicker) {
  max-width: 560px;
  margin: 20px 0 28px;
  font-size: clamp(18px, 2vw, 24px);
}

.sub-hero img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.72);
}

.gallery-hero {
  grid-template-columns: minmax(260px, 0.65fr) minmax(560px, 1.35fr);
  gap: clamp(28px, 4vw, 64px);
  color: #fff;
  background: #111;
}

.gallery-hero-collection {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  height: clamp(330px, 36vw, 470px);
  overflow: hidden;
  background: #fff;
}

.gallery-hero-collection figure {
  position: relative;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.gallery-hero-collection figure + figure {
  border-left: 3px solid #332f2f;
}

.gallery-hero-collection img {
  width: 100%;
  height: 100%;
  max-height: none;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #fff;
  transition: transform 320ms ease;
}

.gallery-hero-collection figure:hover img {
  transform: scale(1.025);
}

.gallery-hero-collection figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(18, 18, 18, 0.82);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

@media (max-width: 980px) {
  .gallery-hero-collection {
    height: clamp(320px, 60vw, 460px);
  }
}

@media (max-width: 680px) {
  .gallery-hero-collection {
    grid-template-columns: repeat(3, minmax(72vw, 1fr));
    height: 390px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .gallery-hero-collection figure {
    scroll-snap-align: start;
  }
}

.lighting-hero {
  background: #fff200;
}

.lighting-hero img {
  width: 100%;
  height: clamp(360px, 34vw, 500px);
  max-height: none;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.candles-hero {
  background: #f3ead7;
}

.candle-products {
  padding: 36px 0;
}

.candle-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
  width: 100%;
}

.candle-product-card {
  display: grid;
  overflow: hidden;
  color: #fff;
  background: #171717;
  border-radius: 7px;
  box-shadow: 0 18px 38px rgba(21, 21, 21, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.candle-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(21, 21, 21, 0.26);
}

.candle-product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.candle-product-copy {
  display: grid;
  gap: 9px;
  padding: 22px 24px 24px;
}

.candle-product-copy small {
  color: #c8c4bd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.candle-product-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 600;
}

.candle-product-copy b {
  color: var(--sun);
  font-size: 20px;
}

.shop-hero {
  background: var(--sun);
}

.shop-hero .shop-title {
  display: grid;
  width: min-content;
  margin: 0 0 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.92;
  letter-spacing: 0;
}

.shop-title > span:not(.shop-title-amp) {
  white-space: nowrap;
}

.shop-title-amp {
  width: 100%;
  padding: 8px 0 6px;
  text-align: center;
  font-size: 0.62em;
  line-height: 0.7;
}

.shop-hero img {
  max-height: 420px;
  object-fit: cover;
}

.bespoke-hero img {
  width: 100%;
  height: clamp(360px, 34vw, 500px);
  max-height: none;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.gallery-hero {
  background: #333030;
  color: #fff;
}

.gallery-hero .kicker {
  color: var(--sun);
}

.gallery-hero img {
  background: #fff;
  max-height: 420px;
  object-fit: cover;
  object-position: top center;
}

.gallery-page .services article {
  background: #fff;
  border: 1px solid var(--line);
}

@media (max-width: 980px) {
  .candle-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-bar {
    grid-template-columns: 1fr auto;
  }

  .search {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .hero,
  .sub-hero,
  .designer-section,
  .featured-product-layout,
  .bespoke-layout,
  .commerce-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 360px;
  }

  .designer-section {
    gap: 40px;
    min-height: 0;
    padding: clamp(32px, 7vw, 64px);
  }

  .designer-copy p:not(.kicker) {
    margin: 24px 0 30px;
    font-size: clamp(18px, 4vw, 24px);
  }

  .designer-portrait {
    width: min(100%, 460px);
    justify-self: center;
  }

  .designer-gallery-panel {
    width: 100%;
    max-width: 100%;
    height: min(820px, 96vh);
  }

  .designer-gallery-head {
    padding: 12px 14px;
    padding-right: 68px;
  }

  .designer-gallery-close {
    top: 12px;
    right: 14px;
  }

  .designer-gallery-head h2 {
    font-size: 22px;
  }

  .gallery-step {
    width: 40px;
    height: 40px;
  }

  .gallery-step-prev {
    left: 8px;
  }

  .gallery-step-next {
    right: 8px;
  }

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

  .featured-gallery img:first-child {
    grid-row: auto;
  }

  .sub-brand-page .main-bar {
    grid-template-columns: 1fr;
  }

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

  .room-grid,
  .brand-grid,
  .scent-grid,
  .contact-grid,
  .gift-grid,
  .shop-guide,
  .branch-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid a,
  .contact-grid .location-card {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .footer-column:last-child {
    grid-column: 1 / -1;
    padding: 28px 0 0;
    border-top: 1px solid #444;
    border-left: 0;
  }

  .footer-column:last-child .footer-socials {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-bottom nav {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .candle-product-grid {
    grid-template-columns: 1fr;
  }

  .top-strip {
    display: none;
  }

  .main-bar,
  .top-strip,
  .category-nav,
  main,
  .site-footer {
    width: min(100% - 20px, 1440px);
  }

  .sub-brand-page {
    overflow-x: hidden;
  }

  .sub-brand-page .main-bar {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .sub-brand-page .brand-image {
    width: 132px;
  }

  .sub-nav {
    width: 100%;
    min-width: 0;
    flex-wrap: nowrap;
    gap: 16px;
    padding: 4px 0 10px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .sub-nav::-webkit-scrollbar {
    display: none;
  }

  .sub-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .quick-actions .icon-button {
    display: none;
  }

  .category-nav {
    display: none;
  }

  .category-nav.is-open {
    display: flex;
  }

  .featured-gallery {
    grid-template-columns: 1fr;
  }

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

  .hero-carousel {
    min-height: 260px;
  }

  .sub-hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    padding: 28px;
    overflow: hidden;
  }

  .sub-hero > * {
    min-width: 0;
  }

  .hero-copy {
    min-height: auto;
    padding: 28px;
  }

  .hero p:not(.kicker) {
    margin-top: 34px;
    font-size: 22px;
    line-height: 1.25;
  }

  .hero-statement strong,
  .hero-statement span {
    white-space: normal;
  }

  .room-grid,
  .scent-grid,
  .contact-grid,
  .gift-grid,
  .shop-guide,
  .branch-grid,
  .product-grid,
  .services,
  .filters {
    grid-template-columns: 1fr;
  }

  .shop-hero .shop-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(42px, 15vw, 62px);
  }

  .shop-hero p:not(.kicker) {
    max-width: 100%;
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .bespoke-hero img,
  .lighting-hero img {
    height: 300px;
  }

  .shop-category-tabs a {
    flex: 1 1 calc(50% - 10px);
  }

  .branch-grid a + a {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .promo-band,
  .bespoke-band,
  .section-heading,
  .toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .promo-band {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 32px 24px;
  }

  .promo-band .primary-link.dark {
    width: 100%;
    min-width: 0;
  }

  .site-footer {
    width: 100%;
    padding: 28px 22px;
  }

  .footer-intro,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-intro {
    align-items: start;
  }

  .footer-intro h2 {
    white-space: normal;
  }

  .footer-logo {
    width: 170px;
  }

  .footer-column,
  .footer-column:first-child,
  .footer-column:last-child {
    grid-column: auto;
    padding: 24px 0 0;
    border-top: 1px solid #444;
    border-left: 0;
  }

  .footer-column:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .footer-bottom {
    align-items: flex-start;
  }

  .footer-bottom nav {
    justify-content: flex-start;
  }

  .footer-legal {
    grid-template-columns: 1fr auto;
    width: 100%;
  }

  .footer-legal p {
    display: none;
  }

  .footer-copyright {
    justify-self: start;
    text-align: left;
  }

  .footer-socials {
    grid-template-columns: 1fr;
  }

  .footer-column:last-child .footer-socials {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 58px 1fr;
  }

  .quantity {
    grid-column: 2;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .bespoke-actions {
    grid-template-columns: 1fr;
  }

  .floating-shop {
    right: 12px;
    bottom: 12px;
    width: 62px;
    height: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
}
