/* ============================================================
   MAIMOON CERAMICA — warm stone / earth redesign
   Palette, tokens, base, components, sections, responsive
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* warm stone / earth */
  --bone: #F4EFE8;
  --bone-2: #EDE5DA;
  --sand: #E0D2C0;
  --clay: #C9A88A;
  --terra: #C9A88A;
  --terra-dk: #8C4525;
  --ink: #1B1714;
  --ink-2: #2A2420;
  --muted: #7C6E62;
  --line: rgba(27, 23, 20, .14);
  --line-lt: rgba(244, 239, 232, .20);
  --bg-w: #fff;

  --bg: var(--bone);
  --fg: var(--ink);

  /* type */
  --f-display: "Fraunces", "Times New Roman", serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --fs-hero: clamp(2.9rem, 8.4vw, 6rem);
  --fs-h2: clamp(2.25rem, 5.6vw, 5rem);
  --fs-h3: clamp(1.1rem, 1.6vw, 1.45rem);
  --fs-lede: clamp(1.05rem, 1.5vw, 1.5rem);
  --fs-body: clamp(.95rem, 1.05vw, 1.05rem);
  --fs-small: .78rem;

  /* space */
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --shell: 1560px;
  --sec-pad: clamp(5rem, 11vw, 7rem);

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 22px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.65, .05, .36, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* fallback */
  overflow-x: clip;
  /* keeps position:sticky / ScrollTrigger pin intact */
}

body.is-loading {
  overflow: hidden;
  height: 100vh;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, p, figure {
  margin: 0;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

input, textarea {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--terra);
  color: var(--bone);
}

/* ---------- LAYOUT ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--sec-pad);
  position: relative;
}

.eyebrow {
  display: inline-block;
  font-size: var(--fs-small);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 1.1rem;
}

.eyebrow--light {
  color: var(--clay);
}

.sec-head {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.sec-head--row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-end;
  justify-content: space-between;
}

.sec-head--center {
  text-align: center;
}

.sec-head__note {
  max-width: 85ch;
  color: var(--muted);
}

.sec-title {
  font-family: var(--f-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.sec-title em {
  font-style: italic;
  color: var(--terra);
}

.lede {
  font-size: var(--fs-lede);
  line-height: 1.45;
  font-weight: 300;
  letter-spacing: -.01em;
}

.muted {
  color: var(--muted);
  max-width: 56ch;
}

/* ============================================================
   PRELOADER
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--bone);
}

.loader__inner {
  text-align: center;
}

.loader__mark {
  width: clamp(120px, 16vw, 200px);
  margin: 0 auto 1.4rem;
  filter: none;
  opacity: .95;
}
.loader__marks {
  width: clamp(120px, 16vw, 200px);
  margin: 0 auto 1.4rem;
  opacity: .95;
}
.loader__word {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.1rem, 2.4vw, 2rem);
  letter-spacing: .02em;
  color: #000;
}

.loader__word em {
  font-style: italic;
  color: var(--clay);
  opacity: 1;
}

.loader__count {
  position: absolute;
  right: var(--gutter);
  bottom: calc(var(--gutter) + 1.6rem);
  font-family: var(--f-display);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: .1em;
  color: #000;
}

.loader__count i {
  font-size: .3em;
  font-style: normal;
  opacity: .5;
}

.loader__bar {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: var(--gutter);
  height: 1px;
  background: var(--bone);
  color: #000;
}

.loader__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--clay);
}

.loader__panels {
  position: absolute;
  inset: 0;
  display: flex;
  pointer-events: none;
}

.loader__panels i {
  flex: 1;
  background: var(--bone);
  transform: scaleY(0);
  transform-origin: bottom;
}

/* ============================================================
   CURSOR
   ============================================================ */
.cursor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8000;
  display: none;
  opacity: 0;
  transition: opacity .35s var(--ease);
}

.cursor.is-ready {
  opacity: 1;
}

@media (hover:hover) and (pointer:fine) {
  .cursor {
    display: block;
  }
}

.cursor__dot, .cursor__ring {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}

.cursor__dot {
  width: 6px;
  height: 6px;
  background: var(--terra);
}

.cursor__ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(169, 85, 47, .55);
  display: grid;
  place-items: center;
  transition: width .35s var(--ease), height .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}

.cursor__label {
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0;
  transform: scale(.6);
  transition: opacity .3s, transform .3s;
}

.cursor.is-hover .cursor__ring {
  width: 58px;
  height: 58px;
  background: rgba(169, 85, 47, .14);
}

.cursor.is-view .cursor__ring {
  width: 86px;
  height: 86px;
  background: var(--terra);
  border-color: var(--terra);
}

