/* =========================================================
   Variables & Reset
   ========================================================= */
:root {
  --bg:         #0d1117;
  --surface:    #161b22;
  --border:     #21262d;
  --border-h:   #30363d;
  --text:       #e6edf3;
  --text-muted: #7d8590;
  --accent:     #a3e635;
  --accent-h:   #c2f04e;
  --accent-dim: rgba(163, 230, 53, 0.12);
  --nav-h:      68px;
  --ease:       0.28s ease;
  --font:       'Space Grotesk', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img    { display: block; max-width: 100%; height: auto; }
a      { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* =========================================================
   Typography
   ========================================================= */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
}

/* =========================================================
   Layout utilities
   ========================================================= */
.container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
}

.section      { padding: 96px 0; }
.section--alt { background: var(--surface); }

/* Section headers – centered block */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* Lines flanking the label in centred section-header */
.section-header .section-label::before,
.section-header .section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -.03em;
}

/* =========================================================
   Navbar
   ========================================================= */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  z-index: 900;
  display: flex;
  align-items: center;
  transition: background var(--ease), border-color var(--ease), backdrop-filter var(--ease);
}

.navbar.scrolled {
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
}

/* Lime dot accent on logo */
.nav-logo::after {
  content: '.';
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links > a,
.dropdown-trigger {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--ease);
  background: none;
  border: none;
  padding: 0;
  position: relative;
}

.nav-links > a::after,
.dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--ease);
}

.nav-links > a:hover,
.dropdown-trigger:hover { color: var(--text); }
.nav-links > a:hover::after,
.dropdown-trigger:hover::after { width: 100%; }

.arrow { font-size: 9px; margin-left: 2px; }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--surface);
  border: 1px solid var(--border);
  min-width: 164px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 9px 16px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--ease), background var(--ease);
}

.dropdown-menu a:hover {
  background: var(--border);
  color: var(--accent);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Atmospheric default when no image is set */
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 25% 75%, rgba(163, 230, 53, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 15%, rgba(163, 230, 53, 0.04) 0%, transparent 45%);
  overflow: hidden;
}

.hero--image {
  background-size: cover;
  background-position: center;
  /* Override gradient when image is set */
  background-image: none;
}

/* Reapply just the dim overlay when image is present */
.hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Dynamic inline style handles the bg-image; this just sits in front */
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.45) 45%,
    rgba(13,17,23,.88) 100%
  );
  z-index: 1;
}

/* No overlay on default bg — it would just darken the gradient */
.hero:not(.hero--image) .hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 32px;
  max-width: 880px;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.hero-name {
  font-size: clamp(3.8rem, 10vw, 10rem);
  font-weight: 700;
  letter-spacing: -.04em;
  color: #fff;
  line-height: .95;
  margin-bottom: 18px;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
  letter-spacing: .01em;
}

.hero-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Primary button — filled lime */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  background: var(--accent);
  color: #0d1117;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background var(--ease), transform var(--ease);
}

.btn-outline::after {
  content: '→';
  font-size: 14px;
  transition: transform var(--ease);
}

.btn-outline:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
}

.btn-outline:hover::after { transform: translateX(4px); }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll-indicator span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(163,230,53,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  49%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================================
   Category Grid
   ========================================================= */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 3px;
}

.category-card {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--surface);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
  filter: brightness(.9) saturate(1.1);
}

.category-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--border);
}

.category-card:hover img { transform: scale(1.06); filter: brightness(1) saturate(1.2); }

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,17,23,.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  transition: background var(--ease);
}

.category-card:hover .category-card__overlay {
  background: linear-gradient(to top, rgba(13,17,23,.92) 0%, rgba(0,0,0,.2) 55%);
}

.category-card__overlay h3 {
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}

.category-card__overlay span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* =========================================================
   Album Grid
   ========================================================= */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.album-card { display: block; }

.album-card__img {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
}

.album-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  filter: brightness(.92) saturate(1.05);
}

.album-card:hover .album-card__img img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1.15);
}

.album-card__info { padding: 14px 0 0; }

.album-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
}

.album-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -.01em;
}

.album-location,
.album-count { font-size: 12px; color: var(--text-muted); }

/* =========================================================
   About
   ========================================================= */
.about-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 12px;
  filter: brightness(.9) saturate(1.05);
}

.about-content .section-label { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 22px; }

.about-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.85;
}

.about-text p { margin-bottom: 14px; }

