:root {
  --ink: #241f1c;
  --ink-soft: #4a433d;
  --muted: #6f675f;
  --paper: #f3f1ee;
  --paper-deep: #e7e2dc;
  --mist: #d5dde0;
  --sage: #9eae9c;
  --blush: #c9b0aa;
  --accent: #4f626c;
  --accent-deep: #3a4b53;
  --shop: #2a3438;
  --shop-soft: #3d4c52;
  --shop-glow: #c9b0aa;
  --line: rgba(36, 31, 28, 0.12);
  --shadow: 0 24px 60px rgba(36, 31, 28, 0.12);
  --font-brand: "Allura", cursive;
  --font-display: "Cormorant Infant", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

.page-wash {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 520px at 8% 12%, rgba(158, 174, 156, 0.22), transparent 60%),
    radial-gradient(700px 480px at 92% 18%, rgba(201, 176, 170, 0.2), transparent 58%),
    radial-gradient(800px 500px at 70% 70%, rgba(213, 221, 224, 0.35), transparent 55%),
    linear-gradient(180deg, #eef2f1 0%, var(--paper) 35%, #f7f5f2 70%, #e8eef0 100%);
}

.ink-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.ink-blob--contact {
  width: min(380px, 50vw);
  height: min(380px, 50vw);
  left: -6%;
  bottom: 5%;
  background: radial-gradient(circle, rgba(158, 174, 156, 0.5), transparent 70%);
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
}

h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
  position: relative;
  overflow: hidden;
}

.section__head {
  max-width: 38rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.section__head--wide {
  max-width: 46rem;
}

.section__lead {
  max-width: 40rem;
}

.brand__script {
  font-family: var(--font-brand);
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 400;
}

.brand__artist {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

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

.btn--primary {
  background: var(--accent);
  color: #f7f9fa;
}

.btn--primary:hover {
  background: var(--accent-deep);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(36, 31, 28, 0.28);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.35);
}

.btn--shop {
  background: var(--shop-glow);
  color: var(--shop);
  margin-top: 0.5rem;
}

.btn--shop:hover {
  background: #ddd0cb;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(243, 241, 238, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(243, 241, 238, 0.92);
}

.site-header__inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__list a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.25s ease;
}

.nav__list a:hover {
  color: var(--ink);
}

.nav__cta {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #f7f9fa !important;
}

.nav__toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  margin: 0.35rem auto;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 920px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #f8f5f1;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: heroKen 18s var(--ease) forwards;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 22, 20, 0.22) 0%, rgba(24, 22, 20, 0.18) 35%, rgba(24, 22, 20, 0.78) 100%),
    linear-gradient(90deg, rgba(24, 22, 20, 0.55) 0%, rgba(24, 22, 20, 0.2) 42%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(5rem, 12vw, 8rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  max-width: 40rem;
  margin-left: max(1.25rem, calc((100% - 1120px) / 2));
}

.hero__brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-brand);
  font-size: clamp(3.4rem, 8vw, 5.6rem);
  line-height: 0.9;
  color: #fff;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  animation: rise 1s var(--ease) both;
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  color: #fff;
  animation: rise 1s 0.12s var(--ease) both;
}

.hero__lead {
  margin: 0 0 1.75rem;
  max-width: 30rem;
  color: rgba(247, 245, 242, 0.88);
  font-size: 1.08rem;
  animation: rise 1s 0.22s var(--ease) both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: rise 1s 0.32s var(--ease) both;
}

.hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.hero .btn--primary {
  background: #f4f1ee;
  color: var(--ink);
}

.hero .btn--primary:hover {
  background: #fff;
}

/* Process */
.process {
  background:
    linear-gradient(180deg, rgba(213, 221, 224, 0.45), transparent 40%),
    linear-gradient(0deg, rgba(158, 174, 156, 0.12), transparent 35%);
}

.steps {
  list-style: none;
  margin: 0 0 clamp(3rem, 7vw, 5rem);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}

.steps__item {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 1.35rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(36, 31, 28, 0.06);
}

.steps__photo {
  margin: 0;
  overflow: hidden;
}

.steps__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.steps__num {
  display: block;
  margin: 1.15rem 1.25rem 0.35rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--blush);
}

