:root {
  --ink: #0e0d13;
  --midnight: #181832;
  --midnight-soft: #24233d;
  --paper: #ede5da;
  --paper-quiet: #e4ddd3;
  --craft: #686867;
  --tradition: #aeaba5;
  --art: #f29c32;
  --clay: #aeaba5;
  --clay-deep: #686867;
  --terracotta: #f29c32;
  --line: rgba(24, 24, 50, 0.16);
  --line-dark: rgba(245, 240, 231, 0.2);
  --shadow: 0 24px 70px rgba(28, 22, 14, 0.18);
  --shadow-dark: 0 24px 80px rgba(0, 0, 0, 0.32);
  --font-display: "Montserrat", Avenir, "Helvetica Neue", Arial, sans-serif;
  --font-body: "Montserrat", Avenir, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.78, 0.22, 1);
  --max: 1420px;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("./assets/fonts/Montserrat-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/Montserrat-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./assets/fonts/Montserrat-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./assets/fonts/Montserrat-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/fonts/Montserrat-Bold.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.45;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.075;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 25% 15%, rgba(24, 24, 50, 0.16) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 60%, rgba(143, 95, 69, 0.16) 0 1px, transparent 1.5px),
    linear-gradient(100deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.06));
  background-size: 34px 34px, 41px 41px, 100% 100%;
  animation: grainDrift 16s steps(6) infinite;
}

body.is-menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  top: 18px;
  left: 18px;
  z-index: 1000;
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.opening {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(185, 154, 120, 0.13), transparent 36%),
    var(--midnight);
  transition: opacity 700ms var(--ease), visibility 700ms var(--ease);
}

.opening__arch {
  display: grid;
  place-items: center;
  width: min(42vw, 390px);
  aspect-ratio: 0.78;
  border: 1px solid rgba(245, 240, 231, 0.28);
  border-bottom-color: transparent;
  border-radius: 999px 999px 0 0;
  clip-path: inset(100% 0 0 0);
  animation: openingArch 1300ms var(--ease) 140ms forwards;
}

.opening__arch img {
  width: min(48%, 180px);
  opacity: 0;
  transform: translateY(12px);
  animation: openingLogo 1200ms var(--ease) 420ms forwards;
}

body.is-ready .opening {
  opacity: 0;
  visibility: hidden;
  transition-delay: 900ms;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 800;
  display: none;
  align-items: center;
  gap: 0.55rem;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 180ms ease;
}

.cursor-dot::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid rgba(24, 24, 50, 0.42);
  box-shadow: 0 0 0 8px rgba(245, 240, 231, 0.14);
}

.cursor-dot span {
  min-width: max-content;
  padding: 0.34rem 0.48rem;
  color: var(--paper);
  background: rgba(24, 24, 50, 0.75);
  border: 1px solid rgba(245, 240, 231, 0.2);
  font-size: 0.69rem;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.cursor-dot.has-label span {
  opacity: 1;
  transform: translateX(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 1rem;
  width: min(calc(100% - 36px), var(--max));
  min-height: 74px;
  margin: 18px auto 0;
  padding: 0 1.45rem;
  color: var(--midnight);
  background: rgba(245, 240, 231, 0.84);
  border: 1px solid rgba(24, 24, 50, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 36px rgba(18, 18, 32, 0.08);
  transition: background 260ms ease, border-color 260ms ease, color 260ms ease;
}

.site-header.on-dark {
  color: var(--paper);
  background: rgba(24, 24, 50, 0.72);
  border-color: rgba(245, 240, 231, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 96px;
  height: 34px;
  min-height: 34px;
}

.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__logo--beige,
.site-header.on-dark .brand__logo--blue {
  display: none;
}

.site-header.on-dark .brand__logo--beige {
  display: block;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 3.8rem);
  font-size: 0.74rem;
}

.site-nav--soon {
  min-height: 1px;
}

.site-nav a,
.site-footer a,
.text-link {
  text-decoration: none;
}

.site-nav a {
  position: relative;
  padding: 0.45rem 0;
}

.site-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 0.7rem;
}

.icon-button,
.language-toggle,
.filter-button,
.product-card__body button,
.signup-form button,
.contact-form button,
.lightbox button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 240ms var(--ease);
}

.is-menu-open .menu-toggle span:first-child {
  transform: translateY(3px) rotate(35deg);
}

.is-menu-open .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-35deg);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  min-width: 74px;
  padding: 0 0.5rem;
  font-size: 0.72rem;
}

