/* ==========================================================================
   Angus Che Photography Portfolio — 港澳街頭人文
   ========================================================================== */

:root {
  --bg-primary: #e9e7e2;
  --bg-surface: #f3f1ec;
  --bg-ink: #12110f;
  --text-primary: #1a1816;
  --text-secondary: #5c574f;
  --text-muted: #8a847a;
  --text-on-dark: #f3f1ec;
  --accent: #1f5c57;
  --accent-hover: #174843;
  --warm: #a67c52;
  --border-color: rgba(26, 24, 22, 0.12);
  --radius-sm: 2px;
  --radius-md: 4px;
  --transition-fast: 0.22s ease;
  --transition-smooth: 0.55s ease;
  --font-display: "Fraunces", "Noto Serif TC", serif;
  --font-body: "Noto Sans TC", sans-serif;
  --nav-h: 64px;
  --max-w: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* —— Scroll progress —— */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 1000;
  transition: width 0.08s linear;
}

/* —— Navbar —— */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background: rgba(233, 231, 226, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.navbar.is-scrolled {
  border-bottom-color: var(--border-color);
}

.navbar.is-over-hero {
  background: rgba(18, 17, 15, 0.35);
  color: var(--text-on-dark);
}

.navbar.is-over-hero.is-scrolled {
  background: rgba(18, 17, 15, 0.82);
  border-bottom-color: rgba(243, 241, 236, 0.12);
}

.brand-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-title {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.navbar.is-over-hero .brand-title {
  color: rgba(243, 241, 236, 0.65);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  font-size: 0.82rem;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.navbar.is-over-hero .nav-link {
  color: rgba(243, 241, 236, 0.78);
}

.navbar.is-over-hero .nav-link:hover,
.navbar.is-over-hero .nav-link.active {
  color: var(--text-on-dark);
}

.navbar.is-over-hero .nav-link::after {
  background: var(--warm);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  background: transparent;
  color: inherit;
  font-size: 1.1rem;
}

/* —— Hero wall —— */
.hero-wall {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bg-ink);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 6.5s ease;
}

.hero-slide.is-active img {
  transform: scale(1);
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(18, 17, 15, 0.25) 0%, rgba(18, 17, 15, 0.15) 40%, rgba(18, 17, 15, 0.78) 100%),
    linear-gradient(90deg, rgba(18, 17, 15, 0.45) 0%, transparent 55%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem 4.5rem;
  color: var(--text-on-dark);
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.hero-lead {
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(243, 241, 236, 0.82);
  margin-bottom: 1.6rem;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.45rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.btn-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.hero-dots {
  position: absolute;
  right: 1.5rem;
  bottom: 4.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid rgba(243, 241, 236, 0.55);
  background: transparent;
  padding: 0;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.hero-dot.is-active {
  background: var(--warm);
  border-color: var(--warm);
}

/* —— Sections —— */
.main-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 550;
  letter-spacing: -0.02em;
}

.section-note,
.btn-arrow-link {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.btn-arrow-link:hover {
  color: var(--accent);
}

/* —— Category strips —— */
.category-strips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 4.5rem;
}

.category-strip {
  position: relative;
  display: block;
  min-height: 220px;
  overflow: hidden;
  background: var(--bg-ink);
  color: var(--text-on-dark);
}

.category-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.7s ease, opacity var(--transition-smooth);
  position: absolute;
  inset: 0;
}

.category-strip:hover img {
  transform: scale(1.06);
  opacity: 0.88;
}

.category-strip-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.1rem 1rem;
  background: linear-gradient(transparent, rgba(18, 17, 15, 0.85));
  z-index: 1;
}

.category-strip-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 0.25rem;
}

.category-strip-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
}

/* —— Featured —— */
.featured-collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 4.5rem;
}

.featured-card {
  display: block;
  color: inherit;
}

.featured-cover {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-ink);
  margin-bottom: 0.85rem;
}

.featured-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.featured-card:hover .featured-cover img {
  transform: scale(1.04);
}

.featured-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 550;
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.featured-body p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  margin-bottom: 0.55rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* —— Video grids —— */
.youtube-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.instagram-reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  justify-items: start;
}

.video-card,
.reel-card {
  background: transparent;
}

.video-embed-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-ink);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.video-embed-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-play-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.5rem;
  background: rgba(18, 17, 15, 0.25);
  transition: background var(--transition-fast);
}

.video-embed-wrapper:hover .reel-play-icon {
  background: rgba(18, 17, 15, 0.4);
}