.steps__item h3,
.steps__item p {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.steps__item p {
  margin-bottom: 1.4rem;
  font-size: 0.98rem;
}

.process__note {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
}

.process__note figure {
  margin: 0;
  overflow: hidden;
  border-radius: 1.1rem;
}

.process__note img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.process__note-photo img {
  object-position: center 62%;
}

/* About service */
.about {
  background: #f4efe9;
  border-block: 1px solid rgba(36, 31, 28, 0.06);
}

.about__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.about__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  opacity: 0.5;
  filter: saturate(0.75) contrast(0.95);
  transform: scale(1.04);
}

.about__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(244, 239, 233, 0.78) 0%, rgba(244, 239, 233, 0.45) 42%, rgba(244, 239, 233, 0.28) 100%),
    linear-gradient(180deg, rgba(247, 244, 241, 0.35) 0%, transparent 30%, rgba(240, 233, 228, 0.4) 100%);
}

.about__watercolor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}

.about__copy {
  position: relative;
  padding: 1.25rem 1.35rem;
  border-radius: 1.25rem;
  background: rgba(247, 244, 241, 0.55);
  backdrop-filter: blur(4px);
}

.about__points {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.about__points li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.about__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--blush);
}

.about__mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
}

.about__mosaic figure {
  margin: 0;
  overflow: hidden;
  border-radius: 1.15rem;
  box-shadow: var(--shadow);
}

.about__mosaic figure:first-child {
  grid-row: span 2;
}

.about__mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.about__mosaic figure:first-child img {
  aspect-ratio: auto;
  min-height: 100%;
}

