/* fotipanag.io – minimal with moments */

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

:root {
  --text: #0d0c11;
  --text-secondary: #4a4754;
  --text-muted: #8b8698;
  --bg: #faf9f6;
  --bg-warm: #f4f2ee;
  --border: #e6e4df;
  --accent: #d94a20;
  --accent-hover: #b93b16;
  --glass: rgba(250, 249, 246, 0.7);
  --glass-border: rgba(230, 228, 223, 0.5);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --col: 680px;
  --wide: 960px;
  --hero: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(180, 83, 9, 0.12);
  color: var(--text);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

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

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

/* --- Header --- */
.header {
  max-width: var(--hero);
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  border-radius: 0 0 16px 16px;
}

.logo {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--accent);
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.7;
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* --- Intro --- */
.intro {
  max-width: var(--col);
  margin: 0 auto;
  padding: 120px 24px 40px;
  text-align: center;
}

.intro-photo {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 36px;
  box-shadow: var(--shadow-md), 0 0 0 4px var(--bg), 0 0 0 6px var(--border);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.intro-photo:hover {
  transform: scale(1.05) rotate(-2deg);
}

.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.intro h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 64px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text);
}

.intro-role {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.intro-line {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Divider --- */
.divider {
  max-width: var(--col);
  margin: 56px auto;
  padding: 0 24px;
  border: none;
  border-top: 1px solid var(--border);
}

/* --- Prose --- */
.prose {
  max-width: var(--col);
  margin: 0 auto;
  padding: 0 24px;
}

.prose h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.prose p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

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

/* --- Big statement (breaks the column) --- */
.big-statement {
  max-width: var(--wide);
  margin: 64px auto;
  padding: 0 24px;
  text-align: center;
}

.big-statement p {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  font-style: italic;
  line-height: 1.35;
  color: var(--text);
  letter-spacing: -0.02em;
}

.big-statement p span {
  color: var(--accent);
}

/* --- Work --- */
.work-item {
  margin-bottom: 24px;
  padding: 32px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.work-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217, 74, 32, 0.2);
}

.work-item:last-child {
  margin-bottom: 0;
}

.work-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: var(--text);
}

.work-item h3 .subtle {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 14px;
}

.pull-quote {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--text) !important;
  margin-top: 12px;
  line-height: 1.5;
}

/* --- Beliefs --- */
.belief {
  margin-bottom: 24px;
  padding: 32px 32px 32px 40px;
  background: white;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.belief:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-left-width: 8px;
}

.belief:last-child {
  margin-bottom: 0;
}

.belief h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.belief p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Photo break (wide) --- */
.photo-break {
  max-width: var(--wide);
  margin: 56px auto;
  padding: 0 24px;
}

.photo-break img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center 60%;
}

.photo-break figcaption {
  text-align: right;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
  font-style: italic;
}