/* =========================================================
   Reviews
   ========================================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 28px;
  transition: border-color var(--ease);
}

.review-card:hover { border-color: var(--border-h); border-left-color: var(--accent-h); }

.review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star         { font-size: 13px; color: var(--border-h); }
.star--filled { color: var(--accent); }

.review-text {
  font-style: normal;
  font-weight: 400;
  font-size: .975rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  quotes: '\201C' '\201D';
}

.review-text::before {
  content: open-quote;
  font-size: 2.2rem;
  line-height: 0;
  vertical-align: -.42em;
  color: var(--accent);
  opacity: .5;
  margin-right: 4px;
  font-weight: 700;
}

.review-author { display: flex; align-items: center; gap: 10px; }

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-author strong { display: block; font-size: 14px; font-weight: 600; }
.review-date          { display: block; font-size: 11px; color: var(--text-muted); }
.review-album         { display: block; font-size: 11px; color: var(--text-muted); }

/* =========================================================
   Contact
   ========================================================= */
#contact { text-align: center; }

.contact-content { max-width: 560px; margin: 0 auto; }
.contact-content .section-title { margin-bottom: 24px; }

.contact-email {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
  margin-bottom: 32px;
  letter-spacing: -.01em;
  transition: color var(--ease), border-color var(--ease);
}

.contact-email:hover { color: var(--accent-h); border-color: var(--accent-h); }

.contact-social { display: flex; justify-content: center; gap: 24px; }

.social-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--ease);
}

.social-link:hover { color: var(--accent); }
.social-arrow { margin-left: 4px; }

/* =========================================================
   Footer
   ========================================================= */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy { font-size: 12px; color: var(--text-muted); }

.footer-social { display: flex; gap: 18px; }

.footer-social a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--ease);
}

.footer-social a:hover { color: var(--accent); }

.footer-icon-link {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  transition: color var(--ease);
}

.footer-icon-link:hover { color: var(--accent); }

/* =========================================================
   Page Hero (category page)
   ========================================================= */
.page-hero {
  position: relative;
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  background: var(--surface);
  background-size: cover;
  background-position: center;
}

.page-hero--image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,17,23,.9) 0%, rgba(0,0,0,.25) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 44px 40px;
}

.page-hero__content h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.04em;
  margin-bottom: 8px;
}

.page-hero__desc {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  max-width: 500px;
}

/* =========================================================
   Album Header
   ========================================================= */
.album-header {
  padding: calc(var(--nav-h) + 56px) 0 52px;
  text-align: center;
}

.album-header__title {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -.04em;
  margin-bottom: 14px;
}

.album-header__meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .04em;
  margin-bottom: 16px;
}

.album-header__desc {
  max-width: 560px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--text-muted);
}

/* =========================================================
   Photo Grid — CSS masonry via columns
   ========================================================= */
.photo-grid {
  columns: 3 260px;
  column-gap: 4px;
  padding: 4px 24px 96px;
  max-width: 1600px;
  margin: 0 auto;
}

.photo-item {
  break-inside: avoid;
  margin-bottom: 4px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  background: var(--surface);
}

.photo-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease;
  filter: brightness(.93) saturate(1.1);
}

.photo-item:hover img {
  transform: scale(1.03);
  filter: brightness(1) saturate(1.2);
}

.photo-item__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ease), background var(--ease);
}

.photo-item:hover .photo-item__overlay {
  opacity: 1;
  background: rgba(163, 230, 53, 0.08);
}

/* =========================================================
   Breadcrumb
   ========================================================= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}

.breadcrumb a { color: var(--accent); transition: opacity var(--ease); }
.breadcrumb a:hover { opacity: .75; }

/* =========================================================
   Lightbox
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 16, 0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 70px 90px;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity .15s ease;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255,255,255,.4);
  transition: color var(--ease);
  line-height: 1;
}

.lightbox-close { top: 22px; right: 26px; font-size: 22px; }
.lightbox-prev  { top: 50%; left: 20px;  transform: translateY(-50%); font-size: 50px; }
.lightbox-next  { top: 50%; right: 20px; transform: translateY(-50%); font-size: 50px; }

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

.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80%;
}

.lightbox-counter {
  position: absolute;
  top: 24px;
  left: 26px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
}

/* =========================================================
   Empty state
   ========================================================= */
.empty-state {
  text-align: center;
  padding: 80px 0;
  color: var(--text-muted);
  font-size: 14px;
}

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .container     { padding: 0 28px; }
  .nav-container { padding: 0 28px; }
  .about-layout  { grid-template-columns: 1fr; gap: 44px; }
  .about-image   { max-width: 260px; }
}