main {
  background: var(--paper);
}

section {
  position: relative;
  isolation: isolate;
}

.section-dark {
  color: var(--paper);
  background:
    radial-gradient(circle at 22% 24%, rgba(185, 154, 120, 0.11), transparent 25%),
    linear-gradient(145deg, var(--midnight), #10101e 92%);
}

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.section-clay {
  color: var(--midnight);
  background:
    linear-gradient(110deg, rgba(245, 240, 231, 0.78), rgba(238, 230, 216, 0.58)),
    radial-gradient(circle at 20% 30%, rgba(143, 95, 69, 0.18), transparent 34%),
    var(--clay);
}

.hero {
  display: grid;
  grid-template-columns: minmax(290px, 0.78fr) minmax(300px, 1fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
  min-height: 100svh;
  padding: clamp(8rem, 15vw, 12rem) clamp(1.3rem, 4vw, 5rem) clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(2rem, 9vw, 11rem);
  bottom: 0;
  width: 1px;
  height: 34%;
  background: rgba(245, 240, 231, 0.34);
}

.hero__media {
  justify-self: end;
  width: min(100%, 440px);
  height: min(72svh, 720px);
  opacity: 0;
  transform: translateY(26px);
  animation: heroImageReveal 1100ms var(--ease) 1450ms forwards;
}

.arch-frame {
  position: relative;
  overflow: hidden;
  border-radius: 999px 999px 0 0;
  box-shadow: var(--shadow-dark);
}

.arch-frame::before {
  content: "";
  position: absolute;
  inset: 10px 10px 0;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(245, 240, 231, 0.48);
  border-bottom: 0;
  border-radius: inherit;
}

.section-light .arch-frame::before {
  border-color: rgba(24, 24, 50, 0.18);
}

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

.hero__content {
  align-self: center;
  max-width: 670px;
  padding-bottom: 4vh;
}

.hero-logo {
  margin: 0;
  width: min(52vw, 560px);
}

.hero-logo img {
  width: 100%;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.18));
}

.hero__content p {
  max-width: 430px;
  margin: 2rem 0 0;
  color: rgba(245, 240, 231, 0.72);
  font: 300 clamp(1.15rem, 2vw, 1.55rem) / 1.5 var(--font-display);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2rem;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  padding-bottom: 0.3rem;
  font-size: 0.82rem;
}

.text-link::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 16px;
  border: 1px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  opacity: 0.55;
}

.text-link--quiet {
  opacity: 0.72;
}

