/* ─────────────────────────────────────────────────────────
   REPOSE — reposeframe.com
   Base stylesheet — HTML/CSS puro, sin framework
   ───────────────────────────────────────────────────────── */

/* ── FONTS ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500&display=swap');

/* ── VARIABLES ─────────────────────────────────────────── */
:root {
  --color-bg:       #ffffff;
  --color-text:     #111111;
  --color-muted:    #888888;
  --color-border:   #e0e0e0;
  --color-placeholder: #e8e8e8;

  --font-main:      'Inter', sans-serif;

  --weight-light:   200;
  --weight-regular: 400;
  --weight-medium:  500;

  --size-xs:   11px;
  --size-sm:   13px;
  --size-base: 15px;
  --size-md:   17px;
  --size-lg:   22px;
  --size-xl:   28px;
  --size-2xl:  38px;

  --space-xs:   8px;
  --space-sm:   16px;
  --space-md:   32px;
  --space-lg:   64px;
  --space-xl:   96px;
  --space-2xl:  140px;

  --max-width:  1200px;
  --nav-height: 60px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-weight: var(--weight-light);
  font-size: var(--size-base);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--color-text);
  background: var(--color-bg);
}

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

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

ul, ol {
  list-style: none;
}

/* ── PLACEHOLDER IMAGES ─────────────────────────────────── */
.placeholder {
  background: var(--color-placeholder);
  width: 100%;
  display: block;
}

.placeholder--3x2  { aspect-ratio: 3/2; }
.placeholder--4x3  { aspect-ratio: 4/3; }
.placeholder--1x1  { aspect-ratio: 1/1; }
.placeholder--16x9 { aspect-ratio: 16/9; }
.placeholder--2x3  { aspect-ratio: 2/3; }
.placeholder--3x4  { aspect-ratio: 3/4; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-md);
  background: transparent;
  z-index: 100;
}

.nav--solid {
  background: var(--color-bg);
}

.nav__right a {
  font-size: 15px;
  font-weight: var(--weight-light);
  margin-left: 14px;
  color: #ffffff;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.3s;
}

.nav__right a:hover {
  opacity: 1;
  color: var(--color-muted);
}

.nav--solid .nav__right a:hover {
  color: var(--color-muted);
}

