/* LUMINA STUDIO — site sections */

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease), padding var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(11, 11, 12, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  padding: 0.7rem 0;
  border-color: var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand .ko {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--off-white-dim);
  font-weight: 500;
}

.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  gap: clamp(1.1rem, 2vw, 2rem);
  font-size: 0.88rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 4px;
  color: var(--off-white-dim);
  transition: color var(--dur-fast) var(--ease);
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--off-white);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width var(--dur-fast) var(--ease);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-actions .btn {
  padding: 0.6rem 1.3rem;
  font-size: 0.82rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  height: 1px;
  width: 20px;
  margin: 0 auto;
  background: var(--off-white);
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}

@media (min-width: 900px) {
  .main-nav {
    display: block;
  }
  .nav-toggle {
    display: none;
  }
}

/* Mobile full-screen nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  padding: 6.5rem 1.5rem 2rem;
  transform: translateY(-100%);
  transition: transform var(--dur) var(--ease);
}

.nav-overlay.is-open {
  transform: translateY(0);
}

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

.nav-overlay .close-nav {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-size: 1.4rem;
}

.nav-overlay ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-size: 2.1rem;
}

.nav-overlay a {
  color: var(--off-white-dim);
}

.nav-overlay a:hover,
.nav-overlay a:focus-visible {
  color: var(--gold-light);
}

.nav-overlay .overlay-footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--off-white-dim);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

@media (min-width: 900px) {
  .nav-overlay {
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: 6rem;
}

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

.hero-content {
  width: 100%;
  padding-bottom: clamp(3.5rem, 8vh, 6rem);
}

.hero-title {
  font-size: clamp(2.8rem, 8vw, 6.4rem);
  line-height: 0.98;
  margin-bottom: 1.2rem;
}

.hero-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.hero-title .word > span {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 0.9s var(--ease);
}

.hero-title.is-ready .word > span {
  transform: translateY(0);
}

.hero-title .word:nth-child(1) > span { transition-delay: 0.05s; }
.hero-title .word:nth-child(2) > span { transition-delay: 0.15s; }
.hero-title .word:nth-child(3) > span { transition-delay: 0.25s; }
.hero-title .word:nth-child(4) > span { transition-delay: 0.35s; }

.hero-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--off-white-dim);
  max-width: 34ch;
  margin-bottom: 2.2rem;
}

@media (prefers-reduced-motion: reduce) {
  .hero-title .word > span {
    transform: none;
    transition: none;
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.8rem;
}

.hero-info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--off-white-dim);
}

.hero-info-strip strong {
  color: var(--gold-light);
  font-weight: 600;
}

.scroll-cue {
  position: absolute;
  right: clamp(1.25rem, 5vw, 3rem);
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--off-white-dim);
  writing-mode: vertical-rl;
}

.scroll-cue .line {
  width: 1px;
  height: 46px;
  background: var(--line-strong);
  position: relative;
  overflow: hidden;
}

.scroll-cue .line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--gold);
  animation: cue-slide 2.2s var(--ease) infinite;
}

@keyframes cue-slide {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(250%); }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue .line::after {
    animation: none;
    transform: translateY(60%);
  }
}

/* ---------- Section shells ---------- */
.section {
  padding: clamp(4rem, 10vh, 8rem) 0;
  position: relative;
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 5vh, 3.5rem);
}

.section-head h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  margin-top: 0.6rem;
  line-height: 1.08;
}

.section-head p {
  margin-top: 1rem;
  color: var(--off-white-dim);
  font-size: 1.02rem;
  max-width: 40ch;
}

.section-alt {
  background: var(--ink-2);
}

/* ---------- Services (tabs) ---------- */
.service-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.5rem;
}

.service-tab {
  padding: 0.7rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--off-white-dim);
  border-radius: var(--radius);
  position: relative;
}

.service-tab[aria-selected="true"] {
  color: var(--ink);
  background: var(--gold);
}

.service-tab:not([aria-selected="true"]):hover {
  color: var(--off-white);
}

.service-panel {
  display: none;
}

.service-panel.is-active {
  display: block;
}

.service-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-item {
  background: var(--ink);
  padding: 1.6rem clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 1.5rem;
  align-items: baseline;
  transition: background var(--dur-fast) var(--ease);
}

