/* Mantis — Figma frames 1440 / 390. Tokens from MCP design context. */

:root {
  --orange: #f58c2e;
  --orange-hover: #e57d22;
  --ink: #24211f;
  --ink-deep: #1b1c19;
  --muted: #444748;
  --brown: #554336;
  --page: #f4f1ee;
  --cream: #f4eee8;
  --card: #f1f1ef;
  --white: #ffffff;
  --modal: #fbf9f4;
  --overlay: rgba(0, 0, 0, 0.4);
  --search-border: #924807;
  --search-bg: rgba(237, 231, 225, 0.5);
  --search-ph: #706351;
  --line-soft: #ede7e1;
  --footer-line: #dcc2b1;
  --header-h: 123px;
  --gutter: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

ul {
  list-style: none;
}

.serif {
  font-family: "Playfair Display", Georgia, serif;
}

.wrap {
  width: min(1440px, 100%);
  padding-inline: var(--gutter);
  margin-inline: auto;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  line-height: 16px;
  padding: 16px 32px;
  border-radius: 0;
}

.btn--orange {
  background: var(--orange);
  color: var(--cream);
  padding: 16px 64px;
}

.btn--orange:hover {
  background: var(--orange-hover);
}

.btn--cream {
  background: var(--cream);
  color: #201d1b;
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream);
  padding: 17px 65px;
}

.btn--ghost-soft {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(244, 238, 232, 0.3);
}

.btn--ink {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 16px 32px;
}

.btn--block {
  width: 100%;
}






.hero {
  position: relative;
  overflow: hidden;
}

.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
  z-index: 1;
}

.hero__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}





.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--header-h);
  background: transparent;
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
}

.nav-left,
.nav-right {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-right {
  justify-content: flex-end;
  gap: 24px;
}

.nav-left a,
.nav-left button.nav-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 16px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.nav-left a.is-active {
  color: var(--orange);
}

.logo--mob {
  display: none;
}

.logo img {
  width: 110px;
  height: 34px;
}

.logo--sm img {
  width: 84px;
  height: 26px;
}

.search {
  position: relative;
  width: 278px;
  height: 37px;
  border: 1px solid var(--search-border);
  background: var(--search-bg);
  display: flex;
  align-items: center;
}

.search img {
  position: absolute;
  left: 8px;
  width: 13.5px;
  height: 13.5px;
}

.search input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
  background: transparent;
  padding: 6px 16px 7px 32px;
  font-size: 13px;
  color: var(--search-ph);
}

.search input::placeholder {
  color: var(--search-ph);
}

.btn-enquire {
  background: var(--orange);
  color: var(--cream);
  border: 0;
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 16px;
  cursor: pointer;
}

.icon-btn,
.wa-fab {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  place-items: center;
  padding: 0;
}

.icon-btn {
  width: 36px;
  height: 36px;
}

.icon-btn img {
  width: 20px;
  height: 20px;
}

.wa-fab {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 4px;
}

.wa-fab img {
  width: 26px;
  height: 26px;
}

/* Products dropdown (11:3159) */
.nav-products {
  position: relative;
}

.menu-drop {
  position: absolute;
  top: 28px;
  left: 0;
  width: 381px;
  background: var(--modal);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 20px;
  display: none;
  z-index: 50;
}

.nav-products.is-open .menu-drop,
.nav-products:hover .menu-drop {
  display: block;
}

.menu-drop a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 63px;
  border-bottom: 1px solid #e8ded7;
  font-size: 14px;
  letter-spacing: 0.14px;
  color: var(--muted);
  text-transform: none;
}

.menu-drop a:last-child {
  border-bottom: 0;
}

.menu-drop img {
  width: 12px;
  height: 12px;
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--page);
  padding: 20px;
  display: none;
  flex-direction: column;
}

.drawer.is-open {
  display: flex;
}

.drawer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
    margin: -10px -15px 24px;  padding: 0 20px;
  border-bottom: 1px solid var(--line-soft);
}

.drawer a {
display: flex;
    align-items: center;
    justify-content: space-between;
    height: 63px;
    font-weight: 600;
    border-bottom: 1px solid #e8ded7;
    font-size: 16px;
    color: var(--muted);
    font-family: 'Hanken Grotesk';
}

.drawer a img {
  width: 12px;
  height: 12px;
}

/* ---------- Footer (2:2145 / 24:7935) ---------- */

.site-footer {
  background: var(--cream);
  padding: 0;
  overflow: hidden;
}

/* Figma footer 2:2145 — wordmark at y=-3, columns at y=337 */
.footer-mark {
  display: block;
  width: min(1447px, 100%);
  height: auto;
  margin: 0 auto;
  margin-top: 70px;
}

.hero {
  position: relative;
  overflow: hidden;
}

/* Hero image */
.hero__bg {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Stronger bottom fade */
.hero__shade {
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;

  z-index: 5 !important;
  pointer-events: none;

  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 45%,
      rgba(0, 0, 0, 0.05) 60%,
      rgba(0, 0, 0, 0.20) 75%,
      rgba(0, 0, 0, 0.50) 100%) !important;
}

/* Content stays above the shadow */
.hero__copy {
  position: absolute;
  z-index: 10 !important;
}

/* Dots above everything */
.hero__dots {
  position: absolute;
  z-index: 10 !important;
}

.site-footer__grid {
  display: flex;
  gap: 24px;
  padding: 70px 64px 0;
}