.nav__right a[aria-current="page"] {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.nav--solid .nav__right a[aria-current="page"] {
  color: var(--color-text);
}

.nav__logo {
  display: flex;
  align-items: center;
  overflow: hidden;
  height: var(--nav-height);
  margin-left: -20px;
}

.nav__logo-img {
  height: 110px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

.nav--solid .nav__logo-img {
  filter: none;
}

.nav--solid .nav__right a {
  color: var(--color-text);
}

.nav--on-light .nav__logo-img {
  filter: none;
}

.nav--on-light .nav__right a {
  color: var(--color-text);
}

/* hidden on desktop — shown via media query on mobile */
.nav__hamburger {
  display: none;
}

/* ── MAIN CONTENT ───────────────────────────────────────── */
main {
  padding-top: 0;
}

/* ── SECTIONS ───────────────────────────────────────────── */
.section {
  padding: var(--space-xl) var(--space-md);
}

.section--full {
  max-width: none;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.section--border-top {
}

/* ── TWO-COLUMN GRID ────────────────────────────────────── */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.grid-2col--wide-right {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-lg);
  align-items: start;
}

.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.label {
  font-size: var(--size-lg);
  font-weight: var(--weight-light);
  color: var(--color-text);
}

.body-copy {
  font-size: var(--size-lg);
  font-weight: var(--weight-light);
  line-height: 1.25;
  max-width: 720px;
}

.body-copy p + p {
  margin-top: var(--space-sm);
}

.heading {
  font-size: var(--size-xl);
  font-weight: var(--weight-light);
  line-height: 1.25;
}

.heading--lg {
  font-size: var(--size-2xl);
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: var(--space-xl) var(--space-md) var(--space-lg);
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero__text {
  position: relative;
  z-index: 1;
  font-size: var(--size-lg);
  font-weight: var(--weight-light);
  line-height: 1.4;
  max-width: 700px;
  color: #fff;
}

/* ── CARDS ──────────────────────────────────────────────── */
.card {
  display: block;
  cursor: pointer;
}

.card__image {
  margin-bottom: var(--space-sm);
  overflow: hidden;
}

.archive-grid .card__image,
.post-related__grid .card__image {
  aspect-ratio: 3/4;
}

#studio-projects .card__image {
  aspect-ratio: 3/2;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card__label {
  font-size: var(--size-sm);
  color: var(--color-muted);
  margin-bottom: 4px;
}

.card__title {
  font-size: var(--size-sm);
  font-weight: var(--weight-light);
  line-height: 1.4;
}

.card:hover .card__title {
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 3px;
}

/* ── SERVICE LIST ───────────────────────────────────────── */
/* ── ACCORDION ──────────────────────────────────────────── */
.accordion__item {
  padding: 4px 0;
}

.accordion__trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: var(--size-base);
  font-weight: var(--weight-light);
  font-family: var(--font-main);
  color: var(--color-text);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.accordion__trigger:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.about-part-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.accordion__body {
  display: none;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--size-base);
  font-weight: var(--weight-light);
  line-height: 1.4;
  max-width: 720px;
  color: var(--color-muted);
}

.accordion__item.is-open .accordion__body {
  display: block;
}

/* ── SERVICE ROW ─────────────────────────────────────────── */
.service-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
}

.service-row:last-child {
}

.service-row__name {
  font-size: var(--size-sm);
  font-weight: var(--weight-light);
  flex-shrink: 0;
}

.service-row__desc {
  font-size: var(--size-sm);
  font-weight: var(--weight-light);
  color: var(--color-muted);
  flex: 1;
  padding: 0 var(--space-md);
}

.service-row__price {
  font-size: var(--size-sm);
  font-weight: var(--weight-light);
  color: var(--color-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── ARCHIVE GRID ───────────────────────────────────────── */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg) var(--space-sm);
}

#studio-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

/* ── CATEGORY FILTERS ───────────────────────────────────── */
.filters {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.filter-btn {
  font-size: var(--size-base);
  font-weight: 200;
  color: var(--color-muted);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--color-text);
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  padding: var(--space-xl) var(--space-lg) var(--space-lg) var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-lg);
}

.footer__tagline-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 390px;
}

.footer__tagline {
  font-size: 20px;
  font-weight: var(--weight-light);
  line-height: 1.3;
  color: var(--color-text);
}

.footer__location {
  font-size: var(--size-sm);
  font-weight: var(--weight-light);
  color: var(--color-muted);
}

.footer__nav-cols {
  display: flex;
  gap: 40px;
}

.footer__right-cols {
  display: flex;
  gap: 40px;
}

.footer__contact-col,
.footer__social-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__nav-heading {
  font-size: var(--size-sm);
  font-weight: var(--weight-light);
  color: var(--color-text);
  margin-bottom: 4px;
}

.footer__nav-link {
  font-size: var(--size-sm);
  font-weight: var(--weight-light);
  color: var(--color-muted);
  transition: color 0.2s;
}

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


/* ── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
  font-size: var(--size-xs);
  color: var(--color-muted);
  margin-bottom: var(--space-md);
}

.breadcrumb a {
  opacity: 0.6;
  transition: opacity 0.2s;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb span {
  margin: 0 6px;
}

/* ── CTA NEWSLETTER ─────────────────────────────────────── */
.cta-newsletter {
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.cta-newsletter__text {
  font-size: var(--size-sm);
  color: var(--color-muted);
}

.cta-newsletter__link {
  font-size: var(--size-sm);
  font-weight: var(--weight-light);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  white-space: nowrap;
}

/* ── COLLECTION PRODUCT ─────────────────────────────────── */

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding-top: var(--nav-height);
  min-height: 100vh;
}

.product-layout__image {
  position: sticky;
  top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  overflow: hidden;
}

.product-layout__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-layout__info {
  padding: var(--space-lg) var(--space-md) var(--space-2xl);
}

.product__breadcrumb {
  font-size: var(--size-xs);
  color: var(--color-muted);
  font-weight: var(--weight-light);
  margin-bottom: var(--space-md);
}

.product__breadcrumb a {
  color: var(--color-muted);
}