.hero__index {
  position: absolute;
  bottom: clamp(2rem, 5vw, 4rem);
  left: clamp(1.3rem, 4vw, 5rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(245, 240, 231, 0.68);
  font-size: 0.8rem;
}

.hero__index span:nth-child(2) {
  width: 48px;
  height: 1px;
  background: currentColor;
  opacity: 0.38;
}

.collection-story {
  padding: clamp(5.5rem, 11vw, 10rem) clamp(1.3rem, 5vw, 6rem);
}

.arch-wipe::before {
  content: "";
  position: absolute;
  top: -72px;
  left: 50%;
  z-index: -1;
  width: min(52vw, 520px);
  height: 144px;
  border: 1px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  opacity: 0.09;
  transform: translateX(-50%);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(290px, 1fr) minmax(230px, 0.75fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  max-width: var(--max);
  margin: 0 auto;
}

.section-kicker {
  max-width: var(--max);
  margin: 0 auto 1.1rem;
  color: var(--clay-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-dark .section-kicker {
  color: rgba(245, 240, 231, 0.68);
}

.story-copy h2,
.section-heading h2,
.journal__copy h2,
.timeline-section__intro h2,
.soon h2 {
  margin: 0;
  font: 300 clamp(2.2rem, 5vw, 5.8rem) / 1.05 var(--font-display);
}

.story-copy p,
.soon p {
  max-width: 420px;
  margin: 1.4rem 0 0;
  color: rgba(23, 23, 30, 0.68);
  font-weight: 300;
  line-height: 1.5;
}

.story-image {
  width: 100%;
  aspect-ratio: 0.82;
  box-shadow: var(--shadow);
}

.story-image img {
  object-position: 48% center;
}

.story-steps {
  display: grid;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.story-steps li {
  position: relative;
  padding-inline-start: 3rem;
}

.story-steps li::before {
  content: "";
  position: absolute;
  top: 2rem;
  bottom: -1.2rem;
  inset-inline-start: 0.8rem;
  width: 1px;
  background: var(--line);
}

.story-steps li:last-child::before {
  display: none;
}

.story-steps span {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  color: rgba(23, 23, 30, 0.42);
  font-size: 0.76rem;
}

.story-steps h3 {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.story-steps p {
  margin: 0;
  color: rgba(23, 23, 30, 0.62);
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.6;
}

.products,
.gallery-section,
.journal {
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1.3rem, 5vw, 6rem);
  border-top: 1px solid rgba(24, 24, 50, 0.12);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto clamp(2rem, 5vw, 4.5rem);
}

.section-heading h2 {
  max-width: 620px;
  font-size: clamp(2rem, 4vw, 4.8rem);
}

.section-heading .section-kicker {
  margin-inline: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  max-width: var(--max);
  margin: 0 auto;
}

.product-card {
  position: relative;
  display: grid;
  min-height: 540px;
  background: rgba(255, 252, 246, 0.62);
  border: 1px solid rgba(24, 24, 50, 0.14);
  box-shadow: 0 18px 45px rgba(28, 22, 14, 0);
  overflow: hidden;
  transition: transform 460ms var(--ease), box-shadow 460ms var(--ease), border-color 460ms var(--ease);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
  z-index: 2;
  width: 28px;
  height: 42px;
  border: 1px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms ease, transform 300ms var(--ease);
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-7px);
  border-color: rgba(24, 24, 50, 0.28);
  box-shadow: var(--shadow);
}

.product-card:hover::before,
.product-card:focus-within::before {
  opacity: 0.36;
  transform: translateY(0);
}

.product-card__image {
  height: 390px;
  overflow: hidden;
  background: var(--paper-quiet);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease), filter 500ms ease;
}

.product-card:hover img,
.product-card:focus-within img {
  transform: scale(1.045);
  filter: saturate(0.92) contrast(1.04);
}

.product-card__image--bowl img {
  object-position: 10% center;
}

.product-card__image--jug img {
  object-position: 54% center;
}

.product-card__body {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  min-height: 118px;
  padding: 1.05rem 1.1rem;
}

.product-card h3 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
}

.product-card p {
  margin: 0.35rem 0 0;
  color: rgba(23, 23, 30, 0.62);
  font-size: 0.8rem;
  font-weight: 300;
}

.product-card__body button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(24, 24, 50, 0.22);
  font-size: 1.2rem;
  line-height: 1;
  transition: background 260ms ease, color 260ms ease, transform 260ms var(--ease);
}

.product-card:hover .product-card__body button,
.product-card:focus-within .product-card__body button {
  color: var(--paper);
  background: var(--midnight);
  transform: rotate(45deg);
}

.product-card__details {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 1rem;
  color: var(--paper);
  background: rgba(24, 24, 50, 0.9);
  transform: translateY(calc(100% + 1.2rem));
  transition: transform 450ms var(--ease);
}

.product-card:hover .product-card__details,
.product-card:focus-within .product-card__details {
  transform: translateY(0);
}

.product-card__details div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(245, 240, 231, 0.14);
  padding-bottom: 0.42rem;
}

.product-card__details div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.product-card__details dt,
.product-card__details dd {
  margin: 0;
  font-size: 0.72rem;
}

.product-card__details dt {
  color: rgba(245, 240, 231, 0.62);
}

.product-card__details dd {
  text-align: end;
}

.product-card--dark {
  color: var(--paper);
  background: var(--midnight);
  border-color: rgba(245, 240, 231, 0.12);
}

.product-card--dark p {
  color: rgba(245, 240, 231, 0.68);
}

.product-card--dark .product-card__body button {
  border-color: rgba(245, 240, 231, 0.26);
}

.product-card--dark:hover .product-card__body button,
.product-card--dark:focus-within .product-card__body button {
  color: var(--midnight);
  background: var(--paper);
}

