/* ---------------------------------------------------------------------------
   Radu Denis — print store
   Colours, type and spacing all live in the variables below; change them here.
   --------------------------------------------------------------------------- */

:root {
  /* --- the site ---------------------------------------------------------- */
  --bg:        #0e0f13;   /* near-black, lifted off pure black */
  --bg-warm:   #121419;   /* the wash behind the top of a page */
  --bg-soft:   #16181e;   /* quiet bands, image beds */
  --bg-lift:   #1d2027;   /* cards, inputs */
  --ink:       #08090b;   /* the deep blocks: header on scroll, footer, CTA */
  --ink-soft:  #14161b;
  --text:      #e8e6e3;
  --text-soft: #9a9a9f;   /* 6.8:1 on the ground */
  --line:      rgba(232, 230, 227, .16);
  --line-soft: rgba(232, 230, 227, .08);
  --accent:    #d99a6c;   /* amber, sampled from the sunsets in the work */
  --accent-fg: #0e0f13;
  --shadow:    rgba(0, 0, 0, .55);

  /* On the dark blocks. */
  --on-ink:    #e8e6e3;
  --on-ink-soft:rgba(232, 230, 227, .62);

  /* --- the wall preview (a real room, so it stays light) ----------------- */
  --wall:           #ece2d1;
  --furniture:      #ded2bd;
  --furniture-dark: #bda98a;
  --floor:          #c9b394;
  --skirting:       #f3ece0;
  --frame:          #2b241b;
  --matte:          #ffffff;

  --sans: ui-sans-serif, -apple-system, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;

  --pad: clamp(1.25rem, 4vw, 4rem);
  --max: 1320px;
  --narrow: 68ch;
  --radius: 4px;
  --head-h: 4.5rem;
  --ease: cubic-bezier(.2, .7, .3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding-top: var(--head-h);
  background: var(--bg);
  background-image: linear-gradient(180deg, var(--bg-warm), var(--bg) 34rem);
  background-repeat: no-repeat;
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.has-hero { padding-top: 0; }
body.menu-open,
body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
[hidden] { display: none !important; }

/* Shown only where hovering is actually possible (i.e. not on a phone). */
@media (hover: none) { .hover-only { display: none; } }
a { color: inherit; }

::selection { background: var(--accent); color: var(--accent-fg); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--pad);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--accent);
  color: var(--accent-fg);
  padding: .7rem 1.1rem;
  text-decoration: none;
}
.skip:focus { left: 1rem; top: 1rem; }

/* --- shared type --------------------------------------------------------- */

.eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .6875rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: var(--accent);
  flex: 0 0 auto;
}

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: .98;
  letter-spacing: -.025em;
  margin: 0;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -.01em; }

.section-title {
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  line-height: 1.1;
  margin: 0;
}

.lede {
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  color: var(--text-soft);
  max-width: 54ch;
  margin: 1.25rem 0 0;
}

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section + .section { padding-top: 0; }
.section-head {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.section-head .lede { margin-top: .9rem; }

/* --- buttons ------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.6rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-fg);
  font: inherit;
  font-size: .875rem;
  letter-spacing: .04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .3s var(--ease), filter .2s, background .2s, color .2s, border-color .2s;
}
.btn:hover { filter: brightness(1.08); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--text); filter: none; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}
.link-arrow::after { content: "→"; transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--accent); }
.link-arrow:hover::after { transform: translateX(5px); }

/* --- header -------------------------------------------------------------- */

.site-head {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s, backdrop-filter .4s;
}

.site-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .55), transparent);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
body.has-hero .site-head::before { opacity: 1; }

/* Over the hero photograph the bar has no background of its own, so its type
   is white until the page scrolls and the bar turns solid. */