/* --- Gallery teaser (homepage) --- */
.gallery-teaser {
  max-width: var(--hero);
  margin: 48px auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.gallery-teaser-item {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s ease;
}

.gallery-teaser-item:hover {
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.gallery-teaser-hero {
  grid-column: 1;
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

.gallery-teaser-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-teaser-item:hover img {
  transform: scale(1.05);
}

.gallery-teaser-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 24px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  font-size: 15px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.gallery-teaser-item:hover .gallery-teaser-label {
  opacity: 1;
  transform: translateY(0);
}

/* --- Photos index page --- */
.photos-index {
  max-width: var(--hero);
  margin: 0 auto;
  padding: 80px 32px 0;
}

.photos-index h1 {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.photos-index-desc {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 56px;
  max-width: 600px;
}

/* Bento Box Grid */
.album-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  grid-auto-flow: dense;
  gap: 24px;
}

@media (max-width: 900px) {
  .album-stack {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .album-stack {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }
}

.album-block {
  display: block;
  text-decoration: none;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease;
  background: #000;
  animation: fadeUpIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) backwards;
  transform: translateZ(0);
}

.album-block:nth-child(1) {
  animation-delay: 0.1s;
}

.album-block:nth-child(2) {
  animation-delay: 0.2s;
}

.album-block:nth-child(3) {
  animation-delay: 0.3s;
}

.album-block:nth-child(4) {
  animation-delay: 0.4s;
}

.album-block:nth-child(n+5) {
  animation-delay: 0.5s;
}

@keyframes fadeUpIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.album-block:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

/* Bento Sizing */
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-tall {
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
}

@media (max-width: 900px) {

  .bento-large,
  .bento-wide {
    grid-column: span 2;
  }

  .bento-tall {
    grid-row: span 2;
    grid-column: span 1;
  }
}

@media (max-width: 600px) {

  .bento-large,
  .bento-tall,
  .bento-wide,
  .bento-small {
    grid-column: 1 / -1;
    grid-row: span 1;
  }
}

.album-block-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.album-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 0.9;
}

.album-block:hover .album-block-img img {
  transform: scale(1.08);
  opacity: 1;
}

.album-block-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  opacity: 0.75;
  transition: opacity 0.5s ease;
}

.album-block:hover .album-block-overlay {
  opacity: 1;
}

.album-block-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px 32px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}

.album-block-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.album-block:hover .album-block-header {
  transform: translateY(0);
}

.album-block-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  color: white;
}

.bento-large .album-block-title {
  font-size: 48px;
}

.album-block:hover .album-block-title {
  color: white;
}

.album-block-location {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.album-block-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.album-block:hover .album-block-desc {
  opacity: 1;
  transform: translateY(0);
}

/* --- Single album page --- */
.album-header {
  max-width: var(--col);
  margin: 0 auto;
  padding: 80px 24px 0;
}

.album-back {
  font-size: 14px;
  color: var(--text-muted);
  display: inline-block;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.album-back:hover {
  color: var(--accent);
}

.album-header h1 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 8px;
}

.album-meta-line {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.album-desc {
  font-size: 15px;
  color: var(--text-secondary);
}

.album-footer {
  max-width: var(--col);
  margin: 0 auto;
  padding: 48px 24px;
}

.album-footer a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

/* --- Photo gallery masonry --- */
.gallery {
  max-width: var(--wide);
  margin: 40px auto 56px;
  padding: 0 24px;
  column-count: 3;
  column-gap: 10px;
}

@media (max-width: 900px) {
  .gallery {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .gallery {
    column-count: 1;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background-color: var(--border);
  /* Skeleton color */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 14px 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  font-size: 12px;
  font-weight: 500;
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
  letter-spacing: 0.01em;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-caption {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 2;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: white;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 48px;
  cursor: pointer;
  padding: 16px;
  line-height: 1;
  transition: color 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: white;
}

.lightbox-prev {
  left: 8px;
}

.lightbox-next {
  right: 8px;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

/* --- Featured quote section --- */
.featured-quote {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 64px 24px;
  background: var(--bg-warm);
  border-radius: 0;
  text-align: center;
}

.featured-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(22px, 3.5vw, 32px);
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto 16px;
  letter-spacing: -0.01em;
}

.featured-quote cite {
  font-family: var(--font);
  font-size: 13px;
  font-style: normal;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.small-quotes {
  max-width: var(--col);
  margin: 0 auto;
  padding: 40px 24px 0;
  display: flex;
  gap: 32px;
}

.small-quotes blockquote {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-secondary);
  flex: 1;
}

/* --- Media --- */
.subtle-text {
  font-size: 14px;
  color: var(--text-muted) !important;
  margin-bottom: 24px !important;
}

.media-list {
  list-style: none;
}

.media-list li {
  border-bottom: 1px solid var(--border);
}

.media-list li:first-child {
  border-top: 1px solid var(--border);
}

.media-list li a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  gap: 16px;
  text-decoration: none;
  transition: padding-left 0.2s;
}

.media-list li a:hover {
  padding-left: 4px;
}

.media-show {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  flex-shrink: 0;
  transition: color 0.2s;
}

.media-list li a:hover .media-show {
  color: var(--accent);
}

.media-topic {
  font-size: 14px;
  color: var(--text-muted);
  text-align: right;
}

.media-list-hidden {
  display: none;
}

.media-list-hidden.expanded {
  display: block;
}

.media-list-hidden li:first-child {
  border-top: none;
}

.media-toggle {
  margin-top: 16px;
  font-size: 14px;
}

.media-toggle a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.media-toggle a:hover {
  color: var(--accent);
}

/* --- Blog list (homepage + index) --- */
.blog-index {
  max-width: var(--col);
  margin: 0 auto;
  padding: 80px 24px 0;
}

.blog-index h1 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 8px;
}

.blog-index-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.blog-list {
  list-style: none;
}

.blog-list li {
  border-bottom: 1px solid var(--border);
}

.blog-list li:first-child {
  border-top: 1px solid var(--border);
}

.blog-item {
  display: block;
  padding: 24px 20px;
  margin: 0 -20px;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.blog-item:hover {
  background: white;
  box-shadow: var(--shadow-sm);
  transform: translateX(8px);
}

.blog-item-title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  transition: color 0.2s;
}

.blog-item:hover .blog-item-title {
  color: var(--accent);
}

.blog-item-desc {
  display: block;
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.6;
}

.blog-item time {
  font-size: 12px;
  color: var(--text-muted);
}

.blog-more {
  margin-top: 24px;
  font-size: 14px;
}

/* --- Blog post --- */
.post {
  max-width: var(--col);
  margin: 0 auto;
  padding: 80px 24px 0;
}

.post-header {
  margin-bottom: 48px;
}

.post-header time {
  font-size: 14px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}

.post-header h1 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.post-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.post-body p {
  margin-bottom: 20px;
}

.post-body strong {
  color: var(--text);
  font-weight: 600;
}

.post-body em {
  font-style: italic;
}

.post-body h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  margin: 40px 0 16px;
}

.post-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin: 32px 0 12px;
}

.post-body blockquote {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--text);
  margin: 32px 0;
  padding: 0;
  line-height: 1.5;
}

