﻿:root {
  --dark: #1c1e22;
  --dark-2: #171920;
  --light: #ede8e0;
  --accent: #6b7e8f;
  --mist: #8fa3af;
  --stone: #9b8070;
  --rule: rgba(237, 232, 224, 0.1);
  --text-muted: rgba(237, 232, 224, 0.52);
  --nav-height: 78px;
  --gallery-gap: 3px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--light);
  font-family: "Jost", Arial, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 12px;
  left: 12px;
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  clip: auto;
  color: var(--dark);
  background: var(--light);
  text-decoration: none;
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  padding: 20px 36px;
  background: linear-gradient(to bottom, rgba(28, 30, 34, 0.95), transparent);
  transition: background 0.35s ease, border-color 0.35s ease, min-height 0.35s ease;
}

.site-nav.solid,
.site-nav.menu-active {
  min-height: 68px;
  background: rgba(28, 30, 34, 0.97);
  border-bottom: 0.5px solid var(--rule);
}

.nav-logo {
  position: relative;
  z-index: 2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--light);
  text-decoration: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a,
.nav-contact,
.cs-btn,
.about-link,
.hero-scroll,
.footer-links a,
.lightbox-close {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-links a {
  position: relative;
  font-size: 10px;
  color: rgba(237, 232, 224, 0.5);
  transition: color 0.3s ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--mist);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--mist);
}

.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-contact {
  padding: 8px 18px;
  font-size: 10px;
  color: var(--light);
  border: 0.5px solid rgba(237, 232, 224, 0.3);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
}

.nav-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--light);
  cursor: pointer;
  background: transparent;
  border: 0.5px solid rgba(237, 232, 224, 0.25);
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  left: 12px;
  width: 17px;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  overflow: hidden;
}

.hero-img,
.hero-photo,
.hero-placeholder,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-placeholder {
  background: linear-gradient(160deg, #2c2e32 0%, #1c1e22 45%, #243038 100%);
}

.hero-mountain {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 55%;
  background: linear-gradient(to top, #1c1e22, #252830);
  clip-path: polygon(0 100%, 0 55%, 8% 40%, 16% 52%, 24% 25%, 32% 48%, 40% 18%, 48% 38%, 56% 12%, 64% 34%, 72% 8%, 80% 28%, 88% 16%, 96% 36%, 100% 22%, 100% 100%);
}

.hero-overlay {
  background: linear-gradient(to top, rgba(28, 30, 34, 0.92) 0%, rgba(28, 30, 34, 0.1) 50%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  padding: 0 36px 56px;
}

.hero-eyebrow,
.about-eyebrow,
.cs-label {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
  color: var(--mist);
  letter-spacing: 0.28em;
}

.hero-eyebrow::before,
.hero-scroll::after {
  display: block;
  width: 36px;
  height: 0.5px;
  content: "";
}

.hero-eyebrow::before { background: var(--accent); }

  .hero-title,
.gl-title,
.about-name,
.cs-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  color: var(--light);
}

  .hero-title {
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.93;
}

  .hero-title em {
  color: var(--mist);
  font-style: italic;
}

.hero-right { text-align: right; }

.hero-desc {
  max-width: 220px;
  margin: 0 0 20px auto;
  font-size: 12px;
  line-height: 1.85;
  color: rgba(237, 232, 224, 0.45);
}

.hero-scroll {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  font-size: 9px;
  color: rgba(237, 232, 224, 0.34);
}

.hero-scroll::after { background: rgba(237, 232, 224, 0.22); }

.grid-section { padding: 4px; }

  .grid-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 28px 36px 20px;
}

.gl-title { font-size: 28px; }

.gl-count {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(237, 232, 224, 0.3);
  text-transform: uppercase;
}

.photo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gallery-gap);
  align-items: flex-start;
}

.photo-item {
  position: relative;
  display: block;
  flex: 0 1 calc((100% - (var(--gallery-gap) * 3)) / 4);
  min-width: min(100%, 190px);
  padding: 0;
  margin: 0;
  overflow: hidden;
  color: inherit;
  text-align: left;
  cursor: pointer;
  background: #252830;
  border: 0;
}

.photo-item img,
.photo-item .ph {
  display: block;
  width: 100%;
  transition: filter 0.6s ease;
  filter: brightness(0.92);
}

.photo-item img {
  height: auto;
}

.photo-item:hover img,
.photo-item:hover .ph,
.photo-item:focus-visible img,
.photo-item:focus-visible .ph {
  filter: brightness(1);
}

