:root {
  --ink: #050807;
  --ink-soft: #080d0c;
  --surface: #0b1210;
  --surface-raised: #101a17;
  --pine: #0f3d3e;
  --aurora: #37c8ad;
  --aurora-bright: #71e7d0;
  --gold: #d4af37;
  --gold-soft: #e0c46b;
  --ivory: #f4f1e6;
  --muted: #a8b3ad;
  --muted-dark: #78847e;
  --white-ring: 0 0 0 1px rgba(255, 255, 255, 0.1);
  --white-ring-hover: 0 0 0 1px rgba(255, 255, 255, 0.17);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Montserrat", Arial, sans-serif;
  --page-gutter: clamp(1.25rem, 3.8vw, 4.5rem);
  --section-space: clamp(6.5rem, 11vw, 11rem);
  --header-height: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 10% 18%, rgba(25, 126, 109, 0.07), transparent 24rem),
    var(--ink);
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--gold-soft);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li,
figcaption {
  text-wrap: pretty;
}

:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--ivory);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transform: translateY(-150%);
  transition-property: transform;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 1rem;
  right: var(--page-gutter);
  left: var(--page-gutter);
  transition-property: top;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.nav-shell {
  position: relative;
  display: flex;
  width: min(100%, 1380px);
  min-height: var(--header-height);
  margin-inline: auto;
  padding: 0.65rem 0.7rem 0.65rem 1.1rem;
  align-items: center;
  border-radius: 1.05rem;
  background: rgba(5, 8, 7, 0.55);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  transition-property: background-color, box-shadow;
  transition-duration: 220ms;
  transition-timing-function: ease-out;
}

.site-header.is-scrolled {
  top: 0.6rem;
}

.site-header.is-scrolled .nav-shell {
  background: rgba(5, 8, 7, 0.88);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 18px 56px rgba(0, 0, 0, 0.36);
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 2.7rem;
  color: var(--gold-soft);
  flex: 0 0 auto;
}

.brand-mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark .brand-star {
  fill: currentColor;
  stroke: none;
}

.brand-type {
  display: grid;
  color: var(--ivory);
  font-family: var(--font-display);
  line-height: 0.8;
  text-transform: uppercase;
}

.brand-type > span {
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.brand-type small {
  margin-top: 0.42rem;
  font-family: var(--font-ui);
  font-size: 0.43rem;
  font-weight: 500;
  letter-spacing: 0.46em;
  text-align: center;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.4rem);
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: rgba(244, 241, 230, 0.72);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition-property: color;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 1px;
  background: var(--gold-soft);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition-property: transform;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--ivory);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  min-width: 8.5rem;
  min-height: 3rem;
  margin-left: clamp(1.2rem, 3vw, 3.5rem);
  padding: 0.65rem 0.85rem 0.65rem 1.1rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  border-radius: 0.7rem;
  color: var(--ink);
  background: var(--gold-soft);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.12);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition-property: background-color, scale, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

.nav-cta svg,
.button svg,
.line-link svg,
.collection-card-top svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-cta:hover {
  background: #edd47c;
  box-shadow: 0 14px 38px rgba(212, 175, 55, 0.2);
}

.nav-cta:active,
.button:active,
.menu-button:active {
  scale: 0.96;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: max(760px, 100svh);
  overflow: hidden;
  align-items: stretch;
  background: #050706;
}

.hero-media,
.hero-scrim,
.hero-aurora {
  position: absolute;
  inset: 0;
}

.hero-media {
  transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.04);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
  filter: brightness(0.78) saturate(1.05) contrast(1.04);
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 7, 6, 0.99) 0%, rgba(3, 7, 6, 0.93) 25%, rgba(3, 7, 6, 0.5) 49%, rgba(3, 7, 6, 0.03) 75%),
    linear-gradient(0deg, rgba(3, 7, 6, 0.88) 0%, transparent 30%, rgba(3, 7, 6, 0.18) 100%);
}

.hero-aurora {
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 22% 12%, rgba(35, 225, 183, 0.2), transparent 23%),
    radial-gradient(ellipse at 38% -10%, rgba(102, 45, 139, 0.18), transparent 26%);
  mix-blend-mode: screen;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  padding-top: calc(var(--header-height) + 7.5rem);
  padding-bottom: clamp(7rem, 12vh, 9rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
  align-items: end;
}

.hero-copy {
  max-width: 46rem;
}

