/* ICONAPIX — base theme
   Full-bleed photography with a shared content shell (--ix-shell). */

:root {
  --ix-bg: #0c0d0f;
  --ix-bg-elevated: #15171b;
  --ix-surface: #1b1e24;
  --ix-text: #f3f1ec;
  --ix-text-muted: #9a968c;
  --ix-border: rgba(243, 241, 236, 0.1);
  --ix-accent: #c4a574;
  --ix-accent-hover: #d4b888;
  --ix-focus: #e8d4b0;
  --ix-radius: 0.25rem;
  --ix-font-sans: "Instrument Sans", system-ui, sans-serif;
  --ix-font-display: "Newsreader", Georgia, serif;
  --ix-header-h: 4.25rem;
  --ix-pad: clamp(0.85rem, 2.2vw, 1.75rem);
  --ix-pad-tight: clamp(0.25rem, 0.6vw, 0.45rem);
  --ix-text-measure: 38rem;
  --ix-shell: 70rem;
  --ix-shell-wide: 96rem;
  --ix-media-radius: 0.7rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--ix-font-sans);
  font-weight: 400;
  color: var(--ix-text);
  background:
    radial-gradient(ellipse 90% 55% at 50% -25%, rgba(196, 165, 116, 0.1), transparent 55%),
    var(--ix-bg);
  line-height: 1.6;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.site-main {
  flex: 1 0 auto;
  width: 100%;
  position: relative;
}

/* Kill Bootstrap's fixed container widths */
.container,
.container-fluid {
  width: 100%;
  max-width: none !important;
  margin-left: 0;
  margin-right: 0;
  padding-left: var(--ix-pad);
  padding-right: var(--ix-pad);
}

/* Shared content shell — aligns with nav / footer / grids */
.site-fluid {
  width: 100%;
  max-width: var(--ix-shell) !important;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--ix-pad);
  padding-right: var(--ix-pad);
}

/* Text-only blocks can stay readable without boxing the whole page */
.site-fluid--narrow,
.container.narrow {
  max-width: var(--ix-text-measure) !important;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--ix-pad);
  padding-right: var(--ix-pad);
}

.site-fluid--narrow.site-fluid--center {
  text-align: center;
}

.site-fluid--narrow.site-fluid--center .section__lede {
  margin-inline: auto;
}

/* True edge-to-edge when a band must break the shell (rare) */
.site-fluid--full {
  max-width: none !important;
  margin-left: 0;
  margin-right: 0;
}

/* Center the panel, keep form fields left-aligned for readability */
.page-contact .site-fluid--center {
  text-align: left;
}

.page-contact .contact-form {
  margin-inline: auto;
  max-width: 32rem;
  text-align: left;
}

.page-contact .contact-form .btn {
  display: inline-flex;
}

/* Shared full-bleed overlay gate (Contact + Client access) */
.overlay-gate {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: calc(100vh - var(--ix-header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3.5rem) var(--ix-pad);
  overflow: hidden;
}

.overlay-gate__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.overlay-gate__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.03);
  animation: hero-zoom 18s ease-out forwards;
}

.overlay-gate__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 55% at 50% 45%, rgba(8, 9, 11, 0.35), rgba(8, 9, 11, 0.72) 70%, rgba(8, 9, 11, 0.88)),
    linear-gradient(180deg, rgba(8, 9, 11, 0.45) 0%, rgba(8, 9, 11, 0.25) 40%, rgba(8, 9, 11, 0.7) 100%);
}

.overlay-gate__panel {
  width: min(100%, 26rem);
  padding: 1.75rem 1.5rem 1.6rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(243, 241, 236, 0.16);
  background: rgba(12, 13, 15, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  text-align: left;
}

.overlay-gate__panel--contact {
  width: min(100%, 30rem);
}

.overlay-gate__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 241, 236, 0.7);
}

.overlay-gate__title {
  margin: 0 0 0.55rem;
  font-family: var(--ix-font-display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 500;
  line-height: 1.1;
  color: #f7f4ee;
}

.overlay-gate__lede {
  margin: 0 0 1.25rem;
  color: rgba(243, 241, 236, 0.78);
  font-size: 0.95rem;
}

.overlay-gate__form {
  margin: 0;
  max-width: none;
  position: relative;
}

.overlay-gate__form .btn {
  display: inline-flex;
}

.overlay-gate .form-label,
.overlay-gate .form-text {
  color: rgba(243, 241, 236, 0.72);
}

.page-private .private-session {
  text-align: center;
  margin-inline: auto;
}

.page-private .private-session__status {
  margin: 0;
  color: var(--ix-text-muted);
}

.page-private .section > .mt-4 {
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .overlay-gate__media img {
    animation: none;
    transform: none;
  }
}

.page-private:has(.overlay-gate) .site-footer,
.page-contact:has(.overlay-gate) .site-footer {
  display: none;
}

/* Full-width photo bands — constrained to the shared shell */
.site-bleed {
  width: 100%;
  max-width: var(--ix-shell);
  margin-inline: auto;
  padding-left: var(--ix-pad);
  padding-right: var(--ix-pad);
}

.site-bleed--wide {
  max-width: var(--ix-shell-wide);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--ix-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--ix-accent-hover);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  backdrop-filter: blur(14px);
  background: rgba(12, 13, 15, 0.88);
  border-bottom: 1px solid var(--ix-border);
}