.journal {
  display: grid;
  grid-template-columns: minmax(230px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 5vw, 5rem);
  max-width: none;
}

.journal__copy {
  align-self: start;
  max-width: 380px;
  margin-inline-start: clamp(0rem, 3vw, 3.5rem);
}

.journal__copy .section-kicker {
  margin-inline: 0;
}

.journal__copy .text-link {
  margin-top: 2rem;
}

.studio-panels {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr;
  grid-auto-rows: minmax(210px, 22vw);
  gap: 0.9rem;
}

.studio-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper-quiet);
}

.studio-panel--wide {
  grid-row: span 2;
}

.studio-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.studio-panel:hover img,
.studio-panel:focus-within img {
  transform: scale(1.04);
}

.studio-panel figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  color: var(--paper);
  font-size: 0.78rem;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.44);
}

.timeline-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 7vw, 8rem);
  padding: clamp(5rem, 10vw, 9rem) clamp(1.3rem, 5vw, 6rem);
}

.timeline-section__intro h2 {
  max-width: 470px;
  font-size: clamp(2.2rem, 4.4vw, 5rem);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
  align-items: center;
  margin-bottom: 2rem;
}

.timeline-section .filter-bar {
  grid-column: 2;
}

.filter-button {
  min-height: 36px;
  padding: 0 0.8rem;
  color: rgba(245, 240, 231, 0.68);
  border-bottom: 1px solid transparent;
  font-size: 0.75rem;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  color: var(--paper);
  border-color: currentColor;
}

.filter-bar--light .filter-button {
  color: rgba(23, 23, 30, 0.58);
}

.filter-bar--light .filter-button:hover,
.filter-bar--light .filter-button:focus-visible,
.filter-bar--light .filter-button.is-active {
  color: var(--midnight);
}

.timeline {
  grid-column: 2;
  border-top: 1px solid var(--line-dark);
}

.timeline-entry {
  border-bottom: 1px solid var(--line-dark);
}

.timeline-entry[hidden] {
  display: none;
}

.timeline-entry__summary {
  display: grid;
  grid-template-columns: 150px 1fr 32px;
  gap: 1.3rem;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  color: inherit;
  text-align: start;
}

.timeline-entry__date {
  color: rgba(245, 240, 231, 0.58);
  font-size: 0.82rem;
}

.timeline-entry strong {
  display: block;
  font: 700 1.08rem / 1.2 var(--font-display);
}

.timeline-entry small {
  display: block;
  margin-top: 0.3rem;
  color: rgba(245, 240, 231, 0.56);
  font-size: 0.74rem;
}

.timeline-entry__mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(245, 240, 231, 0.25);
  transition: transform 260ms var(--ease), background 260ms ease;
}

.timeline-entry.is-open .timeline-entry__mark {
  background: rgba(245, 240, 231, 0.08);
  transform: rotate(45deg);
}

.timeline-entry__details {
  display: grid;
  grid-template-columns: minmax(190px, 0.85fr) minmax(220px, 1fr);
  gap: 1.4rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 520ms var(--ease), opacity 360ms ease, padding 520ms var(--ease);
}

.timeline-entry.is-open .timeline-entry__details {
  max-height: 420px;
  padding-bottom: 1.4rem;
  opacity: 1;
}

.timeline-entry__details img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.timeline-entry__details p {
  margin: 0 0 1rem;
  color: rgba(245, 240, 231, 0.7);
  font-size: 0.88rem;
}

.gallery-section {
  overflow: hidden;
}

.masonry {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 140px;
  gap: 0.9rem;
  max-width: var(--max);
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  grid-row: span 2;
  min-height: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: var(--paper-quiet);
  text-align: start;
}

.gallery-item--tall {
  grid-row: span 4;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 500ms ease;
}

.gallery-item span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  color: var(--paper);
  font-size: 0.8rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms ease, transform 260ms var(--ease);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 15, 22, 0.58), transparent 48%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.035);
  filter: saturate(0.9) contrast(1.03);
}

.gallery-item:hover span,
.gallery-item:focus-visible span,
.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.soon {
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) minmax(260px, 1fr) minmax(290px, 0.95fr);
  gap: clamp(1.6rem, 5vw, 5rem);
  align-items: center;
  min-height: 330px;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.3rem, 5vw, 6rem);
  overflow: hidden;
}