.eyebrow {
  margin-bottom: 1.2rem;
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-eyebrow > span {
  display: block;
  width: 2.75rem;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(4.25rem, 8.2vw, 8rem);
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
}

.hero h1 em,
.section h2 em {
  color: var(--aurora-bright);
  font-weight: 400;
}

.hero-intro {
  max-width: 37rem;
  margin: 2rem 0 0;
  color: rgba(244, 241, 230, 0.72);
  font-size: clamp(0.98rem, 1.35vw, 1.15rem);
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  margin-top: 2.6rem;
  align-items: center;
  gap: 1.65rem;
}

.button {
  display: inline-flex;
  min-height: 3.6rem;
  padding: 0.8rem 1rem 0.8rem 1.35rem;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  border: 0;
  border-radius: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  transition-property: background-color, color, scale, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

.button-primary {
  color: var(--ink);
  background: var(--gold-soft);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.button-primary:hover {
  background: #f0d982;
  box-shadow: 0 16px 42px rgba(212, 175, 55, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.8rem;
  color: rgba(244, 241, 230, 0.8);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition-property: color;
  transition-duration: 180ms;
}

.text-link span {
  color: var(--gold-soft);
  font-size: 1.1rem;
  transition-property: transform;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

.text-link:hover {
  color: var(--ivory);
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.hero-facts {
  display: grid;
  width: min(100%, 29rem);
  margin-left: auto;
  padding: 1rem;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 1.1rem;
  background: rgba(7, 12, 10, 0.58);
  box-shadow: var(--white-ring);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-facts > div {
  display: flex;
  min-height: 6rem;
  padding: 0.7rem 1rem;
  flex-direction: column;
  justify-content: space-between;
}

.hero-facts > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-facts strong {
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.hero-facts span {
  color: rgba(244, 241, 230, 0.68);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 2rem;
  left: 50%;
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 0.8rem;
  color: rgba(244, 241, 230, 0.46);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 2.8rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.scroll-cue i::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: var(--gold-soft);
  content: "";
  animation: scroll-line 2.2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(-120%); }
  55%, 100% { transform: translateY(250%); }
}

.stagger-item {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(12px);
  animation: hero-enter 700ms cubic-bezier(0.2, 0, 0, 1) forwards;
}

.stagger-item:nth-child(1) { animation-delay: 160ms; }
.stagger-item:nth-child(2) { animation-delay: 260ms; }
.stagger-item:nth-child(3) { animation-delay: 360ms; }
.stagger-item:nth-child(4) { animation-delay: 460ms; }

.hero-facts.stagger-item {
  animation-delay: 580ms;
}

@keyframes hero-enter {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.section-kicker {
  display: flex;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
  align-items: center;
  gap: 1.1rem;
  color: var(--muted-dark);
}

.section-kicker span {
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
}

.section-kicker p {
  margin-bottom: 0;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker::after {
  width: 4.5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  content: "";
}

.story {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 85% 10%, rgba(43, 153, 134, 0.08), transparent 28rem),
    var(--ink-soft);
}

.story::before {
  position: absolute;
  top: 0;
  left: var(--page-gutter);
  width: calc(100% - (var(--page-gutter) * 2));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  content: "";
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.72fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.section h2 {
  font-size: clamp(4rem, 7vw, 7rem);
}

.story-copy {
  max-width: 34rem;
  padding-top: 3rem;
}

.story-copy p {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 300;
}

.story-copy .story-lead {
  margin-bottom: 1.5rem;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.4;
}

.maker-quote {
  margin: 2.4rem 0 1.5rem;
  padding-left: 1.25rem;
  border-left: 1px solid var(--gold-soft);
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-style: italic;
  line-height: 1.25;
}

.story-signature {
  display: flex;
  margin-top: 1.75rem;
  align-items: baseline;
  gap: 0.85rem;
}

.story-signature strong {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.story-signature span {
  color: var(--muted-dark);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.line-link {
  display: inline-flex;
  min-height: 44px;
  margin-top: 1.4rem;
  padding-bottom: 0.3rem;
  align-items: center;
  gap: 1.15rem;
  border-bottom: 1px solid rgba(224, 196, 107, 0.42);
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition-property: border-color, color;
  transition-duration: 180ms;
}

.line-link svg {
  transition-property: transform;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

.line-link:hover {
  border-color: var(--gold-soft);
  color: #f0d982;
}

.line-link:hover svg {
  transform: translateX(4px);
}

.story-values {
  display: grid;
  margin-top: clamp(5rem, 9vw, 9rem);
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--white-ring);
}

.value-card {
  min-height: 15rem;
  padding: clamp(1.6rem, 3.2vw, 3rem);
}

.value-card + .value-card {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.value-card svg {
  width: 2.8rem;
  color: var(--gold-soft);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card p {
  margin: 4.2rem 0 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.1;
}

.value-card p span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--muted-dark);
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.collections {
  background: #070b0a;
}

.section-heading-row {
  display: grid;
  margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.45fr);
  gap: 4rem;
  align-items: end;
}

.section-heading-row p,
.gallery-heading > p {
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 20rem 20rem;
  gap: 1rem;
}

.collection-card {
  position: relative;
  display: flex;
  overflow: hidden;
  padding: clamp(1.25rem, 2.6vw, 2.4rem);
  flex-direction: column;
  justify-content: space-between;
  border-radius: 1.25rem;
  background: var(--surface-raised);
  box-shadow: var(--white-ring);
  isolation: isolate;
  transition-property: box-shadow, transform;
  transition-duration: 260ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.collection-card:hover {
  z-index: 2;
  box-shadow: var(--white-ring-hover), 0 24px 70px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.collection-card:active {
  transform: translateY(-1px) scale(0.99);
}

.collection-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  background: #050807;
}

.collection-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) brightness(0.9);
  transform: scale(1.015);
  transition-property: transform, filter;
  transition-duration: 600ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.collection-card:hover .collection-image img {
  filter: saturate(1.08) brightness(1.02);
  transform: scale(1.055);
}

.collection-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 7, 6, 0.4), rgba(3, 7, 6, 0.06) 45%, rgba(3, 7, 6, 0.93));
  content: "";
}

.collection-cactus {
  grid-column: 1 / 7;
  grid-row: 1 / 3;
}

.collection-cactus .collection-image {
  background: #050807;
}

.collection-cactus .collection-image img {
  object-position: 12% 50%;
}

.collection-animal {
  grid-column: 7 / 10;
  grid-row: 1 / 2;
}

.collection-animal .collection-image {
  background: #050807;
}

.collection-animal .collection-image img {
  object-position: 35% 50%;
}

.collection-colour {
  grid-column: 10 / 13;
  grid-row: 1 / 2;
}

.collection-colour .collection-image {
  background: #050807;
}

.collection-colour .collection-image img {
  object-position: 62% 50%;
}

.collection-chillum {
  grid-column: 7 / 13;
  grid-row: 2 / 3;
}

.collection-chillum .collection-image {
  background: #050807;
}

.collection-chillum .collection-image img {
  object-position: 88% 50%;
}

.collection-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(244, 241, 230, 0.7);
  font-size: 0.6rem;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.collection-card-top svg {
  width: 1.3rem;
  color: var(--gold-soft);
  transition-property: transform;
  transition-duration: 220ms;
  transition-timing-function: ease-out;
}

.collection-card:hover .collection-card-top svg {
  transform: translate(3px, -3px);
}

.collection-card-copy p {
  margin-bottom: 0.45rem;
  color: var(--gold-soft);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.collection-card-copy h3 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 3.6vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.85;
}

.collection-animal h3,
.collection-colour h3 {
  font-size: clamp(2.1rem, 2.8vw, 3.25rem);
}

.craft {
  overflow: hidden;
  background: var(--surface);
}

.craft::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 5rem 5rem;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 75%);
}

.craft-glow {
  position: absolute;
  top: 10%;
  left: -14rem;
  width: 48rem;
  height: 48rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 187, 158, 0.18), rgba(34, 120, 108, 0.04) 42%, transparent 67%);
  filter: blur(30px);
}

.craft-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(21rem, 0.78fr);
  gap: clamp(4rem, 9vw, 9rem);
  align-items: center;
}

.craft-visual {
  position: relative;
  min-height: min(74vw, 48rem);
}

.craft-image {
  position: absolute;
  inset: 0 8% 0 0;
  border-radius: 50% 50% 1.5rem 1.5rem / 34% 34% 1.5rem 1.5rem;
  background-image: linear-gradient(180deg, transparent 62%, rgba(3, 7, 6, 0.78)), url("assets/aurora-craft-v4.png");
  background-image: linear-gradient(180deg, transparent 62%, rgba(3, 7, 6, 0.78)),
    image-set(url("assets/aurora-craft-v4.webp") type("image/webp"), url("assets/aurora-craft-v4.png") type("image/png"));
  background-position: 82% center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 35px 80px rgba(0, 0, 0, 0.36);
}

.craft-badge {
  position: absolute;
  right: 0;
  bottom: 3.5rem;
  display: grid;
  width: 10.5rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold-soft);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  transform: rotate(7deg);
}

.craft-badge svg {
  width: 3.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
}

.craft-badge span {
  margin-top: -1.8rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.6;
  text-transform: uppercase;
}

.craft-copy {
  position: relative;
  z-index: 1;
}

.craft-copy .section-kicker {
  margin-bottom: 4rem;
}

.craft-intro {
  max-width: 34rem;
  margin: 2.25rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
}

.process-list {
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  padding: 1.35rem 0;
  grid-template-columns: 3.2rem 1fr;
  gap: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.process-list > li > span {
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
}

.process-list h3 {
  margin-bottom: 0.35rem;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.65;
}

.gallery {
  background: #060a09;
}

.gallery-heading {
  display: grid;
  margin-bottom: clamp(3.5rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.42fr);
  gap: 4rem;
  align-items: end;
}

.gallery-stage {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  background: #101313;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 35px 90px rgba(0, 0, 0, 0.45);
}

.gallery-stage img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
  filter: saturate(1.04) contrast(1.03);
}

.gallery-light {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle 18rem at var(--mx, 50%) var(--my, 50%), rgba(122, 255, 220, 0.12), transparent 70%);
  mix-blend-mode: screen;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 240ms;
}

.gallery-stage:hover .gallery-light {
  opacity: 1;
}

.gallery-stage figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding: 2rem;
  justify-content: space-between;
  color: rgba(244, 241, 230, 0.64);
  background: linear-gradient(0deg, rgba(4, 8, 7, 0.95), transparent);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact {
  overflow: hidden;
  background: #0b1513;
}

.contact::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(4, 9, 8, 0.98) 0%, rgba(4, 9, 8, 0.78) 48%, rgba(4, 9, 8, 0.15) 100%),
    url("assets/collection-board.jpg") 54% 20% / cover no-repeat;
  content: "";
  filter: saturate(0.82) brightness(0.64);
}