.cursor.is-view .cursor__label {
  opacity: 1;
  transform: scale(1);
}

.cursor.is-hidden {
  opacity: 0;
}

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 7000;
  background: transparent;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--terra);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1rem, 2vw, 1.6rem) var(--gutter);
  color: var(--bone);
  transition: color .45s var(--ease), background .45s var(--ease), padding .45s var(--ease);
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(244, 239, 232, .86);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transition: opacity .45s var(--ease);
}

.header.is-solid {
  color: var(--ink);
  padding-block: clamp(.7rem, 1.2vw, 1rem);
}

.header.is-solid::before {
  opacity: 1;
}

.header.is-hidden {
  transform: translateY(-105%);
}

.header {
  transition: transform .5s var(--ease), color .45s var(--ease), padding .45s var(--ease);
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header__brand img {
  height: clamp(40px, 4.2vw, 54px);
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter .45s var(--ease);
}

.header.is-solid .header__brand img {
  filter: none;
}

.header__brand-sub {
  font-size: .6rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  opacity: .65;
  padding-left: .7rem;
  border-left: 1px solid currentColor;
}

.header__nav {
  display: flex;
  gap: clamp(1.2rem, 2.4vw, 2.6rem);
}

.nav-link {
  position: relative;
  display: block;
  overflow: hidden;
  height: 1.25em;
  font-size: .82rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-link span {
  display: block;
  transition: transform .5s var(--ease);
}

.nav-link span:last-child {
  position: absolute;
  top: 100%;
  left: 0;
  color: var(--terra);
}

.nav-link:hover span {
  transform: translateY(-100%);
}

.nav-link.is-current {
  color: var(--terra);
}

.header:not(.is-solid) .nav-link.is-current {
  color: var(--clay);
}

.header__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
}

.burger i {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform .45s var(--ease), opacity .3s;
}

.burger i:first-child {
  top: 19px;
}

.burger i:last-child {
  top: 25px;
}

.burger.is-open i:first-child {
  transform: translateY(3px) rotate(45deg);
}

.burger.is-open i:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

/* ---------- BUTTONS ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.1rem;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  overflow: hidden;
  isolation: isolate;
  will-change: transform;
}

.btn--sm {
  padding: .7rem 1.4rem;
  font-size: .7rem;
}

.btn__fill {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink);
  transform: translateY(101%);
  border-radius: 50% 50% 0 0;
  transition: transform .55s var(--ease), border-radius .55s var(--ease);
}

.btn:hover .btn__fill {
  transform: translateY(0);
  border-radius: 0;
}

.btn__label {
  transition: color .4s var(--ease);
}

.btn:hover .btn__label {
  color: var(--bone);
}

.btn--light {
  border-color: var(--bone);
  color: var(--bone);
}

.btn--light .btn__fill {
  background: var(--bone);
}

.btn--light:hover .btn__label {
  color: var(--ink);
}

.header .btn {
  border-color: currentColor;
}

.header .btn__fill {
  background: currentColor;
}

.header:not(.is-solid) .btn:hover .btn__label {
  color: var(--ink);
}

.header.is-solid .btn:hover .btn__label {
  color: var(--bone);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.link-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  transition: transform .45s var(--ease);
}

.link-arrow:hover svg {
  transform: translateX(7px);
}

.link-arrow span {
  position: relative;
}

.link-arrow span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}

.link-arrow:hover span::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ============================================================
   FULLSCREEN MENU
   ============================================================ */
.menu {
  position: fixed;
  inset: 0;
  z-index: 5900;
  visibility: hidden;
  color: var(--bone);
}

.menu.is-open {
  visibility: visible;
}

.menu__bg {
  position: absolute;
  inset: 0;
  display: flex;
}

.menu__bg i {
  flex: 1;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: top;
}

.menu__inner {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 3rem;
  align-content: center;
  padding: 8rem var(--gutter) 3rem;
  overflow-y: auto;
}

.menu__list li {
  overflow: hidden;
}

.menu__list a {
  position: relative;
  display: block;
  padding: .1em 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 7vw, 6rem);
  line-height: 1.06;
  letter-spacing: -.03em;
  transition: color .4s var(--ease), padding-left .5s var(--ease);
}

.menu__list a::before {
  content: attr(data-num);
  position: absolute;
  left: 0;
  top: .45em;
  font-family: var(--f-body);
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--clay);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .4s, transform .4s var(--ease);
}

.menu__list a:hover {
  color: var(--clay);
  padding-left: 3.2rem;
}

.menu__list a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.menu__col--meta {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  align-self: center;
}