.site-footer__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-footer h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.32px;
  text-transform: uppercase;
  color: var(--orange);
  line-height: 16px;
}

.site-footer a,
.site-footer p {
  font-size: 16px;
  color: var(--ink);
  line-height: 24px;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__legal {
  display: flex;
  justify-content: space-between;
  margin: 128px 64px 0;
  padding: 49px 0 16px;
  border-top: 1px solid var(--footer-line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--brown);
}

/* ---------- Home ---------- */

.hero {
  position: relative;
  height: 811px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero img.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  position: absolute;
  left: 0;
  right: 0;
  top: 121px;
  height: 690px;
  background: linear-gradient(to top, rgba(244, 238, 232, 0.15), rgba(244, 238, 232, 0));
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 1;
  padding: 0 64px 80px;
  max-width: 737px;
}

.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 72px;
  font-weight: 600;
  letter-spacing: -0.72px;
  line-height: 84px;
  color: var(--ink);
}

.hero p {
  margin-top: 24px;
  max-width: 512px;
  font-size: 18px;
  line-height: 30px;
  color: var(--ink);
}

.hero__ctas {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.hero__dots {
  position: absolute;
  right: 64px;
  bottom: 80px;
  display: flex;
  gap: 8px;
  z-index: 1;
}

.hero__dots span {
  width: 32px;
  height: 4px;
  border-radius: 30px;
  background: rgba(244, 238, 232, 0.5);
}

.hero__dots span.is-on {
  background: var(--orange);
}

.intro {
  position: relative;
  min-height: 395px;
  display: flex;
  align-items: center;
  margin: 70px 0;
  padding: 92px 64px;
  overflow: hidden;
}

.nav-left a:hover,
.nav-left a.active,
.nav-left button.nav-link:hover,
.nav-left button.nav-link.active {
  color: rgba(245, 140, 46, 1) !important;
}

.intro__copy {
  max-width: 760px;
}

.intro p {
  font-size: 38px;
  letter-spacing: -0.95px;
  line-height: 47.5px;
  color: var(--ink);
}

.intro__mark {
  position: absolute;
  right: 9%;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  height: 350px;
  pointer-events: none;
}

.link-underline {
  display: inline-block;
  margin-top: 32px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--orange);
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 434px));
  justify-content: center;
  gap: 24px 22px;
  padding: 0 48px;
}

.cat-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #dededd;
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-card span {
  position: absolute;
  left: 16px;
  bottom: 23px;
  background: #24211FCC;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #F4EEE8;

  line-height: 16px;
}

.featured {
  padding: 64px;
  background: #fff;
}

.featured__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #DCC2B1;
  margin-bottom: 64px;
}

.featured__head h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 40px;
  font-weight: 500;
}

.featured__arrows {
  display: flex;
  gap: 16px;
}

.arrow-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(220, 194, 177, 1);
  background: transparent;
  display: grid;
  place-items: center;
  border-radius: 12px;
  cursor: pointer;
}

.arrow-btn img {
  width: 13px;
  height: 13px;
}

.featured__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 304px));
  gap: 24px;
  overflow: hidden;
}

.product-card {


  border: 2px solid #DEDEDD;

}

.load-more-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 50px 0 70px;
}

.load-more-btn {
  min-width: 238px;
  height: 43px;

  padding: 0 28px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  background: transparent;
  border: 1px solid #24211F;

  color: #24211F;

  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;

  cursor: pointer;

  transition: all 0.3s ease;
}

.load-more-arrow {
  font-size: 17px;
  line-height: 1;
  font-weight: 400;
  margin-top: -2px;
}

.load-more-btn:hover {
  background: rgba(245, 140, 46, 1);
  border-color: rgba(245, 140, 46, 1);
  color: #fff;
}

.product-card .thumb {
  aspect-ratio: 1;
  background: rgba(239, 239, 241, 1);

  overflow: hidden;
}

.product-card .thumb img,
.pdp__hero img,
.pdp__thumbs img,
.split__visual img,
.about-hero img,
.sku-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card h3 {
  margin: 20px 0 0 16px;
  font-size: 16px;
}

.product-card p {
  margin: 0 0 0 16px;
  font-size: 13px;
  color: var(--muted);
}

.swatch-dots {
  display: flex;
  gap: 6px;
  margin: 16px;
}

.swatch-dots i {
  width: 10px;
  height: 10px;
  display: block;
  background: rgba(61, 61, 61, 1);
}

.banner {
  position: relative;
  min-height: 632px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #3a3530;
}

.banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 12, 0.35);
}

.banner h2 {
  position: relative;
  z-index: 1;
  padding: 0 64px 64px;
  max-width: 960px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 72px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--cream);
}

.split {
  display: grid;
  grid-template-columns: 1fr 640px;
  min-height: 711px;
  align-items: center;
}

.split--flip {
  grid-template-columns: 720px 1fr;
}

.split__copy {
  padding: 80px 64px;
}

.kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #24211F;
}

.split__copy h2,
.story h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 1.15;
  margin: 16px 0 24px;
}

.split__copy-text {

  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 30px !important;
  /* or 167% */
  display: flex;
  width: 448px !important;
  align-items: center;
  margin-top: 50px !important;
  color: #554336 !important;
}

