/* ============================================================
   ARTIZE — Aris & Aura | style.css
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+Display:ital,wght@0,300;0,400;1,300&family=Inter:wght@300;400;600&display=swap");

/* ============================================================
   SITE HEADER — logo bar
   ============================================================ */
.site-header {
  background: var(--black);
  padding: 14px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-header__logo {
  height: 28px;
  width: auto;
  display: block;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;  /* prevent any element from expanding page width */
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
}
body {
  font-family: "Inter", sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  cursor: none;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --serif:    "Noto Serif Display", serif;
  --sans:     "Inter", sans-serif;
  --white:    #ffffff;
  --black:    #000000;
  --dark:     #111111;
  --darker:   #0d0d0d;
  --light-bg: #d9d9d9;
  --body-lt:  #d6d6d6;
  --body-dk:  #444444;
  --muted:    #706f6f;
  --gold:     #c9a97e;
  --ease:     0.35s ease;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
#cursor {
  width: 8px;
  height: 8px;
  background: #B99266;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width var(--ease), height var(--ease), background var(--ease);
}
#cursor.hover {
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.26s; }
.reveal.d3 { transition-delay: 0.40s; }
.reveal.d4 { transition-delay: 0.54s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-1 { opacity: 0; animation: fadeUp 1.2s ease 0.1s forwards; }
.anim-2 { opacity: 0; animation: fadeUp 1.2s ease 0.3s forwards; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  line-height: 46px;
  color: var(--white);
  margin-bottom: 14px;
}
.t-h60 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 60px;
  line-height: 60px;
  color: var(--white);
}
.t-giant {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 88px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
}
.t-stacked {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 52px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 24px;
}
.t-stacked span { display: block; }
.t-stacked--dk span { color: #1a1a1a; }

.t-body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.2px;
  color: var(--body-lt);
}
.t-body + .t-body { margin-top: 18px; }
.t-body--lt { color: rgba(255, 255, 255, 0.72); }

.t-body--dk {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.2px;
  color: #4a4a4a;
}
.t-body--dk + .t-body--dk { margin-top: 14px; }

.t-profile-h {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 34px;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 18px;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.rule {
  display: block;
  width: 36px;
  height: 1px;
  margin-bottom: 20px;
}
.rule--lt { background: rgba(255, 255, 255, 0.2); }

.cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.55;
  cursor: none;
  margin-top: 32px;
  transition: opacity var(--ease);
}
.cta::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  background: currentColor;
  transition: width var(--ease);
}
.cta:hover { opacity: 1; }
.cta:hover::after { width: 80px; }

.cta--dk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #D1AB66;
  background: transparent;
  border: 1px solid #D1AB66;
  border-radius: 80px;
  padding: 0 32px;
  height: 47px;
  min-width: 200px;
  margin-top: 28px;
  cursor: none;
  transition: background var(--ease), color var(--ease);
}
.cta--dk:hover {
  background: #D1AB66;
  color: #fff;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   SECTION 1 — #sec-hero
   ============================================================ */
#sec-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
#sec-hero .hero__bg {
  position: absolute;
  inset: 0;
}
#sec-hero .hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#sec-hero .hero__bg img.desktop{
  display: block;
}
#sec-hero .hero__bg img.mobile{
  display: none;
}
#sec-hero .hero__names {
  max-width: 1120px;
  width: 100%;
  height: 100%;
  padding: 50px 20px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
}
#sec-hero .hero__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 88px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: rgba(28, 28, 28, 0.88);
  margin-top: auto;
  margin-bottom: 18%;
}

/* ============================================================
   SECTION 2 — #sec-intro
   ============================================================ */
#sec-intro {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
#sec-intro .intro__bg {
  position: absolute;
  inset: 0;
}
#sec-intro .intro__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#sec-intro .container { position: relative; z-index: 1; }
#sec-intro .eyebrow { text-align: center; margin-bottom: 100px; }
#sec-intro .intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ============================================================
   SECTION 3 — #sec-designers-touch
   ============================================================ */
#sec-designers-touch {
  padding: 100px 0;
  background: var(--darker);
}
#sec-designers-touch .dt {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#sec-designers-touch .dt__left {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#sec-designers-touch .dt__text h2 { margin-bottom: 26px; }
#sec-designers-touch .dt__right { overflow: hidden; }
#sec-designers-touch .dt__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================================================
   SECTION 4 — #sec-profiles (Slick Slider)
   Portrait overflows top + bottom of card
   ============================================================ */