@media (max-width: 768px) {
  .section { padding: 68px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(13,17,23,.97);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--border);
    flex-direction: column;
    padding: 14px 0 22px;
    gap: 0;
  }

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

  .nav-links > a,
  .dropdown-trigger { padding: 12px 28px; font-size: 12px; text-align: left; }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    padding: 0 0 6px 44px;
  }

  .nav-toggle { display: flex; }

  .category-grid { grid-template-columns: 1fr 1fr; }
  .album-grid    { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .photo-grid    { columns: 2 160px; padding: 4px 16px 70px; }

  .footer-inner  { flex-direction: column; gap: 12px; text-align: center; }
  .page-hero__content { padding: 34px 28px; }
  .album-header  { padding: calc(var(--nav-h) + 36px) 0 36px; }

  .lightbox-inner { padding: 56px 60px; }
  .lightbox-prev  { left: 6px; }
  .lightbox-next  { right: 6px; }
}

@media (max-width: 480px) {
  .container     { padding: 0 18px; }
  .nav-container { padding: 0 18px; }

  .category-grid { grid-template-columns: 1fr; }
  .photo-grid    { columns: 1; padding: 4px 8px 60px; }

  .lightbox-inner { padding: 48px 10px; }
}

/* =========================================================
   FAQ (details/summary accordion)
   ========================================================= */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -.01em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  transition: color var(--ease);
  user-select: none;
  gap: 16px;
}

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

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--ease);
}

details[open] .faq-question          { color: var(--accent); }
details[open] .faq-question::after   { transform: rotate(45deg); }

.faq-answer {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-answer p { margin-bottom: 10px; }

/* =========================================================
   Contact page
   ========================================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}

/* Form */
.contact-form         { display: flex; flex-direction: column; gap: 20px; }
.form-row             { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group           { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.required { color: var(--accent); }

.form-input,
.form-textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--ease), background var(--ease);
  resize: vertical;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
  background: var(--bg);
}

.form-textarea { min-height: 150px; }

/* Select — custom arrow, remove native chrome */
.form-select {
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237d8590' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

/* date input: tell browser to render in dark mode */
.form-input[type="date"] { color-scheme: dark; }

/* Optional field label hint */
.form-optional {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--border-h);
  margin-left: 5px;
}

/* Honeypot wrapper — invisible to humans, accessible to screen readers */
.phone-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Checkbox group rendered by CheckboxSelectMultiple */
.form-checkboxes { padding-top: 4px; }

.form-checkboxes > div { display: flex; flex-direction: column; gap: 10px; }

/* Override the uppercase label style for checkbox option labels */
.form-checkboxes label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
  cursor: pointer;
}

.form-checkboxes input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1px solid var(--border-h);
  background: var(--surface);
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  position: relative;
  transition: border-color var(--ease), background var(--ease);
  border-radius: 0;
}

.form-checkboxes input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}

.form-checkboxes input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 1px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #0d1117;
  border-bottom: 2px solid #0d1117;
  transform: rotate(-45deg);
}

.form-checkboxes input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form-group--error .form-input,
.form-group--error .form-textarea { border-color: #ef4444; }

.form-error {
  font-size: 12px;
  font-weight: 500;
  color: #ef4444;
}

.form-discord-error {
  padding: 13px 16px;
  background: rgba(239, 68, 68, .08);
  border: 1px solid rgba(239, 68, 68, .3);
  font-size: 13px;
  color: #f87171;
}

/* Full-width button */
.btn--full { width: 100%; justify-content: center; }

/* Sidebar */
.contact-info {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
}

.contact-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.contact-info__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.contact-info__item { margin-bottom: 20px; }

.contact-info__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--ease);
}

.contact-info__value:hover { color: var(--accent); }

.contact-info__response {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}

/* Success state */
.contact-success {
  text-align: center;
  padding: 80px 40px;
  max-width: 480px;
  margin: 0 auto;
}

.contact-success__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.contact-success h2 {
  font-size: 2rem;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}

.contact-success p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* =========================================================
   CTA strip (about page footer)
   ========================================================= */
.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-strip .section-label { margin-bottom: 8px; }
.cta-strip .section-title  { text-align: left; }

