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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #0f0f0f;
  color: #f0f0f0;
  line-height: 1.7;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* ========== NAV ========== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(12px);
  z-index: 1000;
}

.logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #fff;
}

/* ========== HERO ========== */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?w=1920') center/cover no-repeat;
  transform: scale(1.1);
  transition: transform 0.1s linear;
  z-index: -1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.7));
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  font-weight: 300;
  letter-spacing: 5px;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 480px;
  margin: 0 auto 42px;
}

.btn {
  display: inline-block;
  padding: 15px 38px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.btn:hover {
  background: #fff;
  color: #111;
}

/* ========== SECTIONS ========== */
section {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 55px;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

/* ========== ABOUT ========== */
.about-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 55px;
  align-items: start;
}

.about-text p {
  color: #c5c5c5;
  margin-bottom: 22px;
  font-size: 1.05rem;
}

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

.about-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 6px;
}

/* ========== APPROACH ========== */
.approach {
  background: #141414;
  padding: 110px 40px;
}

.approach-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.approach h2 {
  font-size: 1.9rem;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 40px;
}

.approach p {
  color: #bbb;
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ========== TAG FILTERS ========== */
.tag-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 45px;
}

.tag-btn {
  padding: 9px 22px;
  background: transparent;
  border: 1px solid #444;
  color: #ccc;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.tag-btn:hover,
.tag-btn.active {
  background: #fff;
  color: #111;
  border-color: #fff;
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border-radius: 4px;
  transition: opacity 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* ========== THE STORY - GRID CARDS ========== */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.story-card {
  background: #141414;
  border-radius: 8px;
  padding: 30px;
  transition: transform 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
}

.story-header h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.story-date {
  color: #888;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.story-content {
  margin: 20px 0 25px;
}

.story-content p {
  color: #c5c5c5;
  font-size: 0.98rem;
  line-height: 1.7;
}

.story-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.story-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.stories-btn-wrap {
  text-align: center;
  margin-top: 20px;
}

/* Copy link button - Icon only */
.copy-link-btn {
  margin-top: 18px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #444;
  color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-link-btn:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}

/* ===== Alternative Vertical Style ===== */
.stories-vertical {
  max-width: 800px;
  margin: 0 auto;
}

.story-vertical {
  margin-bottom: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid #222;
}

.story-vertical .story-header h3 {
  font-size: 1.7rem;
}

.story-gallery-vertical {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 25px;
}

.story-gallery-vertical img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

/* ========== QUOTE ========== */
.quote-section {
  background: #141414;
  padding: 120px 40px;
  text-align: center;
}

.quote-section blockquote {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: #e0e0e0;
}

.quote-section cite {
  display: block;
  margin-top: 30px;
  font-size: 0.95rem;
  letter-spacing: 2px;
  color: #888;
  font-style: normal;
}

/* ========== CONTACT ========== */
.contact-form {
  max-width: 480px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 18px;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  border-radius: 3px;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  padding: 16px;
  background: #fff;
  color: #111;
  border: none;
  font-size: 1rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 3px;
}

.contact-form button:hover {
  background: #e0e0e0;
}

/* ========== FOOTER ========== */
footer {
  text-align: center;
  padding: 45px 20px;
  color: #666;
  font-size: 0.9rem;
  border-top: 1px solid #222;
}

footer a {
  color: #999;
  text-decoration: none;
  margin-left: 14px;
}

footer a:hover {
  color: #fff;
}

/* ========== SCROLL TO TOP ========== */
#scrollTopBtn {
  position: fixed;
  bottom: 35px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  z-index: 999;
  backdrop-filter: blur(8px);
}

#scrollTopBtn.visible {
  opacity: 1;
  visibility: visible;
}

#scrollTopBtn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

/* ========== LIGHTBOX ========== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 88%;
  max-height: 86%;
  object-fit: contain;
  user-select: none;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 30px;
  font-size: 2.6rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 2.4rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.28);
}

.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }

/* ========== MOBILE ========== */
@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image img {
    height: 360px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 14px 20px;
  }
  .logo {
    font-size: 1.15rem;
    letter-spacing: 3px;
  }
  .nav-links {
    gap: 16px;
  }
  section, .approach, .quote-section {
    padding: 70px 20px;
  }
  .section-title, .approach h2 {
    font-size: 1.7rem;
  }
  .quote-section blockquote {
    font-size: 1.3rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }
  .stories-grid {
    grid-template-columns: 1fr;
  }
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 2rem;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }

  #scrollTopBtn {
    bottom: 25px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* ========== HAMBURGER ========== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

/* Mobile menu */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.4s ease;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }

  /* Animate hamburger to X */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}
.logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

.logo:hover {
  color: #fff;
}