.site-nav {
  width: 100%;
}

.site-nav__bar {
  min-height: var(--ix-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  color: var(--ix-text) !important;
  text-decoration: none !important;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.site-brand__mark {
  border-radius: 0.25rem;
  display: block;
}

.site-brand__name {
  font-size: 0.92rem;
  line-height: 1;
}

.site-nav__toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--ix-border);
  border-radius: var(--ix-radius);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ix-text);
  align-items: center;
  justify-content: center;
}

.site-nav__toggle-bars,
.site-nav__toggle-bars::before,
.site-nav__toggle-bars::after {
  display: block;
  width: 1rem;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  position: relative;
}

.site-nav__toggle-bars::before,
.site-nav__toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.site-nav__toggle-bars::before { top: -5px; }
.site-nav__toggle-bars::after { top: 5px; }

.site-nav__collapse {
  flex: 1 1 auto;
  display: flex !important;
  justify-content: flex-end;
  min-width: 0;
}

.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0.45rem 0.7rem;
  color: var(--ix-text-muted);
  text-decoration: none !important;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--ix-radius);
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--ix-text);
}

.site-nav__link.is-active {
  background: rgba(243, 241, 236, 0.06);
}

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  margin-left: 0.35rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(196, 165, 116, 0.35);
  border-radius: 999px;
  color: var(--ix-accent);
  text-decoration: none !important;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-nav__cta:hover,
.site-nav__cta.is-active {
  color: #14120f;
  background: var(--ix-accent);
  border-color: var(--ix-accent);
}

@media (max-width: 991.98px) {
  .site-nav__toggle {
    display: inline-flex;
    order: 2;
  }

  .site-nav__collapse {
    display: none !important;
    order: 3;
    flex: 0 0 100%;
    justify-content: stretch;
    padding: 0.35rem 0 0.85rem;
  }

  .site-nav__collapse.show {
    display: block !important;
  }

  .site-nav__bar {
    flex-wrap: wrap;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .site-nav__link,
  .site-nav__cta {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }

  .site-nav__cta {
    margin-top: 0.35rem;
    justify-content: center;
  }
}


/* —— Hero —— */
.hero {
  position: relative;
  width: 100%;
  min-height: min(88vh, 54rem);
  display: flex;
  align-items: flex-end;
  padding: clamp(4rem, 12vw, 8rem) 0 clamp(2.75rem, 6vw, 4.5rem);
  overflow: hidden;
  isolation: isolate;
}

.hero--photo {
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform: scale(1.04);
  animation: hero-zoom 18s ease-out forwards;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0.28) 0%, rgba(8, 9, 11, 0.12) 32%, rgba(8, 9, 11, 0.72) 72%, rgba(8, 9, 11, 0.96) 100%),
    linear-gradient(90deg, rgba(8, 9, 11, 0.62) 0%, rgba(8, 9, 11, 0.28) 48%, transparent 100%);
}

.hero__inner {
  position: relative;
}

.hero__brand {
  margin: 0 0 1rem;
  font-size: clamp(3rem, 11vw, 7rem);
  font-family: var(--ix-font-display);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: var(--ix-text);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.hero--photo .hero__brand {
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.4);
}

.hero__headline {
  margin: 0 0 1rem;
  max-width: 22ch;
  font-family: var(--ix-font-sans);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ix-text-muted);
}

.hero--photo .hero__headline,
.hero--photo .hero__lede {
  color: rgba(243, 241, 236, 0.92);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.45);
}