.menu__block p {
  color: rgba(244, 239, 232, .72);
  line-height: 1.7;
}

.menu__block a:hover {
  color: var(--clay);
}

.menu__social {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(8rem, 16vh, 11rem) var(--gutter) clamp(1.5rem, 3vw, 2.5rem);
  color: var(--bone);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: -8% 0;
  z-index: -2;
  will-change: transform;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(27, 23, 20, .92) 0%, rgba(27, 23, 20, .35) 45%, rgba(27, 23, 20, .5) 100%),
    linear-gradient(to right, rgba(27, 23, 20, .55), transparent 60%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: flex;
  pointer-events: none;
}

.hero__grid i {
  flex: 1;
  border-right: 1px solid rgba(244, 239, 232, .07);
}

.hero__grid i:last-child {
  border: 0;
}

.hero__content {
  /* max-width: 58ch; */
  margin-bottom: clamp(1.6rem, 4vw, 3.2rem);
}

.hero__eyebrow {
  overflow: hidden;
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: var(--fs-hero);
  line-height: .9;
  letter-spacing: -.035em;
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--clay);
}

.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: .04em;
}

.hero__title .line__in {
  display: block;
}

.hero__lede {
  max-width: 46ch;
  color: rgba(244, 239, 232, .8);
  font-size: var(--fs-lede);
  font-weight: 300;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
  margin-top: 2.2rem;
}

.hero__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-lt);
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .8;
}

.scroll-cue__line {
  position: relative;
  display: block;
  width: 60px;
  height: 1px;
  background: var(--line-lt);
  overflow: hidden;
}

.scroll-cue__line i {
  position: absolute;
  inset: 0;
  background: var(--clay);
  transform: translateX(-100%);
  animation: cue 2.2s var(--ease) infinite;
}

@keyframes cue {
  0% {
    transform: translateX(-100%)
  }

  55% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(100%)
  }
}

.hero__facts {
  display: flex;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.hero__facts li {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.hero__facts b {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  line-height: 1;
}

.hero__facts span {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .6;
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--ink);
  color: var(--bone);
  padding: 1.1rem 0;
  overflow: hidden;
}

.ticker__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.ticker__track span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.1rem, 2.2vw, 1.9rem);
  letter-spacing: -.01em;
}

.ticker__track i {
  font-style: normal;
  color: var(--terra);
  margin: 0 1.6rem;
  font-size: .5em;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.about__media {
  position: relative;
}

.frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--sand);
  aspect-ratio: 4/5;
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.badge-round {
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  width: clamp(110px, 12vw, 160px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--bone);
  border-radius: 50%;
  box-shadow: 0 18px 50px rgba(27, 23, 20, .14);
}

.badge-round svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.badge-round text {
  font-family: var(--f-body);
  font-size: 12.5px;
  letter-spacing: .19em;
  fill: var(--ink);
  text-transform: uppercase;
}

.badge-round>img {
  width: 30%;
  filter: brightness(0);
  opacity: .42;
}

.about__text>.lede {
  margin-bottom: 1.4rem;
}

.about__text .muted {
  margin-bottom: 2.6rem;
}

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

.pillars img {
  width: 100px;
}
.machinory img {
    width: 50px;
    /* opacity: 0.5; */
    padding-top: 10px;
}
.pillars li {
  background: var(--bg);
  padding: 1.6rem 1.4rem 1.8rem;
  transition: background .45s var(--ease);
}

.pillars li:hover {
  background: var(--bone-2);
}

.pillars__n {
  font-size: .68rem;
  letter-spacing: .2em;
  color: var(--terra);
}

.pillars h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: var(--fs-h3);
  margin: .5rem 0 .35rem;
}

.pillars p {
  color: var(--muted);
  /* font-size: .9rem; */
  line-height: 1.55;
}

/* word-by-word scroll reveal */
[data-words] .word {
  opacity: .16;
  transition: opacity .2s linear;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding-block: clamp(3rem, 6vw, 5rem);
  border-block: 1px solid var(--line);
  text-align: center;
}