.split__copy p,
.story p {


  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  line-height: 16px;
  /* identical to box height, or 145% */
  display: flex;
  align-items: center;

  color: #F58C2E;



}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-cta {
  position: relative;
  width: 100%;
  min-height: 632px;

  background-image:
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.15) 35%,
      rgba(0, 0, 0, 0) 70%),
    url("../img/cta2.png");
  background-size: cover;
  background-position: center;

  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg,
      rgba(20, 16, 12, 0.72) 0%,
      rgba(20, 16, 12, 0.48) 25%,
      rgba(20, 16, 12, 0.12) 58%,
      rgba(20, 16, 12, 0) 100%);
}

/* Content */
.cta-content {
  position: relative;
  z-index: 2;

  margin-left: 5.3%;
  margin-top: -5px;

  color: #fff;
}

/* Small orange title */
.eyebrow {
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #d98228;
  margin-bottom: 10px;
}

.cta-content h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 72px;
  line-height: 84px;
  font-weight: 600;
  letter-spacing: -0.75px;
  color: #fff;
  margin-bottom: 25px;
}

/* CTA */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  position: relative;

  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 1.2px;

  color: #fff;
  text-decoration: none;

  padding-bottom: 7px;
}

/* Underline */
.cta-link::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 1px;

  background: rgba(255, 255, 255, 0.75);
}

.cta-link span {
  font-size: 14px;
  line-height: 0;
  margin-top: -2px;
}

/* Hover */
.cta-link:hover {
  opacity: 0.75;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .hero-cta {
    min-height: 600px;

    background-position: center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg,
        rgba(20, 16, 12, 0.78) 0%,
        rgba(20, 16, 12, 0.50) 60%,
        rgba(20, 16, 12, 0.15) 100%);
  }

  .cta-content {
    margin-left: 30px;
    margin-right: 30px;
  }

  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
  }

  .cta-content h1 {
    font-size: clamp(46px, 12vw, 65px);
    line-height: 1;
    letter-spacing: -1.8px;
    margin-bottom: 30px;
  }
}


@media (max-width: 480px) {

  .hero-cta {
    min-height: 560px;
  }

  .cta-content {
    margin-left: 24px;
  }

  .cta-content h1 {
    font-size: 48px;
  }
}

.split__visual {
  height: 640px;
  overflow: hidden;
  background: var(--card);
}

/* Flush 50/50 image–text rows (Figma prototype home / about) */
.band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--page);
}

.band__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}

.band__copy h2 {
  font-family: Playfair Display;
  font-weight: 400;
  font-style: Regular;
  font-size: 36px;
  line-height: 56px;
  letter-spacing: 0px;
  vertical-align: middle;

}

.band__copy p {
  font-family: Hanken Grotesk;
  font-weight: 400;
  font-style: Regular;
  font-size: 11px;
  line-height: 30px;
  margin-bottom: 5px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #444748;

}

.band__copy p+p {
  margin-top: 16px;
}

.band__media {
  min-height: 720px;
  overflow: hidden;
  background: var(--card);
}

.cta-section {
  position: relative;
  width: 100%;
  min-height: 540px;

  display: flex;
  align-items: center;

  background-image: url("../img/abt4.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

/* subtle overlay for text readability */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(90deg,
      rgba(245, 241, 232, 0.55) 0%,
      rgba(245, 241, 232, 0.20) 42%,
      rgba(245, 241, 232, 0) 72%);

  pointer-events: none;
}

.cta-section__content {
  position: relative;
  z-index: 2;

  width: 100%;

  margin: 0 auto;
  padding: 70px 0px;
}

/* Heading */

.cta-section__content h2 {
  margin: 0 0 25px;
  font-family: "Playfair Display", Georgia, serif;

  font-size: 48px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -2px;

  color: #202020;
}

/* Description */

.cta-section__content p {
  margin: 0;

  max-width: 620px;

  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;

  color: #4c5358;
}

/* Buttons */

.cta-section__buttons {
  display: flex;
  align-items: center;
  gap: 16px;

  margin-top: 28px;
}

.cta-btn {
  width: 250px;
  height: 51px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  text-decoration: none;

  font-size: 13px;
  font-weight: 600;

  transition: all 0.3s ease;
}

.cta-btn span {
  font-size: 20px;
  line-height: 1;
}

/* Orange button */

.cta-btn--primary {
  color: #fff;
  background: #f58c2e;
  border: 1px solid #f58c2e;
}

.cta-btn--primary:hover {
  background: #e77c1f;
  border-color: #e77c1f;
  color: #fff;
}

.link-underline img {
  display: block;
  transform: translateY(-1px);
}

.link-underline,
.your-whatsapp-class {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.your-whatsapp-class img {
  display: block;
  flex-shrink: 0;
}

a[href*="wa.me"] {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

a[href*="wa.me"] img {
  display: block;
  flex-shrink: 0;
}

.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.link-underline img {
  width: 11px;
  height: 11px;
  display: block;
  flex-shrink: 0;
}

.cta-btn--secondary {
  color: #202020;
  font-weight: 600;
  background: transparent;
  border: 1px solid rgba(50, 50, 50, 0.45);
}

.cta-btn--secondary:hover {
  background: #202020;
  border-color: #202020;
  color: #fff;
}

.band__media img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-position: center;
}

/* Made to Be Felt — cream close + still life, then footer */
.felt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: var(--cream);
}

.felt__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}

.felt__copy h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}

.felt__copy p {
  max-width: 42ch;
  margin: 24px 0 40px;
  font-size: 16px;
  line-height: 26px;
  color: var(--brown);
}

.felt__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.felt__media {
  overflow: hidden;
  min-height: 620px;
  background: var(--cream);
}

.felt__media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: right center;
}