.coming-page {
  min-height: 100svh;
  background: var(--midnight);
  overflow: hidden;
}

.coming-page .site-header,
.coming-hero {
  direction: ltr;
}

.coming-page .menu-toggle {
  display: none;
}

.coming-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 0.58fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 5rem);
  height: 100svh;
  min-height: 620px;
  max-height: 100svh;
  padding: clamp(6.2rem, 12vh, 8rem) clamp(1.3rem, 5vw, 6rem) clamp(1.8rem, 5vh, 3.2rem);
  overflow: hidden;
}

.coming-hero__texture {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(112deg, rgba(24, 24, 50, 0.92), rgba(104, 104, 103, 0.62) 54%, rgba(24, 24, 50, 0.82)),
    url("./assets/exhibition-gallery.png") center / cover no-repeat;
  transform: scale(1.04);
  animation: comingImageDrift 22s var(--ease) infinite alternate;
}

.coming-hero__texture::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 28%, rgba(174, 171, 165, 0.22), transparent 34%),
    radial-gradient(circle at 74% 70%, rgba(242, 156, 50, 0.08), transparent 28%),
    repeating-linear-gradient(94deg, rgba(237, 229, 218, 0.024) 0 1px, transparent 1px 20px);
  animation: clayShift 18s var(--ease) infinite alternate;
}

.coming-hero__mark {
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  bottom: clamp(0.5rem, 3vw, 2.4rem);
  width: min(30vw, 300px);
  opacity: 0.065;
}

.coming-hero__content {
  position: relative;
  max-width: 760px;
  direction: ltr;
  text-align: start;
}

html[dir="rtl"] .coming-hero__content {
  direction: rtl;
  text-align: right;
}

.coming-hero__logo {
  width: min(34vw, 330px);
  margin: 0 0 clamp(1.2rem, 3vh, 2.4rem);
}

.coming-hero__content h2 {
  margin: 0;
  max-width: 760px;
  font: 300 clamp(2.8rem, 6vw, 6.4rem) / 1.02 var(--font-display);
}

.coming-hero__content p {
  max-width: 430px;
  margin: clamp(0.9rem, 2vh, 1.4rem) 0 0;
  color: rgba(245, 240, 231, 0.7);
}

.coming-form-card {
  position: relative;
  align-self: center;
  justify-self: end;
  width: min(100%, 500px);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--paper);
  border: 1px solid rgba(237, 229, 218, 0.28);
  background:
    linear-gradient(145deg, rgba(24, 24, 50, 0.78), rgba(24, 24, 50, 0.48)),
    rgba(24, 24, 50, 0.56);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  direction: ltr;
}

.coming-form-card::before {
  content: "";
  position: absolute;
  top: -18px;
  inset-inline-start: 1.35rem;
  width: 46px;
  height: 68px;
  border: 1px solid rgba(237, 229, 218, 0.34);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  opacity: 0.72;
  pointer-events: none;
}

html[dir="rtl"] .coming-form-card {
  direction: rtl;
  text-align: right;
}

.contact-form__intro {
  padding-bottom: 1.05rem;
  border-bottom: 1px solid rgba(237, 229, 218, 0.18);
}

.contact-form__intro h3 {
  margin: 0;
  color: var(--paper);
  font: 400 clamp(1.2rem, 1.6vw, 1.55rem) / 1.2 var(--font-display);
}

.contact-form__intro p {
  max-width: 380px;
  margin: 0.55rem 0 0;
  color: rgba(237, 229, 218, 0.68);
  font-size: 0.86rem;
  line-height: 1.55;
}

.coming-form {
  width: 100%;
}

.signup-form--standalone {
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
  margin-top: 1.05rem;
}

.field {
  display: grid;
  gap: 0.3rem;
}

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

.field label {
  color: rgba(237, 229, 218, 0.72);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[dir="rtl"] .field label {
  letter-spacing: 0;
  text-transform: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.15rem 0 0.55rem;
  color: var(--paper);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(237, 229, 218, 0.36);
  border-radius: 0;
  font-size: 0.96rem;
  resize: vertical;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(237, 229, 218, 0.44);
}

.contact-form input:focus,
.contact-form textarea:focus {
  color: var(--paper);
  border-color: var(--terracotta);
  box-shadow: 0 8px 18px -18px rgba(242, 156, 50, 0.5);
  outline: 0;
}

.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: rgba(242, 156, 50, 0.94);
}