body.has-hero .site-head:not(.is-solid) .wordmark,
body.has-hero .site-head:not(.is-solid) .burger { color: #fff; }
body.has-hero .site-head:not(.is-solid) .head-nav > a { color: rgba(255, 255, 255, .82); }
body.has-hero .site-head:not(.is-solid) .head-nav > a:hover,
body.has-hero .site-head:not(.is-solid) .head-nav > a[aria-current="page"] { color: #fff; }

.site-head.is-solid {
  background: var(--ink);
  background: color-mix(in srgb, var(--ink) 94%, transparent);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom-color: rgba(0, 0, 0, .4);
  box-shadow: 0 10px 30px rgba(22, 20, 15, .22);
}

.site-head.is-solid .wordmark,
.site-head.is-solid .burger { color: var(--on-ink); }
.site-head.is-solid .head-nav > a { color: var(--on-ink-soft); }
.site-head.is-solid .head-nav > a:hover { color: var(--on-ink); }
.site-head.is-solid .head-nav > a[aria-current="page"] { color: var(--on-ink); }
.site-head.is-solid .head-nav > a[aria-current="page"]::after { background: var(--accent); }
.site-head.is-solid::before,
body.has-hero .site-head.is-solid::before { opacity: 0; }

.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--head-h);
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--pad);
  transition: height .4s var(--ease);
}
.site-head.is-solid .head-inner { height: 3.75rem; }

.wordmark {
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .9375rem;
  text-decoration: none;
  white-space: nowrap;
}

.head-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  font-size: .8125rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.head-nav a {
  position: relative;
  color: var(--text-soft);
  text-decoration: none;
  padding: .35rem 0;
  transition: color .2s;
}
.head-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.head-nav a:hover { color: var(--text); }
.head-nav a:hover::after { transform: scaleX(1); }
.head-nav a[aria-current="page"] { color: var(--text); }
.head-nav a[aria-current="page"]::after { transform: scaleX(1); background: var(--accent); }

.head-nav .btn { padding: .6rem 1.15rem; font-size: .75rem; letter-spacing: .1em; }
.head-nav .btn::after { display: none; }
.head-nav .btn:hover { color: var(--accent-fg); }

.lang-toggle {
  flex: 0 0 auto;
  margin-left: 1.25rem;
  padding: .4rem .7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: none;
  color: var(--text-soft);
  font: inherit;
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.lang-toggle:hover { color: var(--text); border-color: var(--text-soft); }

body.has-hero .site-head:not(.is-solid) .lang-toggle {
  color: rgba(255, 255, 255, .85);
  border-color: rgba(255, 255, 255, .35);
}
.site-head.is-solid .lang-toggle {
  color: var(--on-ink-soft);
  border-color: rgba(246, 242, 234, .28);
}
.site-head.is-solid .lang-toggle:hover { color: var(--on-ink); }

@media (max-width: 820px) {
  .lang-toggle { margin-left: auto; margin-right: .35rem; }
}

.burger {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  margin-right: -.6rem;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .35s var(--ease), opacity .2s;
}
body.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* the full-screen menu on small screens */
@media (max-width: 820px) {
  .burger { display: block; }

  .head-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: .5rem;
    padding: var(--head-h) var(--pad) var(--pad);
    background: var(--bg);
    font-size: 2rem;
    letter-spacing: 0;
    text-transform: none;
    font-family: var(--serif);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition: opacity .35s var(--ease), transform .45s var(--ease), visibility .35s;
  }
  body.menu-open .head-nav { opacity: 1; visibility: visible; transform: none; }

  .head-nav a { color: var(--text); padding: .5rem 0; }
  .head-nav a::after { display: none; }
  .head-nav a[aria-current="page"] { color: var(--accent); }
  .head-nav .btn { margin-top: 1.5rem; font-family: var(--sans); font-size: .875rem; }
}

/* --- hero ---------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}

.hero-frames { position: absolute; inset: 0; z-index: -2; }

.hero-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
}
.hero-frame.is-on { opacity: 1; }

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 9s linear;
}
.hero-frame.is-on img { transform: scale(1.15); }

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 6, 7, .55) 0%, rgba(6, 6, 7, .1) 35%, rgba(6, 6, 7, .82) 100%),
    linear-gradient(90deg, rgba(6, 6, 7, .6), transparent 60%);
}

.hero-inner {
  width: 100%;
  padding-top: calc(var(--head-h) + 4rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  color: #fff;                    /* it sits on a photograph, not on the page */
}

.hero-inner .eyebrow { color: rgba(244, 241, 236, .78); }

.hero h1 { max-width: 15ch; }

.hero p {
  max-width: 46ch;
  margin: 1.5rem 0 0;
  color: rgba(244, 241, 236, .8);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.25rem; }
.hero-actions .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .4); }
.hero-actions .btn-ghost:hover { background: rgba(255, 255, 255, .1); border-color: #fff; }

/* the caption bar along the bottom of the hero */
.hero-foot {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: clamp(1.5rem, 4vw, 2.75rem);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, .7);
}

