:root {
  --ink: #190f13;
  --paper: #fff8ee;
  --cream: #f4e4cb;
  --copper: #b35f36;
  --wine: #5c1f1d;
  --teal: #123f3b;
  --gold: #d7a85f;
  --muted: #75655e;
  --line: rgba(25, 15, 19, 0.13);
  --shadow: 0 26px 80px rgba(42, 20, 12, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  padding: 10px 12px;
  border: 1px solid rgba(255, 248, 238, 0.24);
  border-radius: 999px;
  background: rgba(25, 15, 19, 0.72);
  color: #fff8ee;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
  transition: background 180ms ease, box-shadow 180ms ease;
  animation: headerDrop 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-header.is-scrolled {
  background: rgba(25, 15, 19, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 248, 238, 0.36);
}

.nav-links {
  display: flex;
  gap: 8px;
  padding: 0 12px;
}

.nav-links a,
.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 248, 238, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-cta:hover {
  background: rgba(255, 248, 238, 0.12);
  color: #fff;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: #fff8ee;
  color: var(--ink);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 40px;
  min-height: 100vh;
  padding: 150px max(28px, calc((100vw - 1120px) / 2)) 82px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(25, 15, 19, 0.98), rgba(92, 31, 29, 0.92) 48%, rgba(18, 63, 59, 0.92)),
    radial-gradient(circle at 78% 22%, rgba(215, 168, 95, 0.22), transparent 28%),
    linear-gradient(180deg, #190f13, #123f3b);
  color: #fff8ee;
  background-position: center calc(50% + var(--parallax-y, 0px));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, transparent, var(--paper));
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at calc(28% + var(--pointer-x, 0px)) calc(32% + var(--pointer-y, 0px)), rgba(215, 168, 95, 0.2), transparent 23%),
    linear-gradient(90deg, transparent, rgba(255, 248, 238, 0.08), transparent);
  mix-blend-mode: screen;
  opacity: 0.75;
  transform: translateX(-18%);
  animation: lightSweep 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 690px;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4rem, 9vw, 8.4rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero p {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 248, 238, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.36), transparent 80%);
  transform: translateX(-120%);
  transition: transform 620ms ease;
}

.button:hover::after {
  transform: translateX(120%);
}

.button-primary {
  background: var(--gold);
  color: #21110b;
  box-shadow: 0 18px 42px rgba(215, 168, 95, 0.32);
}

.button-secondary {
  background: rgba(255, 248, 238, 0.12);
  color: #fff8ee;
  border: 1px solid rgba(255, 248, 238, 0.22);
}

.social-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.social-proof span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 248, 238, 0.18);
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.08);
  color: rgba(255, 248, 238, 0.76);
  font-size: 0.86rem;
}

.social-proof strong {
  color: #fff;
  font-size: 1.1rem;
}

.hero-art {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: end;
  width: min(420px, 100%);
  aspect-ratio: 0.78;
  border-radius: 8px;
  border: 1px solid rgba(255, 248, 238, 0.24);
  background:
    radial-gradient(circle at 22% 18%, rgba(215, 168, 95, 0.34), transparent 28%),
    linear-gradient(140deg, rgba(255, 248, 238, 0.16), rgba(255, 248, 238, 0.04));
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translate3d(calc(var(--pointer-x, 0px) * -0.015), calc(var(--pointer-y, 0px) * -0.015), 0);
  animation: floatFrame 6s ease-in-out infinite;
}

.hero-art > img {
  position: absolute;
  inset: 11%;
  width: 78%;
  height: 78%;
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(1.06) contrast(1.08);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.32);
  animation: softPulse 5s ease-in-out infinite;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 248, 238, 0.22);
  border-radius: 50%;
}

.orbit-one {
  inset: 7%;
  animation: orbitTurn 18s linear infinite;
}