.cta-band {
  background: var(--orange);
  text-align: center;
  padding: 128px 64px;
}

.cta-band img {
  width: 174px;
  height: auto;
  margin: 0 auto 20px;
}

.cta-band h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 72px;
  font-weight: 600;
  letter-spacing: -0.72px;
  line-height: 84px;
  color: var(--cream);
  margin-bottom: 64px;
}

.cta-band__btns {
  display: flex;
  justify-content: center;
  gap: 24px;
}

/* ---------- Archive ---------- */

body[data-page="products"] .page-hero,
body[data-page="contact"] .contact-intro {
  padding-top: 187px;
}

.page-hero {
  padding: 64px;
}

.page-hero h1 {
  font-family: 'Hanken Grotesk';
  font-size: 38px;
  font-weight: 400;
  line-height: 47px;
  width: 500px;
  margin: 16px 0;
}

.page-hero p {
  max-width: 600px;
  color: rgba(245, 140, 46, 1);
  font-size: 11px;
  line-height: 24px;
}

.archive-nav {
  display: flex;
  gap: 32px;
  padding: 19px 64px;
  border-top: 1px solid rgba(220, 194, 177, 1);
  border-bottom: 1px solid rgba(220, 194, 177, 1);
  overflow-x: auto;
  background: rgba(244, 238, 232, 0.95);
}

.lede {
  max-width: 600px;
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 30px !important;
  color: #24211F !important;
  margin-top: 30px;

}

/* =========================================
   ARCHIVE SECTION
========================================= */

.archive-section {
  width: 100%;
}


/* =========================================
   TOP BAR
========================================= */

.archive-topbar {
  width: 100%;
  min-height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 16px;

  border-bottom: 1px solid #e5c4b0;

  background: #f5f2ef;
}


/* =========================================
   PRODUCT COUNT
========================================= */

.archive-count {
  display: flex;
  align-items: center;
}

.archive-count span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #3b3837;
}


/* =========================================
   SORT
========================================= */

.archive-sort {
  display: flex;
  align-items: center;
  gap: 5px;
}

.archive-sort label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #77716e;
}

.archive-sort select {
  border: 0;
  outline: none;

  background: transparent;

  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;

  color: #77716e;

  cursor: pointer;

  appearance: auto;
}


/* =========================================
   PRODUCT GRID
========================================= */

.archive-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 10px;

  padding: 32px 16px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {

  .archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 576px) {

  .archive-topbar {
    padding: 0 12px;
  }

  .archive-grid {
    grid-template-columns: 1fr;
    padding: 20px 12px;
  }

}

.archive-nav button {
  border: 0;
  background: none;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(104, 99, 97, 1);
  ;
  cursor: pointer;
  padding: 14px 0;
  white-space: nowrap;
}

.archive-nav button.is-on {
  color: var(--ink);
}

.archive-nav button:hover {
  color: inherit;
  border-bottom-color: inherit;
}

.archive-nav button.is-on {
  color: rgba(245, 140, 46, 1) !important;
  border-bottom: 1px solid rgba(245, 140, 46, 1) !important;
  /* box-shadow: inset 0 -2px 0 rgba(245, 140, 46, 1) !important; */
}

.archive-nav button.is-on {
  color: rgba(245, 140, 46, 1) !important;
  border-bottom-color: rgba(245, 140, 46, 1) !important;
}

.archive-nav button.is-on::after {
  background: rgba(245, 140, 46, 1) !important;
}

.archive-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  padding: 48px 64px 96px;
}

.filter-side h3 {
  font-size: 12px;
  font-weight: 600;
  color: rgba(36, 33, 31, 1);
  letter-spacing: 0.16em;
  margin: 24px 0 16px;
}

.filter-side label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  padding: 6px 0;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 20px;
}

.filter-side {
  width: 100%;
  max-width: 480px;
  padding: 40px;
}


/* =========================================
       FILTERS TITLE
    ========================================= */

.filter-title {
  padding-bottom: 22px;
  border-bottom: 1px solid #e5c4b0;
}

.filter-title h3 {
  margin: 0;

  font-size: 11px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}


/* =========================================
       FILTER GROUP
    ========================================= */

.filter-group {
  border-bottom: 1px solid #e5c4b0;
}


/* =========================================
       FILTER HEADING
    ========================================= */

.filter-heading {
  width: 100%;
  height: 60px;

  padding: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border: 0;
  outline: none;

  background: transparent;

  color: #292727;

  font-family: inherit;
  font-size: 11px;
  font-weight: 400;

  text-align: left;

  cursor: pointer;
}

.filter-icon {
  font-size: 20px;
  line-height: 1;
  font-weight: 300;
}


/* =========================================
       FILTER OPTIONS
    ========================================= */

.filter-options {
  padding: 0 0 45px;
}


/* =========================================
       FILTER OPTION
    ========================================= */

.filter-option {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 40px;

  cursor: pointer;
}


/* =========================================
       HIDE DEFAULT CHECKBOX
    ========================================= */

.filter-option input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;
  pointer-events: none;
}


/* =========================================
       CUSTOM CHECKBOX
    ========================================= */

.custom-checkbox {
  width: 16px;
  height: 16px;
  /* flex: 0 0 32px; */
  /* margin-right: 24px; */
  border: 2px solid #e5c4b0;
  background: transparent;
  position: relative;
  transition: all 0.2s ease;
}


.filter-option input:checked+.custom-checkbox {
  background: #f58c2e;
  border-color: #f58c2e;
}