#sec-profiles {
  background: var(--darker);
  padding: 80px 0 100px;
  position: relative;
}
#sec-profiles .profiles__slider { background: var(--light-bg); }
#sec-profiles .slick-list { overflow: visible !important; }

#sec-profiles .profiles__slide {
  display: grid !important;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  outline: none;
}
#sec-profiles .profiles__img {
  position: relative;
  z-index: 2;
  margin-top: -20px;
  margin-bottom: -20px;
  padding-left: 50px;
  overflow: hidden;
}
#sec-profiles .profiles__img img {
  max-width: 450px;
  width: 100%;
}
#sec-profiles .profiles__text {
  background: var(--light-bg);
  padding: 52px 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 424px;
}
#sec-profiles .profiles__rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 16px;
}
#sec-profiles .profiles__namebar {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #111;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 14px;
  margin-bottom: 16px;
}
#sec-profiles .profiles__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 28px;
}
#sec-profiles .profiles__sig img {
  max-height: 36px;
  width: auto;
}
#sec-profiles .profiles__product-img {
  width: 130px;
  height: 120px;
  overflow: hidden;
}
#sec-profiles .profiles__product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#sec-profiles .slick-dots {
  position: absolute;
  bottom: -50px;
  right: 0;
  left: auto;
  width: auto;
  text-align: right;
}
#sec-profiles .slick-dots li { margin-right: 0; margin-left: 10px; }
#sec-profiles .slick-dots li button:before {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.25);
  opacity: 1;
}
#sec-profiles .slick-dots li.slick-active button:before {
  color: var(--gold);
  opacity: 1;
}

/* ============================================================
   PARALLAX SECTIONS — .pax-section  (Sections 5 + 10)
   Custom parallax via JS — no library needed
   ============================================================ */
.pax-section {
  position: relative;
  height: 100vh;
  min-height: 540px;
  overflow: hidden;
}
/* parallax.js / custom JS sets background on .pax-scene */
.pax-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* Height extended 30% so parallax shift stays within bounds */
  top: -15%;
  height: 130%;
  will-change: transform;
}
.pax-scene__quote {
  position: absolute;
  z-index: 2;
  top: 30%;
  left: 7%;
  transform: translateY(-50%);
  max-width: 590px;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 32px;
  line-height: 46px;
  color: var(--muted);
  list-style: none;
}
.pax-scene__quote--right {
  color: var(--white);
}
#sec-parallax-2 .pax-scene__quote {
  color: var(--white);
}

/* ============================================================
   SECTIONS 6 + 11 — PRODUCT HEROES (.product-hero)
   Shared class for Aris + Aura gray hero sections
   ============================================================ */
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--muted);
  position: relative;
  /* overflow visible so .bos image from white-block can overlap above */
  overflow: visible;
}
.product-hero__content {
  order: 1;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.product-hero__content .t-body { margin-top: 20px; }
.product-hero__content .eyebrow { margin-bottom: 10px; }
.product-hero__img {
  order: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 60px;
}

/* ============================================================
   WHITE BLOCKS — shared wrapper for Aris + Aura content
   ============================================================ */
.white-block {
  background: #fff;
}
/* Sits above the gray hero below via z-index */
.white-block--overlap {
  position: relative;
  z-index: 2;
}

/* ============================================================
   BLEED OVERLAP SECTION — .bos
   Used for the colonnade image sections in both Aris + Aura.
   The image absolutely bleeds UPWARD into the gray hero above.
   ============================================================ */
.bos {
  position: relative;
  height: 730px;
  min-height: 65vh;
  background: #fff;
}

/* Image: absolutely positioned — top: -80px bleeds into the gray section above.
   No fixed height — image displays at its natural proportions. */
.bos--left .bos__img {
  position: absolute;
  top: -80px;
  left: 0;
  width: 50%;
  overflow: hidden;
  z-index: 1;
}

/* Natural proportions — parallax via JS translateY */
.bos--left .bos__img img {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  will-change: transform;
}

/* Text: right column, flex-end aligned so it sits in lower portion */
.bos--left .bos__text {
  margin-left: 50%;
  width: 50%;
  padding: 80px 80px 100px 72px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
/* Constrain line length to match Figma (~360px text box) */
.bos--left .bos__text .t-body--dk { max-width: 380px; }

/* ============================================================
   BLEED ROWS — shared grid layouts used in material/texture sections
   ============================================================ */
.bleed-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.bleed-row__img img {
  width: 100%;
  height: auto;
  display: block;
}
.bleed-row__text {
  padding: 64px 72px;
}

/* Image LEFT */
.bleed-row--img-left .bleed-row__img  { order: 1; }
.bleed-row--img-left .bleed-row__text { order: 2; }

/* Image RIGHT */
.bleed-row--img-right .bleed-row__text { order: 1; }
.bleed-row--img-right .bleed-row__img  { order: 2; }

/* Contained (no bleed) — Material.Form.Balance + Texture.Precision.Calm */
.bleed-row--contained {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 40px 80px;
  gap: 56px;
}
.bleed-row--contained .bleed-row__text {
  order: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bleed-row--contained .bleed-row__img-captioned { order: 2; }

.bleed-row__img-captioned img {
  width: 100%;
  height: auto;
  display: block;
}
.bleed-row__img-caption {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  line-height: 46px;
  color: #706F6F;
  text-align: center;
  padding: 20px 0 0;
}

/* Section spacing inside white blocks.
   position + z-index ensures these sections sit ON TOP of any
   bos__img overflow that extends past the .bos section bottom. */
#sec-material-form {
  position: relative;
  z-index: 2;
  background: #fff;
  padding-top: 40px;
}
#sec-texture-precision{
  padding: 50px;
}
#sec-aura-colonnade + #sec-texture-precision,
#sec-texture-precision {
  position: relative;
  z-index: 2;
  background: #fff;
  padding-bottom: 8px;
}