/* Gallery — cooler band so it doesn’t blend with About */
.gallery {
  background:
    radial-gradient(800px 480px at 12% 20%, rgba(158, 174, 156, 0.18), transparent 55%),
    radial-gradient(600px 400px at 90% 80%, rgba(213, 221, 224, 0.45), transparent 50%),
    linear-gradient(180deg, #e4ebe9 0%, #e8eef0 45%, #e2e9ec 100%);
  box-shadow: inset 0 18px 40px rgba(36, 31, 28, 0.03);
}

.shell--gallery {
  width: min(1240px, calc(100% - 2.5rem));
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 1.15rem;
  background: var(--paper-deep);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--feature {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery__item--span2 {
  grid-column: span 2;
}

.gallery__item--tall img,
.gallery__item--feature img {
  min-height: 100%;
  aspect-ratio: 3 / 4;
}

.gallery__item--span2 img {
  aspect-ratio: 16 / 9;
  object-position: center 40%;
}

.gallery__item:not(.gallery__item--tall):not(.gallery__item--wide):not(.gallery__item--feature):not(.gallery__item--span2) img {
  aspect-ratio: 4 / 5;
}

.gallery__item--wide {
  grid-column: 1 / -1;
}

.gallery__item--wide img {
  aspect-ratio: 21 / 9;
  object-position: center 35%;
}

/* Offer */
.offer {
  color: #f7f4f0;
}

.offer__bg {
  position: absolute;
  inset: 0;
}

.offer__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.85);
}

.offer__wrap {
  position: relative;
  z-index: 1;
}

.offer .eyebrow {
  color: var(--blush);
}

.offer h2,
.offer .section__lead,
.offer .pricing__guests,
.offer .pricing__price {
  color: rgba(247, 244, 240, 0.92);
}

.offer .pricing__label {
  color: rgba(247, 244, 240, 0.62);
}

.offer .pricing__price strong {
  color: #fff;
}

.pricing {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pricing__item {
  padding: 1.75rem 1.5rem 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
}

.pricing__item--featured {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 1.25rem;
  padding: 1.85rem 1.6rem;
  backdrop-filter: blur(6px);
}

.pricing__label {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing__guests {
  margin: 0.85rem 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.pricing__price {
  margin: 0;
  font-size: 1.15rem;
}

.pricing__price strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.offer__cta {
  margin: 2.5rem 0 0;
}

.offer .btn--primary {
  background: #f4f1ee;
  color: var(--ink);
}

.offer .btn--primary:hover {
  background: #fff;
}

/* Shop — distinct band */
.shop {
  padding: 0;
  background: var(--shop);
  color: #f4f1ee;
}

.shop__inner {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
  background:
    radial-gradient(700px 420px at 15% 20%, rgba(201, 176, 170, 0.18), transparent 60%),
    radial-gradient(600px 400px at 90% 80%, rgba(158, 174, 156, 0.12), transparent 55%),
    linear-gradient(160deg, #243035 0%, var(--shop) 45%, #1f282c 100%);
}

.shop__intro {
  max-width: 40rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.shop h2 {
  color: #f7f4f0;
}

.shop__intro p {
  color: rgba(244, 241, 238, 0.78);
}

.shop__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.shop__tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1.15rem;
  text-decoration: none;
  min-height: 280px;
  isolation: isolate;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.shop__tile img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.shop__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(20, 24, 26, 0.88) 100%);
  z-index: 1;
}

.shop__tile span {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.15rem;
  z-index: 2;
  display: grid;
  gap: 0.25rem;
  color: #fff;
}

.shop__tile strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
}

.shop__tile em {
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.shop__tile:hover img {
  transform: scale(1.06);
}

.shop__tile--winietki img {
  object-position: center 92%;
  transform: scale(1.55);
  transform-origin: center 92%;
}

.shop__tile--winietki:hover img {
  transform: scale(1.62);
}

.shop__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.shop__quick a {
  color: rgba(244, 241, 238, 0.82);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(201, 176, 170, 0.55);
  padding-bottom: 0.1rem;
}

.shop__quick a:hover {
  color: #fff;
  border-bottom-color: var(--shop-glow);
}

/* Artist / O mnie — clearly separated */
.artist {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(4.5rem, 10vw, 7rem);
  background:
    linear-gradient(180deg, #dfe6e4 0%, #ebe6e1 40%, var(--paper) 100%);
}

.artist__frame {
  width: min(1180px, calc(100% - 1.5rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: clamp(520px, 70vh, 720px);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(36, 31, 28, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.artist__bg {
  position: relative;
  min-height: 100%;
}

.artist__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.artist__panel {
  background: rgba(247, 245, 242, 0.96);
  padding: clamp(2rem, 5vw, 3.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.artist__lead {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.artist__panel p {
  max-width: 38rem;
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: 1.5rem;
}

.social a {
  text-decoration: none;
  font-weight: 600;
  color: var(--accent-deep);
  border-bottom: 1px solid currentColor;
}

/* Contact */
.contact {
  padding-bottom: clamp(5rem, 12vw, 8rem);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact__photo {
  margin: 1.5rem 0 0;
  overflow: hidden;
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  max-width: 22rem;
}

.contact__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

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

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(36, 31, 28, 0.16);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.75);
  padding: 0.9rem 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79, 98, 108, 0.15);
}

.field textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-status {
  margin: 0;
  font-size: 0.95rem;
}

.form-status.is-success {
  color: #2f5d45;
}

.form-status.is-error {
  color: #8a3a32;
}

.contact-form .btn {
  justify-self: start;
}

.contact-form .btn[disabled] {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer__inner {
  display: grid;
  gap: 0.35rem;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.site-footer__brand .brand__script {
  font-size: 2.4rem;
  color: var(--ink);
}

.site-footer__meta {
  font-size: 0.82rem;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroKen {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

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

  .reveal,
  .hero__brand,
  .hero__title,
  .hero__lead,
  .hero__actions,
  .hero__media img {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .shop__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .about__grid,
  .process__note,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .artist__frame {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .artist__bg {
    min-height: 320px;
  }

  .steps,
  .pricing {
    grid-template-columns: 1fr;
  }

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

  .gallery__item--tall,
  .gallery__item--feature {
    grid-row: auto;
    grid-column: auto;
  }

  .gallery__item--span2 {
    grid-column: 1 / -1;
  }

  .gallery__item--wide {
    grid-column: 1 / -1;
  }

  .nav__toggle {
    display: inline-block;
  }

  .nav__list {
    position: absolute;
    right: 1.25rem;
    top: calc(var(--header-h) - 0.35rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-width: 14rem;
    padding: 0.75rem;
    border-radius: 1rem;
    background: rgba(247, 245, 242, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav.is-open .nav__list {
    display: flex;
  }

  .nav__list a {
    padding: 0.8rem 0.9rem;
    border-radius: 0.7rem;
  }

  .nav__cta {
    text-align: center;
  }

  .hero__content {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    width: auto;
  }
}

@media (max-width: 640px) {
  .gallery__grid,
  .shop__grid,
  .about__mosaic {
    grid-template-columns: 1fr;
  }

  .gallery__item--feature,
  .gallery__item--tall,
  .gallery__item--span2,
  .gallery__item--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .about__mosaic figure:first-child {
    grid-row: auto;
  }

  .hero {
    min-height: 88vh;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .gallery__item--wide img {
    aspect-ratio: 16 / 9;
  }
}