.orbit-two {
  inset: 19%;
  transform: rotate(-18deg);
  animation: orbitTurnReverse 16s linear infinite;
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 248, 238, 0.22);
  border-radius: 8px;
  background: rgba(25, 15, 19, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  animation: floatCard 5.5s ease-in-out infinite;
}

.floating-card span {
  color: rgba(255, 248, 238, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-card strong {
  font-size: 1.05rem;
}

.card-video {
  top: 16%;
  left: 18px;
}

.card-gift {
  right: 18px;
  bottom: 14%;
  animation-delay: -2.2s;
}

.intro-band {
  padding: 34px max(28px, calc((100vw - 1120px) / 2));
  background: var(--paper);
}

.intro-band p {
  width: min(940px, 100%);
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.section {
  padding: 92px max(28px, calc((100vw - 1120px) / 2));
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading span,
.experience-copy span,
.founder-card span {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2,
.experience-copy h2,
.art-copy h2,
.founder-card h2,
.contact h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.visual-story {
  padding-top: 74px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: minmax(250px, 280px);
  gap: 16px;
  max-width: 1040px;
}

.story-card {
  position: relative;
  min-width: 0;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #2b1715;
  box-shadow: 0 18px 54px rgba(55, 31, 20, 0.12);
  transform-style: preserve-3d;
}

.story-card::before,
.art-card::before,
.service-card::before,
.founder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, transparent 22%, rgba(255, 248, 238, 0.24), transparent 72%);
  opacity: 0;
  transform: translateX(-120%);
  transition: transform 900ms ease, opacity 240ms ease;
  pointer-events: none;
}

.story-card:hover::before,
.art-card:hover::before,
.service-card:hover::before,
.founder-card:hover::before {
  opacity: 1;
  transform: translateX(120%);
}

.story-large {
  grid-row: span 2;
}

.story-wide {
  grid-column: span 2;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.04);
  transition: transform 500ms ease;
}

.story-card:hover img {
  transform: scale(1.035);
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(25, 15, 19, 0.82));
  pointer-events: none;
  z-index: 0;
}

.story-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 5px;
  color: #fff8ee;
}

.art-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  align-items: start;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(25, 15, 19, 0.98), rgba(92, 31, 29, 0.94) 48%, rgba(18, 63, 59, 0.92)),
    radial-gradient(circle at 88% 18%, rgba(215, 168, 95, 0.18), transparent 24%);
  color: #fff8ee;
}

.art-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(215, 168, 95, 0.12), transparent 42%),
    repeating-linear-gradient(115deg, rgba(255, 248, 238, 0.06) 0 1px, transparent 1px 18px);
  pointer-events: none;
}

.art-copy,
.art-rail {
  position: relative;
  z-index: 1;
}

.art-copy {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 20px;
}

.art-copy span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.art-copy p {
  margin: 0;
  color: rgba(255, 248, 238, 0.76);
  line-height: 1.72;
}

.art-copy .button {
  width: fit-content;
  margin-top: 8px;
}

.art-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: stretch;
  max-width: 760px;
}

.art-card {
  position: relative;
  min-height: 270px;
  margin: 0;
  border: 1px solid rgba(255, 248, 238, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 248, 238, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}

.art-card:nth-child(1) {
  grid-column: span 3;
  min-height: 520px;
}

.art-card:nth-child(2),
.art-card:nth-child(3),
.art-card:nth-child(4),
.art-card:nth-child(5) {
  grid-column: span 3;
}

.art-card:nth-child(3) {
  transform: translateY(34px);
}

.art-card:nth-child(4) {
  transform: translateY(-26px);
}

.art-card-dark {
  min-height: 360px;
}

.art-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 700ms ease;
}

.art-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.18) contrast(1.08);
}

.art-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(25, 15, 19, 0.84));
  pointer-events: none;
}

.art-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff8ee;
  font-weight: 900;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

.story-card figcaption strong {
  font-size: 1.18rem;
}

.story-card figcaption span {
  color: rgba(255, 248, 238, 0.76);
  line-height: 1.45;
}