.hero-caption { display: flex; align-items: center; gap: .9rem; min-width: 0; }
.hero-caption b { font-weight: 500; color: #fff; }
.hero-caption span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.hero-dots { display: flex; gap: .5rem; flex: 0 0 auto; }
.hero-dots button {
  width: 2.25rem;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: background .3s;
}
.hero-dots button.is-on { background: #fff; }

.hero-cue {
  position: absolute;
  left: 50%;
  bottom: 6.5rem;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  font-size: .625rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(244, 241, 236, .65);
  padding-bottom: 3.5rem;
}
.hero-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 2.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .7), transparent);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 720px) {
  .hero-cue { display: none; }
  .hero-foot { font-size: .6875rem; }
  .hero-caption b { display: none; }
}

/* --- page header (every page except home) -------------------------------- */

.page-head {
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line-soft);
}

.page-head-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}

@media (max-width: 820px) {
  .page-head-inner { grid-template-columns: 1fr; }
}

.page-head h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 1.03;
  margin: 0;
}

.page-head .lede { margin-top: 0; }

/* --- gallery grid -------------------------------------------------------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.85rem, 1.6vw, 1.75rem);
  scroll-margin-top: calc(var(--head-h) + 1rem);
}


@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .gallery { grid-template-columns: minmax(0, 1fr); }
}

/* the editorial three-up on the home page */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(.85rem, 1.6vw, 1.75rem);
}
.feature-grid .tile:first-child { grid-column: 1 / -1; }
.feature-grid .tile:first-child .tile-frame { aspect-ratio: 16 / 9; }
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: minmax(0, 1fr); }
  .feature-grid .tile:first-child .tile-frame { aspect-ratio: 4 / 5; }
}

/* --- a tile -------------------------------------------------------------- */

.tile {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.tile[hidden] { display: none; }

.tile-frame {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-soft);
  transition: box-shadow .4s var(--ease);
}

.tile:hover .tile-frame,
.tile:focus-visible .tile-frame { box-shadow: 0 26px 60px var(--shadow); }

.tile .tile-photo { transition: transform .9s var(--ease); }
.tile:hover .tile-photo { transform: scale(1.13); }

.tile:focus-visible { outline: none; }
.tile:focus-visible .tile-frame { outline: 2px solid var(--accent); outline-offset: 3px; }

/* Held slightly oversize so the script can drift it inside the frame as the
   page scrolls without ever showing an edge. */
.tile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}

.tile-cue {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%) scale(.9);
  padding: .55rem 1.1rem;
  border-radius: 999px;
  background: rgba(12, 12, 13, .72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: .6875rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .4s var(--ease);
}
.tile:hover .tile-cue,
.tile:focus-visible .tile-cue { opacity: 1; transform: translate(-50%, -50%) scale(1); }
@media (hover: none) { .tile-cue { display: none; } }

/* Reveal: the frame wipes open, the caption follows a beat later. Guarded by
   .js so the photos can never get stuck invisible. */
.js .tile-frame { clip-path: inset(0 0 100% 0 round var(--radius)); }
.js .tile-meta { opacity: 0; transform: translateY(10px); }

.js .tile.is-in .tile-frame {
  clip-path: inset(0 round var(--radius));
  transition: clip-path .95s var(--ease), box-shadow .4s var(--ease);
}

.js .tile.is-in .tile-meta {
  opacity: 1;
  transform: none;
  transition: opacity .6s var(--ease) .2s, transform .6s var(--ease) .2s;
}

.tile-meta {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: baseline;
  gap: .75rem;
  margin-top: .9rem;
  padding-top: .7rem;
  border-top: 1px solid var(--line);
  transition: border-color .3s;
}

/* the rule under a tile fills with clay as you hover it */
.tile-meta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  margin-top: -.72rem;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.tile { position: relative; }
.tile:hover .tile-meta::after,
.tile:focus-visible .tile-meta::after { transform: scaleX(1); }

.tile-index,
.tile-price {
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  transition: color .3s;
}

.tile-title { font-family: var(--serif); font-size: 1.125rem; }
.tile-price { color: var(--text); font-weight: 500; }