.service-item:hover {
  background: var(--ink-3);
}

.service-item h3 {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--off-white);
}

.service-item .price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-light);
  white-space: nowrap;
}

.service-item .meta {
  grid-column: 1 / -1;
  font-size: 0.88rem;
  color: var(--off-white-dim);
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.service-item .meta span::before {
  content: "· ";
  color: var(--gold-dim);
}

.service-item .meta span:first-child::before {
  content: "";
}

/* ---------- Stylists ---------- */
.stylist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

@media (min-width: 800px) {
  .stylist-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stylist-card {
  position: relative;
}

.stylist-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
}

.stylist-photo img {
  transition: filter var(--dur) var(--ease), transform var(--dur-slow) var(--ease);
}

.stylist-card:hover .stylist-photo img,
.stylist-card:focus-within .stylist-photo img {
  filter: none;
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .stylist-card:hover .stylist-photo img,
  .stylist-card:focus-within .stylist-photo img {
    transform: none;
  }
}

.stylist-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  z-index: 3;
  transform: translateY(8px);
  opacity: 0.92;
  transition: transform var(--dur) var(--ease);
}

.stylist-card:hover .stylist-info,
.stylist-card:focus-within .stylist-info {
  transform: translateY(0);
}

.stylist-info .name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--off-white);
}

.stylist-info .role {
  font-size: 0.78rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
}

.stylist-info .years {
  font-size: 0.78rem;
  color: var(--off-white-dim);
  margin-top: 0.35rem;
}

/* ---------- Lookbook / lightbox gallery ---------- */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

@media (min-width: 700px) {
  .lookbook-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .lookbook-grid li:nth-child(3n+2) {
    margin-top: 2rem;
  }
}

.lookbook-item {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  width: 100%;
  display: block;
  text-align: left;
}

.lookbook-item .duotone {
  height: 100%;
}

.lookbook-item img {
  transition: transform var(--dur) var(--ease);
}

.lookbook-item:hover img,
.lookbook-item:focus-visible img {
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .lookbook-item:hover img,
  .lookbook-item:focus-visible img {
    transform: none;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 6, 7, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-fast) var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

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

.lightbox img {
  max-height: 84vh;
  max-width: 90vw;
  width: auto;
  border: 1px solid var(--line);
  filter: grayscale(1) contrast(1.1) brightness(0.92) sepia(0.3);
}

.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--off-white-dim);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 1px solid var(--line-strong);
  background: rgba(11, 11, 12, 0.6);
  color: var(--off-white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: border-color var(--dur-fast) var(--ease);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: var(--gold);
}

.lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
}

.lightbox-prev {
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

/* ---------- Pricing ---------- */
.pricing-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--gold-light);
}

/* ---------- Booking steps (sticky scroll) ---------- */
.booking-steps {
  position: relative;
}

.booking-steps .booking-sticky-spacer {
  height: 240vh;
}

@media (prefers-reduced-motion: reduce) {
  .booking-steps .booking-sticky-spacer {
    height: auto;
  }
  .booking-sticky {
    position: static;
    height: auto;
    padding: 2rem 0;
  }
  .booking-step {
    opacity: 1;
  }
  .booking-visual {
    display: none;
  }
}

.booking-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.booking-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  width: 100%;
}

@media (min-width: 900px) {
  .booking-track {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }
}

.booking-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  display: none;
}

@media (min-width: 900px) {
  .booking-visual {
    display: block;
  }
}

.booking-step-list {
  counter-reset: step;
}

.booking-step {
  counter-increment: step;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  opacity: 0.38;
  transition: opacity var(--dur) var(--ease);
}

.booking-step:first-child {
  border-top: 0;
}

.booking-step.is-active {
  opacity: 1;
}

.booking-step .num {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.95rem;
  margin-right: 0.4rem;
}

.booking-step .num::before {
  content: counter(step, decimal-leading-zero);
}

.booking-step h3 {
  display: inline;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--off-white);
}

.booking-step p {
  margin-top: 0.6rem;
  color: var(--off-white-dim);
  font-size: 0.95rem;
  max-width: 40ch;
}

.booking-progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.booking-progress::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--progress, 0%);
  background: var(--gold);
  transition: height var(--dur-fast) linear;
}