.stats__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.list-te{
  text-align: center;
}
.stats__list li {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.stats__list b {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  line-height: 1;
  letter-spacing: -.03em;
}

.stats__list span {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   COLLECTIONS — horizontal scroll
   ============================================================ */
.collections {
  background: var(--bg-w);
  color: var(--ink);
  overflow: hidden;
}

.collections__pin {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  height: 100svh;
  padding-inline: var(--gutter);
  width: max-content;
}

.collections__track {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.collections__intro {
  width: min(38vw, 430px);
  flex: none;
  padding-right: clamp(1rem, 3vw, 3rem);
}

.collections__intro .sec-title em {
  color: var(--clay);
}

.collections__intro .muted {
  margin-top: 1.2rem;
}

.hint {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 2rem;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clay);
}

.hint i {
  width: 44px;
  height: 1px;
  background: var(--clay);
  display: block;
}

/* stacked layout on small screens: heading above, cards swipe sideways */
.collections__pin.is-stacked {
  display: block;
  width: 100%;
  height: auto;
  padding-block: var(--sec-pad);
}

.collections__pin.is-stacked .collections__intro {
  margin-bottom: 2.5rem;
}

.collections__pin.is-stacked .collections__track {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  scrollbar-width: none;
}

.collections__pin.is-stacked .collections__track::-webkit-scrollbar {
  display: none;
}

.collections__pin.is-stacked .card {
  scroll-snap-align: center;
}

.card {
  position: relative;
  flex: none;
  width: clamp(260px, 26vw, 400px);
}

.card__img {
  overflow: hidden;
  border-radius: var(--r-md);
  aspect-ratio: 3/4;
  background: #241f1b;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter .6s var(--ease);
  filter: saturate(.9);
}

.card:hover .card__img img {
  transform: scale(1.07);
  filter: saturate(1.05);
}

.card__meta {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding-top: 1rem;
}

.card__meta h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: var(--fs-h3);
}

.card__meta span {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clay);
}

.card--cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  width: clamp(260px, 24vw, 360px);
  aspect-ratio: 3/4;
  padding: 2.2rem;
  border: 1px solid var(--line-lt);
  border-radius: var(--r-md);
}

.card--cta h3 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.05;
}

.card--cta p {
  font-size: .9rem;
}

.card--cta .btn {
  align-self: flex-start;
  margin-top: .6rem;
  border-color: var(--clay);
  color: var(--clay);
}

.card--cta .btn__fill {
  background: var(--bone);
}

.card--cta .btn:hover .btn__label {
  color: var(--ink);
}

/* ============================================================
   SIZES
   ============================================================ */
.picker {
  display: grid;
  grid-template-columns: minmax(230px, .9fr) 2.4fr;
  gap: clamp(1.5rem, 3.5vw, 4rem);
  align-items: start;
}

.picker>* {
  min-width: 0;
}

.tile-1200x2800 {
  width: 240px;
  height: 560px;
}

/* list */
.picker__list {
  border-top: 1px solid var(--line);
}

.picker__btn {
  position: relative;
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(.85rem, 1.5vw, 1.15rem) 0 clamp(.85rem, 1.5vw, 1.15rem) 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  transition: padding-left .5s var(--ease), color .4s var(--ease);
}

.picker__btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--terra);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .5s var(--ease);
}

.picker__btn:hover {
  padding-left: .9rem;
}

.picker__btn.is-active {
  padding-left: 1.1rem;
}

.picker__btn.is-active::before {
  transform: scaleY(1);
}

.picker__mm {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  letter-spacing: -.01em;
  transition: color .4s var(--ease);
}

.picker__btn.is-active .picker__mm {
  color: var(--terra);
}

.picker__use {
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* stage */
.picker__stage {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: stretch;
}

.picker__stage>* {
  min-width: 0;
}

.picker__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--sand);
  aspect-ratio: 4/3;
}

.picker__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform, opacity;
}

/* true-scale overlay */
.picker__scale {
  position: absolute;
  right: clamp(1rem, 2vw, 1.6rem);
  bottom: clamp(1rem, 2vw, 1.6rem);
  width: clamp(120px, 15vw, 190px);
  padding: clamp(.8rem, 1.4vw, 1.1rem);
  background: rgba(244, 239, 232, .9);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  box-shadow: 0 18px 44px rgba(27, 23, 20, .18);
}

.picker__scale-label {
  display: block;
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .6rem;
}

.picker__scale-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.picker__ghost {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(27, 23, 20, .18);
  border-radius: 2px;
  pointer-events: none;
}

.picker__rect {
  position: relative;
  width: calc(var(--w) / 2800 * 100%);
  height: calc(var(--h) / 2800 * 100%);
  background: rgba(169, 85, 47, .14);
  border: 1px solid var(--terra);
  border-radius: 1px;
  will-change: width, height;
}

.picker__dim {
  position: absolute;
  font-size: .5rem;
  letter-spacing: .1em;
  color: var(--terra);
  font-weight: 500;
  white-space: nowrap;
}

.picker__dim--w {
  left: 50%;
  top: -1.05em;
  transform: translateX(-50%);
}

.picker__dim--h {
  top: 50%;
  right: -.4em;
  transform: translate(100%, -50%);
}