.product__name {
  font-size: var(--size-lg);
  font-weight: var(--weight-light);
  line-height: 1.2;
  margin-bottom: var(--space-xs);
}

.product__price {
  font-size: var(--size-base);
  font-weight: var(--weight-regular);
  margin-bottom: var(--space-md);
}

.product__desc {
  font-size: var(--size-base);
  font-weight: var(--weight-light);
  line-height: 1.5;
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
}

.product__details-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  border-top: 1px solid #e8e8e4;
  border-bottom: 1px solid #e8e8e4;
  cursor: pointer;
  padding: var(--space-xs) 0;
  font-size: var(--size-sm);
  font-weight: var(--weight-light);
  font-family: var(--font-main);
  color: var(--color-text);
  text-align: left;
}

.product__details-arrow {
  transition: transform 0.2s ease;
  display: inline-block;
}

.product__details.is-open .product__details-arrow {
  transform: rotate(180deg);
}

.product__specs {
  display: none;
  border-top: none;
}

.product__details.is-open .product__specs {
  display: block;
}

.product__spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid #e8e8e4;
  gap: var(--space-sm);
}

.product__spec-label {
  font-size: var(--size-sm);
  font-weight: var(--weight-light);
  color: var(--color-muted);
  white-space: nowrap;
}

.product__spec-value {
  font-size: var(--size-sm);
  font-weight: var(--weight-light);
  text-align: right;
}