.tile:hover .tile-meta,
.tile:focus-visible .tile-meta { border-top-color: var(--accent); }
.tile:hover .tile-price { color: var(--accent); }

.badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  z-index: 2;
  background: var(--bg);
  color: var(--text);
  font-size: .6875rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .55rem;
  border-radius: 3px;
}

.badge-low { background: var(--accent); color: var(--accent-fg); }

/* --- the wall preview ---------------------------------------------------- */

.tile-wall,
.stage-wall {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s var(--ease);
}

.tile-wall .wall-svg,
.stage-wall .wall-svg { width: 100%; height: 100%; display: block; }

.tile:hover .tile-wall,
.tile:focus-visible .tile-wall { opacity: 1; }

/* No hover, no preview — a tap should just open the print. */
@media (hover: none) { .tile-wall { display: none; } }

.wall-tag {
  position: absolute;
  left: .6rem;
  bottom: .6rem;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(23, 21, 15, .12);
  color: #1e1b16;
  font-size: .6875rem;
  letter-spacing: .05em;
  padding: .3rem .55rem;
  border-radius: 3px;
}

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* --- filter bar (prints page) -------------------------------------------- */

.filters {
  position: sticky;
  top: 3.75rem;              /* the height the header shrinks to once scrolled */
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.filter-list {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.filter-list::-webkit-scrollbar { display: none; }

.filter-list button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-soft);
  font: inherit;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.filter-list button:hover { color: var(--text); border-color: var(--text-soft); }
.filter-list button[aria-pressed="true"] {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}

.filter-count {
  flex: 0 0 auto;
  font-size: .6875rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 640px) { .filter-count { display: none; } }

/* --- single photo -------------------------------------------------------- */

.photo-page {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  padding-top: clamp(1.5rem, 4vw, 3rem);
}

@media (max-width: 900px) {
  .photo-page { grid-template-columns: 1fr; }
}

.photo-stage { position: relative; }

.stage-view {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-soft);
  cursor: zoom-in;
}

.stage-photo { width: 100%; height: auto; }

.photo-stage.show-wall .stage-wall { opacity: 1; }

.stage-toggle {
  position: absolute;
  top: .85rem;
  right: .85rem;
  z-index: 2;
  display: inline-flex;
  gap: .2rem;
  padding: .2rem;
  background: rgba(12, 12, 13, .6);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.stage-toggle button {
  border: 0;
  background: none;
  font: inherit;
  font-size: .75rem;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .7);
  padding: .35rem .95rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.stage-toggle button.is-on { background: #fff; color: #12100d; }

.stage-note {
  margin: .85rem 0 0;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.photo-info { position: sticky; top: calc(var(--head-h) + 1.5rem); }

.crumbs {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
}
.crumbs a { text-decoration: none; transition: color .2s; }
.crumbs a:hover { color: var(--accent); }

.photo-info h1 {
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  margin: 0 0 .5rem;
}

.photo-sub {
  color: var(--text-soft);
  font-size: .8125rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

.photo-desc { margin: 0 0 2rem; color: var(--text-soft); }

.field-label {
  display: flex;
  justify-content: space-between;
  font-size: .6875rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: .7rem;
}

.edition { margin: 0 0 1.75rem; }

.edition-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.edition-line b { color: var(--text); font-weight: 500; }

.meter {
  display: block;
  height: 2px;
  margin-top: .65rem;
  background: var(--line);
  overflow: hidden;
}
.meter > span { display: block; height: 100%; background: var(--accent); }

.sizes { display: grid; gap: .5rem; margin-bottom: 1.25rem; }

.size-option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: .9375rem;
  transition: border-color .15s, background .15s;
}
.size-option:hover { border-color: var(--text-soft); }
.size-option input { position: absolute; opacity: 0; pointer-events: none; }
.size-option:has(input:checked) {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, var(--bg));
}
.size-option:has(input:focus-visible) { outline: 2px solid var(--accent); outline-offset: 2px; }

.size-price { color: var(--text-soft); white-space: nowrap; font-variant-numeric: tabular-nums; }
.size-option:has(input:checked) .size-price { color: var(--text); }

.buy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.05rem 1.25rem;
  background: var(--accent);
  color: var(--accent-fg);
  border: 1px solid var(--accent);
  border-radius: 999px;
  font: inherit;
  font-size: .9375rem;
  letter-spacing: .04em;
  text-decoration: none;
  cursor: pointer;
  transition: filter .15s, transform .25s var(--ease);
}
.buy:hover { filter: brightness(1.08); transform: translateY(-2px); }

.buy[aria-disabled="true"] {
  background: transparent;
  color: var(--text-soft);
  border-color: var(--line);
  cursor: default;
  pointer-events: none;
}

.note { font-size: .8125rem; color: var(--text-soft); margin: 1rem 0 0; }

.assurance {
  display: grid;
  gap: .55rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  font-size: .8125rem;
  color: var(--text-soft);
}
.assurance li { display: flex; gap: .6rem; align-items: baseline; }
.assurance li::before { content: "—"; color: var(--accent); }

.spec { margin: 2rem 0 0; }
.spec > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .65rem 0;
  border-top: 1px solid var(--line-soft);
  font-size: .875rem;
}
.spec > div:last-child { border-bottom: 1px solid var(--line-soft); }
.spec dt { color: var(--text-soft); }
.spec dd { margin: 0; text-align: right; }