.service-card {
  position: relative;
  min-height: 320px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 14px 46px rgba(55, 31, 20, 0.08);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.service-card:hover {
  border-color: rgba(179, 95, 54, 0.36);
  box-shadow: 0 30px 70px rgba(55, 31, 20, 0.14);
  transform: translateY(-8px);
}

.service-card.featured {
  background: var(--teal);
  color: #fff8ee;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 46px;
  border-radius: 50%;
  background: rgba(179, 95, 54, 0.12);
  color: var(--copper);
}

.featured .service-icon {
  background: rgba(255, 248, 238, 0.13);
  color: var(--gold);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 1.4rem;
  line-height: 1.12;
}

.service-card p,
.experience-copy p,
.timeline p,
.founder-card p,
.contact p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.featured p {
  color: rgba(255, 248, 238, 0.72);
}

.experience {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
  background: #f3e9dc;
}

.experience-copy {
  display: grid;
  gap: 18px;
}

.experience-copy ul {
  display: grid;
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.experience-copy li {
  padding: 14px 0;
  border-top: 1px solid rgba(25, 15, 19, 0.12);
  font-weight: 800;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 18px;
  padding: 24px;
  border: 1px solid rgba(25, 15, 19, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.74);
  transition: transform 220ms ease, background 220ms ease;
}

.timeline div:hover {
  background: #fffdf8;
  transform: translateX(8px);
}

.timeline strong {
  grid-row: span 2;
  color: var(--copper);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  line-height: 0.9;
}

.timeline span {
  font-weight: 900;
  font-size: 1.2rem;
}

.founder {
  background:
    linear-gradient(90deg, rgba(25, 15, 19, 0.96), rgba(92, 31, 29, 0.9)),
    radial-gradient(circle at 88% 24%, rgba(215, 168, 95, 0.18), transparent 24%);
}

.founder-card {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
  align-items: center;
  width: min(880px, 100%);
  padding: 30px;
  border: 1px solid rgba(255, 248, 238, 0.18);
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.1);
  color: #fff8ee;
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.founder-card img {
  width: 220px;
  height: 220px;
  border-radius: 8px;
  object-fit: cover;
}

.founder-card p {
  color: rgba(255, 248, 238, 0.76);
  max-width: 620px;
}

.reveal,
.reveal-group > * {
  opacity: 0;
  transform: translateY(36px) scale(0.985);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible,
.reveal-group.is-visible > * {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-group.is-visible > *:nth-child(2) {
  transition-delay: 90ms;
}

.reveal-group.is-visible > *:nth-child(3) {
  transition-delay: 180ms;
}

.reveal-group.is-visible > *:nth-child(4) {
  transition-delay: 270ms;
}

.reveal-group.is-visible > *:nth-child(5) {
  transition-delay: 360ms;
}

.art-rail.is-visible > .art-card:nth-child(3) {
  transform: translateY(34px);
}

.art-rail.is-visible > .art-card:nth-child(4) {
  transform: translateY(-26px);
}

.service-grid.is-visible > .service-card:hover {
  transform: translateY(-8px);
}

.tilt-card {
  will-change: transform;
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translate(-50%, -18px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes lightSweep {
  0%,
  100% {
    transform: translateX(-18%);
    opacity: 0.45;
  }
  50% {
    transform: translateX(18%);
    opacity: 0.78;
  }
}

@keyframes floatFrame {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -14px;
  }
}

@keyframes floatCard {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -9px;
  }
}

@keyframes softPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}

@keyframes orbitTurn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitTurnReverse {
  from {
    transform: rotate(-18deg);
  }
  to {
    transform: rotate(-378deg);
  }
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  padding: 92px max(28px, calc((100vw - 1120px) / 2));
  background: #153f40;
  color: #fff8ee;
  isolation: isolate;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/custom-art-event.jpg") center right / cover no-repeat;
  filter: blur(3px) saturate(1.1) contrast(1.03);
  transform: scale(1.02);
  z-index: 0;
}

.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 60, 62, 0.9) 0%, rgba(13, 60, 62, 0.68) 42%, rgba(20, 12, 15, 0.28) 100%),
    linear-gradient(0deg, rgba(20, 12, 15, 0.34), rgba(20, 12, 15, 0.08));
  z-index: 0;
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact p {
  margin-top: 22px;
  color: rgba(255, 248, 238, 0.72);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 248, 238, 0.28);
  border-radius: 8px;
  background: rgba(20, 12, 15, 0.24);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 248, 238, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 248, 238, 0.18);
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.1);
  color: #fff8ee;
  outline: 0;
  padding: 14px 15px;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form textarea {
  min-height: 118px;
  resize: vertical;
}