.post-body ul,
.post-body ol {
  margin: 16px 0;
  padding-left: 24px;
  color: var(--text-secondary);
}

.post-body li {
  margin-bottom: 8px;
}

.post-body code {
  font-size: 14px;
  background: var(--bg-warm);
  padding: 2px 6px;
  border-radius: 4px;
}

.post-body pre {
  background: var(--bg-warm);
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 24px 0;
}

.post-body pre code {
  background: none;
  padding: 0;
}

.post-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

.post-footer {
  max-width: var(--col);
  margin: 0 auto;
  padding: 48px 24px;
}

.post-footer a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

/* --- Connect --- */
.connect {
  text-align: center;
}

.connect h2 {
  text-align: center;
}

.connect-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 4px;
}

.connect-links a {
  font-size: 15px;
  color: var(--text-secondary);
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s, color 0.2s;
}

.connect-links a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* --- Footer --- */
footer {
  max-width: var(--col);
  margin: 0 auto;
  padding: 56px 24px 40px;
  text-align: center;
}

footer p {
  font-size: 13px;
  color: var(--text-muted);
}

/* --- Responsive --- */
@media (max-width: 700px) {
  .nav {
    display: none;
    gap: 0;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 20px;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    z-index: 50;
  }

  .nav-toggle {
    display: block;
  }

  .small-quotes {
    flex-direction: column;
    gap: 20px;
  }

  .gallery {
    column-count: 2;
  }

  .gallery-teaser {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-teaser-hero {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-teaser-label {
    opacity: 1;
  }

  .album-stack {
    grid-template-columns: 1fr;
  }

  .album-block:nth-child(3n+1) {
    grid-column: auto;
  }

  .album-block-img,
  .album-block:nth-child(3n+1) .album-block-img {
    aspect-ratio: 3/2;
  }

  .album-block:nth-child(3n+1) .album-block-title {
    font-size: 20px;
  }

  .lightbox-prev,
  .lightbox-next {
    display: none;
  }
}

@media (max-width: 480px) {
  .intro {
    padding-top: 60px;
  }

  .intro h1 {
    font-size: 34px;
  }

  .media-list li a {
    flex-direction: column;
    gap: 2px;
  }

  .media-topic {
    text-align: left;
  }

  .connect-links {
    flex-direction: column;
    gap: 16px;
  }
}

/* --- Photo Strip (homepage) --- */
.photo-strip-wrap {
  max-width: var(--hero);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.photo-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 4px 0;
}

.photo-strip::-webkit-scrollbar {
  display: none;
}

.photo-strip-item {
  flex: 0 0 auto;
  width: 260px;
  scroll-snap-align: start;
  cursor: pointer;
}

.photo-strip-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.photo-strip-item:hover img {
  transform: scale(1.03);
}

.photo-strip-info {
  padding: 8px 2px 0;
}

.photo-strip-place {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.photo-strip-date {
  font-weight: 400;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
}

.photo-strip-caption {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
  font-style: italic;
}

.photo-strip-arrow {
  position: absolute;
  top: 90px;
  transform: translateY(-50%);
  z-index: 2;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}

.photo-strip-arrow:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

.photo-strip-prev {
  left: 8px;
}

.photo-strip-next {
  right: 8px;
}

/* --- Upcoming Travels --- */
.upcoming-grid {
  max-width: var(--col);
  margin: 24px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.upcoming-city {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.upcoming-city img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.7);
}

.upcoming-city:hover img {
  transform: scale(1.05);
  filter: brightness(0.5);
}

.upcoming-city-name {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-size: 15px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.upcoming-tooltip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: white;
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
  padding: 14px 16px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  width: max-content;
  max-width: 220px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 5;
}

.upcoming-tooltip a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.upcoming-city:hover .upcoming-tooltip,
.upcoming-city:focus .upcoming-tooltip {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

@media (max-width: 600px) {
  .upcoming-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Strip Lightbox --- */
.strip-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.strip-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.strip-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.strip-lb-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
}

.strip-lb-img {
  max-width: 90vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 4px;
}

.strip-lb-text {
  margin-top: 16px;
  text-align: center;
}

.strip-lb-place {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.strip-lb-caption {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  line-height: 1.5;
}

.strip-lb-close {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 2;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.2s;
}

.strip-lb-close:hover {
  color: white;
}

.strip-lb-prev,
.strip-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 48px;
  cursor: pointer;
  padding: 16px;
  line-height: 1;
  transition: color 0.2s;
}

.strip-lb-prev:hover,
.strip-lb-next:hover {
  color: white;
}

.strip-lb-prev {
  left: 8px;
}

.strip-lb-next {
  right: 8px;
}

.strip-lb-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .photo-strip-item {
    width: 220px;
  }

  .photo-strip-item img {
    height: 150px;
  }

  .photo-strip-arrow {
    display: none;
  }

  .strip-lb-prev,
  .strip-lb-next {
    display: none;
  }
}

/* --- Work With Me --- */
.wwm-hero {
  max-width: var(--col);
  margin: 0 auto;
  padding: 80px 24px 0;
}

.wwm-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.wwm-hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

.wwm-intro {
  margin-top: 32px;
}

.wwm-intro p {
  font-size: 17px;
  line-height: 1.75;
}

.wwm-grid {
  max-width: var(--col);
  margin: 32px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.wwm-card {
  padding: 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.wwm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217, 74, 32, 0.2);
}

.wwm-card-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 12px;
}

.wwm-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.wwm-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.wwm-card-price {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
  letter-spacing: -0.01em;
}

.wwm-proof-grid {
  max-width: var(--col);
  margin: 24px auto 0;
  padding: 0 24px;
}

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

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

.wwm-proof-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 32px 18px 0;
  text-align: left;
  cursor: pointer;
  position: relative;
  font-family: var(--font);
}

.wwm-proof-toggle::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.3s, color 0.3s;
}