.filter-option input:checked+.custom-checkbox::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 10px;
  left: 4px;
  top: 0px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}




.option-text {
  font-size: 16px;
  line-height: 1.2;

  font-weight: 400;

  color: #6c6969;

  transition: color 0.2s ease;
}

.filter-option input:checked~.option-text {
  color: #292727;
}

.filter-option:hover .option-text {
  color: #292727;
}

.filter-options {
  display: block;

  overflow: hidden;

  max-height: 500px;

  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}

.filter-group:not(.active) .filter-options {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 768px) {

  .filter-side {
    max-width: 100%;
    padding: 25px;
  }

  .filter-title h3 {
    font-size: 20px;
  }

  .filter-heading {
    height: 60px;
    font-size: 18px;
  }

  .option-text {
    font-size: 24px;
  }

  .custom-checkbox {
    width: 28px;
    height: 28px;

    flex-basis: 28px;

    margin-right: 20px;
  }
  .cta-btn--secondary {
        width: 100%;
  }
  .cta-btn--primary {
     width: 100%;
  }

  .filter-option input:checked+.custom-checkbox::after {
    width: 7px;
    height: 13px;

    left: 8px;
    top: 4px;
  }

}

.pdp {
  display: grid;
  grid-template-columns: 755px 1fr;
  gap: 24px;
  padding: 128px 64px 64px;
}

body[data-page="pdp"] .pdp {
  padding-top: 151px;
}

.pdp__hero {
  width: 100%;
  aspect-ratio: 1;
  background: #dededd;
}

.pdp__thumbs {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  overflow: auto;
}

.pdp__thumbs button {
  width: 188px;
  height: 188px;
  flex-shrink: 0;
  border: 0;
  padding: 0;
  background: var(--card);
  cursor: pointer;
}

.pdp__thumbs button.is-on {
  outline: 1px solid var(--orange);
}

.pdp__info {
  padding: 32px 0 0 32px;
}

.option-label span {
  font-weight: 700;

}

#finish-name {
  font-weight: 500 !important;
  text-transform: capitalize;
}

.pdp__info h1 {

  font-size: 48px;
  font-weight: 500;
  margin: 12px 0 16px;
}

.pdp__info .lede {
  max-width: 384px;
  color: var(--brown);
  line-height: 24px;
}

.option-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 32px 0 12px;
}

.swatches {
  display: flex;
  gap: 16px;
}

.swatch {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  padding: 0;
}

.swatch.is-on {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.sizes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.size {
  height: 44px;
  border: 1px solid transparent;
  background: #F3EDE7;
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
  border-radius: 2px;
}

/* =========================================
   THUMBNAIL SLIDER
========================================= */

.pdp__thumb-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}


/* =========================================
   THUMBNAIL TRACK
========================================= */

.pdp__thumbs {
  display: flex;
  gap: 20px;

  width: 100%;

  overflow-x: auto;
  overflow-y: hidden;

  scroll-behavior: smooth;

  scrollbar-width: none;

  padding: 0;
}

.pdp__thumbs::-webkit-scrollbar {
  display: none;
}


/* =========================================
   THUMBNAIL
========================================= */

.pdp__thumbs button {
  position: relative;

  flex: 0 0 calc(25% - 15px);

  width: calc(25% - 15px);
  aspect-ratio: 1 / 1;

  padding: 0;

  border: 1px solid transparent;

  background: #dedede;

  cursor: pointer;

  overflow: hidden;

  transition: border-color 0.3s ease;
}


/* =========================================
   IMAGE
========================================= */

.pdp__thumbs button img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}


/* =========================================
   ACTIVE THUMBNAIL
========================================= */

.pdp__thumbs button.is-on {
  border: 1px solid rgba(245, 140, 46, 1);
}


/* =========================================
   ARROWS
========================================= */

.pdp__thumb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #FFFFFF33;

  color: #292727;

  cursor: pointer;

  font-size: 22px;
  line-height: 1;

  transition:
    background 0.25s ease,
    color 0.25s ease;
}


/* LEFT */

.pdp__thumb-prev {
  left: 10px;
}


/* RIGHT */

.pdp__thumb-next {
  right: 10px;
}


/* =========================================
   ARROW HOVER
========================================= */

.pdp__thumb-arrow:hover {
  background: rgba(245, 140, 46, 1);
  color: #fff;
}


/* =========================================
   DISABLED ARROW
========================================= */

.pdp__thumb-arrow.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

  .pdp__thumbs {
    gap: 15px;
  }

  .pdp__thumbs button {
    flex: 0 0 calc(33.333% - 10px);
    width: calc(33.333% - 10px);
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

  .pdp__thumbs {
    gap: 12px;
  }

  .pdp__thumbs button {
    flex: 0 0 75%;
    width: 75%;
  }

  .pdp__thumb-arrow {
    width: 34px;
    height: 34px;

    font-size: 19px;
  }

  .pdp__thumb-prev {
    left: 6px;
  }

  .pdp__thumb-next {
    right: 6px;
  }

}

.size.is-on {
  border-color: var(--orange);
  color: var(--orange);
}

.pdp-enquire {
  margin-top: 32px;
  height: 60px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
}

.acc {
  border-bottom: 1px solid var(--line-soft);
}

.acc summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}

.acc summary::-webkit-details-marker {
  display: none;
}

.acc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom: 20px;
}

.acc-grid small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- About ---------- */

.about-hero {
  position: relative;
  height: 630px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #4a433c;
}

