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

body {
  background: #fff;
  color: #111;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  min-height: 100vh;
}

/* NAV */
.nav-top {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px;
  /*border-bottom: 0.5px solid #e0e0e0;*/
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  cursor: pointer;
  text-decoration: none;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #111;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 0.3em;
  color: #333;
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #333;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #aaa;
}

.nav-search {
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  font-size: 15px;
  padding: 4px;
  transition: color 0.2s;
}

.nav-search:hover {
  color: #111;
}

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 500;
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #111;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* PAGES */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* GRID CONTROLS */
.grid-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  padding: 12px 20px;
  border-bottom: 0.5px solid #f0f0f0;
}

.grid-controls-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #bbb;
  margin-right: 8px;
}

.col-btn {
  width: 28px;
  height: 28px;
  background: none;
  border: 0.5px solid #e0e0e0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transition:
    border-color 0.2s,
    background 0.2s;
  padding: 6px;
}

.col-btn:hover {
  border-color: #bbb;
}

.col-btn.active {
  background: #111;
  border-color: #111;
}

.col-btn .bar {
  width: 2px;
  background: #bbb;
  height: 12px;
  border-radius: 1px;
}

.col-btn.active .bar {
  background: #fff;
}

/* PHOTO GRID */
.photo-grid {
  display: grid;
  gap: 0;
  transition: grid-template-columns 0.3s ease;
}

.cols-1 {
  grid-template-columns: repeat(1, 1fr);
}
.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.photo-item {
  overflow: hidden;
  line-height: 0;
  position: relative;
}

.photo-placeholder {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition:
    transform 0.5s ease,
    opacity 0.3s ease;
}

/* SCREEN SIZE HINT */
.screen-hint {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ccc;
  padding: 0 4px;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  display: flex;
}

.lightbox.visible {
  opacity: 1;
}

.lightbox-inner {
  position: relative;
  max-width: 88vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 88vh;
  display: block;
  object-fit: contain;
  transform: scale(0.96);
  transition:
    transform 0.35s ease,
    opacity 0.3s ease;
  opacity: 0;
}

.lightbox.visible .lightbox-img {
  transform: scale(1);
  opacity: 1;
}

.lightbox-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-spinner {
  width: 24px;
  height: 24px;
  border: 1.5px solid #ddd;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #111;
  font-size: 20px;
  z-index: 1001;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #111;
  font-size: 18px;
  opacity: 0.35;
  transition: opacity 0.2s;
  padding: 16px;
  z-index: 1001;
}

.lightbox-nav:hover {
  opacity: 0.9;
}

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

.lightbox-counter {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #aaa;
}

/* ABOUT */
.about-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 36px 80px;
}

.about-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #111;
  margin-bottom: 36px;
}

.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: #d8d5d0;
  display: block;
}

.about-text {
  padding-top: 8px;
}

.about-bio {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  color: #333;
  margin-bottom: 40px;
}

.about-section-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 16px;
}

.about-awards {
  list-style: none;
  margin-bottom: 40px;
}

.about-awards li {
  font-size: 12px;
  line-height: 1.9;
  color: #555;
  padding: 10px 0;
  border-bottom: 0.5px solid #eee;
}

.about-awards li:first-child {
  border-top: 0.5px solid #eee;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 800;
  color: #111;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #aaa;
}

/* CONNECT */
.connect-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 36px 80px;
}

.connect-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #111;
  margin-bottom: 48px;
}

.connect-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.connect-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: #d2cfc9;
}

.connect-info {
  padding-top: 8px;
}

.connect-block {
  margin-bottom: 40px;
}

.connect-block-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #111;
  margin-bottom: 4px;
}

.connect-divider {
  width: 28px;
  height: 0.5px;
  background: #ccc;
  margin: 12px 0 16px;
}

.connect-detail {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  color: #555;
}

.connect-detail a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.connect-detail a:hover {
  color: #111;
}

.connect-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.connect-social a {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.connect-social a:hover {
  color: #111;
}

/* FOOTER */
.footer {
  margin-top: 56px;
  border-top: 0.5px solid #e0e0e0;
  padding: 40px 36px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /*grid-template-columns: 1fr 1fr 1fr;*/
  gap: 32px;
  align-items: start;
}

.footer-label {
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 12px;
}

.newsletter-form {
  display: flex;
  border-bottom: 0.5px solid #ccc;
  padding-bottom: 8px;
}

.newsletter-form input {
  background: transparent;
  border: none;
  outline: none;
  color: #111;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  flex: 1;
  padding: 0;
}

.newsletter-form input::placeholder {
  color: #bbb;
}

.newsletter-form button {
  background: none;
  border: none;
  color: #333;
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
}

.newsletter-form button:hover {
  color: #111;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links a {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #aaa;
}

.footer-contact {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #333;
  line-height: 1.9;
}

.footer-contact a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #aaa;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

/* ── Tablet landscape / small desktop (≤ 1024px) ── */
@media (max-width: 1024px) {
  .about-wrap,
  .connect-wrap {
    padding: 56px 28px 64px;
  }

  .photo-placeholder {
    height: 300px;
  }
}

/* ── Tablet portrait (≤ 768px) ── */
@media (max-width: 768px) {
  /* Nav */
  .nav-top {
    padding: 16px 24px;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 400;
  }

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

  .nav-links a {
    font-size: 20px;
    letter-spacing: 0.28em;
  }

  /* Photo grid */
  .photo-placeholder {
    height: 260px;
  }

  /* About */
  .about-wrap {
    padding: 48px 24px 60px;
  }

  .about-heading {
    font-size: 32px;
    margin-bottom: 28px;
  }

  .about-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-photo {
    aspect-ratio: 3/2;
    max-height: 360px;
  }

  .about-text {
    padding-top: 0;
  }

  /* Connect */
  .connect-wrap {
    padding: 48px 24px 60px;
  }

  .connect-heading {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .connect-body {
    grid-template-columns: 1fr;
  }

  .connect-info {
    padding-top: 0;
  }

  /* Footer */
  .footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 24px 28px;
    margin-top: 40px;
  }

  /* Lightbox nav — bigger tap targets on touch */
  .lightbox-nav {
    padding: 20px 12px;
  }
}

/* ── Mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .nav-top {
    padding: 14px 20px;
  }

  .logo {
    font-size: 19px;
  }

  .photo-placeholder {
    height: 380px;
  }

  .about-wrap,
  .connect-wrap {
    padding: 36px 20px 52px;
  }

  .about-heading,
  .connect-heading {
    font-size: 26px;
    margin-bottom: 22px;
  }

  .about-photo {
    aspect-ratio: 4/5;
    max-height: 480px;
  }

  .about-bio {
    font-size: 13px;
    margin-bottom: 32px;
  }

  .about-stats {
    gap: 16px;
  }

  .stat-num {
    font-size: 26px;
  }

  .connect-block-title {
    font-size: 18px;
  }

  .connect-detail {
    font-size: 13px;
  }

  .footer {
    padding: 28px 20px 24px;
    margin-top: 32px;
  }

  .footer-label {
    font-size: 12px;
  }

  /* Lightbox */
  .lightbox-close {
    top: 16px;
    right: 20px;
  }

  .lightbox-prev {
    left: 4px;
  }

  .lightbox-next {
    right: 4px;
  }
}