.wwm-proof-item.open .wwm-proof-toggle::after {
  content: "\2212";
  color: var(--accent);
}

.wwm-proof-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}

.wwm-proof-toggle:hover .wwm-proof-name {
  color: var(--accent);
}

.wwm-proof-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0 0 0;
}

.wwm-proof-item.open .wwm-proof-detail {
  max-height: 300px;
  padding: 0 0 18px 0;
}

.wwm-proof-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.wwm-stack-list {
  max-width: var(--col);
  margin: 16px auto 0;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wwm-stack-tag {
  font-size: 12px;
  color: var(--text-secondary);
  background: white;
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.01em;
}

.wwm-statement {
  max-width: var(--wide);
  margin: 48px auto;
  padding: 0 24px;
  text-align: center;
}

.wwm-statement p {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
  letter-spacing: -0.01em;
}

.wwm-fit-grid {
  max-width: var(--col);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.wwm-fit-col h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
}

.wwm-fit-col ul {
  list-style: none;
  padding: 0;
}

.wwm-fit-col li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.wwm-fit-col li:last-child {
  border-bottom: none;
}

.wwm-fit-col li::before {
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 14px;
}

.wwm-fit-yes li::before {
  content: "\2713";
  color: #2a9d5c;
}

.wwm-fit-no li::before {
  content: "\2717";
  color: var(--text-muted);
}

.wwm-cta {
  max-width: var(--col);
  margin: 0 auto;
  padding: 0 24px 24px;
  text-align: center;
}

.wwm-price {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.wwm-price-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.wwm-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--accent);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.wwm-btn:hover {
  background: var(--accent-hover);
  color: white;
  transform: translateY(-2px);
}

/* --- Wizard --- */
.wwm-wizard-section {
  max-width: var(--col);
  margin: 0 auto;
  padding: 0 24px 24px;
  text-align: center;
}

.wwm-wizard-section h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.wwm-wizard-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.wwm-wizard {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

.wwm-wizard.done .wwm-wizard-step,
.wwm-wizard.done .wwm-wizard-progress {
  display: none;
}

.wwm-wizard-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.wwm-wizard-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s;
}

.wwm-wizard-dot.active {
  background: var(--accent);
}

.wwm-wizard-step {
  display: none;
}

.wwm-wizard-step.active {
  display: block;
  animation: wizardFadeIn 0.3s ease;
}

@keyframes wizardFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.wwm-wizard-q {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
}

.wwm-wizard-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wwm-wizard-option {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-secondary);
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
}

.wwm-wizard-option:hover {
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.wwm-wizard-option.selected {
  border-color: var(--accent);
  background: rgba(217, 74, 32, 0.04);
  color: var(--accent);
  font-weight: 500;
}

.wwm-wizard-next {
  margin-top: 20px;
  width: 100%;
}

.wwm-wizard-next:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.wwm-wizard-next:disabled:hover {
  background: var(--accent);
  transform: none;
}

.wwm-wizard-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: white;
  resize: vertical;
  min-height: 100px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}

.wwm-wizard-textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.wwm-wizard-textarea::placeholder {
  color: var(--text-muted);
}

.wwm-wizard-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.wwm-wizard-input {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: white;
  transition: border-color 0.2s;
}

.wwm-wizard-input:focus {
  outline: none;
  border-color: var(--accent);
}

.wwm-wizard-input::placeholder {
  color: var(--text-muted);
}

.wwm-wizard-done {
  display: none;
}

.wwm-wizard-thanks {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--text);
  padding: 40px 0;
}

@media (max-width: 600px) {
  .wwm-grid {
    grid-template-columns: 1fr;
  }

  .wwm-fit-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .wwm-wizard-fields {
    grid-template-columns: 1fr;
  }
}