/* ============================================================
   SECTIONS 9 + 14 — MOOD SLIDERS
   ============================================================ */
.mood-slider { padding: 48px 0 36px; }
.mood-slider .mood-slide__img img {
  width: 100%;
  height: auto;
  display: block;
}
.mood-slider .mood-slide__caption {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: #666;
  text-align: center;
  margin: 22px auto 0;
  max-width: 540px;
}
.mood-slider .slick-dots {
  position: static;
  margin-top: 18px;
  text-align: center;
}
.mood-slider .slick-dots li button:before {
  font-size: 7px;
  color: rgba(0, 0, 0, 0.18);
  opacity: 1;
}
.mood-slider .slick-dots li.slick-active button:before {
  color: var(--gold);
  opacity: 1;
}

/* ============================================================
   SECTION 15 — #sec-colour  (3-col image grid)
   ============================================================ */
#sec-colour {
  background: var(--black);
  padding: 80px 0 0;
}
#sec-colour .colour__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
#sec-colour .colour__tile { overflow: hidden; }
#sec-colour .colour__tile img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}
#sec-colour .colour__tile:hover img { transform: scale(1.04); }

/* ============================================================
   SECTIONS 16–18 — #sec-about
   ============================================================ */
#sec-about {
  background: var(--darker);
  padding-bottom: 40px;
}
#sec-about .about__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 44px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
#sec-about .about__row:last-child { border-bottom: none; }
#sec-about .about__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#sec-about .about__text .t-h60 { color: var(--white); }

/* Colour-in-Art + Basins rows: large Noto Serif body text (32px, per Figma) */
.about__row--colour-title .about__text .t-body,
.about__row--basins .about__text .t-body {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  line-height: 46px;
  color: var(--white);
  max-width: 400px;
}

/* Row ordering */
.about__row--colour-title .about__text   { order: 1; }
.about__row--colour-title .about__img-padded { order: 2; }
.about__row--basins .about__img-large    { order: 1; }
.about__row--basins .about__text         { order: 2; }
.about__row--bfa .about__bfa-img         { order: 1; }
.about__row--bfa .about__text            { order: 2; }

#sec-about .about__bfa-img img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}
#sec-about .about__img-padded img,
#sec-about .about__img-large img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   RESPONSIVE — Tablet  ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .eyebrow  { font-size: 26px; line-height: 32px; }
  .t-h60    { font-size: 48px; line-height: 52px; }
  .t-giant  { font-size: 72px; }
  .t-stacked { font-size: 42px; }

  #sec-hero .hero__name { font-size: 72px; }

  #sec-intro .intro__grid { gap: 48px; }

  #sec-designers-touch .dt__left { padding: 60px 48px; }

  .product-hero__content { padding: 80px 56px; }
  .product-hero__img     { padding: 0 40px; }

  .bleed-row__text { padding: 48px 52px; }
  .bleed-row--contained { padding: 48px 40px 64px; gap: 40px; }

  /* Keep same 80px overlap on tablet */
  .bos--left .bos__img { top: -80px; }
  .bos--left .bos__text { padding: 60px 56px 80px 52px; }

  #sec-about .about__row { gap: 40px; }
}