/* info */
.picker__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: .3rem;
}

.picker__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.2vw, 2.9rem);
  line-height: 1;
  letter-spacing: -.03em;
}

.picker__title em {
  font-style: italic;
  font-size: .42em;
  color: var(--muted);
  margin-left: .25em;
}

.picker__note {
  color: var(--muted);
  margin: 1rem 0 1.8rem;
  max-width: 38ch;
}

.picker__specs {
  width: 100%;
  margin: 0 0 2rem;
  border-top: 1px solid var(--line);
}

.picker__specs>div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
}

.picker__specs dt {
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.picker__specs dd {
  margin: 0;
  font-size: .92rem;
  text-align: right;
}

.picker__info .btn {
  margin-top: auto;
}

/* ============================================================
   SPACES
   ============================================================ */
.spaces {
  position: relative;
}
.spaces-tech {
    position: relative;
    background: var(--bone-2);
}
.spaces__list {
  border-top: 1px solid var(--line);
}

.spaces__list li {
  border-bottom: 1px solid var(--line);
}

.spaces__list a {
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.3rem, 2.6vw, 2.2rem) 0;
  transition: color .45s var(--ease), padding-left .6s var(--ease);
}
.value-beyond a{
   display: grid;
  grid-template-columns: 5rem 1fr 1fr;
  align-items: center;
}
.spaces__list li:hover a {
  color: var(--terra);
  padding-left: 1.6rem;
}

.spaces__n {
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--muted);
}

.spaces__name {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.7rem, 4.4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -.025em;
}

.spaces__tag {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.value-beyond .spaces__tag {
  font-size: 1rem;
  letter-spacing: 0em;
  text-transform: capitalize;
  color: var(--muted);
}
.spaces__preview {
  position: fixed;
  top: 0;
  left: 0;
  width: clamp(200px, 20vw, 300px);
  aspect-ratio: 3/4;
  border-radius: var(--r-md);
  overflow: hidden;
  pointer-events: none;
  z-index: 4000;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(.85);
  will-change: transform, opacity;
}

.spaces__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (hover:none) {
  .spaces__preview {
    display: none;
  }
}

/* ============================================================
   WHY
   ============================================================ */
.why {
  background: var(--bone-2);
}

.why__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.why__sticky {
  position: sticky;
  top: clamp(6rem, 12vh, 9rem);
}

.why__img {
    width: 70%;
    margin-top: 2.5rem;
    /* border-radius: var(--r-lg); */
    filter: drop-shadow(1px 1px 1px black);

}

.why__list {
  counter-reset: w;
  display: grid;
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.why__list li {
  background: var(--bone-2);
  padding: clamp(1.4rem, 2.6vw, 2rem);
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  align-items: start;
  transition: background .45s var(--ease);
}

.why__list li:hover {
  background: var(--bone);
}

.why__list span {
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--terra);
  padding-top: .45rem;
}

.why__list h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  margin-bottom: .35rem;
}

.why__list p {
  grid-column: 2;
  color: var(--muted);
  max-width: 48ch;
}

.why__sticky .muted {
  margin-top: 1rem;
}

/* ============================================================
   EXPORT
   ============================================================ */
.export {
  background: var(--bg-w);
  color: var(--fg);
}

.export .sec-title em {
  color: var(--clay);
}

.export .sec-head__note {
  color: var(--muted);
}

.export__map {
  position: relative;
  margin: clamp(2rem, 5vw, 4rem) 0 clamp(2.5rem, 5vw, 4.5rem);
}

.export__world {
  width: 100%;
  opacity: .58;
  /* filter: brightness(0) invert(1); */
}

.export__ship {
  position: absolute;
  right: 38%;
    bottom: -16%;
  width: clamp(140px, 17vw, 260px);
  /* opacity: .9;
  filter: grayscale(.55) sepia(.2) brightness(.85) drop-shadow(0 24px 60px rgba(0, 0, 0, .55)); */
  pointer-events: none;
}

.export__pins {
  position: absolute;
  inset: 0;
  display: none;
}

.export__pins i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 14px;
  height: 14px;
  margin: -7px;
  border-radius: 50%;
}

.export__pins i::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--terra);
  opacity: .9;
}

.export__pins i::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--terra);
  opacity: 0;
  animation: ping 2.8s var(--ease) infinite;
}

.export__pins i:nth-child(2)::after {
  animation-delay: .4s
}

.export__pins i:nth-child(3)::after {
  animation-delay: .8s
}

.export__pins i:nth-child(4)::after {
  animation-delay: 1.2s
}