.contact-form ::placeholder {
  color: rgba(255, 248, 238, 0.46);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(28px, calc((100vw - 1120px) / 2));
  background: #140c0f;
  color: rgba(255, 248, 238, 0.78);
  font-weight: 800;
}

.footer p {
  margin: 0;
}

.footer-contact {
  display: grid;
  gap: 6px;
}

.footer-phone {
  display: inline-block;
  color: rgba(255, 248, 238, 0.58);
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 248, 238, 0.15);
  border-radius: 50%;
  background: rgba(255, 248, 238, 0.08);
  color: #fff8ee;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.footer-socials a:hover {
  background: rgba(229, 183, 95, 0.18);
  transform: translateY(-2px);
}

.footer-social-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.social-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

@media (max-width: 880px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }

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

  .menu-button {
    position: absolute;
    top: 10px;
    right: 12px;
    display: grid;
    flex: 0 0 42px;
    gap: 5px;
    width: 42px;
    height: 42px;
    justify-self: end;
    place-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 248, 238, 0.2);
    box-shadow: inset 0 0 0 1px rgba(255, 248, 238, 0.18);
    color: #fff8ee;
    z-index: 2;
  }

  .menu-button::before,
  .menu-button::after {
    content: "";
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .menu-button span {
    display: none;
  }

  .site-header.is-open .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    padding: 12px;
    border-radius: 18px;
    background: rgba(25, 15, 19, 0.95);
  }

  .site-header.is-open .nav-links a {
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 132px;
    gap: 30px;
  }

  .hero-art {
    justify-self: start;
    width: min(330px, calc(100vw - 40px));
    order: -1;
  }

  .service-grid,
  .story-grid,
  .art-showcase,
  .experience,
  .contact,
  .art-rail {
    grid-template-columns: 1fr;
  }

  .art-copy {
    position: relative;
    top: auto;
  }

  .art-card,
  .art-card:nth-child(1),
  .art-card:nth-child(2),
  .art-card:nth-child(3),
  .art-card:nth-child(4),
  .art-card:nth-child(5) {
    grid-column: auto;
    min-height: auto;
    aspect-ratio: 4 / 5;
    transform: none;
  }

  .story-grid {
    grid-auto-rows: auto;
  }

  .story-card,
  .story-large,
  .story-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .story-card {
    aspect-ratio: 4 / 5;
  }

  .story-wide {
    aspect-ratio: 1 / 1.18;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}

@media (max-width: 560px) {
  .brand span {
    max-width: 145px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-copy {
    max-width: calc(100vw - 40px);
    min-width: 0;
  }

  .hero p {
    max-width: 34ch;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    max-width: 34ch;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.35rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .floating-card {
    position: relative;
    inset: auto;
    margin: 12px;
    width: fit-content;
    max-width: calc(100% - 24px);
  }

  .card-gift {
    margin-left: auto;
  }

  .section,
  .contact,
  .intro-band {
    padding-left: 20px;
    padding-right: 20px;
  }

  .art-showcase {
    gap: 28px;
  }

  .art-copy .button {
    width: 100%;
  }

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

  .timeline strong {
    grid-row: auto;
  }

  .footer {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }
}

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

  .reveal,
  .reveal-group > * {
    opacity: 1;
    transform: none;
  }
}