.video-info h3,
.reel-info h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 550;
  margin-bottom: 0.3rem;
}

.video-info p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin-bottom: 0.55rem;
}

.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.yt-btn,
.ig-reel-link {
  color: var(--accent);
}

.yt-btn:hover,
.ig-reel-link:hover {
  color: var(--accent-hover);
}

.media-section {
  margin-bottom: 4rem;
}

/* —— Gear —— */
.gear-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.gear-line strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* —— Subpage banner —— */
.subpage-banner {
  padding: calc(var(--nav-h) + 3rem) 1.5rem 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.subpage-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.subpage-desc {
  max-width: 36rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.video-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.5rem;
}

.video-filter-pill {
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  padding: 0.2rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-radius: 0;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.video-filter-pill:hover,
.video-filter-pill.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* —— Portfolio feed / collection —— */
.portfolio-feed {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.collection-card {
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

.card-header-top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 550;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.client-badge {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm);
  border: 1px solid rgba(166, 124, 82, 0.35);
  padding: 0.15rem 0.45rem;
}

.card-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.card-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  max-width: 46rem;
}

.hero-photo-wrapper {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-ink);
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}

.hero-img.fading {
  opacity: 0.35;
}

.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(243, 241, 236, 0.35);
  background: rgba(18, 17, 15, 0.4);
  color: #fff;
  font-size: 1rem;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.hero-photo-wrapper:hover .arrow-btn {
  opacity: 1;
}

.arrow-btn.prev { left: 0.85rem; }
.arrow-btn.next { right: 0.85rem; }

.caption-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.1rem 2.4rem;
  background: linear-gradient(transparent, rgba(18, 17, 15, 0.78));
  color: var(--text-on-dark);
  z-index: 2;
}

.caption-overlay h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.caption-overlay p {
  font-size: 0.82rem;
  color: rgba(243, 241, 236, 0.75);
}

.photo-dots-bar {
  position: absolute;
  left: 1.1rem;
  bottom: 0.85rem;
  z-index: 3;
  display: flex;
  gap: 0.4rem;
}

.photo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(243, 241, 236, 0.35);
  cursor: pointer;
}

.photo-dot.active {
  background: var(--warm);
}

.view-full-btn {
  position: absolute;
  right: 1rem;
  bottom: 0.75rem;
  z-index: 3;
  background: transparent;
  border: 1px solid rgba(243, 241, 236, 0.45);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
}

.view-full-btn:hover {
  border-color: #fff;
}

.thumb-strip-section {
  margin-top: 0.65rem;
  overflow-x: auto;
}

.thumb-strip {
  display: flex;
  gap: 0.45rem;
}

.thumb-item {
  position: relative;
  flex: 0 0 72px;
  height: 54px;
  overflow: hidden;
  opacity: 0.55;
  cursor: pointer;
  border: 1px solid transparent;
  transition: opacity var(--transition-fast), border-color var(--transition-fast);
}

.thumb-item.active,
.thumb-item:hover {
  opacity: 1;
  border-color: var(--accent);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-num {
  position: absolute;
  left: 3px;
  bottom: 2px;
  font-size: 0.6rem;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

/* —— Modals —— */
.album-modal,
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  background: rgba(18, 17, 15, 0.88);
  padding: 1.5rem;
  overflow: auto;
}

.album-modal.active,
.lightbox-modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.album-modal-container {
  width: min(960px, 100%);
  margin: 2rem auto;
  background: var(--bg-surface);
  padding: 1.75rem;
  position: relative;
}

.album-modal-close,
.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--text-secondary);
  line-height: 1;
}

.lightbox-close {
  color: #fff;
  z-index: 5;
}

.album-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.album-modal-photo-item {
  cursor: pointer;
  overflow: hidden;
  background: var(--bg-ink);
}

.album-modal-photo-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.album-modal-photo-caption {
  font-size: 0.72rem;
  padding: 0.4rem 0.2rem;
  color: var(--text-muted);
}

.lightbox-modal {
  align-items: center;
}

.lightbox-content {
  max-width: min(92vw, 1100px);
  max-height: 82vh;
  object-fit: contain;
  margin: 0 auto;
  transition: opacity 0.25s ease;
}

.lightbox-content.fading {
  opacity: 0.3;
}

.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(243, 241, 236, 0.85);
  font-size: 0.85rem;
  text-align: center;
  max-width: 90%;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(243, 241, 236, 0.35);
  background: rgba(18, 17, 15, 0.35);
  color: #fff;
  font-size: 1.2rem;
  z-index: 5;
}

