:root {
  color-scheme: dark;
  --bg: #090a0c;
  --bg-soft: #121419;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.14);
  --text: #f4efe5;
  --muted: #aaa197;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #d7a85d;
  --amber: #ffcf8a;
  --cyan: #8ad7ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 0%, rgba(215, 168, 93, 0.16), transparent 32rem),
    radial-gradient(circle at 90% 18%, rgba(138, 215, 255, 0.12), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: flex;
  width: min(calc(100% - 32px), var(--max-width));
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 10, 12, 0.68);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  transform: translateX(-50%);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #7e4d25);
  color: #160f09;
  font-size: 0.75rem;
}

.site-nav {
  gap: 4px;
}

.site-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--card);
  color: var(--text);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  align-items: end;
  overflow: hidden;
  padding: 150px max(22px, calc((100vw - var(--max-width)) / 2)) 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(9, 10, 12, 0.9) 0%, rgba(9, 10, 12, 0.52) 46%, rgba(9, 10, 12, 0.28) 100%),
    url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=2200&q=82") center / cover;
  transform: scale(1.04);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 4px),
    radial-gradient(circle at 70% 60%, rgba(215, 168, 93, 0.18), transparent 22rem);
  mix-blend-mode: screen;
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 8vw, 8.8rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-copy,
.section-heading p,
.about-copy p,
.contact-section p,
.journal-cards p,
.site-footer p {
  color: var(--muted);
}

.hero-copy {
  max-width: 590px;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--amber), var(--gold));
  color: #1b1209;
  font-weight: 800;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.06);
}

.hero-card {
  position: absolute;
  right: max(22px, calc((100vw - var(--max-width)) / 2));
  bottom: 80px;
  width: min(330px, calc(100% - 44px));
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 20, 25, 0.68);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-card span {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.hero-card strong {
  display: block;
  margin: 8px 0;
  font-size: 1.45rem;
}

.hero-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.intro-strip,
.gallery-section,
.about-section,
.journal-section,
.contact-section {
  width: min(calc(100% - 44px), var(--max-width));
  margin: 0 auto;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  transform: translateY(-34px);
}

.intro-strip div {
  padding: 24px;
  background: rgba(18, 20, 25, 0.82);
}

.intro-strip span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 2.2rem;
}

.intro-strip strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 1.1rem;
}

.intro-strip p {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-section,
.about-section,
.journal-section,
.contact-section {
  padding: 90px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.45fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -12px;
}

.section-heading p {
  margin-bottom: 8px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-btn {
  cursor: pointer;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  transition: 0.2s ease;
}

.filter-btn:hover,
.filter-btn:focus-visible,
.filter-btn.active {
  border-color: rgba(215, 168, 93, 0.75);
  background: rgba(215, 168, 93, 0.14);
  color: var(--text);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.photo-card {
  position: relative;
  grid-column: span 4;
  min-height: 420px;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.photo-card.wide {
  grid-column: span 8;
}

.photo-card.tall {
  min-height: 560px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transform: scale(1.02);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.photo-card:hover img,
.photo-card:focus-visible img {
  filter: saturate(1.02) contrast(1.08);
  transform: scale(1.08);
}

.photo-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent 58%);
}

.photo-meta {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 1;
}

.photo-meta span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.photo-meta strong {
  display: block;
  margin-top: 6px;
  font-size: 1.35rem;
}

.photo-meta p {
  margin: 6px 0 0;
  color: rgba(244, 239, 229, 0.72);
}

.about-section {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual::before {
  position: absolute;
  inset: -18px;
  z-index: -1;
  border: 1px solid rgba(215, 168, 93, 0.4);
  border-radius: 38px;
  content: "";
  transform: rotate(-3deg);
}

.about-visual img {
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: 34px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.about-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
}

.about-stats strong {
  display: block;
  color: var(--amber);
  font-size: 2rem;
  line-height: 1;
}

.about-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.journal-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.journal-cards article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.journal-cards article {
  padding: 28px;
}

.journal-cards span {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 32px;
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.contact-card a {
  color: var(--amber);
  font-size: 1.3rem;
  font-weight: 800;
}

.contact-card span {
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(2, 3, 5, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

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

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 78vh;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
}

.lightbox-meta {
  width: min(1100px, 100%);
  margin-top: 16px;
  color: var(--text);
}

.lightbox-meta strong,
.lightbox-meta span {
  display: block;
}

.lightbox-meta span {
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  width: min(calc(100% - 44px), var(--max-width));
  margin: 60px auto 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.site-footer p {
  margin: 8px 0 0;
}

.compliance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 0.92rem;
}

.compliance a:hover,
.compliance a:focus-visible {
  color: var(--amber);
}

.section-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-card {
    position: static;
    margin-top: 40px;
  }

  .section-heading,
  .about-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .photo-card.wide {
    grid-column: span 6;
  }

  .journal-cards {
    grid-template-columns: 1fr;
  }

  .compliance {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    align-items: flex-start;
    border-radius: 24px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .site-nav a {
    padding: 7px 9px;
    font-size: 0.84rem;
  }

  .hero {
    padding-top: 136px;
  }

  h1 {
    letter-spacing: -0.06em;
  }

  .intro-strip,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .gallery-section,
  .about-section,
  .journal-section,
  .contact-section {
    padding: 58px 0;
  }

  .gallery-grid {
    display: block;
  }

  .photo-card,
  .photo-card.tall {
    min-height: 440px;
    margin-bottom: 16px;
  }

  .about-visual::before {
    inset: -10px;
  }
}

@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;
  }
}