.contact-aurora {
  position: absolute;
  top: -30rem;
  right: -8rem;
  width: 65rem;
  height: 65rem;
  border-radius: 50%;
  background: conic-gradient(from 120deg, transparent, rgba(26, 191, 158, 0.23), rgba(92, 39, 122, 0.15), transparent 60%);
  filter: blur(70px);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(24rem, 0.72fr);
  gap: clamp(4rem, 9vw, 9rem);
  align-items: center;
}

.contact-copy h2 {
  font-size: clamp(4.2rem, 7vw, 7.5rem);
}

.contact-copy > p:last-child {
  max-width: 35rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
}

.enquiry-form {
  padding: clamp(1.5rem, 3.5vw, 3.25rem);
  border-radius: 1.5rem;
  background: rgba(8, 14, 12, 0.78);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.11), 0 32px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.enquiry-form label {
  display: block;
  margin-bottom: 1.4rem;
}

.enquiry-form label > span {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(244, 241, 230, 0.56);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.8rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  outline: none;
  color: var(--ivory);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 300;
  transition-property: border-color, background-color;
  transition-duration: 180ms;
}

.enquiry-form select {
  color-scheme: dark;
}

.enquiry-form textarea {
  min-height: 6.5rem;
  resize: vertical;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: rgba(168, 179, 173, 0.48);
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--gold-soft);
}

