@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400&family=Montserrat:ital,wght@0,300;0,400;0,600;0,700;1,700&display=swap');

:root {
  --bg: #ffffff;
  --text: #111111;
  --text-mid: #444444;
  --text-muted: #888888;
  --text-light: #bbbbbb;
  --border: #e0e0e0;
  --gap: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── SITE HEADER ── */
.site-header {
  text-align: center;
  padding: 36px 48px 0;
}
.header-logo {
  display: block;
  margin-bottom: 24px;
}
.header-logo img {
  height: 130px;
  width: auto;
  margin: 0 auto;
}
.header-nav { margin-bottom: 32px; }
.nav-links {
  display: inline-flex;
  gap: 52px;
  list-style: none;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }

/* ── HERO (BTS image — natural aspect ratio, contained) ── */
.hero {
  margin: 0 0 0;
  padding: 0;
}
.hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── GLOBAL PAGE CONTAINER (all pages) ── */
.page-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── PAGE WRAP (gallery/video sections, full max-width) ── */
.page-wrap {
  padding: 0 48px;
}

/* ── SECTION HEADINGS (Montserrat Bold Italic 50px + period) ── */
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 50px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 36px;
  color: var(--text);
}

/* ── HOME SECTIONS (Identity, Visual Architecture, FAQ) ── */
.home-section { padding: 56px 0 64px; }
.home-body p {
  font-size: 22px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 860px;
}
.home-body p:last-child { margin-bottom: 0; }

/* ── DIVIDER ── */
.divider { border: none; border-top: 1px solid var(--border); }

/* ── FAQ ── */
.faq-list {
  margin-top: 32px;
  border-top: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); padding: 36px 0; }
.faq-q {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 18px;
  color: var(--text);
}
.faq-a {
  font-size: 22px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 860px;
}

/* ── PHOTO PAGE HEADER ── */
.photo-page-header {
  padding: 44px 48px 28px;
}
.photo-page-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 50px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
}

/* ── CATEGORY NAVIGATION ── */
.category-nav {
  display: flex;
  list-style: none;
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  flex-wrap: wrap;
  gap: 0;
}
.category-nav button {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  padding: 14px 24px 16px;
  transition: color 0.2s, border-color 0.2s;
}
.category-nav button:hover { color: var(--text); }
.category-nav button.active { color: var(--text); border-bottom-color: var(--text); }

/* ── GALLERY SECTION ── */
.gallery-section { padding: 36px 48px 80px; }

/* ── CATEGORY DESCRIPTION BOX ── */
.cat-desc {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  max-width: 900px;
}
.cat-desc h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.4;
}
.cat-desc p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 10px;
}

/* ── GALLERY ROWS ── */
.gallery-rows {}
.gallery-row {
  display: flex;
  gap: var(--gap);
  margin-bottom: var(--gap);
}
.gallery-row .gallery-item {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 16 / 9;
}
.gallery-row .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-row .gallery-item:hover img {
  transform: scale(1.03);
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.93);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img-wrap {
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
}
.lb-close {
  position: fixed;
  top: 18px; right: 24px;
  background: none; border: none;
  color: #fff; font-size: 32px;
  cursor: pointer; opacity: 0.7; line-height: 1;
  transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: none; border: none;
  color: #fff; font-size: 40px;
  cursor: pointer; opacity: 0.4;
  padding: 24px 16px;
  transition: opacity 0.2s;
  user-select: none;
}
.lb-prev:hover, .lb-next:hover { opacity: 1; }
.lb-prev { left: 4px; }
.lb-next { right: 4px; }
.lb-counter {
  position: fixed;
  bottom: 18px; left: 50%; transform: translateX(-50%);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
}

/* ── VIDEO ── */
.video-page-header { padding: 44px 48px 48px; }
.video-page-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 50px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.video-page-header p {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 680px;
  line-height: 1.5;
}
.video-grid {
  padding: 0 48px 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 40px;
}
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #f0f0f0;
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-info { padding: 16px 0 4px; }
.video-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 7px;
  color: var(--text);
}
.video-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── CONTACT ── */
.contact-wrap { padding: 44px 48px 80px; }
.contact-wrap h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 50px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-tagline {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-mid);
  margin-bottom: 52px;
  line-height: 1.5;
}
.contact-form { display: flex; flex-direction: column; gap: 24px; max-width: 680px; }
.form-group { display: flex; flex-direction: column; gap: 9px; }
.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: #f7f7f7;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #999;
  background: #fff;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: #f7f7f7;
  padding-right: 44px;
  cursor: pointer;
}
.form-group option { background: #fff; color: #111; }
.form-group textarea { resize: vertical; min-height: 150px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.btn-submit {
  background: var(--text);
  color: #fff;
  border: none;
  padding: 16px 44px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
  transition: opacity 0.2s;
  border-radius: 0;
}
.btn-submit:hover { opacity: 0.7; }
.form-note {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: -10px;
}

/* ── CAT SEO TEXT BELOW GALLERY ── */
.cat-seo-below {
  padding: 48px 0 24px;
  max-width: 860px;
}
.cat-seo-below h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.35;
}
.cat-seo-below h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  margin-top: 16px;
}
.cat-seo-below p {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 14px;
}