/* ============================================================
   RESPONSIVE — Mobile  ≤ 768px
   ============================================================ */
@media (max-width: 768px) {
  #sec-hero{
    height: auto;
    min-height: auto;
  }
  #sec-hero .hero__bg img.desktop{
    display: none;
  }
  #sec-hero .hero__bg img.mobile{
    display: block;
  }
  #sec-hero .hero__bg{
    position: relative;
  }
  #sec-hero .hero__bg img{
    position: relative;
    width: 100%;
    height: auto;
  }
  #sec-hero .hero__names{
    height: auto;
    position: absolute;
    bottom: 0px;
  }
  /* --- Typography --- */
  .eyebrow   { font-size: 22px; line-height: 28px; }
  .t-h60     { font-size: 36px; line-height: 42px; }
  .t-giant   { font-size: 52px; }
  .t-stacked { font-size: 32px; }

  /* --- Cursor off on touch --- */
  body { cursor: auto; }
  #cursor { display: none; }

  /* --- Hero — keep Aris/Aura names left+right like desktop --- */
  #sec-hero .hero__names {
    justify-content: space-between;
    align-items: flex-end;
    padding: 40px 24px 100px;
  }
  #sec-hero .hero__name {
    font-size: 52px;
    margin-bottom: 0;
    margin-top: 0;
  }

  /* --- Intro --- */
  #sec-intro { padding: 80px 0; }
  #sec-intro .eyebrow { margin-bottom: 48px; font-size: 20px; }
  #sec-intro .intro__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* --- Designers Touch --- */
  #sec-designers-touch { padding: 60px 0; }
  #sec-designers-touch .dt { grid-template-columns: 1fr; }
  #sec-designers-touch .dt__right {
    order: -1;
    height: 100vw;
    min-height: 390px;
    max-height: 400px;
  }
  #sec-designers-touch .dt__right img { object-fit: cover; }
  #sec-designers-touch .dt__left { padding: 48px 24px; }

  /* --- Profiles slider --- */
  #sec-profiles { padding: 60px 0 80px; }
  #sec-profiles .profiles__slide { grid-template-columns: 1fr; }
  #sec-profiles .profiles__img {
    padding: 0 24px;
    margin: 0;
    text-align: center;
  }
  #sec-profiles .profiles__img img {
    max-width: 260px;
    margin: 0 auto;
  }
  #sec-profiles .profiles__text {
    min-height: auto;
    padding: 36px 24px;
  }

  /* --- Parallax sections --- */
  .pax-section { height: 65vh; min-height: 360px; }
  .pax-scene__quote {
    font-size: 17px;
    line-height: 30px;
    max-width: 88%;
    left: 6%;
    top: 25%;
  }

  /* --- Product heroes (Aris + Aura) --- */
  .product-hero {
    display: flex;
    flex-direction: column;
    min-height: 90vh;
  }
  .product-hero__content {
    order: 1;
    flex-shrink: 0;
    padding: 56px 24px 28px;
  }
  .product-hero__img {
    order: 2;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;   /* faucet sits at section bottom */
    padding: 0;              /* no padding — image touches edges */
  }
  .product-hero__img img {
    width: auto;
    max-width: 90%;
    height: auto;
    max-height: none;        /* show at natural proportions, no crop */
  }

  /* --- Bleed overlap sections (Aris + Aura colonnade) ---
     On mobile: stack vertically, disable upward bleed, no crop     */
  .bos {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
  .bos--left .bos__img {
    position: relative;
    /*top: 0;*/
    left: 20px;
    max-width:65%;
    width: 100%;
    height: auto;            /* natural height — no forced crop */
    max-height: none;
    overflow: hidden;
  }
  .bos--left .bos__img img {
    position: relative;      /* back in flow */
    width: 100%;
    height: auto;
  }
  .bos--left .bos__text {
    margin-left: 0;
    width: 100%;
    padding: 0px 24px 0px;
    justify-content: flex-start;
  }

  /* --- Bleed rows --- */
  .bleed-row            { grid-template-columns: 1fr; }
  .bleed-row__text      { padding: 48px 24px; }
  .bleed-row--img-left  .bleed-row__img  { order: 1; }
  .bleed-row--img-left  .bleed-row__text { order: 2; }
  .bleed-row--img-right .bleed-row__text { order: 2; }
  .bleed-row--img-right .bleed-row__img  { order: 1; }
  .bleed-row--contained {
    grid-template-columns: 1fr;
    padding: 40px 24px 56px;
    gap: 28px;
  }

  /* --- Mood sliders --- */
  .mood-slider { padding: 36px 0 28px; }

  /* --- Colour grid — always 3 columns --- */
  #sec-colour .colour__grid { gap: 4px; }
  #sec-colour .colour__tile img {
    height: 42vw;
    object-fit: cover;
    object-position: center;
  }
  #sec-colour { padding: 32px 0 0; }

  /* --- About section --- */
  #sec-about .about__row {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0;
  }
  .about__row--colour-title .about__text   { order: 1; }
  .about__row--colour-title .about__img-padded { order: 2; }
  .about__row--basins .about__img-large    { order: 1; }
  .about__row--basins .about__text         { order: 2; }
  .about__row--bfa .about__bfa-img         { order: 1; }
  .about__row--bfa .about__text            { order: 2; }

  /* --- Section label tweaks --- */
  #sec-material-form  { padding-top: 0; }
  #sec-texture-precision { padding-bottom: 0; }

  /* --- Contain Slick sliders on mobile so they don't expand page width --- */
  #sec-profiles,
  #sec-aris-slider,
  #sec-aura-slider  { overflow: hidden; }
  #sec-profiles .slick-list { overflow: hidden !important; }

  /* --- Product hero: no colonnade bleed on mobile, safe to clip --- */
  .product-hero { overflow: hidden; }
}