/* =========================================================
   Additional responsive rules
   ========================================================= */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 600px) {
  .form-row       { grid-template-columns: 1fr; }
  .cta-strip      { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   Language switcher
   ========================================================= */
.lang-switcher { display: flex; align-items: center; }
.lang-switcher form { display: flex; gap: 4px; }

.lang-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  padding: 3px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: color var(--ease), border-color var(--ease);
  line-height: 1.6;
}
.lang-btn--active,
.lang-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* =========================================================
   Footer links
   ========================================================= */
.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-legal {
  font-size: 12px;
  color: var(--text-muted);
  opacity: .6;
  transition: opacity var(--ease);
}
.footer-legal:hover { opacity: 1; color: var(--text-muted); }

/* =========================================================
   Legal page
   ========================================================= */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.85;
}

.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
  margin: 48px 0 12px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 28px 0 8px;
}

.legal-content p {
  font-size: 14px;
  margin-bottom: 16px;
}

/* =========================================================
   Instagram widget / follow card
   ========================================================= */
.instagram-widget { margin-top: 48px; }

.instagram-follow-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 32px;
  max-width: 480px;
  margin: 0 auto;
  text-decoration: none;
  transition: border-color var(--ease);
}

.instagram-follow-card:hover { border-color: var(--border-h); }

.instagram-follow-card__icon {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: color var(--ease);
}

.instagram-follow-card:hover .instagram-follow-card__icon { color: var(--accent); }

.instagram-follow-card__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.instagram-follow-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}

.instagram-follow-card__cta {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.instagram-follow-card__arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--ease), color var(--ease);
}

.instagram-follow-card:hover .instagram-follow-card__arrow {
  transform: translateX(4px);
  color: var(--accent);
}

/* =========================================================
   Film badge
   ========================================================= */
.album-card__img { position: relative; }

.film-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(13, 17, 23, 0.82);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
  pointer-events: none;
  z-index: 1;
}

.film-badge--inline {
  position: static;
  vertical-align: middle;
}

/* =========================================================
   Gear page
   ========================================================= */
.gear-type-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.gear-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color var(--ease);
}

.gear-card:hover { border-color: var(--border-h); }

.gear-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--border);
}

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

.gear-card:hover .gear-card__img img { transform: scale(1.04); }

.gear-card__info { padding: 16px 18px; }

.gear-card__name {
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: 6px;
}

.gear-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 600px) {
  .gear-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
}

/* =========================================================
   Locked gallery — unlock page
   ========================================================= */
.unlock-wrap {
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 0;
}

.unlock-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  color: var(--text-muted);
}

.unlock-title {
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  margin-bottom: 12px;
}

.unlock-subtitle {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.unlock-form { text-align: left; }

.unlock-form .btn-outline { margin-top: 8px; }

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================================================
   Services page
   ========================================================= */

/* Sticky in-page nav */
.services-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.services-nav__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.services-nav__list::-webkit-scrollbar { display: none; }

.services-nav__link {
  display: block;
  padding: 14px 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--ease), border-color var(--ease);
}

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

.services-nav__link.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Offset anchors so they don't hide behind the two sticky bars */
.service-target,
.portfolio-cat-target {
  scroll-margin-top: calc(var(--nav-h) + 49px);
}

/* ── Portfolio page ── */
.portfolio-cat-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.portfolio-cat-desc {
  margin-top: 10px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
}

.portfolio-cat-empty {
  color: var(--text-muted);
  text-align: center;
  padding: 48px 0;
}

/* Hero mode-switcher link */
.portfolio-mode-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  transition: color var(--ease);
}

.portfolio-mode-link:hover { color: var(--accent); }

/* Film CTA — distinct pill so it reads as a proper action */
.portfolio-mode-link--film {
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 9px 18px;
  margin-top: 28px;
  transition: color var(--ease), background var(--ease), border-color var(--ease);
}

.portfolio-mode-link--film:hover {
  background: var(--accent);
  color: #0d1117;
}

/* Film mode ○ icon */
.portfolio-mode-link--film::before {
  content: '';
  display: inline-block;
  width: 11px;
  height: 11px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color var(--ease);
}

/* Back arrow */
.portfolio-mode-link--back::before {
  content: '←';
  font-size: 13px;
  line-height: 1;
}

/* ── Film / analogue mode ── */
body.film-mode {
  --accent:     #909090;
  --accent-h:   #b0b0b0;
  --accent-dim: rgba(144, 144, 144, 0.12);
}

/* Grayscale treatment for every element that does NOT contain album photos */
body.film-mode .navbar,
body.film-mode footer,
body.film-mode .services-nav,
body.film-mode .page-hero,
body.film-mode .portfolio-cat-header,
body.film-mode .portfolio-cat-desc,
body.film-mode .portfolio-cat-empty,
body.film-mode .album-card__info {
  filter: grayscale(1);
}