.photo-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
  font-size: .8125rem;
}
.photo-nav a { color: var(--text-soft); text-decoration: none; transition: color .2s; }
.photo-nav a:hover { color: var(--accent); }

/* the strip of other prints under a photo page */
.more-strip { padding: clamp(4rem, 8vw, 7rem) 0 0; }

/* --- lightbox ------------------------------------------------------------ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(6, 6, 7, .94);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
  cursor: zoom-out;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transform: scale(.97);
  transition: transform .4s var(--ease);
}
.lightbox.is-open img { transform: none; }
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  background: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}

/* --- prose, facts, steps, faq -------------------------------------------- */

.prose { max-width: var(--narrow); }
.prose p { margin: 0 0 1.15rem; color: var(--text-soft); }
.prose p.first { font-size: 1.1875rem; color: var(--text); }
.prose a { color: var(--accent); text-underline-offset: 3px; }

.facts { margin: 0; }
.facts > div {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line-soft);
  font-size: .9375rem;
}
.facts > div:last-child { border-bottom: 1px solid var(--line-soft); }
.facts dt { color: var(--text); }
.facts dd { margin: 0; color: var(--text-soft); }
@media (max-width: 520px) { .facts > div { grid-template-columns: 1fr; gap: .2rem; } }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: step;
}
.step { border-top: 1px solid var(--line); padding-top: 1.1rem; }
.step h3 { font-size: 1.25rem; margin: .6rem 0 .5rem; }
.step p { margin: 0; color: var(--text-soft); font-size: .9375rem; }
.step .num {
  font-size: .6875rem;
  letter-spacing: .18em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-block: 1px solid var(--line-soft);
}
.stat b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: .5rem;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.faq { border-top: 1px solid var(--line-soft); }
.faq details {
  border-bottom: 1px solid var(--line-soft);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.125rem;
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: 1.25rem;
  color: var(--text-soft);
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 0 0 1.35rem; color: var(--text-soft); max-width: 62ch; }

.quote {
  margin: 0;
  padding: clamp(4rem, 9vw, 8rem) 0;
  text-align: center;
}
.quote blockquote {
  margin: 0 auto;
  max-width: 22ch;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  line-height: 1.15;
}
.quote figcaption {
  margin-top: 1.75rem;
  font-size: .6875rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* --- split (about, contact) ---------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

.list-plain { list-style: none; margin: 0; padding: 0; }
.list-plain li {
  padding: .85rem 0;
  border-top: 1px solid var(--line-soft);
  font-size: .9375rem;
  color: var(--text-soft);
}
.list-plain li:last-child { border-bottom: 1px solid var(--line-soft); }

/* --- forms --------------------------------------------------------------- */

.form { display: grid; gap: 1rem; }
.form label {
  display: block;
  font-size: .6875rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: .5rem;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--bg-lift);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font: inherit;
  font-size: .9375rem;
  transition: border-color .2s;
}
.form input:focus,
.form select:focus,
.form textarea:focus { border-color: var(--accent); outline: none; }
.form textarea { min-height: 9rem; resize: vertical; }
.form .btn { justify-content: center; }
.form-note { font-size: .8125rem; color: var(--text-soft); margin: 0; }

/* --- cta band ------------------------------------------------------------ */