.hero__lede {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  color: var(--ix-text-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@keyframes hero-zoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media img {
    animation: none;
    transform: none;
  }
}

/* —— Sections —— */
.section {
  width: 100%;
  padding: clamp(2.25rem, 5vw, 4rem) 0;
}

.section__intro {
  max-width: var(--ix-shell);
  margin: 0 auto 1.5rem;
  padding-left: var(--ix-pad);
  padding-right: var(--ix-pad);
  text-align: center;
}

.section__intro--flush + .site-bleed,
.section__actions {
  padding-left: var(--ix-pad);
  padding-right: var(--ix-pad);
}

.section__title {
  margin: 0 0 0.65rem;
  font-family: var(--ix-font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.section__lede {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--ix-text-muted);
}

.section__actions {
  margin-top: 2rem;
  text-align: center;
}

/* —— Focus strip (not cards) —— */
.section--focus {
  padding-top: 0;
  border-bottom: 1px solid var(--ix-border);
}

.focus-row {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
  padding: 0.5rem 0 0.25rem;
  text-align: center;
}

@media (min-width: 900px) {
  .focus-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.focus-item__title {
  margin: 0 0 0.45rem;
  font-family: var(--ix-font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 500;
}

.focus-item__text {
  margin: 0 auto;
  max-width: 28ch;
  color: var(--ix-text-muted);
  font-size: 0.98rem;
}

.section--cta {
  border-top: 1px solid var(--ix-border);
  text-align: center;
}

.section--cta .site-fluid--narrow {
  text-align: center;
}

/* —— Reveal motion —— */
[data-reveal] {
  opacity: 0;
  transform: translateY(1.1rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.album-card[data-reveal].is-visible,
.album-tile[data-reveal].is-visible {
  transition-delay: var(--reveal-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* —— Buttons —— */
.btn-accent {
  --bs-btn-color: #14120f;
  --bs-btn-bg: var(--ix-accent);
  --bs-btn-border-color: var(--ix-accent);
  --bs-btn-hover-color: #14120f;
  --bs-btn-hover-bg: var(--ix-accent-hover);
  --bs-btn-hover-border-color: var(--ix-accent-hover);
  --bs-btn-focus-shadow-rgb: 196, 165, 116;
  --bs-btn-active-color: #14120f;
  --bs-btn-active-bg: var(--ix-accent-hover);
  --bs-btn-active-border-color: var(--ix-accent-hover);
  font-weight: 600;
  border-radius: var(--ix-radius);
  padding: 0.65rem 1.25rem;
}

.btn-outline-light {
  border-radius: var(--ix-radius);
  border-color: var(--ix-border);
  color: var(--ix-text);
  padding: 0.65rem 1.25rem;
}

.btn-outline-light:hover {
  background: rgba(243, 241, 236, 0.08);
  border-color: rgba(243, 241, 236, 0.28);
  color: var(--ix-text);
}

/* —— Homepage feature carousel (teaser only) —— */
.section--featured {
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.feature-carousel {
  width: 100%;
}

.feature-carousel__viewport {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  overflow: hidden;
  padding-inline: 0;
}

.feature-carousel__track {
  display: flex;
  gap: 1rem;
  align-items: center;
  box-sizing: border-box;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.feature-slide {
  flex: 0 0 min(86vw, 40rem);
  max-width: min(86vw, 40rem);
  position: relative;
  border-radius: var(--ix-media-radius);
  overflow: hidden;
  background: #101217;
  border: 1px solid rgba(243, 241, 236, 0.08);
  opacity: 0.45;
  transform: scale(0.92);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.feature-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.feature-slide.is-active:hover {
  border-color: rgba(196, 165, 116, 0.45);
  box-shadow:
    0 0 0 1px rgba(196, 165, 116, 0.22),
    0 12px 36px rgba(0, 0, 0, 0.35);
}

.feature-slide__media {
  aspect-ratio: 16 / 10;
  background: var(--ix-surface);
  overflow: hidden;
}

.feature-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity 0.35s ease;
}

.feature-slide__media img.is-lazy:not(.is-loaded) {
  opacity: 0;
}

.feature-slide.is-active:hover .feature-slide__media img {
  transform: scale(1.035);
}

.feature-slide__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1b1e24, #101217 60%, #1a1712);
}

.feature-carousel__controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1.25rem;
}

.feature-carousel__cta {
  justify-self: end;
}

@media (max-width: 700px) {
  .feature-carousel__controls {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .feature-carousel__dots {
    order: 1;
  }

  .feature-carousel__nav {
    order: 2;
  }

  .feature-carousel__cta {
    order: 3;
    justify-self: center;
    width: 100%;
    text-align: center;
  }
}

.feature-carousel__nav {
  display: flex;
  gap: 0.5rem;
}

.feature-carousel__btn {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid var(--ix-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ix-text);
  display: grid;
  place-items: center;
}

.feature-carousel__btn:hover {
  border-color: rgba(196, 165, 116, 0.45);
  background: rgba(196, 165, 116, 0.12);
}

.feature-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}

.feature-carousel__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(243, 241, 236, 0.28);
}

.feature-carousel__dot.is-active {
  background: var(--ix-accent);
  width: 1.15rem;
}

@media (prefers-reduced-motion: reduce) {
  .feature-carousel__track {
    transition: none;
  }

  .feature-slide.is-active:hover .feature-slide__media img,
  .album-tile:hover .album-tile__media img,
  .album-tile:focus-visible .album-tile__media img,
  .album-thumb:hover img,
  .album-thumb:focus-visible img,
  .about-mosaic__item:hover img {
    transform: none;
  }
}

/* —— Gallery catalog tiles (access path for albums) —— */
.album-catalog {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 1.25rem;
  width: 100%;
  margin: 0;
}

@media (min-width: 1400px) {
  .album-catalog {
    gap: 1.75rem 1.35rem;
  }
}

.album-grid__empty {
  max-width: var(--ix-shell);
  margin: 0 auto;
  padding-left: var(--ix-pad);
  padding-right: var(--ix-pad);
  color: var(--ix-text-muted);
  text-align: center;
}

.album-tile {
  display: block;
  flex: 1 1 16rem;
  width: 16rem;
  max-width: 22rem;
  color: inherit;
  text-decoration: none !important;
}

@media (min-width: 900px) {
  .album-tile {
    flex-basis: 18rem;
    width: 18rem;
  }
}

@media (min-width: 1400px) {
  .album-tile {
    flex-basis: 20rem;
    width: 20rem;
    max-width: 24rem;
  }
}

.album-tile__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--ix-media-radius);
  background: var(--ix-surface);
  border: 1px solid rgba(243, 241, 236, 0.08);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.album-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity 0.35s ease;
}

.album-tile__media img.is-lazy:not(.is-loaded) {
  opacity: 0;
}

.album-tile:hover .album-tile__media,
.album-tile:focus-visible .album-tile__media {
  border-color: rgba(196, 165, 116, 0.5);
  box-shadow:
    0 0 0 1px rgba(196, 165, 116, 0.2),
    0 10px 28px rgba(0, 0, 0, 0.32);
}

.album-tile:hover .album-tile__media img,
.album-tile:focus-visible .album-tile__media img {
  transform: scale(1.04);
}

.album-tile__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1b1e24, #101217 60%, #1a1712);
}

.album-tile__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.1rem 0;
}

.album-tile__title {
  margin: 0;
  font-family: var(--ix-font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.album-tile__count {
  margin: 0;
  flex-shrink: 0;
  font-size: 0.82rem;
  color: var(--ix-text-muted);
}

.album-tile:hover .album-tile__title,
.album-tile:focus-visible .album-tile__title {
  color: var(--ix-accent-hover);
}

.album-tile:focus-visible {
  outline: none;
}

.album-tile:focus-visible .album-tile__media {
  border-color: rgba(196, 165, 116, 0.55);
}

/* —— Album thumbs + viewer —— */
.album-toolbar {
  max-width: var(--ix-shell-wide);
  margin: 0 auto 1.5rem;
  padding-left: var(--ix-pad);
  padding-right: var(--ix-pad);
  text-align: center;
}

.album-toolbar__back {
  color: var(--ix-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.album-toolbar__back:hover {
  color: var(--ix-text);
}

.album-toolbar .text-secondary {
  color: var(--ix-text-muted) !important;
}

.album-thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  margin: 0;
}

@media (min-width: 900px) {
  .album-thumbs {
    gap: 0.75rem;
  }
}

@media (min-width: 1400px) {
  .album-thumbs {
    gap: 0.85rem;
  }
}

.album-thumb-wrap {
  position: relative;
  flex: 1 1 10.5rem;
  width: 10.5rem;
  max-width: 15.5rem;
}

@media (min-width: 900px) {
  .album-thumb-wrap {
    flex-basis: 12.5rem;
    width: 12.5rem;
  }
}

@media (min-width: 1400px) {
  .album-thumb-wrap {
    flex-basis: 14rem;
    width: 14rem;
    max-width: 16.5rem;
  }
}

.album-thumb-wrap.is-fav-hidden {
  display: none;
}

.album-thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(243, 241, 236, 0.08);
  background: var(--ix-surface);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--ix-media-radius);
  cursor: zoom-in;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.album-fav-btn {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(243, 241, 236, 0.2);
  border-radius: 999px;
  background: rgba(12, 13, 15, 0.72);
  color: rgba(243, 241, 236, 0.85);
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.album-fav-btn:hover,
.album-fav-btn:focus-visible {
  color: #f3f1ec;
  border-color: rgba(196, 165, 116, 0.55);
  outline: none;
}

.album-fav-btn.is-on {
  color: #e8a0a8;
  border-color: rgba(232, 160, 168, 0.45);
  background: rgba(12, 13, 15, 0.82);
}

.album-select {
  position: absolute;
  top: 0.45rem;
  left: 0.45rem;
  z-index: 2;
  margin: 0;
  cursor: pointer;
}

.album-select input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.album-select__box {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(243, 241, 236, 0.28);
  border-radius: 0.45rem;
  background: rgba(12, 13, 15, 0.72);
  color: transparent;
  backdrop-filter: blur(8px);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.album-select__box i {
  font-size: 1.05rem;
  line-height: 1;
}

.album-select:hover .album-select__box,
.album-select:focus-within .album-select__box {
  border-color: rgba(196, 165, 116, 0.55);
}

.album-select input:checked + .album-select__box,
.album-thumb-wrap.is-selected .album-select__box {
  color: #0c0d0f;
  background: var(--ix-accent, #c4a574);
  border-color: rgba(196, 165, 116, 0.9);
}

.album-thumb-wrap.is-selected .album-thumb {
  border-color: rgba(196, 165, 116, 0.55);
  box-shadow:
    0 0 0 1px rgba(196, 165, 116, 0.22),
    0 10px 28px rgba(0, 0, 0, 0.32);
}

.album-bulk {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 0.75rem;
  width: 100%;
  margin-top: 0.15rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(243, 241, 236, 0.08);
}

.album-bulk__count {
  color: var(--ix-text-muted);
  font-size: 0.9rem;
  margin-right: 0.25rem;
}

.album-zip-status {
  width: 100%;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(196, 165, 116, 0.95);
}

.album-proof-badge {
  width: 100%;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(196, 165, 116, 0.95);
  border: 1px solid rgba(196, 165, 116, 0.28);
  background: rgba(196, 165, 116, 0.08);
  padding: 0.45rem 0.85rem;
}

.album-proof-badge--unlocked {
  color: rgba(180, 210, 170, 0.95);
  border-color: rgba(180, 210, 170, 0.28);
  background: rgba(180, 210, 170, 0.08);
}

.orient-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
}

.orient-filter__label {
  font-size: 0.92rem;
  color: var(--ix-text);
}

.orient-filter__select {
  appearance: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(243, 241, 236, 0.2);
  color: #f3f1ec;
  border-radius: 0.35rem;
  padding: 0.35rem 1.75rem 0.35rem 0.65rem;
  font-size: 0.88rem;
  background-image: linear-gradient(45deg, transparent 50%, rgba(243, 241, 236, 0.7) 50%),
    linear-gradient(135deg, rgba(243, 241, 236, 0.7) 50%, transparent 50%);
  background-position: calc(100% - 14px) 55%, calc(100% - 9px) 55%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.orient-filter__select:focus {
  outline: none;
  border-color: rgba(196, 165, 116, 0.55);
}

.orient-filter__select option {
  color: #111;
}

.album-note-dot {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #c4a574;
  box-shadow: 0 0 0 2px rgba(12, 13, 15, 0.75);
}

.album-viewer__print {
  color: #e4d2ad;
  font-size: 0.78rem;
  margin-top: 0.15rem !important;
  letter-spacing: 0.01em;
}

.request-list__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.request-list__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(243, 241, 236, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.request-list__num {
  flex: 0 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(196, 165, 116, 0.2);
  color: #c4a574;
  font-size: 0.8rem;
}

.request-list__title {
  font-size: 0.92rem;
  color: #f3f1ec;
}

.request-list__note {
  margin-top: 0.25rem !important;
  font-size: 0.85rem;
  color: rgba(243, 241, 236, 0.78);
}

.request-list__note-when {
  color: rgba(196, 165, 116, 0.85);
  font-size: 0.8em;
}

.request-list__note--empty {
  color: rgba(243, 241, 236, 0.45);
  font-style: italic;
}

.session-warning {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  z-index: 1080;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  max-width: min(36rem, calc(100vw - 1.5rem));
  padding: 0.85rem 1rem;
  border: 1px solid rgba(196, 165, 116, 0.45);
  background: rgba(12, 13, 15, 0.94);
  color: #f3f1ec;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
}

.session-warning__text {
  font-size: 0.9rem;
  text-align: center;
}

.album-toolbar__tools {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
}

.album-toolbar__fav-count {
  color: var(--ix-text-muted);
  font-size: 0.9rem;
}

.fav-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  cursor: pointer;
  user-select: none;
}

.fav-filter__label {
  font-size: 0.92rem;
  color: var(--ix-text);
}

.fav-filter__switch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.fav-filter__switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fav-filter__track {
  width: 2.75rem;
  height: 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 241, 236, 0.2);
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.fav-filter__knob {
  position: absolute;
  top: 0.15rem;
  left: 0.15rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  background: #f3f1ec;
  transition: transform 0.2s ease;
}

.fav-filter__switch input:checked + .fav-filter__track {
  background: rgba(196, 165, 116, 0.35);
  border-color: rgba(196, 165, 116, 0.55);
}

.fav-filter__switch input:checked + .fav-filter__track .fav-filter__knob {
  transform: translateX(1.25rem);
}

.fav-filter__state {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ix-text-muted);
  min-width: 1.75rem;
}

.album-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, opacity 0.35s ease;
}

.album-thumb img.is-lazy:not(.is-loaded) {
  opacity: 0;
}

.album-thumb:hover,
.album-thumb:focus-visible {
  border-color: rgba(196, 165, 116, 0.5);
  box-shadow:
    0 0 0 1px rgba(196, 165, 116, 0.22),
    0 10px 28px rgba(0, 0, 0, 0.32);
  outline: none;
}

.album-thumb:hover img,
.album-thumb:focus-visible img {
  transform: scale(1.05);
}

.album-viewer {
  background: #050506;
  border: 0;
  border-radius: 0;
  color: #f3f1ec;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#albumViewer .modal-dialog,
#albumViewer .modal-content {
  height: 100%;
  max-height: 100%;
  margin: 0;
  overflow: hidden;
}

.album-viewer__bar {
  position: relative;
  z-index: 5;
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.55rem;
  padding: 0.7rem var(--ix-pad);
  border-bottom: 1px solid rgba(243, 241, 236, 0.16);
  background: rgba(5, 5, 6, 0.94);
}

.album-viewer__title {
  justify-self: start;
  font-weight: 600;
  min-width: 0;
  color: #f7f4ee;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.album-viewer__info {
  justify-self: center;
  max-width: min(36rem, 46vw);
  padding: 0.4rem 0.95rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(243, 241, 236, 0.18);
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
  pointer-events: none;
}

.album-viewer__bar-end {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem 0.75rem;
  min-width: 0;
}

.album-viewer__counter {
  color: rgba(243, 241, 236, 0.72);
  font-size: 0.9rem;
}

.album-viewer__actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.album-viewer__action {
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: 1px solid rgba(243, 241, 236, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f7f4ee;
  display: grid;
  place-items: center;
}

.album-viewer__action:hover,
.album-viewer__action:focus-visible {
  border-color: rgba(196, 165, 116, 0.65);
  background: rgba(196, 165, 116, 0.2);
  color: #fff;
  outline: none;
}

.album-viewer__action[aria-pressed="true"] {
  color: #ffb4bc;
  border-color: rgba(255, 180, 188, 0.55);
  background: rgba(255, 180, 188, 0.12);
}

.private-action-modal {
  background: #15171b;
  border: 1px solid rgba(243, 241, 236, 0.12);
  color: var(--ix-text);
}

.private-action-modal__lede {
  color: var(--ix-text-muted);
  margin-bottom: 1rem;
}

.private-size-list {
  display: grid;
  gap: 0.55rem;
}

.private-size-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  width: 100%;
  text-align: left;
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(243, 241, 236, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ix-text);
}

.private-size-btn:hover,
.private-size-btn:focus-visible,
.private-size-btn.is-selected {
  border-color: rgba(196, 165, 116, 0.5);
  background: rgba(196, 165, 116, 0.1);
  outline: none;
}

.private-size-btn:disabled {
  opacity: 0.55;
  cursor: wait;
}

.private-size-btn__name {
  font-weight: 600;
}

.private-size-btn__meta {
  font-size: 0.85rem;
  color: var(--ix-text-muted);
}

.private-share-networks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.album-viewer__stage {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 1rem 4rem;
  background: #050506;
  overflow: hidden;
  touch-action: none;
  user-select: none;
}

.album-viewer__frame {
  position: relative;
  margin: 0;
  padding: 3px;
  max-width: min(100%, 92vw);
  max-height: 100%;
  border: 1px solid rgba(243, 241, 236, 0.34);
  background: rgba(12, 13, 15, 0.55);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 18px 40px rgba(0, 0, 0, 0.38);
  line-height: 0;
}

.album-viewer__stage img,
.album-viewer__frame img {
  display: block;
  max-height: calc(100dvh - 6.5rem);
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.album-viewer__note-pill {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  z-index: 3;
  transform: translateX(-50%);
  max-width: min(32rem, calc(100% - 1.5rem));
  padding: 0.55rem 1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(196, 165, 116, 0.4);
  background: rgba(12, 13, 15, 0.86);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  text-align: center;
  line-height: 1.35;
  pointer-events: none;
}

.album-viewer__note-when {
  color: rgba(228, 210, 173, 0.92);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.15rem !important;
}

.album-viewer__note-preview {
  color: #f7f4ee;
  font-size: 0.86rem;
  max-width: 100%;
}

.album-viewer__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  border: 1px solid rgba(243, 241, 236, 0.28);
  background: rgba(12, 13, 15, 0.82);
  color: #f7f4ee;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
}

.album-viewer__nav:hover,
.album-viewer__nav:focus-visible {
  background: rgba(196, 165, 116, 0.28);
  border-color: rgba(196, 165, 116, 0.65);
  color: #fff;
  outline: none;
}

.album-viewer__nav--prev { left: 0.85rem; }
.album-viewer__nav--next { right: 0.85rem; }

.album-viewer__meta {
  color: #f7f4ee;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .album-viewer__bar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .album-viewer__info {
    grid-column: 1 / -1;
    justify-self: stretch;
    max-width: none;
    order: 3;
  }

  .album-viewer__bar-end {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 768px) {
  .album-viewer__bar {
    padding: 0.65rem 0.85rem;
    column-gap: 0.65rem;
  }

  .album-viewer__title {
    font-size: 0.95rem;
  }

  .album-viewer__stage {
    padding: 0.65rem 0.55rem;
  }

  .album-viewer__frame {
    max-width: calc(100vw - 1.1rem);
  }

  .album-viewer__stage img,
  .album-viewer__frame img {
    max-height: calc(100dvh - 7.25rem);
  }

  .album-viewer__nav {
    width: 2.55rem;
    height: 2.55rem;
    opacity: 0.78;
  }

  .album-viewer__nav--prev { left: 0.35rem; }
  .album-viewer__nav--next { right: 0.35rem; }

  .album-viewer__meta {
    font-size: 0.78rem;
  }
}

/* —— Page hero banner (shared) —— */
.page-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Keep lightbox above the fixed album backdrop */
body.modal-open .page-backdrop {
  opacity: 0;
  visibility: hidden;
}

/* Fullscreen viewer sits above the page; action modals stack above the viewer */
#albumViewer {
  z-index: 1100;
}

#privateDownloadModal,
#privateShareModal,
#privateNoteModal,
#privateRequestModal {
  z-index: 1160;
}

.modal-backdrop {
  z-index: 1090;
}

/* Dim the lightbox when an action modal opens on top of it */
.modal-backdrop.show ~ .modal-backdrop {
  z-index: 1150;
}

.page-backdrop__media,
.page-backdrop__scrim {
  position: absolute;
  inset: 0;
}

.page-backdrop__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transform: scale(1.03);
  animation: hero-zoom 18s ease-out forwards;
}

.page-backdrop__scrim {
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0.3) 0%, rgba(8, 9, 11, 0.22) 38%, rgba(8, 9, 11, 0.72) 72%, rgba(8, 9, 11, 0.88) 100%),
    radial-gradient(ellipse 75% 55% at 50% 70%, rgba(8, 9, 11, 0.15), rgba(8, 9, 11, 0.55));
}

.page-hero {
  position: relative;
  width: 100%;
  min-height: min(68vh, 40rem);
  display: flex;
  align-items: flex-end;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(2.5rem, 5vw, 3.75rem);
  overflow: hidden;
  isolation: isolate;
}

.page-hero--fixed {
  background: transparent;
  overflow: visible;
  z-index: 1;
}

.page-hero--compact {
  min-height: min(42vh, 26rem);
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}

.page-hero--full {
  min-height: calc(100vh - var(--ix-header-h));
  min-height: calc(100dvh - var(--ix-header-h));
  padding: clamp(4rem, 12vw, 8rem) 0 clamp(2.75rem, 6vw, 4.5rem);
}

.page-hero--full .page-hero__title {
  font-size: clamp(3rem, 10vw, 6.5rem);
}

.page-album .page-hero--full .page-hero__title {
  font-size: clamp(2.6rem, 8vw, 5.2rem);
}

.section--after-hero {
  padding-top: clamp(1.75rem, 3.5vw, 2.5rem);
}

.section--on-backdrop {
  position: relative;
  z-index: 1;
}

.page-album .album-toolbar {
  margin-bottom: 1.25rem;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transform: scale(1.03);
  animation: hero-zoom 18s ease-out forwards;
}

.page-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0.3) 0%, rgba(8, 9, 11, 0.18) 38%, rgba(8, 9, 11, 0.78) 72%, rgba(8, 9, 11, 0.96) 100%),
    radial-gradient(ellipse 75% 55% at 50% 70%, rgba(8, 9, 11, 0.15), rgba(8, 9, 11, 0.55));
}