/* Film grain overlay — subtle noise across the whole viewport */
body.film-mode::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
  opacity: 0.095;
}

/* Two-column layout: main content left, sidebar right */
.service-layout--stacked {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border);
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: stretch; /* both columns grow to the same height */
}

/* Sidebar is a flex column: photos flex-grow, then testimonial + CTA */
.service-sidebar {
  display: flex;
  flex-direction: column;
}

/* Photos block: grows to fill all space above the testimonial */
.service-photos {
  flex: 1;
  min-height: 200px;
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
  border-radius: 3px;
  overflow: hidden;
}

.service-photos--1 {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.service-photos--2 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}

.service-photos--3 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

/* First photo in a 3-photo mosaic spans both rows */
.service-photos--3 .service-photo-item:first-child {
  grid-row: span 2;
}

.service-photo-item {
  display: block;
  overflow: hidden;
  min-height: 0; /* lets grid cells collapse properly */
  margin-bottom: 0; /* override base .photo-item rule; grid gap handles spacing */
}

.service-photo-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease);
}

.service-photo-item:hover img { transform: scale(1.04); }

/* Sub-headings in the main column */
.service-block { margin-bottom: 36px; }

.service-block__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Prose body text — same as .about-text */
.service-prose {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.85;
}

.service-prose p { margin-bottom: 12px; }
.service-prose p:last-child { margin-bottom: 0; }

/* Bullet deliverables list */
.bullet-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.bullet-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Film / analogue note banner */
.service-film-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--accent-dim);
  border: 1px solid rgba(163, 230, 53, .3);
  border-radius: 3px;
  margin-top: 4px;
}

.service-film-note__icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.service-film-note__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}

.service-film-note__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Testimonial card — accent top border */
.service-testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 3px;
  padding: 22px 24px;
  margin-bottom: 20px;
}

.section--alt .service-testimonial { background: var(--bg); }

.service-testimonial--placeholder { opacity: .5; }

.service-testimonial .review-stars { margin-bottom: 12px; }

.service-testimonial__text {
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 16px;
}

.service-testimonial__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.service-testimonial__footer strong { display: block; }

/* Starting price */
.service-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 18px;
}

.service-price__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.service-price__amount {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -.03em;
  line-height: 1.1;
}

/* Client logo strip */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 56px;
  margin-top: 48px;
}

.logo-item {
  display: flex;
  align-items: center;
  opacity: .45;
  filter: grayscale(1);
  transition: opacity var(--ease), filter var(--ease);
}

.logo-item img {
  max-height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

a.logo-item:hover,
div.logo-item:hover { opacity: 1; filter: grayscale(0); }

/* ── Responsive ── */
@media (max-width: 700px) {
  .portfolio-cat-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 960px) {
  .service-layout {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 48px;
  }

  /* On mobile sidebar comes second; photos get a natural fixed height */
  .service-photos {
    flex: 0 0 auto;
    height: 280px;
  }
}

@media (max-width: 600px) {
  .service-photos--2,
  .service-photos--3 { grid-template-columns: 1fr; }
  .service-photos--3 .service-photo-item:first-child { grid-row: unset; }
  .service-price__amount { font-size: 1.4rem; }
}

/* =========================================================
   Shop
   ========================================================= */

/* ── Print grid ── */
.print-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 48px;
  margin-bottom: 80px;
}

.print-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.print-card__image-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.print-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.print-card:hover .print-card__image { transform: scale(1.03); }

.print-card__body { padding: 28px; }

.print-card__title {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.print-card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ── Print sizes table ── */
.print-sizes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.print-size-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}

.print-size-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.print-size-label {
  font-weight: 600;
  font-size: 0.95rem;
}

.print-size-edition {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.print-size-action {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.print-size-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

/* ── Order button ── */
.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background var(--ease), transform var(--ease);
  white-space: nowrap;
}
.btn-order:hover {
  background: var(--accent-h);
  transform: translateY(-1px);
}
.btn-order--large {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 8px;
}

/* ── Sold out section ── */
.sold-out-section { margin-top: 64px; }

.sold-out-title {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.sold-out-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.sold-out-card__image-wrap {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 8px;
}

.sold-out-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.5);
}