.contact-form textarea {
  min-height: 92px;
  padding-top: 0.3rem;
  line-height: 1.5;
}

.contact-submit {
  grid-column: 1 / -1;
  justify-self: start;
  min-height: 42px;
  margin-top: 0.25rem;
  padding: 0 0;
  color: var(--paper);
  background: transparent;
  border-bottom: 1px solid rgba(237, 229, 218, 0.8);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: transform 240ms var(--ease), border-color 240ms ease, color 240ms ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  color: var(--terracotta);
  border-color: var(--terracotta);
  transform: translateY(-1px);
}

html[dir="rtl"] .contact-submit {
  justify-self: end;
  letter-spacing: 0;
}

.coming-form button:disabled {
  cursor: progress;
  opacity: 0.68;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.coming-form-card .form-message {
  grid-column: 1 / -1;
  min-height: 1.45em;
  color: rgba(237, 229, 218, 0.7);
  font-size: 0.78rem;
}

.coming-form-card .form-message.is-error {
  color: #f4bd8c;
}


.soon::before {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: -1;
  background-image:
    linear-gradient(96deg, rgba(255, 255, 255, 0.28), rgba(111, 89, 70, 0.12)),
    repeating-linear-gradient(104deg, rgba(24, 24, 50, 0.04) 0 1px, transparent 1px 22px);
  animation: clayShift 18s var(--ease) infinite alternate;
}

.soon__arch {
  width: min(32vw, 230px);
  aspect-ratio: 0.72;
  border: 1px solid rgba(24, 24, 50, 0.38);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  opacity: 0.58;
}

.soon p {
  color: rgba(24, 24, 50, 0.66);
}

.signup-form {
  display: grid;
  grid-template-columns: 1fr 54px;
  gap: 0.5rem;
  align-items: start;
}

.signup-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 1rem;
  color: var(--midnight);
  background: rgba(255, 252, 246, 0.82);
  border: 1px solid rgba(24, 24, 50, 0.18);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.signup-form input:focus {
  border-color: var(--midnight);
  background: rgba(255, 252, 246, 0.96);
  box-shadow: 0 0 0 5px rgba(24, 24, 50, 0.08);
  outline: 0;
}

.signup-form button {
  min-height: 54px;
  color: var(--paper);
  background: var(--midnight);
  transition: transform 240ms var(--ease), background 240ms ease;
}

.signup-form button:hover,
.signup-form button:focus-visible {
  background: var(--terracotta);
  transform: translateX(2px);
}

.signup-form.is-complete input {
  border-color: rgba(24, 24, 50, 0.34);
  box-shadow: inset 0 0 0 1px rgba(24, 24, 50, 0.12);
}

.signup-form.is-complete button {
  animation: settleButton 760ms var(--ease);
}

.form-message {
  grid-column: 1 / -1;
  min-height: 1.3em;
  margin: 0.2rem 0 0;
  color: var(--midnight);
  font-size: 0.82rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 240ms ease, transform 240ms var(--ease);
}

.form-message.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem clamp(1.3rem, 5vw, 6rem);
  color: var(--midnight);
  background: var(--paper);
  border-top: 1px solid rgba(24, 24, 50, 0.12);
  font-size: 0.74rem;
}

.site-footer img {
  width: 86px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 3rem);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  place-items: center;
  padding: clamp(1rem, 3vw, 3rem);
  color: var(--paper);
  background: rgba(13, 13, 22, 0.92);
  backdrop-filter: blur(18px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  width: min(100%, 1120px);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background: rgba(245, 240, 231, 0.04);
}

.lightbox figcaption {
  margin-top: 1rem;
  color: rgba(245, 240, 231, 0.72);
  font-size: 0.85rem;
  text-align: center;
}

.lightbox button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: currentColor;
  border: 1px solid rgba(245, 240, 231, 0.24);
  font-size: 1.6rem;
}

.lightbox__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