/* ---------- Testimonial marquee ---------- */
.marquee-wrap {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.marquee-row {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
}

.marquee-row[data-dir="left"] {
  animation: marquee-left 42s linear infinite;
}

.marquee-row[data-dir="right"] {
  animation: marquee-right 38s linear infinite;
}

.marquee-wrap:hover .marquee-row,
.marquee-wrap:focus-within .marquee-row {
  animation-play-state: paused;
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-row[data-dir] {
    animation: none;
  }
  .marquee-wrap {
    overflow-x: auto;
  }
}

.testimonial-card {
  flex: 0 0 auto;
  width: min(360px, 82vw);
  padding: 1.5rem 1.6rem;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
}

.testimonial-card p {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--off-white);
}

.testimonial-card .who {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--off-white-dim);
}

/* ---------- Location ---------- */
.location-grid {
  display: grid;
  gap: var(--gap);
}

@media (min-width: 900px) {
  .location-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.map-card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.map-card svg {
  width: 100%;
  height: auto;
  display: block;
}

.map-card .map-actions {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.map-disabled-note {
  font-size: 0.82rem;
  color: var(--off-white-dim);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.hours-table th {
  text-align: left;
  font-weight: 600;
  color: var(--off-white-dim);
  padding-bottom: 0.6rem;
}

.hours-table td,
.hours-table th {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.hours-table tr:last-child td,
.hours-table tr:last-child th {
  border-bottom: 0;
}

.hours-table .today {
  color: var(--gold-light);
  font-weight: 700;
}

.contact-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--off-white-dim);
}

.contact-list a:hover {
  color: var(--gold-light);
}

/* ---------- Booking form ---------- */
.form-grid {
  display: grid;
  gap: 1.4rem;
  max-width: 42rem;
}

@media (min-width: 700px) {
  .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }
}

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--off-white-dim);
  margin-bottom: 0.5rem;
}

.field .required {
  color: var(--gold);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: var(--off-white);
  transition: border-color var(--dur-fast) var(--ease);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(244, 241, 233, 0.35);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field-error {
  font-size: 0.8rem;
  color: #e8927a;
  margin-top: 0.4rem;
  display: none;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #e8927a;
}

.field.has-error .field-error {
  display: block;
}

.form-demo-note {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  background: var(--ink-2);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  font-size: 0.86rem;
  color: var(--off-white-dim);
}

.form-status {
  font-size: 0.92rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status[data-kind="success"] {
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
}

.form-status[data-kind="error"] {
  background: rgba(232, 146, 122, 0.12);
  border: 1px solid #a85a44;
  color: #e8927a;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 50rem;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  transition: transform var(--dur-fast) var(--ease);
}

.faq-item[open] summary .icon {
  transform: rotate(45deg);
}

.faq-item .faq-a {
  padding: 0 0 1.4rem;
  color: var(--off-white-dim);
  font-size: 0.96rem;
  max-width: 46rem;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item summary .icon {
    transition: none;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 4rem 0 2rem;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

.footer-brand .brand {
  margin-bottom: 0.9rem;
}

.footer-brand p {
  color: var(--off-white-dim);
  font-size: 0.92rem;
  max-width: 32ch;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--off-white-dim);
  transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.footer-col h4 {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--off-white-dim);
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--off-white-dim);
}

.footer-bottom details {
  margin-top: 0.75rem;
  width: 100%;
  font-size: 0.78rem;
  color: var(--off-white-dim);
}

.footer-bottom summary {
  cursor: pointer;
  color: var(--gold-dim);
}

.footer-disclaimer {
  width: 100%;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--off-white-dim);
  opacity: 0.85;
}

/* ---------- Generative artwork tiles (lookbook · stylist monograms) ----------
   Editorial-grade licensed photography is not obtainable for this vertical, so
   these slots ship hand-generated SVG art (tools/genart.cjs). It is already
   toned, so it must NOT receive the grayscale/sepia duotone treatment that the
   photographic slots need — only a light gold scrim for consistency. */
.art-tile {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
}

.art-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    160deg,
    rgba(201, 162, 39, 0.1),
    rgba(11, 11, 12, 0.12) 55%,
    rgba(11, 11, 12, 0.5)
  );
}

.lookbook-item .art-tile {
  height: 100%;
}