.sold-out-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sold-out-card__title {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.shop-empty {
  color: var(--text-muted);
  text-align: center;
  padding: 80px 0;
  font-size: 1.1rem;
}

/* ── Private payment card ── */
.private-payment-card {
  max-width: 560px;
  margin: 60px auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}

.private-payment-title {
  font-size: 2rem;
  margin: 12px 0 16px;
}

.private-payment-desc {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.private-payment-amount {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.payment-amount-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.payment-amount-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.private-payment-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── In-cart state ── */
.btn-order--in-cart {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-order--in-cart:hover { background: var(--accent-dim); }

.btn-order--full { width: 100%; justify-content: center; }

/* ── Nav cart icon ── */
.nav-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 4px;
  color: var(--text-muted);
  transition: color var(--ease);
}
.nav-cart-link:hover { color: var(--text); }

.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--accent);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* ── Cart page ── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item__image-wrap {
  width: 100px;
  aspect-ratio: 3/2;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.cart-item__size {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 2px;
}

.cart-item__edition {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.cart-item__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.cart-item__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.cart-item__remove {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 4px;
  transition: color var(--ease);
}
.cart-item__remove:hover { color: var(--text); }

/* ── Cart shipping zone picker ── */
.cart-shipping {
  margin-bottom: 20px;
}

.cart-shipping__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.cart-shipping__select {
  width: 100%;
  margin-bottom: 8px;
}

.cart-shipping__hint {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Grand total row gets slightly stronger emphasis */
.cart-summary__row--grand {
  border-bottom: none;
  padding-bottom: 0;
  color: var(--text);
  font-weight: 600;
}

/* ── Cart summary ── */
.cart-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.cart-summary__title {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cart-summary__total {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

.cart-continue {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--ease);
}
.cart-continue:hover { color: var(--text); }

/* ── Empty cart ── */
.cart-empty {
  text-align: center;
  padding: 80px 0;
}

.cart-empty__text {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.cart-withdrawal {
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}

.order-ref {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 8px 0;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .print-grid { grid-template-columns: 1fr; gap: 28px; }
  .print-size-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .private-payment-card { padding: 28px 20px; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 80px 1fr auto; gap: 12px; }
  .cart-item__image-wrap { width: 80px; }
}

/* =========================================================
   Mobile Optimizations
   ========================================================= */

/* Prevent iOS auto-zoom: inputs must be font-size >= 16px */
@media (max-width: 768px) {
  .form-input,
  .form-textarea,
  .form-select { font-size: 16px; }
}

/* Minimum 44px touch targets for critical controls */
@media (max-width: 768px) {
  .nav-toggle {
    padding: 11px;
    margin-right: -11px;
  }

  .lightbox-close {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 8px;
    right: 8px;
  }

  .lightbox-prev,
  .lightbox-next {
    padding: 16px;
    font-size: 44px;
  }

  .lightbox-prev { left: 0; }
  .lightbox-next { right: 0; }
}

/* Scrollable mobile nav for many items */
@media (max-width: 768px) {
  .nav-links {
    max-height: calc(100vh - var(--nav-h));
    max-height: calc(100svh - var(--nav-h));
    overflow-y: auto;
  }
}

/* Center about image in single-column layout */
@media (max-width: 1024px) {
  .about-image { margin: 0 auto; }
}

/* Safe-area insets for notched / Dynamic Island phones */
@supports (padding: env(safe-area-inset-bottom)) {
  footer {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }
}

/* Suppress sticky hover states on touch-only devices */
@media (hover: none) {
  .category-card:hover img {
    transform: none;
    filter: brightness(.9) saturate(1.1);
  }
  .category-card:hover .category-card__overlay {
    background: linear-gradient(to top, rgba(13,17,23,.88) 0%, transparent 55%);
  }
  .album-card:hover .album-card__img img {
    transform: none;
    filter: brightness(.92) saturate(1.05);
  }
  .photo-item:hover img {
    transform: none;
    filter: brightness(.93) saturate(1.1);
  }
  .photo-item:hover .photo-item__overlay { opacity: 0; }
  .service-photo-item:hover img { transform: none; }
  .print-card:hover .print-card__image { transform: none; }
  .btn-outline:hover { transform: none; }
  .btn-outline:hover::after { transform: none; }
  .btn-order:hover { transform: none; }
}

/* Tap (active) feedback replaces hover on touch */
@media (hover: none) {
  .btn-outline:active { background: var(--accent-h); transform: translateY(-2px); }
  .btn-order:active { background: var(--accent-h); transform: translateY(-1px); }
  .category-card:active img { transform: scale(1.03); }
  .album-card:active .album-card__img img { transform: scale(1.02); }
}

/* Dropdown open state toggled by JS on touch/tablet */
.dropdown-menu.touch-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