.export__pins i:nth-child(5)::after {
  animation-delay: 1.6s
}

.export__pins i:nth-child(6)::after {
  animation-delay: 2s
}

@keyframes ping {
  0% {
    transform: scale(.6);
    opacity: .9
  }

  70%, 100% {
    transform: scale(2.4);
    opacity: 0
  }
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-lt);
  border-block: 1px solid var(--line-lt);
}

.steps li {
  background: var(--bone-2);
  padding: clamp(1.6rem, 2.6vw, 2.4rem) clamp(1rem, 1.6vw, 1.6rem);
  transition: background .45s var(--ease);
}

.steps li:hover {
  background:var(--clay);
}

.steps__ico {
  width: 46px;
  height: 46px;
  margin-bottom: 1.4rem;
}

.steps__ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* filter: brightness(0) invert(1); */
  opacity: .85;
}
.steps li:hover .steps__ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .85;
}
.steps__n {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clay);
}
.steps li:hover .steps__n {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg);
}
.steps h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: var(--fs-h3);
  margin: .5rem 0 .5rem;
}

.steps p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}

.steps__progress {
  height: 2px;
  background: var(--line-lt);
}

.steps__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--terra);
}

/* ============================================================
   INSPIRATION
   ============================================================ */
.inspo {
  padding-block: var(--sec-pad);
  overflow: hidden;
}

.inspo__row {
  display: flex;
  width: max-content;
  gap: clamp(.8rem, 1.6vw, 1.4rem);
  margin-top: clamp(2rem, 4vw, 3.5rem);
  will-change: transform;
}

.inspo__set {
  display: flex;
  gap: clamp(.8rem, 1.6vw, 1.4rem);
}

.inspo figure {
  width: clamp(200px, 22vw, 340px);
  flex: none;
}

.inspo figure img {
  width: 100%;
  aspect-ratio: 0;
  object-fit: cover;
  border-radius: var(--r-md);
  transition: transform .8s var(--ease);
}

.inspo figure:hover img {
  transform: scale(1.05);
}

.inspo figcaption {
  padding-top: .7rem;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   CTA / CONTACT
   ============================================================ */
.cta {
  position: relative;
  padding-block: var(--sec-pad);
  color: var(--bone);
  overflow: hidden;
  isolation: isolate;
}

.cta__bg {
  position: absolute;
  inset: -10% 0;
  z-index: -1;
}

.cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(27, 23, 20, .96) 10%, rgba(27, 23, 20, .80) 70%, rgba(27, 23, 20, .9) 100%);
}

.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.25) brightness(.9);
}

.cta__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: var(--fs-h2);
  line-height: .98;
  letter-spacing: -.03em;
  margin-bottom: clamp(2.2rem, 5vw, 3.6rem);
}

.cta__title em {
  font-style: italic;
  color: var(--clay);
}

.cta__form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem 1.6rem;
  max-width: 1000px;
}

.field {
  position: relative;
}

.field--full {
  grid-column: 1/-1;
}

.field input, .field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-lt);
  padding: 1.4rem 0 .7rem;
  outline: none;
  resize: none;
  transition: border-color .4s var(--ease);
}

.field input:focus, .field textarea:focus {
  border-color: var(--clay);
}

.field label {
  position: absolute;
  left: 0;
  top: 1.3rem;
  font-size: .95rem;
  color: rgba(244, 239, 232, .55);
  pointer-events: none;
  transition: transform .4s var(--ease), font-size .4s var(--ease), color .4s var(--ease);
  transform-origin: left top;
}

.field input:focus+label, .field input:not(:placeholder-shown)+label,
.field textarea:focus+label, .field textarea:not(:placeholder-shown)+label {
  transform: translateY(-1.35rem) scale(.72);
  color: var(--clay);
}

.meeting-popup .field label {
  position: absolute;
  left: 0;
  top: 1.3rem;
  font-size: .95rem;
  color: #f5f5f5 !important;
  pointer-events: none;
  transition: transform .4s var(--ease), font-size .4s var(--ease), color .4s var(--ease);
  transform-origin: left top;
}

.meeting-popup .field input, .field textarea {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgb(248 248 248 / 20%);
    padding: 1.4rem 0 .7rem;
    outline: none;
    resize: none;
    transition: border-color .4s var(--ease);
}
.meeting-popup .field input:focus+label, .field input:not(:placeholder-shown)+label,
.meeting-popup .field textarea:focus+label, .field textarea:not(:placeholder-shown)+label {
  transform: translateY(-1.35rem) scale(.72);
  color: var(--clay);
}

.field.is-error input, .field.is-error textarea {
  border-color: var(--terra);
}