.enquiry-form input:focus-visible,
.enquiry-form select:focus-visible,
.enquiry-form textarea:focus-visible {
  outline: 2px solid rgba(224, 196, 107, 0.75);
  outline-offset: 4px;
}

.form-footer {
  display: flex;
  margin-top: 0.6rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.form-footer p {
  max-width: 15rem;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 0.64rem;
  line-height: 1.6;
}

.form-footer p.is-notice {
  color: var(--gold-soft);
}

.site-footer {
  padding: 4.5rem 0 2rem;
  background: #030605;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand .brand-mark {
  width: 3.5rem;
}

.footer-brand .brand-type > span {
  font-size: 1.75rem;
}

.footer-note p {
  margin-bottom: 0.25rem;
  color: var(--muted-dark);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem 1.5rem;
}

.footer-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: rgba(244, 241, 230, 0.62);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  transition-property: color;
  transition-duration: 180ms;
}

.footer-nav a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  display: flex;
  margin-top: 4rem;
  padding-top: 1.5rem;
  grid-column: 1 / -1;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(120, 132, 126, 0.92);
  font-size: 0.56rem;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

html.js .reveal {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(18px);
  transition-property: opacity, filter, transform;
  transition-duration: 640ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

html.js .reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.story-values .reveal:nth-child(2),
.collection-grid .reveal:nth-child(2),
.process-list .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.story-values .reveal:nth-child(3),
.collection-grid .reveal:nth-child(3),
.process-list .reveal:nth-child(3) {
  transition-delay: 160ms;
}

.story-values .reveal:nth-child(4),
.collection-grid .reveal:nth-child(4) {
  transition-delay: 240ms;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 1rem;
  }

  .desktop-nav a {
    letter-spacing: 0.07em;
  }

  .nav-cta {
    min-width: 7.6rem;
    margin-left: 1.2rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    display: none;
  }

  .story-grid,
  .section-heading-row,
  .gallery-heading {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.6fr);
    gap: 3rem;
  }

  .collection-grid {
    grid-template-rows: 17rem 17rem;
  }

  .craft-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 0.9fr);
    gap: 4rem;
  }

  .craft-visual {
    min-height: 42rem;
  }

  .contact-grid {
    grid-template-columns: 0.75fr 1fr;
    gap: 4rem;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 4rem;
  }

  .site-header {
    top: 0.75rem;
  }

  .nav-shell {
    min-height: var(--header-height);
    padding: 0.45rem 0.5rem 0.45rem 0.9rem;
    border-radius: 0.9rem;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    position: relative;
    display: grid;
    width: 3rem;
    height: 3rem;
    margin-left: auto;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 0.65rem;
    color: var(--ivory);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: var(--white-ring);
    transition-property: scale, background-color;
    transition-duration: 160ms;
    transition-timing-function: ease-out;
  }

  .menu-button:hover {
    background: rgba(255, 255, 255, 0.11);
  }

  .menu-icon-wrap {
    position: relative;
    width: 1.35rem;
    height: 1.35rem;
  }

  .menu-icon {
    position: absolute;
    inset: 0;
    width: 1.35rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    opacity: 1;
    filter: blur(0);
    scale: 1;
    transition-property: opacity, filter, scale;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
  }

  .menu-icon-close {
    opacity: 0;
    filter: blur(4px);
    scale: 0.25;
  }

  .menu-button[aria-expanded="true"] .menu-icon-open {
    opacity: 0;
    filter: blur(4px);
    scale: 0.25;
  }

  .menu-button[aria-expanded="true"] .menu-icon-close {
    opacity: 1;
    filter: blur(0);
    scale: 1;
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    left: 0;
    display: grid;
    padding: 0.75rem;
    border-radius: 1rem;
    background: rgba(5, 8, 7, 0.97);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.11), 0 28px 80px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition-property: opacity, transform;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
  }

  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    display: flex;
    min-height: 3.5rem;
    padding: 0.5rem 0.8rem;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--font-display);
    font-size: 1.45rem;
  }

  .mobile-nav a span {
    color: var(--gold-soft);
    font-family: var(--font-ui);
    font-size: 0.55rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.14em;
  }

  .mobile-nav .mobile-nav-cta {
    margin-top: 0.75rem;
    justify-content: center;
    border: 0;
    border-radius: 0.7rem;
    color: var(--ink);
    background: var(--gold-soft);
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(3, 7, 6, 0.96) 0%, rgba(3, 7, 6, 0.75) 52%, rgba(3, 7, 6, 0.12) 100%),
      linear-gradient(0deg, rgba(3, 7, 6, 0.94) 0%, transparent 47%, rgba(3, 7, 6, 0.3) 100%);
  }

  .story-grid,
  .section-heading-row,
  .gallery-heading,
  .craft-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .story-copy {
    padding-top: 0;
  }

  .story-values {
    grid-template-columns: 1fr 1fr;
  }

  .value-card:nth-child(3) {
    border-left: 0;
  }

  .value-card:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .collection-grid {
    grid-template-rows: 26rem 18rem 18rem;
  }

  .collection-cactus {
    grid-column: 1 / 13;
    grid-row: 1 / 2;
  }

  .collection-animal {
    grid-column: 1 / 7;
    grid-row: 2 / 3;
  }

  .collection-colour {
    grid-column: 7 / 13;
    grid-row: 2 / 3;
  }

  .collection-chillum {
    grid-column: 1 / 13;
    grid-row: 3 / 4;
  }

  .craft-visual {
    min-height: min(112vw, 48rem);
    order: 2;
  }

  .craft-copy {
    order: 1;
  }

  .contact-grid {
    gap: 3.5rem;
  }

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

  .footer-nav {
    grid-column: 2;
    grid-row: 1 / 3;
  }
}