.band {
  background: var(--ink);
  color: var(--on-ink);
  text-align: center;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  margin-top: clamp(4rem, 9vw, 8rem);
}
.band h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin: 0 auto; max-width: 20ch; line-height: 1.1; }
.band p { color: var(--on-ink-soft); max-width: 48ch; margin: 1.1rem auto 0; }
.band .btn { margin-top: 2rem; background: var(--on-ink); border-color: var(--on-ink); color: var(--ink); }
.band .btn:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-fg); }
.band .eyebrow { justify-content: center; color: var(--on-ink-soft); }

/* --- footer -------------------------------------------------------------- */

.site-foot {
  background: var(--ink);
  color: var(--on-ink);
  margin-top: clamp(4rem, 9vw, 8rem);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2.5rem;
  font-size: .875rem;
}
.band + .site-foot { margin-top: 0; border-top: 0; }

.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }

.foot-brand .wordmark { display: inline-block; margin-bottom: 1rem; }
.foot-brand p { margin: 0; color: var(--on-ink-soft); max-width: 34ch; }

.foot-col h4 {
  font-family: var(--sans);
  font-size: .6875rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--on-ink-soft);
  font-weight: 500;
  margin: 0 0 1rem;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.foot-col li { color: var(--on-ink-soft); }
.foot-col a { color: var(--on-ink-soft); text-decoration: none; transition: color .2s; }
.foot-col a:hover { color: var(--accent); }

.foot-base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(246, 242, 234, .16);
  font-size: .75rem;
  color: var(--on-ink-soft);
}

/* --- empty / 404 --------------------------------------------------------- */

.empty {
  min-height: 52vh;
  display: grid;
  align-content: center;
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.empty h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 1rem; }
.empty p { color: var(--text-soft); max-width: 46ch; }

/* --- reveal on scroll ---------------------------------------------------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}
.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

/* --- page transition ----------------------------------------------------- */

.js main, .js .hero { animation: page-in .7s var(--ease) both; }
@keyframes page-in { from { opacity: 0; } to { opacity: 1; } }

body.is-leaving { opacity: 0; transition: opacity .28s var(--ease); }

/* --- motion -------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .js .tile-frame { clip-path: none; }
  .js .tile-meta { opacity: 1; transform: none; }
  body.is-leaving { opacity: 1; }
}

/* ===========================================================================
   Dark ground redesign
   The page is now near-black, so every photograph is given a light mat the
   way a mounted print has one — otherwise a dark frame edge dissolves into
   the page and the picture stops reading as an object.
   =========================================================================== */

:root {
  --mat: #e9e5dd;              /* the mat around a photograph on screen */
  --mat-line: rgba(14, 15, 19, .18);
}

/* --- the mat -------------------------------------------------------------
   Applied as a border rather than padding: `overflow: hidden` clips at the
   padding edge, so a border survives the hover zoom while padding would be
   covered by it. */
.tile-frame {
  border: clamp(7px, 1.1vw, 14px) solid var(--mat);
  background: var(--mat);
}

.stage-view {
  border: clamp(10px, 1.6vw, 22px) solid var(--mat);
  background: var(--mat);
}

/* The room preview is a photograph of a wall, not a print — it gets no mat. */
.photo-stage.show-wall .stage-view { border-color: transparent; }

/* --- the gallery, off the grid -------------------------------------------
   Even rows read as a list. Uneven ones read as a gallery. */
@media (min-width: 900px) {
}

/* --- dark-ground corrections --------------------------------------------- */
.hero::after { background: linear-gradient(180deg, transparent, var(--bg)); }
.band .btn { background: var(--accent); border-color: var(--accent); color: var(--accent-fg); }
.site-foot { border-top: 1px solid var(--line-soft); }

/* --- the hero is the photograph ------------------------------------------
   The copy stays in the DOM for search engines and screen readers; the page
   shows the picture, the name and the nav, and nothing else. */
.hero-inner .eyebrow,
.hero-inner p[data-hero-text],
.hero-actions { display: none; }