/* ── CATEGORY PAGE ── */
.cat-page-header { padding: 44px 0 24px; }
.cat-back {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  transition: color 0.2s;
}
.cat-back:hover { color: var(--text); }
.cat-page-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 50px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cat-page-header h2 {
  font-size: 22px;
  font-weight: 300;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.45;
}
.cat-copy { max-width: 860px; margin-bottom: 40px; }
.cat-copy h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.cat-copy p {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 14px;
}

/* ── FOOTER — social icons ── */
.social-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}
.social-footer a {
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.social-footer a:hover { color: var(--text); }
.social-footer svg { width: 22px; height: 22px; }

/* ── VIDEO FACADE (thumbnail + play button) ── */
.video-facade {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}
.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}
.video-facade:hover img { opacity: 0.8; }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 42px;
  background: #ff0000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.video-facade:hover .play-btn {
  background: #cc0000;
  transform: translate(-50%, -50%) scale(1.08);
}
.play-btn svg { width: 22px; height: 22px; fill: #fff; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  border-top: 1px solid var(--border);
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 500;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -2px 20px rgba(0,0,0,0.06);
}
.cookie-banner p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.5;
}
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 22px;
  cursor: pointer;
  transition: opacity 0.2s;
  border-radius: 0;
}
.btn-cookie.accept {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.btn-cookie:hover { opacity: 0.7; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .identity-grid { grid-template-columns: 1fr; gap: 40px; }
  .video-grid { gap: 32px; }
  .section-title { font-size: 40px; }
}
@media (max-width: 900px) {
  .cap-row { grid-template-columns: 1fr; gap: 14px; padding: 28px 0; }
}
@media (max-width: 768px) {
  body { font-size: 18px; }
  .page-container { padding: 0 20px; }
  .site-header { padding: 24px 20px 0; }
  .header-logo img { height: 90px; }
  .nav-links { gap: 28px; }
  .hero { padding: 0; }
  .hero img { height: 50vh; min-height: 220px; object-fit: cover; }
  .gallery-row { flex-wrap: wrap; }
  .gallery-row .gallery-item { flex: 0 0 100%; width: 100%; aspect-ratio: unset; }
  .gallery-row .gallery-item img { height: auto; object-fit: fill; object-position: initial; }
  .page-wrap { padding: 0 20px; }
  .section-title { font-size: 32px; }
  .photo-page-header { padding: 28px 20px 20px; }
  .photo-page-header h1 { font-size: 32px; }
  /* Category nav → horizontal scroll pill strip */
  .category-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 12px 20px 0;
    border-bottom: none;
    gap: 8px;
    scrollbar-width: none;
  }
  .category-nav::-webkit-scrollbar { display: none; }
  .category-nav li { flex-shrink: 0; }
  .category-nav button {
    border: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-radius: 20px;
    margin-bottom: 0;
    padding: 9px 18px;
    white-space: nowrap;
    font-size: 9px;
    color: var(--text-muted);
  }
  .category-nav button.active {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
  }
  .gallery-section { padding: 24px 20px 56px; }
  .video-page-header { padding: 28px 20px 32px; }
  .video-page-header h1 { font-size: 32px; }
  .video-grid { padding: 0 20px 56px; grid-template-columns: 1fr; gap: 32px; }
  .contact-wrap { padding: 28px 20px 56px; }
  .contact-wrap h1 { font-size: 32px; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 24px 20px; }
  .cookie-banner { padding: 14px 20px; flex-direction: column; align-items: flex-start; }
  .cat-page-header { padding: 28px 20px 16px; }
  .cat-page-header h1 { font-size: 32px; }
  .faq-q { font-size: 20px; }
  .faq-a { font-size: 16px; }
  .identity-text p { font-size: 18px; }
  .home-section { padding: 32px 0; }
  .lb-prev { left: 12px; }
  .lb-next { right: 12px; }
}
@media (max-width: 480px) {
  .nav-links { gap: 18px; }
  .section-title { font-size: 26px; }
}