.lightbox-arrow.prev { left: 1rem; }
.lightbox-arrow.next { right: 1rem; }

/* —— Chat —— */
.floating-chat-trigger {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 950;
  padding: 0.8rem 1.15rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 24px rgba(18, 17, 15, 0.18);
  transition: background var(--transition-fast);
}

.floating-chat-trigger:hover {
  background: var(--accent-hover);
}

.chat-window {
  position: fixed;
  right: 1.25rem;
  bottom: 4.5rem;
  width: min(360px, calc(100vw - 2rem));
  height: 420px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  z-index: 960;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chat-window.active {
  display: flex;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  background: var(--bg-ink);
  color: var(--text-on-dark);
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.chat-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
}

.chat-title {
  font-size: 0.88rem;
  font-weight: 600;
}

.chat-subtitle {
  font-size: 0.7rem;
  color: rgba(243, 241, 236, 0.65);
}

.chat-close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
}

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.chat-msg {
  max-width: 90%;
  padding: 0.65rem 0.8rem;
  font-size: 0.84rem;
  line-height: 1.5;
}

.chat-msg.bot {
  background: #e2e0da;
  align-self: flex-start;
}

.chat-msg.user {
  background: var(--accent);
  color: #fff;
  align-self: flex-end;
}

.chat-options-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.chat-opt-btn {
  text-align: left;
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 0.55rem 0.7rem;
  font-size: 0.8rem;
  color: var(--text-primary);
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.chat-opt-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* —— Footer —— */
.footer {
  background: var(--bg-ink);
  color: var(--text-on-dark);
  padding: 3.5rem 1.5rem 2.5rem;
  text-align: center;
}

.footer h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.55rem;
}

.footer > p {
  color: rgba(243, 241, 236, 0.7);
  font-size: 0.9rem;
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.75rem;
}

.contact-item {
  font-size: 0.85rem;
  color: rgba(243, 241, 236, 0.78);
  border-bottom: 1px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.contact-item:hover {
  color: var(--warm);
  border-bottom-color: var(--warm);
}

.copyright {
  font-size: 0.72rem;
  color: rgba(243, 241, 236, 0.45);
  letter-spacing: 0.04em;
}

/* —— Reveal —— */
.scroll-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.scroll-reveal.active-reveal {
  opacity: 1;
  transform: none;
}

/* —— Admin —— */
.admin-lock-overlay {
  position: fixed;
  inset: 0;
  background: rgba(233, 231, 226, 0.92);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.admin-lock-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 2.25rem;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.admin-lock-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.admin-lock-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.35rem;
}

.pass-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.25em;
  outline: none;
  margin-bottom: 0.9rem;
}

.pass-input:focus {
  border-color: var(--accent);
}

.admin-container {
  max-width: 900px;
  margin: calc(var(--nav-h) + 1.5rem) auto 3rem;
  padding: 2rem 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
}

.form-control {
  width: 100%;
  padding: 0.6rem 0.8rem;
  background: #fff;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
}

.form-control:focus {
  border-color: var(--accent);
}

textarea.form-control {
  min-height: 90px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-group {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.35rem;
  flex-wrap: wrap;
}

.admin-btn {
  padding: 0.7rem 1.2rem;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-secondary {
  background: transparent;
  border-color: var(--border-color);
  color: var(--text-primary);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-danger {
  background: transparent;
  border-color: rgba(180, 60, 50, 0.4);
  color: #a33;
}

.btn-danger:hover {
  background: #a33;
  color: #fff;
}

.item-list-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.25rem;
  font-size: 0.84rem;
}

.item-list-table th,
.item-list-table td {
  border: 1px solid var(--border-color);
  padding: 0.65rem;
  text-align: left;
}

.item-list-table th {
  background: #e2e0da;
  color: var(--accent);
}

/* —— Mobile —— */
@media (max-width: 900px) {
  .category-strips {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-collections-grid {
    grid-template-columns: 1fr 1fr;
  }

  .youtube-videos-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
  }

  .navbar.is-over-hero .nav-links {
    background: rgba(18, 17, 15, 0.95);
  }

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

  .nav-link {
    padding: 0.75rem 1.5rem;
  }

  .hero-copy {
    padding-bottom: 3.5rem;
  }

  .hero-dots {
    right: auto;
    left: 1.5rem;
    bottom: 1.25rem;
    flex-direction: row;
  }

  .category-strips,
  .featured-collections-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-photo-wrapper {
    aspect-ratio: 4 / 5;
  }

  .arrow-btn {
    opacity: 1;
  }
}