[data-reveal].is-visible,
body.is-ready .hero__content[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

body.is-switching {
  transition: opacity 180ms ease;
}

html[dir="rtl"] body {
  font-family: "Montserrat", Tahoma, Arial, sans-serif;
}

html[dir="rtl"] .brand {
  letter-spacing: 0;
}

html[dir="rtl"] .site-nav a::after,
html[dir="rtl"] .text-link::after {
  transform-origin: right;
}

html[dir="rtl"] .signup-form button:hover,
html[dir="rtl"] .signup-form button:focus-visible {
  transform: translateX(-2px);
}

@keyframes openingArch {
  0% {
    clip-path: inset(100% 0 0 0);
    transform: translateY(18px);
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes openingLogo {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageReveal {
  from {
    clip-path: inset(100% 0 0 0 round 999px 999px 0 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0 0 0 round 999px 999px 0 0);
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes grainDrift {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 34px 16px, -24px 41px, 0 0;
  }
}

@keyframes clayShift {
  from {
    transform: translate3d(-1.4%, -1%, 0) scale(1.02);
  }
  to {
    transform: translate3d(1.4%, 1%, 0) scale(1.04);
  }
}

@keyframes comingImageDrift {
  from {
    transform: translate3d(-1.2%, -1%, 0) scale(1.04);
  }
  to {
    transform: translate3d(1.2%, 1%, 0) scale(1.07);
  }
}

@keyframes panelReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes settleButton {
  0% {
    transform: translateY(0);
  }
  38% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .cursor-dot {
    display: inline-flex;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 120px 1fr auto;
    min-height: 66px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: 88px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 1rem;
    color: var(--midnight);
    background: rgba(245, 240, 231, 0.96);
    border: 1px solid rgba(24, 24, 50, 0.12);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 240ms ease, transform 240ms var(--ease);
  }

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

  .site-nav a {
    padding: 0.95rem 0.4rem;
    border-bottom: 1px solid rgba(24, 24, 50, 0.1);
    font-size: 0.9rem;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero,
  .coming-hero,
  .story-grid,
  .timeline-section,
  .journal,
  .soon {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 7rem;
  }

  .hero__media {
    justify-self: center;
    width: min(82vw, 390px);
    height: min(64vh, 580px);
  }

  .hero__content {
    text-align: center;
  }

  .hero__content p,
  .hero__actions {
    justify-content: center;
    margin-inline: auto;
  }

  .coming-hero {
    align-items: center;
    height: auto;
    min-height: 100svh;
    max-height: none;
    padding-top: 7rem;
  }

  .coming-page {
    overflow: auto;
  }

  .coming-hero__logo {
    width: min(58vw, 300px);
  }

  .signup-form--standalone {
    width: 100%;
  }

  .coming-form-card {
    width: 100%;
    justify-self: stretch;
  }

  .hero__index,
  .hero::after {
    display: none;
  }

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

  .story-image {
    max-width: 560px;
    margin: 0 auto;
  }

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

  .product-card {
    min-height: auto;
  }

  .product-card__image {
    height: min(68vw, 440px);
  }

  .journal__copy {
    margin-inline-start: 0;
  }

  .timeline-section .filter-bar,
  .timeline {
    grid-column: 1;
  }

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

  .soon__arch {
    display: none;
  }

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

  .site-footer nav {
    justify-content: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 12px;
    padding: 0 0.9rem;
  }

  .brand {
    width: 82px;
  }

  .hero-logo {
    width: min(72vw, 360px);
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .story-copy h2,
  .section-heading h2,
  .journal__copy h2,
  .timeline-section__intro h2,
  .soon h2 {
    font-size: clamp(2.25rem, 11vw, 3.7rem);
  }

  .studio-panels,
  .masonry {
    grid-template-columns: 1fr;
  }

  .studio-panel--wide,
  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: auto;
    grid-row: span 2;
  }

  .timeline-entry__summary {
    grid-template-columns: 1fr 28px;
    gap: 0.8rem;
  }

  .timeline-entry__date {
    grid-column: 1 / -1;
  }

  .timeline-entry__details {
    grid-template-columns: 1fr;
  }

  .signup-form {
    grid-template-columns: 1fr 50px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .lightbox {
    grid-template-columns: 44px 1fr 44px;
    padding: 0.8rem;
  }

  .lightbox button {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .opening {
    display: none;
  }

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