.cta__form .btn {
  grid-column: 1/2;
  align-self: start;
}

.cta__note {
  grid-column: 2/-1;
  align-self: center;
  font-size: .85rem;
  color: var(--clay);
  min-height: 1.4em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding-top: clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
  background:linear-gradient(rgb(0 0 0), rgb(0 0 0 / 79%)), url(../assets/img/collection/CLIFF_ANTHRECITE.jpg);

}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.footer__brand img {
  width: clamp(140px, 14vw, 150px);
  filter: brightness(0) invert(1);
  margin-bottom: 1.2rem;
}

.footer__brand p {
  color: rgba(244, 239, 232, .55);
  line-height: 1.7;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__cols div {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.footer__cols .eyebrow {
  color: var(--clay);
  margin-bottom: .5rem;
}

.footer__cols a {
  font-size: .92rem;
  color: rgba(244, 239, 232, .72);
  width: fit-content;
  position: relative;
}

.footer__cols a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}

.footer__cols a:hover {
  color: var(--bone);
}

.footer__cols a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer__addr {
  color: rgba(244, 239, 232, .5);
  font-size: .88rem;
  line-height: 1.7;
  margin-top: .4rem;
}

.footer__word {
      line-height: .78;
    padding-block: clamp(1rem, 3vw, 2rem);
    text-align: center;
    opacity: 0.15;
    color: var(--clay);
}

.footer__word span {
  /* display: block;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(3.4rem, 17vw, 17rem);
  letter-spacing: -.045em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 239, 232, .32); */

      display: block;
    font-family: var(--f-display);
    /* font-weight: 300; */
    font-size: clamp(3.4rem, 17vw, 25rem);
    letter-spacing: -.045em;
    white-space: nowrap;
    /* color: transparent; */
    /* -webkit-text-stroke: 1px rgba(244, 239, 232, .32); */
}

.footer__word .char {
  display: inline-block;
}

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.6rem;
  border-top: 1px solid var(--line-lt);
  font-size: .78rem;
  color: rgba(244, 239, 232, .72);
}

.footer__social {
  display: flex;
  gap: 1.4rem;
}

.footer__social a:hover, .footer__top-link:hover {
  color: var(--bone);
}

/* ============================================================
   REVEAL BASE STATES (JS removes / animates)
   ============================================================ */
[data-reveal], [data-reveal-stagger] {
  opacity: 0;
  transform: translateY(28px);
}

[data-reveal-img] {
  clip-path: inset(0 0 100% 0);
}

.no-js [data-reveal], .no-js [data-reveal-stagger] {
  opacity: 1;
  transform: none;
}

/* SplitType output */
.split-line {
  display: block;
  overflow: hidden;
  padding-bottom: .08em;
}

.split-word {
  display: inline-block;
  will-change: transform;
}

[data-words] .word {
  display: inline-block;
}

[data-split-chars] .char {
  display: inline-block;
  will-change: transform;
}

.footer__word span {
  overflow: hidden;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1180px) {
  .header__nav {
    display: none;
  }

  .burger {
    display: block;
  }

  .about__body {
    grid-template-columns: 1fr;
  }

  .about__media {
    max-width: 520px;
  }

  .why__grid {
    grid-template-columns: 1fr;
  }

  .why__sticky {
    position: static;
  }

  .picker {
    grid-template-columns: 1fr;
  }

  .picker__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
  }

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

  .footer__top {
    grid-template-columns: 1fr;
  }
}

@media (max-width:820px) {
  .header .btn--sm {
    display: none;
  }

  .menu__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-content: start;
    padding-top: 7rem;
  }

  .menu__col--meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }

  .hero__foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
  }

  .hero__facts {
    width: 100%;
    justify-content: space-between;
  }

  .stats__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .picker__list {
    grid-template-columns: 1fr;
  }

  .picker__stage {
    grid-template-columns: 1fr;
  }

  .picker__media {
    min-height: 0;
    aspect-ratio: 3/2;
  }

  .picker__info .btn {
    margin-top: 1.5rem;
  }

  .cta__form {
    grid-template-columns: 1fr;
  }

  .cta__form .btn, .cta__note {
    grid-column: 1/-1;
  }

  .footer__cols {
    grid-template-columns: 1fr 1fr;
  }

  .collections__intro {
    width: 100%;
    padding-right: 0;
  }

  .spaces__list a {
    grid-template-columns: 3rem 1fr;
  }

  .spaces__tag {
    display: none;
  }

  .why__list li {
    grid-template-columns: 3rem 1fr;
  }
}