.ph { background: #2c2e32; }
.ph-1 { height: 420px; background: linear-gradient(180deg, #3a3835 0%, #1c1e22 100%); }
.ph-2 { height: 300px; background: linear-gradient(180deg, #888780 0%, #444441 100%); }
.ph-3 { height: 520px; background: linear-gradient(160deg, #2c2a26 0%, #1c1e22 100%); }
.ph-4 { height: 360px; background: linear-gradient(180deg, #4a4845 0%, #252320 100%); }
.ph-5 { height: 480px; background: linear-gradient(180deg, #888780 0%, #2c2a26 100%); }
.ph-6 { height: 320px; background: linear-gradient(160deg, #3a3835 0%, #1c1a18 100%); }
.ph-7 { height: 400px; background: linear-gradient(180deg, #5f5e5a 0%, #1c1e22 100%); }
.ph-8 { height: 280px; background: linear-gradient(180deg, #6b6459 0%, #252320 100%); }
.ph-9 { height: 440px; background: linear-gradient(160deg, #2c2c2a 0%, #1c1e22 100%); }

.photo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: rgba(28, 30, 34, 0);
  transition: background 0.4s ease;
}

.photo-item:hover .photo-overlay,
.photo-item:focus-visible .photo-overlay { background: rgba(28, 30, 34, 0.55); }

.photo-meta {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.photo-item:hover .photo-meta,
.photo-item:focus-visible .photo-meta {
  opacity: 1;
  transform: translateY(0);
}

.photo-cat {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--mist);
  text-transform: uppercase;
}

.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 36px;
  border-top: 0.5px solid var(--rule);
}

.about-img-wrap {
  position: relative;
  width: 70%;
}

.about-img-ph,
.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #252830;
}

.about-photo { object-fit: cover; }

.ph-portrait {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #3a3835 0%, #1c1e22 100%);
}

.about-accent-line {
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 60%;
  height: 0.5px;
  background: var(--accent);
}

.about-eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
}

.about-name {
  margin-bottom: 20px;
  font-size: 38px;
  line-height: 1;
}

.about-body {
  max-width: 560px;
  margin: 0 0 28px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-muted);
}

.about-link {
  padding-bottom: 3px;
  font-size: 10px;
  color: var(--mist);
  border-bottom: 0.5px solid var(--accent);
  transition: color 0.3s ease;
}

.about-link:hover,
.about-link:focus-visible { color: var(--light); }

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 64px 36px;
  background: var(--dark-2);
  border-top: 0.5px solid var(--rule);
}

.cs-label {
  margin-bottom: 10px;
  color: var(--accent);
}

.cs-title { font-size: 36px; }

.cs-email {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(237, 232, 224, 0.36);
  text-decoration: none;
  transition: color 0.3s ease;
}

.cs-email:hover,
.cs-email:focus-visible { color: var(--mist); }

.cs-btn {
  padding: 14px 32px;
  font-size: 10px;
  color: var(--light);
  background: var(--accent);
  transition: background 0.3s ease, transform 0.3s ease;
}

.cs-btn:hover,
.cs-btn:focus-visible {
  background: #566978;
  transform: translateY(-1px);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 36px;
  background: var(--dark-2);
  border-top: 0.5px solid var(--rule);
}

.footer-logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(237, 232, 224, 0.4);
}

.footer-copy {
  font-size: 10px;
  color: rgba(237, 232, 224, 0.2);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 9px;
  color: rgba(237, 232, 224, 0.25);
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible { color: var(--mist); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: rgba(28, 30, 34, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.lightbox-img {
  max-width: min(86vw, 1180px);
  max-height: 84vh;
  object-fit: contain;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 64px;
  padding: 0;
  color: rgba(237, 232, 224, 0.72);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 58px;
  line-height: 1;
  cursor: pointer;
  background: rgba(23, 25, 32, 0.36);
  border: 0.5px solid rgba(237, 232, 224, 0.14);
  transform: translateY(-50%);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  color: var(--light);
  background: rgba(107, 126, 143, 0.34);
  border-color: rgba(237, 232, 224, 0.3);
}

.lightbox-prev {
  left: 28px;
}

.lightbox-next {
  right: 28px;
}

.lightbox-caption {
  position: absolute;
  bottom: 22px;
  left: 50%;
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(237, 232, 224, 0.5);
  text-transform: uppercase;
  transform: translateX(-50%);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  padding: 10px;
  font-size: 11px;
  color: rgba(237, 232, 224, 0.5);
  cursor: pointer;
  background: none;
  border: 0;
  transition: color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible { color: var(--light); }

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 768px) {
  :root { --nav-height: 74px; }

  .site-nav { padding: 16px 20px; }
  .nav-toggle { display: block; }

  .nav-right {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 96px 20px 36px;
    background: rgba(23, 25, 32, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.menu-active .nav-right {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    gap: 22px;
  }

  .nav-links a {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 34px;
    letter-spacing: 0;
    text-transform: none;
  }

  .nav-contact { padding: 12px 20px; }

  .hero-content {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 0 20px 44px;
  }

  .hero-right { text-align: left; }
  .hero-desc { margin-left: 0; }
  .hero-scroll { justify-content: flex-start; }
  .photo-item,
  .photo-item:nth-child(n) {
    flex-basis: calc((100% - var(--gallery-gap)) / 2);
  }

  .lightbox-img {
    max-width: 78vw;
  }

  .lightbox-prev {
    left: 14px;
  }

  .lightbox-next {
    right: 14px;
  }

  .grid-label { padding: 20px 20px 14px; }

  .about-strip {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 56px 20px;
  }

  .about-img-wrap {
    width: 100%;
    max-width: 420px;
  }

  .about-accent-line { right: 0; }

  .contact-strip {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    padding: 48px 20px;
    text-align: center;
  }

  footer {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .photo-item,
  .photo-item:nth-child(n) {
    flex-basis: 100%;
  }

  .lightbox-nav {
    top: auto;
    bottom: 22px;
    width: 42px;
    height: 42px;
    font-size: 42px;
    transform: none;
  }

  .lightbox-caption {
    bottom: 72px;
    width: 70vw;
    text-align: center;
  }

  .hero-title { font-size: 43px; }
  .cs-title { font-size: 31px; }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}