.page-hero__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 241, 236, 0.72);
}

.page-hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--ix-font-display);
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 0.98;
  color: #f7f4ee;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.4);
}

.page-hero--compact .page-hero__title {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
}

.page-hero__lede {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(243, 241, 236, 0.88);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
}

.page-hero__inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero__inner .page-hero__lede {
  margin-inline: auto;
}

@media (prefers-reduced-motion: reduce) {
  .page-hero__media img,
  .page-backdrop__media img {
    animation: none;
    transform: none;
  }
}

.section.about-story,
.page-gallery .section,
.page-album .section,
.page-private .section,
.page-shoots .section {
  padding-top: clamp(2rem, 4vw, 3rem);
}

/* 404 — calm centered empty state */
.page-404 .site-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-404 .section {
  padding-block: clamp(4rem, 12vw, 8rem);
}

.page-404 .page-hero__eyebrow {
  color: var(--ix-text-muted);
}

.page-about .about-story__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .page-about .about-story__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
}

.page-about .about-story__copy p {
  max-width: none;
}

.page-about .about-approach__intro {
  text-align: center;
  margin-inline: auto;
  max-width: 40rem;
}

.page-about .about-approach__intro .section__lede {
  margin-inline: auto;
}

.page-about .about-approach__row {
  text-align: center;
}