/* ============================================================
   RESPONSIVE — Small Mobile  ≤ 480px
   ============================================================ */
@media (max-width: 480px) {
  .bos {
    height: auto;
  }
  .t-h60   { font-size: 30px; line-height: 36px; }
  .t-giant { font-size: 44px; }

  #sec-hero .hero__name { font-size: 48px; }

  .product-hero__content { padding: 48px 20px 28px; }
  .product-hero__img { padding: 0; }

  .bos--left .bos__text { padding: 0px 20px 0px; }

  .bleed-row__text      { padding: 36px 20px; }
  .bleed-row--contained { padding: 36px 20px 44px; }

  #sec-about .container { padding: 0 20px; }

  .pax-scene__quote { font-size: 15px; line-height: 26px; }
}

/* ============================================================
   CATALOGUE SECTION
   ============================================================ */
.aris-auro-catalogue-container {
  margin: 50px 0 130px;
  background-color: #706f6f;
}
.aris-auro-catalogue-container .container{
  max-width: 700px;
}
.aris-auro-catalogue-container .row {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* Image overflows top and bottom */
.aris-auro-catalogue-container .row .image-wrap {
  flex: 1;
  min-width: 250px;
  overflow: hidden;
  margin-top: -20px;
  margin-bottom: -20px;
}
.aris-auro-catalogue-container .row .image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.aris-auro-catalogue-container .row .text-wrap {
  flex: 3;
  min-width: 220px;
  margin: auto;
  padding: 40px;
}

.catalogue-link {
  text-decoration: none;
  color: inherit;
}

.download-catalogue-button h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  line-height: 46px;
  color: var(--white, #ffffff);
  max-width: 400px;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.catalogue-sub {
  display: flex;
  align-items: center;
  gap: 16px;
}

.download-catalogue-button p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-size: 14px;
}

.download-icon {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.catalogue-link:hover .download-icon {
  transform: translateY(3px);
}

@media (max-width: 768px) {
  .aris-auro-catalogue-container .row {
    flex-direction: column;
  }
  .aris-auro-catalogue-container .row .image-wrap {
    width: 100%;
    margin: 0;
    overflow: hidden;
  }
  .aris-auro-catalogue-container .row .text-wrap {
    padding: 32px 24px;
  }
  #sec-texture-precision{
    padding: 50px 0px;
  }

  #sec-profiles .slick-dots{
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .pax-section{
    height: 400px;
  }
  .product-hero{
    min-height: auto;
  }
}