.hero .display {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* --- the price ladder ----------------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.price-table th,
.price-table td {
  padding: 1.1rem .25rem;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
}
.price-table thead th {
  font-family: var(--sans);
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
  border-bottom-color: var(--line);
}
.price-table tbody th {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
}
.price-table tbody td {
  font-family: var(--sans);
  font-size: 1.0625rem;
  color: var(--text-soft);
  text-align: right;
}
.price-note {
  margin-top: 1.25rem;
  font-size: .9375rem;
  color: var(--text-soft);
}

/* A portrait photograph never takes the full-width lead tile. */
.feature-grid .tile:first-child.is-portrait { grid-column: auto; }
.feature-grid .tile:first-child.is-portrait .tile-frame { aspect-ratio: 4 / 5; }

/* --- consent, asked once ------------------------------------------------- */
.link-button {
  border: 0;
  padding: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.note-warning {
  padding: .9rem 1.1rem;
  border-left: 3px solid var(--accent);
  background: var(--bg-soft);
  color: var(--text);
  font-size: .9375rem;
}

.prose h2 {
  font-size: 1.25rem;
  margin: 2.25rem 0 .75rem;
}
.prose .facts { margin-top: 1rem; }

.consent {
  position: fixed;
  left: var(--pad);
  bottom: var(--pad);
  z-index: 90;
  max-width: 27rem;
  padding: 1.25rem 1.35rem;
  background: var(--bg-lift);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .5);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.consent.is-in { opacity: 1; transform: none; }
.consent p {
  margin: 0 0 1rem;
  font-size: .875rem;
  line-height: 1.55;
  color: var(--text-soft);
}
.consent-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.btn-small { padding: .5rem 1rem; font-size: .75rem; }

@media (max-width: 34rem) {
  .link-button {
  border: 0;
  padding: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.note-warning {
  padding: .9rem 1.1rem;
  border-left: 3px solid var(--accent);
  background: var(--bg-soft);
  color: var(--text);
  font-size: .9375rem;
}

.prose h2 {
  font-size: 1.25rem;
  margin: 2.25rem 0 .75rem;
}
.prose .facts { margin-top: 1rem; }

.consent { left: 1rem; right: 1rem; bottom: 1rem; max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  .link-button {
  border: 0;
  padding: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.note-warning {
  padding: .9rem 1.1rem;
  border-left: 3px solid var(--accent);
  background: var(--bg-soft);
  color: var(--text);
  font-size: .9375rem;
}

.prose h2 {
  font-size: 1.25rem;
  margin: 2.25rem 0 .75rem;
}
.prose .facts { margin-top: 1rem; }

.consent { transition: none; transform: none; }
}

/* --- see it on your wall ------------------------------------------------- */
.ar-open {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  width: 100%;
  margin: 0 0 .7rem;
  padding: .85rem 1.2rem;
  background: none;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: .8125rem;
  letter-spacing: .06em;
  cursor: pointer;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.ar-open:hover { border-color: var(--accent); color: var(--accent); }

.ar-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(6, 7, 9, .985);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.ar-modal.is-open { opacity: 1; }

.ar-stage {
  width: min(100%, 46rem);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
}
.ar-stage model-viewer { width: 100%; height: 100%; --poster-color: transparent; }
.ar-loading { color: var(--on-ink-soft); font-size: .875rem; }

.ar-launch {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: .8rem 1.6rem;
  background: var(--accent);
  color: var(--accent-fg);
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: .8125rem;
  cursor: pointer;
  white-space: nowrap;
}

.ar-hint {
  max-width: 34rem;
  margin: 1rem auto 0;
  text-align: center;
  color: var(--on-ink-soft);
  font-size: .8125rem;
  line-height: 1.6;
}

.ar-close {
  position: absolute;
  top: 1rem;
  right: 1.15rem;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: 0;
  color: var(--on-ink);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) { .ar-modal { transition: none; } }

/* the QR handoff, shown only where there is no camera to use */
.ar-qr {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 1.25rem auto 0;
  padding: .9rem 1.1rem;
  max-width: 30rem;
  border: 1px solid rgba(232, 230, 227, .16);
  border-radius: var(--radius);
}
.ar-qr-code {
  flex: 0 0 auto;
  width: 104px;
  height: 104px;
  padding: 6px;
  background: #fff;
  border-radius: 3px;
}
.ar-qr-code svg { display: block; width: 100%; height: 100%; }
.ar-qr p {
  margin: 0;
  color: var(--on-ink-soft);
  font-size: .8125rem;
  line-height: 1.55;
}
@media (max-width: 30rem) { .ar-qr { flex-direction: column; text-align: center; } }