.page-about .about-approach__text {
  margin-inline: auto;
}

.page-about .about-story__actions {
  justify-content: flex-start;
}

.page-about .about-close .site-fluid--center {
  text-align: center;
}

.about-story__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .about-story__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr);
  }
}

.about-story__heading {
  margin: 0 0 1.15rem;
  font-family: var(--ix-font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
  font-weight: 500;
  line-height: 1.15;
}

.about-story__copy p {
  margin: 0 0 1.1rem;
  max-width: 38rem;
  color: var(--ix-text-muted);
  font-size: 1.05rem;
}

.about-story__note {
  padding-top: 0.35rem;
  border-top: 1px solid var(--ix-border);
  font-size: 0.98rem !important;
}

.about-story__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.about-story__figure {
  margin: 0;
  position: relative;
  border-radius: var(--ix-media-radius);
  overflow: hidden;
  background: var(--ix-surface);
  aspect-ratio: 4 / 5;
  max-height: min(80vh, 44rem);
  border: 1px solid rgba(243, 241, 236, 0.08);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.about-story__figure:hover {
  border-color: rgba(196, 165, 116, 0.45);
  box-shadow:
    0 0 0 1px rgba(196, 165, 116, 0.18),
    0 14px 36px rgba(0, 0, 0, 0.3);
}

.about-story__figure img,
.about-rotator__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-rotator__image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  z-index: 0;
}

.about-rotator__image.is-active {
  opacity: 1;
  z-index: 1;
}

.about-story__figure--empty {
  background: linear-gradient(145deg, #1b1e24, #101217 55%, #1a1712);
}

.about-story__caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.88);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
  transition: opacity 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
  .about-rotator__image {
    transition: none;
  }
}