.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(16 14 12 / 7%), rgba(16, 14, 12, 0.08));
}


.about-hero__copy {
  position: relative;
  z-index: 1;
  padding: 80px 64px;
  max-width: 736px;
  color: var(--cream);
}

.about-hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 56px;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 16px 0 24px;
}

.about-hero hr {
  width: 165px;
  border: 0;
  border-top: 1px solid #F58C2E;
  margin-bottom: 24px;
}

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 623px;
}

.story-row__copy {
  padding: 120px 64px;
}

.story-row__copy h2 {
  font-size: 36px;
  max-width: 16ch;
}

.story-row__media {
  overflow: hidden;
  background: var(--card);
}

.story-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 623px;
}

/* ---------- Contact ---------- */

.contact-intro {
  padding: 64px;
}

.contact-intro h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  margin: 16px 0;
}

.contact-intro p {
  max-width: 672px;
  color: var(--brown);
  line-height: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 433px 1fr;
  gap: 48px;
  padding: 70px 64px;
  background: var(--white);
}

.contact-points li {
  display: flex;
  align-items: center;
  gap: 29px;
  min-height: 89px;
  border-bottom: 1px solid #d4d4d4;
}

.contact-points img {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

.contact-points small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 16px;
  color: var(--muted);
  text-transform: capitalize;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(196, 199, 199, 0.5);
  background: transparent;
  padding: 9px 0 11px;
  font-size: 16px;
  outline: none;
  border-radius: 0;
  resize: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(68, 71, 72, 0.3);
}

/* .field textarea {
  min-height: 142px;
  padding-bottom: 33px;
} */

.contact-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
}

.contact-submit {
  width: 369px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

.privacy-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(85, 67, 54, 0.6);
}

/* ---------- Enquiry modal (11:2671 / 25:9253) ---------- */

.overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--overlay);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  display: grid;
  place-items: center;
  padding: 24px 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal {
  position: relative;
  width: 760px;
  max-width: 100%;
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: var(--modal);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 480px;
}

.modal h2 {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.32px;
  line-height: 40px;
  color: var(--ink-deep);
}

.modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 8px 15px;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.modal__close img {
  width: 13.308px;
  height: 13.308px;
  display: block;
}

.modal__kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.65px;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 16px;
}

.modal__lede {
  font-size: 14px;
  letter-spacing: 0.14px;
  line-height: 22px;
  margin-bottom: 0 !important;
  color: var(--muted);
}

.sku-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0 17px;
  border-bottom: 1px solid rgba(196, 199, 199, 0.3);
}

.sku-row__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sku-row__thumb {
  width: 64px;
  height: 64px;
  background: #f1f1ef;
  overflow: hidden;
  flex-shrink: 0;
}

.sku-row strong {
  font-size: 16px;
  line-height: 20px;
}

.sku-row span {
  font-size: 16px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 24px;
  color: var(--muted);
}

.modal .form-grid {
  gap: 24px;
}

.modal .field label {
  font-size: 16px;
}

.modal__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.modal__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 60px;
  border: 0;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.modal__submit img {
  width: 12px;
  height: 12px;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 16px;
  color: var(--ink-deep);
}

.whatsapp-link img {
  width: 13.333px;
  height: 9.333px;
}

/* About page - menu white */
.about-page .site-header .nav-left>a,
.about-page .site-header .nav-left .nav-link {
  color: #fff !important;
}

/* About page - hover orange */
.about-page .site-header .nav-left>a:hover,
.about-page .site-header .nav-left .nav-link:hover {
  color: #f58c2e !important;
}

.legal-note {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.5px;
  margin-bottom: 0 !important;
  text-transform: uppercase;
  color: rgba(68, 71, 72, 0.6);
}

.legal {
  text-align: center;
  margin-bottom: 0 !important;
  font-size: 10px;
  color: rgba(68, 71, 72, 0.4);
}

.toast {
  display: none;
}

.toast.is-visible {
  display: block;
  font-size: 13px;
  padding: 12px;
}

/* ---------- Mobile 390 (Figma mobile frames) ---------- */