@media (max-width: 640px) {
  :root {
    --page-gutter: 1rem;
    --section-space: 6.25rem;
  }

  .site-header {
    right: 0.75rem;
    left: 0.75rem;
  }

  .brand-mark {
    width: 2.35rem;
  }

  .brand-type > span {
    font-size: 1.15rem;
  }

  .hero {
    min-height: 780px;
  }

  .hero-media {
    transform: scale(1.04);
  }

  .hero-media img {
    object-position: 72% center;
    filter: brightness(0.68) saturate(1.02) contrast(1.04);
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(3, 7, 6, 0.8), rgba(3, 7, 6, 0.24)),
      linear-gradient(0deg, rgba(3, 7, 6, 0.98) 0%, rgba(3, 7, 6, 0.75) 48%, rgba(3, 7, 6, 0.26) 82%, rgba(3, 7, 6, 0.54) 100%);
  }

  .hero-inner {
    padding-top: 9rem;
    padding-bottom: 6rem;
  }

  .hero-copy {
    align-self: end;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(3.8rem, 17vw, 5.2rem);
  }

  .hero-intro {
    max-width: 31rem;
    margin-top: 1.5rem;
    font-size: 0.88rem;
    line-height: 1.75;
  }

  .hero-actions {
    margin-top: 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

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

  .text-link {
    padding-inline: 0.25rem;
  }

  .scroll-cue {
    display: none;
  }

  .section-kicker {
    margin-bottom: 3rem;
  }

  .section h2 {
    font-size: clamp(3.45rem, 15vw, 4.7rem);
  }

  .story-grid,
  .section-heading-row,
  .gallery-heading {
    gap: 2.2rem;
  }

  .story-values {
    margin-top: 4.5rem;
  }

  .value-card {
    min-height: 12rem;
    padding: 1.35rem;
  }

  .value-card svg {
    width: 2.35rem;
  }

  .value-card p {
    margin-top: 3rem;
    font-size: 1.25rem;
  }

  .collection-grid {
    display: flex;
    margin-inline: -1rem;
    padding: 0.1rem 1rem 1.8rem;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-soft) rgba(255, 255, 255, 0.06);
  }

  .collection-card {
    min-width: min(84vw, 22rem);
    min-height: 29rem;
    padding: 1.4rem;
    scroll-snap-align: start;
  }

  .collection-card-copy h3,
  .collection-animal h3,
  .collection-colour h3 {
    font-size: 3.1rem;
  }

  .collection-cactus .collection-image img {
    object-position: 12% 50%;
  }

  .collection-animal .collection-image img {
    object-position: 35% 50%;
  }

  .collection-colour .collection-image img {
    object-position: 62% 50%;
  }

  .collection-chillum .collection-image img {
    object-position: 88% 50%;
  }

  .craft-grid {
    gap: 3.75rem;
  }

  .craft-visual {
    min-height: 35rem;
  }

  .craft-image {
    right: 5%;
  }

  .craft-badge {
    right: -0.25rem;
    bottom: 2rem;
    width: 8rem;
  }

  .craft-badge svg {
    width: 2.5rem;
  }

  .craft-badge span {
    font-size: 0.48rem;
  }

  .gallery-stage {
    margin-inline: -0.35rem;
    border-radius: 0.9rem;
  }

  .gallery-stage img {
    aspect-ratio: 4 / 5;
    object-position: 54% center;
  }

  .gallery-stage figcaption {
    padding: 1.2rem;
    flex-direction: column;
    gap: 0.25rem;
  }

  .contact::before {
    background-position: 63% 0;
  }

  .contact-copy h2 {
    font-size: clamp(3.65rem, 15vw, 5rem);
  }

  .enquiry-form {
    padding: 1.25rem;
    border-radius: 1.15rem;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-footer {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .form-footer p {
    max-width: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .footer-nav {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-bottom {
    margin-top: 1rem;
    flex-direction: column;
    gap: 0.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-media {
    transform: scale(1.04);
  }
}

/* Luxury editorial direction */

:root {
  --ink: #050505;
  --ink-soft: #090909;
  --surface: #0c0c0c;
  --surface-raised: #111111;
  --gold-soft: #c8b58d;
  --ivory: #f1eee7;
  --muted: #a5a29c;
  --muted-dark: #7b7772;
  --font-display: "Bodoni Moda", "Times New Roman", serif;
  --page-gutter: clamp(1.5rem, 4.2vw, 5.75rem);
  --section-space: clamp(6.5rem, 9vh, 8rem);
  --header-height: 5rem;
}

html {
  scroll-snap-type: y proximity;
}

body {
  background: var(--ink);
}

.page-shell {
  width: 100%;
  max-width: 100rem;
}

.section {
  display: flex;
  min-height: 100svh;
  padding-block: var(--section-space);
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.section > .page-shell {
  position: relative;
  z-index: 1;
}

.site-header {
  top: 0;
  right: 0;
  left: 0;
  padding-inline: var(--page-gutter);
  transition: background-color 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell,
.site-header.is-scrolled .nav-shell {
  width: 100%;
  max-width: 100rem;
  min-height: var(--header-height);
  margin-inline: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.brand {
  gap: 0.65rem;
}

.brand-mark {
  width: 2.45rem;
}

.brand-type > span {
  font-size: 1.16rem;
  letter-spacing: 0.15em;
}

.brand-type small {
  font-size: 0.38rem;
  letter-spacing: 0.5em;
}

.desktop-nav {
  gap: clamp(1.4rem, 2.4vw, 2.8rem);
}

.desktop-nav a {
  font-size: 0.61rem;
  letter-spacing: 0.16em;
}

.nav-cta {
  min-width: auto;
  min-height: 44px;
  margin-left: clamp(1.5rem, 3vw, 3.75rem);
  padding: 0;
  gap: 0.7rem;
  border-bottom: 1px solid rgba(241, 238, 231, 0.7);
  border-radius: 0;
  color: var(--ivory);
  background: transparent;
  box-shadow: none;
  font-size: 0.61rem;
  letter-spacing: 0.16em;
}

.nav-cta:hover {
  color: var(--gold-soft);
  background: transparent;
  box-shadow: none;
}

.nav-cta svg {
  width: 0.9rem;
}

.hero {
  min-height: 100svh;
  scroll-snap-align: start;
  background: #030303;
}

.hero-media {
  transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.015);
}

.hero-media img {
  object-position: 50% center;
  filter: brightness(0.64) saturate(0.82) contrast(1.06);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 1) 0%, rgba(2, 2, 2, 0.96) 25%, rgba(2, 2, 2, 0.66) 48%, rgba(2, 2, 2, 0.08) 78%),
    linear-gradient(0deg, rgba(2, 2, 2, 0.84) 0%, transparent 40%, rgba(2, 2, 2, 0.18) 100%);
}

.hero-aurora,
.craft-glow,
.contact-aurora,
.gallery-light {
  display: none;
}

.hero-inner {
  max-width: 100rem;
  padding-top: clamp(10rem, 18vh, 14rem);
  padding-bottom: clamp(7rem, 11vh, 10rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.62fr);
  align-items: end;
}

.hero-copy {
  max-width: 57rem;
}

.hero h1,
.section h2 {
  letter-spacing: -0.06em;
  line-height: 0.86;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(5.25rem, 9vw, 9.5rem);
  text-shadow: none;
}

.hero h1 em,
.section h2 em {
  color: inherit;
  font-style: italic;
}

.eyebrow {
  color: rgba(241, 238, 231, 0.62);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
}

.hero-eyebrow > span {
  width: 3.5rem;
}

.hero-intro {
  max-width: 31rem;
  margin-top: 2.4rem;
  color: rgba(241, 238, 231, 0.64);
  font-size: 0.88rem;
  letter-spacing: 0.015em;
  line-height: 1.9;
}

.hero-actions {
  margin-top: 3rem;
}

.button {
  min-height: 3.4rem;
  border-radius: 0;
  box-shadow: none;
}

.button-primary {
  color: #090909;
  background: var(--ivory);
  box-shadow: none;
}

.button-primary:hover {
  background: #ffffff;
  box-shadow: none;
}

.text-link {
  color: rgba(241, 238, 231, 0.66);
  font-size: 0.66rem;
  letter-spacing: 0.11em;
}

.hero-facts {
  width: min(100%, 34rem);
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-facts > div {
  min-height: 6.4rem;
  padding: 1.25rem 1rem;
}

.hero-facts strong {
  color: rgba(241, 238, 231, 0.86);
}

.hero-facts span {
  color: rgba(241, 238, 231, 0.52);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
}

.scroll-cue {
  bottom: 1.5rem;
  color: rgba(241, 238, 231, 0.38);
}

.stagger-item,
html.js .reveal {
  filter: none;
}

html.js .reveal {
  transform: translateY(24px);
  transition-duration: 900ms;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.section-kicker {
  margin-bottom: clamp(3rem, 5vh, 4.5rem);
  gap: 1.25rem;
}

.section-kicker::after {
  width: 5.5rem;
}

.section h2 {
  font-size: clamp(5rem, 7.8vw, 8.5rem);
}

.story {
  color: #101010;
  background: var(--ivory);
}

.story::before {
  background: rgba(16, 16, 16, 0.18);
}

.story .section-kicker,
.story .eyebrow {
  color: rgba(16, 16, 16, 0.52);
}

.story .section-kicker span {
  color: #101010;
}

.story .section-kicker::after {
  background: rgba(16, 16, 16, 0.2);
}

.story-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.55fr);
  gap: clamp(4rem, 10vw, 11rem);
  align-items: center;
}

.story-heading h2,
.story-heading h2 em {
  color: #101010;
}

.story-copy {
  max-width: 31rem;
  padding-top: 0;
}

.story-copy p {
  color: rgba(16, 16, 16, 0.63);
  font-size: 0.88rem;
  line-height: 1.9;
}

.story-copy .story-lead {
  color: #101010;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.42;
}

.maker-quote {
  margin: 2.75rem 0 1.5rem;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(16, 16, 16, 0.28);
  border-left: 0;
  color: #101010;
  font-size: clamp(1.6rem, 2.2vw, 2.15rem);
  font-style: normal;
  line-height: 1.25;
}

.story-signature strong {
  color: #101010;
}

.story-signature span {
  color: rgba(16, 16, 16, 0.46);
}

.story .line-link {
  border-color: rgba(16, 16, 16, 0.32);
  color: #101010;
}

.story-values {
  margin-top: clamp(3rem, 5vh, 4.5rem);
  border-top: 1px solid rgba(16, 16, 16, 0.2);
  border-bottom: 1px solid rgba(16, 16, 16, 0.2);
  background: transparent;
  box-shadow: none;
}

.value-card {
  min-height: auto;
  padding: 1.6rem clamp(1rem, 2vw, 2.2rem);
}

.value-card:first-child {
  padding-left: 0;
}

.value-card:last-child {
  padding-right: 0;
}

.value-card + .value-card {
  border-left: 1px solid rgba(16, 16, 16, 0.14);
}

.value-card svg {
  display: none;
}

.value-card p {
  margin: 0;
  color: #101010;
  font-size: 1.25rem;
}

.value-card p span {
  color: rgba(16, 16, 16, 0.42);
}

.collections {
  background: #050505;
}

.section-heading-row {
  margin-bottom: clamp(3rem, 5vh, 4.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.38fr);
  align-items: end;
}

.section-heading-row p {
  max-width: 29rem;
  color: rgba(241, 238, 231, 0.54);
  font-size: 0.83rem;
  line-height: 1.85;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: minmax(26rem, 44vh);
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
}

.collection-cactus,
.collection-animal,
.collection-colour,
.collection-chillum {
  grid-column: auto;
  grid-row: auto;
}

.collection-card {
  min-width: 0;
  min-height: 0;
  padding: 1.5rem;
  border-radius: 0;
  background: #080808;
  box-shadow: none;
}

.collection-card:hover {
  box-shadow: none;
  transform: none;
}

.collection-image img {
  filter: saturate(0.76) brightness(0.72) contrast(1.08);
  transform: scale(1.01);
}

.collection-card:hover .collection-image img {
  filter: saturate(0.9) brightness(0.88) contrast(1.05);
  transform: scale(1.025);
}

.collection-card::after {
  background: linear-gradient(180deg, rgba(3, 3, 3, 0.34), rgba(3, 3, 3, 0.04) 48%, rgba(3, 3, 3, 0.92));
}

.collection-card-top {
  font-size: 0.54rem;
  letter-spacing: 0.18em;
}

.collection-card-copy p {
  color: rgba(241, 238, 231, 0.54);
  font-size: 0.53rem;
  letter-spacing: 0.2em;
}

.collection-card-copy h3,
.collection-animal h3,
.collection-colour h3 {
  font-size: clamp(2.3rem, 3vw, 3.6rem);
  line-height: 0.9;
}

.craft {
  background: #0a0a0a;
}

.craft::before {
  display: none;
}

.craft-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(28rem, 0.68fr);
  gap: clamp(5rem, 9vw, 10rem);
}

.craft-visual {
  min-height: min(68vh, 48rem);
}

.craft-image {
  inset: 0;
  border-radius: 0;
  background-position: 80% center;
  background-size: cover;
  box-shadow: none;
}

.craft-badge {
  display: none;
}

.craft-copy .section-kicker {
  margin-bottom: clamp(3.5rem, 5vh, 4.5rem);
}

.craft-intro {
  max-width: 31rem;
  color: rgba(241, 238, 231, 0.56);
  font-size: 0.86rem;
  line-height: 1.9;
}

.process-list {
  margin-top: 3.5rem;
}

.process-list li {
  padding: 1.6rem 0;
}

.process-list h3 {
  font-size: 1.55rem;
}

.gallery {
  color: #101010;
  background: #e9e5dc;
}

.gallery .section-kicker,
.gallery .section-kicker span,
.gallery-heading,
.gallery-heading h2,
.gallery-heading h2 em {
  color: #101010;
}

.gallery .section-kicker::after {
  background: rgba(16, 16, 16, 0.2);
}

.gallery-heading {
  margin-bottom: clamp(3rem, 5vh, 4.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.38fr);
}

.gallery-heading > p {
  color: rgba(16, 16, 16, 0.56);
  font-size: 0.83rem;
  line-height: 1.85;
}

.gallery-stage {
  border-radius: 0;
  background: #0a0a0a;
  box-shadow: none;
}

.gallery-stage img {
  height: min(50vh, 38rem);
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.06) brightness(0.86);
}

.gallery-stage figcaption {
  padding: 1.4rem 1.6rem;
  font-size: 0.52rem;
}

.contact {
  min-height: 100svh;
  background: #050505;
}

.contact::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.88) 43%, rgba(5, 5, 5, 0.38) 72%, rgba(5, 5, 5, 0.54) 100%),
    url("assets/aurora-hero-v2.png") 70% center / cover no-repeat;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.88) 43%, rgba(5, 5, 5, 0.38) 72%, rgba(5, 5, 5, 0.54) 100%),
    image-set(url("assets/aurora-hero-v2.webp") type("image/webp"), url("assets/aurora-hero-v2.png") type("image/png"))
      70% center / cover no-repeat;
  filter: saturate(0.65) brightness(0.66);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(26rem, 0.62fr);
  gap: clamp(5rem, 10vw, 11rem);
}