.product__cta {
  display: block;
  width: 100%;
  margin-top: var(--space-lg);
  padding: 14px var(--space-md);
  background: var(--color-text);
  color: #fff;
  font-size: var(--size-sm);
  font-weight: var(--weight-light);
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.product__cta:hover {
  opacity: 0.75;
}

.product__buy-btn {
  display: block;
  width: 100%;
  margin-top: var(--space-lg);
  padding: 14px var(--space-md);
  border: 1px solid #e8e8e4;
  background: none;
  color: var(--color-text);
  font-size: var(--size-base);
  font-weight: var(--weight-regular);
  font-family: var(--font-main);
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.product__buy-btn:hover {
  border-color: var(--color-text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* ── READING TIME ───────────────────────────────────────── */
.reading-time {
  font-size: var(--size-xs);
  color: var(--color-muted);
}

/* ── POST INDIVIDUAL ─────────────────────────────────────── */

.post__back {
  display: block;
  padding: calc(var(--nav-height) + var(--space-md)) var(--space-md) 0;
  font-size: var(--size-xs);
  color: var(--color-muted);
  transition: color 0.2s;
}

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

.post__closing {
  font-size: var(--size-xs);
  color: var(--color-muted);
  margin-top: var(--space-md);
}

.post-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
  padding: calc(var(--nav-height) + var(--space-lg)) var(--space-md) var(--space-xl);
}

.post__category {
  font-size: var(--size-sm);
  font-weight: var(--weight-light);
  color: var(--color-muted);
}

.post__title {
  font-size: var(--size-lg);
  font-weight: var(--weight-light);
  line-height: 1.3;
  margin-top: 6px;
}

.post__meta {
  font-size: var(--size-xs);
  color: var(--color-muted);
  margin-top: var(--space-sm);
}

.post__intro {
  font-size: var(--size-lg);
  font-weight: var(--weight-light);
  line-height: 1.3;
}

.post__cover {
  width: 100%;
}

.post__cover img,
.post__cover .placeholder {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  display: block;
}

.post__body {
  padding: var(--space-xl) var(--space-md);
}

.post__body-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--space-lg);
}

.post__body-block + .post__body-block {
  margin-top: var(--space-xl);
}

.post__body-right p {
  font-size: var(--size-base);
  font-weight: var(--weight-light);
  line-height: 1.4;
  color: var(--color-text);
}

.post__body-right p + p {
  margin-top: var(--space-sm);
}

.post__body-right h2 {
  font-size: var(--size-base);
  font-weight: var(--weight-medium);
  margin-top: var(--space-md);
  margin-bottom: 6px;
}

.post__body-right h2:first-child {
  margin-top: 0;
}

.post__body-photo img,
.post__body-photo .placeholder {
  width: 100%;
  display: block;
}

.post__body-photo--portrait img {
  display: block;
  width: 70%;
  height: auto;
}

.post__photo-credit {
  font-size: var(--size-xs);
  color: var(--color-muted);
  margin-top: 6px;
}

.card--extra {
  display: none;
}

.card--sold {
  pointer-events: none;
  opacity: 0.5;
}

.btn-load-more {
  font-size: var(--size-base);
  font-weight: var(--weight-light);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  color: var(--color-text);
  margin-top: var(--space-lg);
  display: block;
}

.post-related {
  padding: calc(var(--space-2xl) + var(--space-xl)) var(--space-md) var(--space-xl);
}

.post-related__label {
  font-size: var(--size-sm);
  color: var(--color-muted);
  margin-bottom: var(--space-md);
}

.post-related__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.post__artist-more {
  margin-top: var(--space-2xl);
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
}

.post__artist-more__label {
  font-size: 13px;
  color: var(--color-muted);
}

.post__artist-links {
  display: flex;
  gap: var(--space-sm);
}

.post__artist-link {
  font-size: var(--size-base);
  font-weight: var(--weight-light);
  line-height: 1.4;
  color: var(--color-text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

/* Hidden on desktop, visible on mobile */
.desktop-hidden {
  display: none !important;
}

/* Visible only on mobile */
.mobile-only-cover {
  display: none !important;
}

/* Tefi img04 rotation — desktop default */
.tefi-img04 {
  transform: translate(-50%, -50%) rotate(-90deg);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --space-xl:  48px;
    --space-2xl: 72px;
    --space-lg:  40px;
  }

  /* Home collection section extra top spacing */
  .section.home-collection {
    padding-top: var(--space-2xl);
  }

  /* Nav */
  .nav {
    padding: 0 var(--space-md);
    justify-content: space-between;
  }

  .nav__logo {
    max-width: 110px;
  }

  /* Hamburger — all pages */
  .nav__right {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-end;
    background: #fff;
    padding: var(--nav-height) var(--space-md) var(--space-md);
    gap: 6px;
    z-index: 99;
  }

  .nav.nav--open .nav__right {
    display: flex;
  }

  .nav__right a {
    font-size: var(--size-base);
    margin-left: 0;
    color: var(--color-text);
  }

  .nav__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #fff;
  }

  .nav--solid .nav__hamburger,
  .nav--on-light .nav__hamburger,
  .nav.nav--open .nav__hamburger {
    color: var(--color-text);
  }

  /* Logo and hamburger always above the open dropdown */
  .nav__logo,
  .nav__hamburger {
    position: relative;
    z-index: 100;
  }

  /* When open: logo always black (white logo invisible on white bg) */
  .nav.nav--open .nav__logo-img {
    filter: brightness(0);
  }

  .nav__hamburger span {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: opacity 0.2s;
  }

  /* Sections */
  .section {
    padding: var(--space-xl) var(--space-md);
  }

  /* Grids → single column, tighter row gap */
  .grid-2col,
  .grid-2col--wide-right,
  .grid-3col,
  .post-header,
  .post__body-block {
    grid-template-columns: 1fr;
  }

  .grid-2col,
  .grid-2col--wide-right {
    gap: var(--space-sm);
  }

  /* Label in left/top cell: no bottom margin — grid gap handles spacing */
  .grid-2col > div:first-child .label,
  .grid-2col--wide-right > div:first-child .label {
    margin-bottom: 0 !important;
  }

  /* Archive grid → 1 column */
  .archive-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  /* Related posts → 1 column */
  .post-related__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  /* Post intro: match body text size on mobile */
  .post__intro {
    font-size: var(--size-base);
  }

  .post__body-left {
    display: none;
  }

  .post__body-photo--portrait img {
    width: 100%;
    height: auto;
  }

  /* Hero */
  .hero {
    padding-bottom: var(--space-sm);
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  /* Typography — font-size matches desktop; only layout adjustments here */
  .body-copy {
    line-height: 1.4;
  }

  .hero__text {
    max-width: 100%;
  }

  /* Services */
  .service-row {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .service-row__desc {
    padding: 0;
  }

  /* Product page — stack image above info */
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-layout__image {
    position: relative;
    top: auto;
    height: 100vh;
  }

  .product-layout__info {
    height: auto !important;
    overflow-y: visible !important;
    padding: var(--space-md) var(--space-md) var(--space-xl) !important;
  }

  /* Dual-image rows in studio pages → stack vertically */
  .dual-image {
    flex-direction: column !important;
    height: auto !important;
  }

  .dual-image > img {
    width: 100% !important;
    height: 60vw;
    min-height: 220px;
  }

  .desktop-hidden {
    display: block !important;
  }

  .mobile-only-cover {
    display: block !important;
  }

  .mbc-hero-logo {
    object-position: center 65%;
  }

  .tefi-img04-wrapper {
    height: 100vh !important;
    overflow: visible !important;
  }

  .tefi-img04 {
    transform: translate(-50%, -50%) rotate(90deg) !important;
  }

  /* Related posts — reduce top padding */
  .post-related {
    padding-top: var(--space-xl);
  }

  /* Footer */
  .footer {
    flex-direction: column;
    padding: var(--space-lg) var(--space-md);
    gap: var(--space-lg);
  }

  .footer__nav-cols,
  .footer__right-cols {
    flex-wrap: wrap;
    gap: var(--space-md) 40px;
  }

  /* Section 100vh blocks */
  section[aria-label="Collection"],
  section[aria-label="Archive"],
  section[aria-label="Studio"],
  #services {
    min-height: 100vh;
  }

  #services {
    padding-top: var(--space-2xl);
  }

  section[aria-label="All conversations"] > .grid-2col:first-child {
    align-content: start;
    margin-bottom: var(--space-md) !important;
  }

  section[aria-label="All conversations"] .filters {
    margin-top: 0;
  }

  /* About — photos: same size as archive covers */
  section[aria-label="About us"] img,
  section[aria-label="Photo"] img {
    width: 100% !important;
    margin-left: 0 !important;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
  }

  /* Home — equalize top spacing to match internal grid gap */
  section[aria-label="Collection"],
  section[aria-label="Archive"],
  section[aria-label="Studio"] {
    padding-top: var(--space-lg);
  }

  section[aria-label="Collection"] .label,
  section[aria-label="Archive"] .label,
  section[aria-label="Studio"] .label {
    margin-bottom: 0 !important;
  }

  /* Home — tighten gap between label and description */
  section[aria-label="Collection"] .grid-2col,
  section[aria-label="Archive"] .grid-2col,
  section[aria-label="Studio"] .grid-2col {
    gap: var(--space-sm);
  }

  /* Home — landscape cards: full content width */
  section[aria-label="Collection"] .card,
  section[aria-label="Archive"] .card,
  section[aria-label="Studio"] .card {
    max-width: 100% !important;
  }

  /* Home — hide services list on mobile */
  section[aria-label="Studio"] .grid-2col > div:first-child ul {
    display: none !important;
  }

  /* Footer — hide nav columns on mobile */
  .footer__nav-cols {
    display: none;
  }

  /* Studio cards → portrait on mobile (same as archive) */
  #studio-projects .card__image {
    aspect-ratio: 3/4;
  }

  /* Utility: show full image at natural proportions on mobile (no crop) */
  .mobile-natural-height {
    height: auto !important;
    object-fit: contain !important;
  }

  /* Azur Aura last img — vertical on mobile, keeps desktop rotation */
  .azur-last-img img {
    position: static !important;
    width: 100% !important;
    height: 100vh !important;
    transform: none !important;
    object-fit: cover !important;
  }

  /* Utility: rotation corrections for specific images on mobile */
  .mobile-rotate-90 { transform: rotate(90deg); }
  .mobile-rotate-180 { transform: rotate(180deg); }
  .mobile-rotate-270 { transform: rotate(270deg); }

  /* Utility: hide specific elements on mobile */
  .mobile-hidden {
    display: none !important;
  }

  .mobile-order-2 {
    order: 2;
  }

  /* Utility: object-position overrides for specific images on mobile */
  .mobile-object-left {
    object-position: left center !important;
  }

  .mobile-object-right {
    object-position: right center !important;
  }

  .mobile-object-right-top {
    object-position: right 25% !important;
  }

  .mobile-object-right-75 {
    object-position: 20% center !important;
  }
}