@media (max-width: 960px) {
  :root {
    --header-h: 64px;
    --gutter: 20px;
  }

  .site-header {
    position: sticky;
    height: 64px;
    background: var(--page);
    border-bottom: 1px solid var(--line-soft);
  }

  .site-header__inner {
    padding: 0 20px;
  }

  body[data-page="products"] .page-hero,
  body[data-page="contact"] .contact-intro {
    padding-top: 32px;
  }

  .nav-left,
  .search,
  .btn-enquire,
  .logo--desk {
    display: none;
  }

  .icon-btn,
  .wa-fab,
  .logo--mob {
    display: grid;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero {
    height: 620px;
  }

  .hero__copy {
    padding: 0 20px 20px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 44px;
    color: var(--cream);
  }

  .hero p {
    font-size: 14px;
    line-height: 22px;
    color: var(--cream);
  }

  .hero__ctas {
    flex-direction: column;
    gap: 10px;
  }

  .hero__ctas .btn {
    width: 100%;
    padding: 14px;
  }

  .hero__dots {
    display: none;
  }

  .intro {
    min-height: 278px;
    padding-top: 0 !important;
    padding: 56px 20px;
    margin-bottom: 0 !important;
  }

  .intro p {
    font-size: 22px;
    line-height: 34px;
    letter-spacing: -0.3px;
  }

  .intro__mark {
    width: 138px;
    height: 138px;
    right: 20px;
  }

  .cat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
  }

  .cat-card {
    aspect-ratio: 183 / 175;
  }

  .cat-card span {
    font-size: 8px;
    padding: 6px;
    left: 12px;
    bottom: 12px;
  }

  .product-card .thumb img,
  .pdp__hero img,
  .pdp__thumbs img,
  .split__visual img,
  .about-hero img,
  .sku-row__thumb img {
    width: auto;
  }

  .featured {
    padding: 48px 20px;
  }

  .featured__head {
    margin-bottom: 24px;
  }

  .featured__head h2 {
    font-size: 28px;
  }

  .featured__track {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .banner {
    min-height: 200px;
  }

  .banner h2 {
    font-size: 28px;
    padding: 20px;
  }

  .split,
  .split--flip,
  .story-row,
  .band,
  .felt,
  .contact-grid,
  .pdp,
  .archive-layout,
  .form-grid,
  .site-footer__grid,
  .acc-grid {
    grid-template-columns: 1fr;
  }

  .split__copy,
  .story-row__copy,
  .band__copy,
  .felt__copy,
  .pdp__info {
    padding: 0px 0px;
  }

  .split__copy h2 {
    font-size: 32px;
  }

  .band__copy h2 {
    font-size: 26px;
    line-height:36px;
    max-width: none;
  }
.cta-section__buttons {
  flex-direction:column;
  padding:10px;
}
  .felt__copy h2 {
    font-size: 36px;
  }

  .felt__btns {
    flex-direction: column;
  }

  .felt__btns .btn {
    width: 100%;
  }

  .split__visual,
  .story-row__media img,
  .band__media,
  .band__media img,
  .felt__media,
  .felt__media img {
    height: 350px;
    min-height: 350px;
  }

  .band__media {
    order: -1;
  }
 .first-img{
 order: 1!important;
}

.abt-padding{
  padding:20px;
}
.second-img{
   order: 2!important;

}
.third-img{
  order: 2!important;
}
  .cta-band {
    padding: 64px 20px 104px;
  }

  .cta-band h2 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 36px;
  }

  .cta-band__btns {
    flex-direction: column;
  }

  .hero__shade {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 41%, rgba(0, 0, 0, 0.05) 50%, rgb(0 0 0 / 73%) 74%, rgb(0 0 0 / 50%) 101%) !important ;
    top:0;
    height:100%;


  }

  .cta-band img {
    width: 123px;
  }

  .footer-mark {
    margin-top: 0;
    margin-bottom: 50px;
  }

  .page-hero,
  .contact-intro {
    padding: 32px 20px;
  }

  .page-hero h1,
  .contact-intro h1 {
    font-size: 32px;
    line-height: 40px;
  }

  .archive-nav {
    padding: 8px 20px;
    gap: 16px;
    /* flex-direction: column; */
  }

  .archive-layout {
    padding: 24px 20px 64px;
  }

  .archive-grid {
    grid-template-columns: 1fr;
  }

  .pdp {
    padding: 16px;
  }

  .pdp__thumbs button {
    width: 88px;
    height: 88px;
  }

  .sizes {
    grid-template-columns: 1fr 1fr;
  }

  .about-hero {
    height: 620px;
  }

  .about-hero__copy {
    padding: 40px 20px;
  }

  .about-hero h1 {
    font-size: 32px;
  }

  .contact-grid {
    padding: 32px 20px;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__grid {
    padding: 0 20px;
    flex-wrap: wrap;
  }

  .site-footer__col {
    flex: 1 1 45%;
  }

  .site-footer a {
    font-size: 14px;
  }

  .site-footer__legal {
    margin: 40px 20px 0;
    flex-direction: column;
    gap: 12px;
  }

  .overlay {
    padding: 16px;
  }

  .modal {
    width: 358px;
    max-width: calc(100% - 32px);
    padding: 40px 20px;
    gap: 10px;
  }

  .modal h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .modal__kicker {
    font-size: 9px;
  }

  .modal .form-grid {
    grid-template-columns: 1fr;
  }

  .modal .field label,
  .modal .field input,
  .modal .field textarea {
    font-size: 12px;
  }

  .modal__submit {
    height: 48px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .overlay {
    transition: none;
  }
}

.product-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
}

.product-details h3 {
  margin: 0;
}

.product-details p {
  margin: 5px 0 0;
}

.swatch-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.swatch-dots i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}

.featured__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.featured__track::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 calc(25% - 18px);
}

@media (max-width: 1200px) {
  .product-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}

@media (max-width: 768px) {
  .product-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 576px) {
  .product-card {
    flex: 0 0 85%;
  }
}


/* =========================================
   PROJECT CTA
========================================= */

.project-cta {
  width: 100%;
  min-height: 575px;

  background: #f58c2e;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.project-cta__inner {
  width: 100%;
  max-width: 1400px;

  padding: 70px 40px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

/* Logo */

.project-cta__logo {
  display: block;

  width: 178px;
  height: auto;

  margin-bottom: 53px;

  object-fit: contain;
}

/* Heading */

.project-cta h2 {
  margin: 0;

  color: #fff;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 5.5vw, 82px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -3px;
}

/* Buttons wrapper */

.project-cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 24px;

  margin-top: 66px;
}

/* Common button */