.contact-copy h2 {
  font-size: clamp(5rem, 7.8vw, 8.5rem);
}

.contact-copy > p:last-child {
  max-width: 31rem;
  color: rgba(241, 238, 231, 0.56);
  font-size: 0.86rem;
  line-height: 1.9;
}

.enquiry-form {
  padding: 0 0 0 clamp(2rem, 5vw, 6rem);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.enquiry-form label > span {
  color: rgba(241, 238, 231, 0.48);
  letter-spacing: 0.18em;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  border-bottom-color: rgba(255, 255, 255, 0.26);
}

.form-footer {
  margin-top: 1.25rem;
}

.site-footer {
  padding-top: 5.5rem;
  background: #020202;
}

@media (max-width: 1100px) {
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(25rem, 42vh));
  }

  .craft-grid {
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.72fr);
    gap: 4rem;
  }
}

@media (max-width: 900px) {
  html {
    scroll-snap-type: none;
  }

  .site-header {
    top: 0;
  }

  .nav-shell {
    padding: 0;
    border-radius: 0;
  }

  .menu-button {
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .mobile-nav {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    background: rgba(5, 5, 5, 0.98);
    box-shadow: none;
  }

  .mobile-nav .mobile-nav-cta {
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 0;
    color: var(--ivory);
    background: transparent;
  }

  .story-grid,
  .section-heading-row,
  .gallery-heading,
  .craft-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .craft-grid,
  .contact-grid {
    gap: 4rem;
  }

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

  .story .value-card:nth-child(n + 3) {
    border-top: 1px solid rgba(16, 16, 16, 0.14);
  }

  .craft-visual {
    min-height: 66vh;
  }

  .contact-grid {
    align-items: start;
  }

  .enquiry-form {
    padding: 3rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }
}

@media (max-width: 700px) {
  :root {
    --page-gutter: 1rem;
    --section-space: 6.5rem;
  }

  .section {
    min-height: 100svh;
  }

  /* iOS Safari zooms the whole page when a focused field is under 16px.
     Keep form controls at exactly 1rem on phones to suppress that. */
  .enquiry-form input,
  .enquiry-form select,
  .enquiry-form textarea {
    font-size: 1rem;
  }

  .hero-inner {
    padding-top: 9rem;
    padding-bottom: 5.5rem;
    grid-template-columns: 1fr;
  }

  .hero-media img {
    object-position: 72% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(2, 2, 2, 0.82), rgba(2, 2, 2, 0.24)),
      linear-gradient(0deg, rgba(2, 2, 2, 0.98) 0%, rgba(2, 2, 2, 0.78) 48%, rgba(2, 2, 2, 0.3) 82%, rgba(2, 2, 2, 0.5) 100%);
  }

  .hero h1 {
    font-size: clamp(3.75rem, 17vw, 5.15rem);
  }

  .hero-facts {
    display: none;
  }

  .section h2,
  .contact-copy h2 {
    font-size: clamp(3.55rem, 15vw, 4.8rem);
  }

  .story-values {
    grid-template-columns: 1fr 1fr;
  }

  .value-card,
  .value-card:first-child,
  .value-card:last-child {
    padding: 1.3rem;
  }

  .value-card:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .value-card:nth-child(n + 3) {
    border-top: 1px solid rgba(16, 16, 16, 0.14);
  }

  .collection-grid {
    display: flex;
    margin-inline: -1rem;
    padding: 0 1rem 1rem;
    gap: 1px;
    overflow-x: auto;
    border: 0;
    background: transparent;
    scroll-snap-type: x mandatory;
  }

  .collection-card {
    min-width: 82vw;
    min-height: 68vh;
    scroll-snap-align: center;
  }

  .craft-visual {
    min-height: 70vh;
  }

  .gallery-stage img {
    height: 68vh;
    aspect-ratio: auto;
    object-position: 52% center;
  }

  .contact::before {
    background-position: 68% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-snap-type: none;
  }
}