@media (max-width:520px) {
  .header__brand-sub {
    display: none;
  }

  .footer__cols {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .menu__col--meta {
    grid-template-columns: 1fr;
  }

  .hero__facts li:last-child {
    display: none;
  }

  .footer__bar {
    justify-content: flex-start;
  }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion:reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  [data-reveal], [data-reveal-stagger] {
    opacity: 1;
    transform: none;
  }

  [data-reveal-img] {
    clip-path: none;
  }

  .cursor {
    display: none !important;
  }
}



.size-group h3 {

  font-size: 28px;
  margin-bottom: 30px;
  color: #222;
  font-weight: 600;

}

.size-row {

  display: flex;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;

}

.tile {

  display: block;
  position: relative;
  border-radius: 10px;
  transition: .4s;
  background: #eee;
  flex-shrink: 0;

}

.tile img {

  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;

}

.tile:hover img {

  transform: scale(1.01);

}

.tile span {

  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, .95);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  color: #000;
  font-family: var(--f-display);

}

/* 1200 Series */

.tile-1200x2800 {

  width: 240px;
  height: 560px;

}

.tile-1200x1800 {

  width: 240px;
  height: 360px;

}

.tile-1200x1200 {

  width: 240px;
  height: 240px;

}

/* 800 Series */

.tile-800x1600 {

  width: 230px;
  height: 460px;

}

.tile-800x800 {

  width: 230px;
  height: 230px;


}

.tile-600x1200 {

  width: 220px;
  height: 440px;

}

.tile-600x600 {

  width: 220px;
  height: 220px;

}

.tile-200x1200 {

  width: 100px;
  height: 440px;

}

@media(max-width:991px) {

  .size-row {

    justify-content: center;

  }

  .tile-1200x2800 {

    width: 180px;
    height: 420px;

  }

  .tile-1200x1800 {

    width: 180px;
    height: 270px;

  }

  .tile-1200x1200 {

    width: 180px;
    height: 180px;

  }

  .tile-800x1600 {

    width: 140px;
    height: 280px;

  }

  .tile-800x800 {

    width: 140px;
    height: 140px;

  }

  .tile-600x1200 {

    width: 110px;
    height: 220px;

  }

  .tile-600x600 {

    width: 110px;
    height: 110px;

  }

  .tile-200x1200 {

    width: 40px;
    height: 240px;

  }

}

@media(max-width:576px) {

  .size-row {

    gap: 15px;
    justify-content: center;

  }

  .tile-1200x2800 {

    width: 140px;
    height: 325px;

  }

  .tile-1200x1800 {

    width: 140px;
    height: 210px;

  }

  .tile-1200x1200 {

    width: 140px;
    height: 140px;

  }

  .tile-800x1600 {

    width: 230px;
    height: 460px;

  }

  .tile-800x800 {

    width: 230px;
    height: 230px;


  }

  .tile-600x1200 {

    width: 220px;
    height: 440px;

  }

  .tile-600x600 {

    width: 220px;
    height: 220px;

  }

  .tile-200x1200 {

    width: 100px;
    height: 440px;

  }

}

.size-filter {

  display: flex;
  /* justify-content: center; */
  gap: 15px;
  margin-bottom: 60px;
  flex-wrap: wrap;

}


.size-group {

  display: none;
  animation: fade .4s ease;

}

.size-group.active {

  display: block;

}

@keyframes fade {

  from {

    opacity: 0;
    transform: translateY(15px);

  }

  to {

    opacity: 1;
    transform: translateY(0);

  }

}

.size-group {
  display: none;
  animation: fade .4s ease;
  min-height: 600px;
  /* Same height for all tabs */
}

.size-group.active {
  display: flex;
  flex-direction: column;
}

.size-group h3 {
  text-align: center;
  margin-bottom: 40px;
}

.size-row {
  flex: 1;
  display: flex;
  /* justify-content: center; */
  align-items: end;
  gap: 30px;
  flex-wrap: wrap;
}

.size-filter button .active{
  background-color: #000;
  color: #fff;
}
.size-filter .btn.active {
    background: #222;
    color: #fff;
    border-color: #222;
}
@media(max-width:991px) {

  .size-group {
    min-height: 520px;
  }

}

@media(max-width:576px) {

  .size-group {
    min-height: 380px;
  }

  .size-row {
    gap: 15px;
  }

}

.meeting-header h2 {
    margin: 10px 0;
    font-size: 38px;
    font-family: var(--f-display);
    color: #fff;
}

.form .field select {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 1.4rem 0 1.4rem;
    outline: none;
    resize: none;
    border-radius: 0;
    transition: border-color .4s var(--ease);
    line-height: 30px;
}