.project-cta__btn {
  width: 135px;
  height: 51px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

/* Talk To Us */

.project-cta__btn--light {
  color: #202020;
  background: #f5f2ed;

  border: 1px solid #f5f2ed;
}

.project-cta__btn--light:hover {
  background: #fff;
  border-color: #fff;
}

/* Catalogue */

.project-cta__btn--outline {
  width: 212px;

  color: #fff;

  background: transparent;

  border: 1px solid rgba(255, 255, 255, 0.35);
}

.project-cta__btn--outline:hover {
  color: #202020;
  background: #fff;
  border-color: #fff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .project-cta {
    min-height: 520px;
  }

  .project-cta__inner {
    padding: 65px 30px;
  }

  .project-cta__logo {
    width: 155px;
    margin-bottom: 45px;
  }

  .project-cta h2 {
    font-size: clamp(50px, 7vw, 70px);
    letter-spacing: -2.5px;
  }

  .project-cta__buttons {
    margin-top: 52px;
    gap: 18px;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .project-cta {
    min-height: 500px;
  }

  .project-cta__inner {
    padding: 65px 20px;
  }

  .project-cta__logo {
    width: 135px;
    margin-bottom: 40px;
  }

  .project-cta h2 {
    max-width: 500px;

    font-size: clamp(42px, 11vw, 58px);
    line-height: 1.02;
    letter-spacing: -2px;
  }

  .project-cta__buttons {
    width: 100%;

    flex-direction: column;

    gap: 12px;

    margin-top: 45px;
  }

  .project-cta__btn,
  .project-cta__btn--outline {
    width: min(280px, 100%);
    height: 52px;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .project-cta {
    min-height: 480px;
  }

  .project-cta__inner {
    padding: 55px 18px;
  }

  .project-cta__logo {
    width: 120px;
    margin-bottom: 35px;
  }

  .project-cta h2 {
    font-size: 40px;
    letter-spacing: -1.5px;
  }

  .project-cta__buttons {
    margin-top: 38px;
  }

  .project-cta__btn,
  .project-cta__btn--outline {
    width: 100%;
    max-width: 280px;
  }
}

/* =========================
   SPLIT SECTION
========================= */

.split {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;

  padding-top: 100px;
  padding-bottom: 100px;
}

.split__copy {
  min-width: 0;
}

.split__copy .kicker {
  margin-bottom: 20px;
}

.split__copy h2 {
  margin: 0 0 28px;

  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.05;
  font-weight: 400;
}

.split__copy-text {
  max-width: 600px;

  margin: 0;

  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}

.split__visual {
  width: 100%;
  min-width: 0;
}

.split__visual img {
  width: 100%;
  height: auto;
  display: block;

  object-fit: cover;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

  .split {
    grid-template-columns: 1fr 1fr;
    gap: 40px;

    padding-top: 80px;
    padding-bottom: 80px;
  }

  .split__copy h2 {
    font-size: 42px;
  }

  .split__copy-text {
    font-size: 15px;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

  .split {
    grid-template-columns: 1fr;
    gap: 45px;

    padding-top: 60px;
    padding-bottom: 60px;
  }

  .split__copy {
    width: 100%;
  }

  .split__copy h2 {
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -1px;

    margin-bottom: 22px;
  }

  .split__copy-text {
    max-width: 100%;

    font-size: 15px;
    line-height: 1.65;
  }

  .split__visual {
    width: 100%;
  }

  .split__visual img {
    width: 100%;
    height: auto;
  }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

  .split {
    gap: 35px;
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .split__copy h2 {
    font-size: 34px;
  }

  .split__copy-text {
    font-size: 14px;
  }
}


@media (max-width: 767px) {

    .drawer {
        position: fixed;
        inset: 0;

        width: 315px;;
        height: 100dvh;

        background: #f8f7f4;

        z-index: 99999;

        padding: 0 20px;

        overflow-y: auto;

        transform: translateX(100%);
        transition: transform 0.35s ease;
    }

    .drawer.is-open {
        transform: translateX(0);
    }

    .drawer__top {
        height: 70px;

        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .drawer__close {
        width: 32px;
        height: 32px;

        padding: 0;

        border: 0;
        background: transparent;

        display: grid;
        place-items: center;
    }

    .drawer__close img {
        width: 16px;
        height: 16px;

        display: block;
    }


    /* NAV */

    .drawer__nav {
        width: 100%;
    }

    .drawer__main-link {
        display: block;

        width: 100%;

        padding: 13px 16px;

        color: #292929;
        font-size: 16px;
        font-weight: 600;

        line-height: 1;

        text-decoration: none;
    }


    /* PRODUCTS */

    .drawer__products {
        width: 100%;
    }

    .drawer__subnav {

        margin-left: 39px;
        margin-bottom: 16px;

        padding-left: 16px;

        border-left: 1px solid #dedede;
    }

    .drawer__subnav a {
        display: block;

        padding: 11px 0;

        color: #777;
        font-size: 13px;
        font-weight: 400;

        line-height: 1.2;

        text-decoration: none;
    }

    .drawer__subnav a:hover {
        color: #f58c2e;
    }


    /* BOTTOM */

    .drawer__bottom {
        width: 100%;

        margin-top: 10px;
        padding-top: 24px;

        border-top: 1px solid #dedede;
    }

    .drawer__enquire {
        width: 100%;
        height: 38px;

        padding: 0;

        border: 0;
        border-radius: 1px;

        background: #f58c2e;

        color: #fff;

        font-family: Arial, Helvetica, sans-serif;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: .2px;

        cursor: pointer;
    }
}


/* DESKTOP */

@media (min-width: 768px) {

    .drawer {
        display: none !important;
    }

}