.about-approach {
  border-top: 1px solid var(--ix-border);
  border-bottom: 1px solid var(--ix-border);
  background: rgba(0, 0, 0, 0.18);
}

.about-approach__intro {
  margin-bottom: 2rem;
}

.about-approach__row {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .about-approach__row {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.about-approach__index {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ix-accent);
}

.about-approach__title {
  margin: 0 0 0.55rem;
  font-family: var(--ix-font-display);
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  font-weight: 500;
}

.about-approach__text {
  margin: 0;
  max-width: 28ch;
  color: var(--ix-text-muted);
  font-size: 0.98rem;
}

.about-mosaic {
  width: 100%;
  max-width: var(--ix-shell);
  margin-inline: auto;
  padding: var(--ix-pad-tight) var(--ix-pad);
}

.about-mosaic__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ix-pad-tight);
}

@media (min-width: 768px) {
  .about-mosaic__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-mosaic__item {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--ix-surface);
  border-radius: var(--ix-media-radius);
  border: 1px solid rgba(243, 241, 236, 0.08);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.about-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.about-mosaic__item:hover {
  border-color: rgba(196, 165, 116, 0.5);
  box-shadow:
    0 0 0 1px rgba(196, 165, 116, 0.2),
    0 12px 32px rgba(0, 0, 0, 0.32);
}

.about-mosaic__item:hover img {
  transform: scale(1.05);
}

.about-mosaic__item figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.85rem;
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f7f4ee;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.about-close {
  text-align: left;
}

/* —— Private form —— */
.private-form__pin {
  max-width: 100%;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 600;
}

.private-form__pin:disabled {
  opacity: 0.55;
}

.private-panel {
  padding: 0;
}

.form-label,
.form-text {
  color: var(--ix-text-muted);
}

.contact-form__input {
  background: var(--ix-bg-elevated);
  border-color: var(--ix-border);
  color: var(--ix-text);
  border-radius: var(--ix-radius);
}

.contact-form__input:focus {
  background: var(--ix-bg-elevated);
  border-color: var(--ix-accent);
  box-shadow: 0 0 0 0.2rem rgba(196, 165, 116, 0.2);
  color: var(--ix-text);
}

.contact-form textarea.contact-form__input {
  min-height: 10rem;
}

.contact-form__honey {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form {
  position: relative;
}

/* —— Footer (mirrors header nav language) —— */
.site-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: auto;
  padding: 1.35rem 0 1.5rem;
  border-top: 1px solid var(--ix-border);
  backdrop-filter: blur(14px);
  background: rgba(12, 13, 15, 0.88);
}

body:has(.page-backdrop) .site-footer {
  background: rgba(12, 13, 15, 0.94);
}

.site-footer__bar {
  min-height: var(--ix-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap;
}

.site-footer__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.site-footer__list {
  justify-content: center;
}

.site-footer__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}

.site-footer__social a {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--ix-border);
  color: var(--ix-text-muted);
  text-decoration: none;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.03);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-footer__social a:hover {
  color: var(--ix-text);
  border-color: rgba(196, 165, 116, 0.45);
  background: rgba(196, 165, 116, 0.1);
}

.site-footer__meta {
  margin: 0.85rem auto 0;
  padding-top: 0.95rem;
  border-top: 1px solid var(--ix-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  flex-wrap: wrap;
}

.site-footer__tagline,
.site-footer__copy {
  margin: 0;
  color: var(--ix-text-muted);
  font-size: 0.82rem;
}

@media (max-width: 991.98px) {
  .site-footer__bar {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 1rem;
  }

  .site-footer__nav {
    flex: 0 0 100%;
    order: 3;
  }

  .site-footer__list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-footer__social {
    justify-content: center;
  }

  .site-footer__meta {
    justify-content: center;
    text-align: center;
  }
}