/* Section-specific editorial imagery */
.story-visual {
  width: min(100%, 34rem);
  height: auto;
  aspect-ratio: 3 / 2;
  margin: clamp(2.5rem, 5vh, 4rem) 0 0;
  overflow: hidden;
  background: #e9e1d2;
}

.story-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 54%;
  filter: saturate(0.72) contrast(0.98) brightness(1.01);
  transition: transform 900ms cubic-bezier(0.2, 0, 0, 1), filter 900ms ease;
}

.story-visual:hover img {
  filter: saturate(0.84) contrast(1) brightness(1.02);
  transform: scale(1.018);
}

.collection-cactus .collection-image img,
.collection-animal .collection-image img,
.collection-colour .collection-image img,
.collection-chillum .collection-image img {
  padding: clamp(1rem, 1.8vw, 2rem) 0.5rem clamp(5.5rem, 8vh, 7rem);
  object-fit: contain;
  object-position: 50% 50%;
}

.craft-visual {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.craft-image {
  background-color: #030303;
  background-position: center;
  background-size: contain;
}

.gallery-stage img {
  object-fit: contain;
  object-position: center;
}

@media (max-width: 900px) {
  .story-visual {
    width: 100%;
    height: auto;
  }

  .craft-visual {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 700px) {
  .story-visual {
    height: auto;
    margin-top: 2rem;
  }

  .collection-cactus .collection-image img,
  .collection-animal .collection-image img,
  .collection-colour .collection-image img,
  .collection-chillum .collection-image img {
    padding: 1.25rem 0.35rem 6rem;
    object-fit: contain;
    object-position: center;
  }

  .craft-image {
    background-position: center;
    background-size: contain;
  }

  .gallery-stage img {
    object-fit: contain;
    object-position: center;
  }
}
