@charset "UTF-8";

:root {
  --bg: #000000;
  --surface: rgba(10, 10, 10, 0.92);
  --surface-soft: rgba(14, 14, 14, 0.94);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f4f4f4;
  --muted: rgba(244, 244, 244, 0.76);
  --container: min(100vw - 20px, 3440px);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --gap: 10px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

main {
  flex: 1 0 auto;
}

.site-header,
.site-footer {
  flex-shrink: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  background: rgba(0, 0, 0, 0.82);
  border-bottom: 1px solid transparent;
}

.nav-wrap {
  width: 100%;
  margin: 0 auto;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 50px;
}

.brand {
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.brand span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 2.2vw, 2.7rem);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.brand img {
  display: block;
  height: clamp(28px, 4.2vw, 54px);
  width: auto;
  max-width: min(36vw, 360px);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 300;
  transition: color 0.2s ease, opacity 0.2s ease;
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--text);
  margin: 6px 0;
}

.page-home .site-header {
  border-bottom-color: transparent;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: none;
}

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

.page-home .brand {
  display: none;
}

.home-intro {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 5vw, 72px) 10px;
  background: #000;
}

.home-intro-inner {
  width: min(100%, 760px);
  padding-inline: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-intro-logo {
  display: block;
  width: min(100%, 430px);
  height: auto;
  margin: 0 auto 42px;
}

.home-intro-lead,
.home-intro-body {
  width: min(100%, 680px);
}

.home-intro-lead p {
  margin: 0 0 8px;
  color: var(--text);
  font-size: clamp(0.98rem, 0.96vw, 1.18rem);
  line-height: 1.42;
  font-weight: 400;
}

.home-intro-spacer {
  height: 42px;
}

.home-intro-body p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(0.9rem, 0.82vw, 0.98rem);
  line-height: 1.55;
}

.home-intro-body p + p {
  margin-top: 12px;
}

.gallery-page,
.contact-page {
  padding: 10px 0 24px;
}

.gallery-page-inner {
  width: 100%;
}

.gallery-page-stack {
  width: min(100%, 1040px);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.gallery-page .text-content,
.contact-page .text-content {
  width: min(100%, 760px);
  margin: 0 auto;
  padding-inline: clamp(24px, 3vw, 40px);
}

.text-card,
.contact-card {
  padding: clamp(20px, 1.8vw, 30px);
  box-shadow: var(--shadow);
}

.text-card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
}

.contact-page .contact-card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.text-card-featured {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stack-card {
  min-height: 0;
  padding: clamp(12px, 1vw, 18px) 0 clamp(10px, 1vw, 14px);
}

.gallery-page .stack-card {
  padding-top: clamp(8px, 0.9vw, 14px);
}

.stack-gallery {
  display: grid;
  gap: 16px;
}

.stack-gallery-item {
  position: relative;
  margin: 0;
}

.text-card h1,
.contact-card h1,
.contact-card h2 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.25rem, 2.35vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: 0.015em;
}

.gallery-page .text-card h1,
.contact-page .contact-card h1,
.contact-page .contact-card h2 {
  margin: 0 0 18px;
  font-family: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(1.85rem, 2.05vw, 2.45rem);
  line-height: 1.16;
  letter-spacing: 0;
}

.text-card p,
.contact-card p,
.contact-details p,
label span,
input,
select,
.form-notice,
.site-footer p {
  font-size: clamp(0.98rem, 0.88vw, 1.08rem);
  font-weight: 300;
}

.gallery-page .text-card p,
.contact-page .contact-card p,
.contact-page .contact-details p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(0.92rem, 0.96vw, 1rem);
  line-height: 1.58;
}

.text-card p,
.contact-card p,
.contact-details p {
  margin: 0 0 10px;
  color: var(--muted);
}

.gallery-page .text-card p:first-of-type,
.contact-page .contact-card .text-content p:first-of-type,
.contact-page .contact-details p:first-of-type {
  font-size: clamp(0.98rem, 1vw, 1.06rem);
  color: var(--text);
  font-weight: 400;
}

.text-card p:first-of-type {
  font-size: clamp(1.1rem, 1.05vw, 1.22rem);
  color: var(--text);
}

.text-card a,
.contact-card a,
.contact-details a {
  color: var(--text);
  text-decoration: none;
}

.text-card a:hover,
.contact-card a:hover,
.contact-details a:hover,
.text-card a:focus-visible,
.contact-card a:focus-visible,
.contact-details a:focus-visible {
  text-decoration: underline;
}

.image-card {
  background: #050505;
  overflow: hidden;
}

.stack-gallery-item .image-button {
  display: block;
}

.image-button {
  appearance: none;
  border: 0;
  background: transparent;
  display: block;
  width: 100%;
  padding: 0;
  cursor: zoom-in;
  user-select: none;
  -webkit-user-select: none;
}

.image-card img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.image-button:hover img,
.image-button:focus-visible img {
  transform: scale(1.02);
  opacity: 0.96;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
  gap: 0;
  align-items: start;
}

.contact-card-form {
  padding-right: clamp(18px, 2.2vw, 28px);
}

.contact-card-info {
  padding-left: clamp(18px, 2.2vw, 28px);
  border-left: 1px solid var(--line);
}

.contact-page-single {
  display: block;
}

.contact-card-single {
  max-width: 860px;
}

.contact-card-form .text-content {
  margin-bottom: 22px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
}

label span {
  color: var(--text);
}

input,
select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
}

select {
  color-scheme: dark;
}

select option {
  background: #0a0a0a;
  color: #f4f4f4;
}

input:focus,
select:focus {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.contact-form button {
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: #ffffff;
  color: #000000;
  padding: 14px 18px;
  font-weight: 400;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  transform: translateY(-1px);
  opacity: 0.94;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-notice {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
}

.form-notice.success {
  background: rgba(255, 255, 255, 0.06);
}

.form-notice.error {
  background: rgba(255, 255, 255, 0.04);
}

.site-footer {
  margin-top: auto;
  padding: 20px 0 22px;
  background: #000;
}

.footer-inner,
.footer-inner-simple {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-col-center {
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.94);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-stage {
  position: relative;
  max-width: min(92vw, 1500px);
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 92vh;
  width: auto;
  height: auto;
}

.lightbox-nav,
.lightbox-close {
  appearance: none;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.lightbox-nav {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card-form {
    padding-right: clamp(20px, 2vw, 30px);
    padding-bottom: clamp(20px, 2vw, 28px);
  }

  .contact-card-info {
    padding-left: clamp(20px, 2vw, 30px);
    padding-top: clamp(20px, 2vw, 28px);
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
    --container: calc(100vw - 20px);
  }

  .nav-wrap {
    gap: 16px;
    padding: 0 25px;
  }

  .brand img {
    height: 30px;
    max-width: min(56vw, 220px);
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 25px;
    right: 25px;
    display: none;
    padding: 14px;
    background: rgba(0, 0, 0, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    justify-content: flex-start;
    gap: 12px;
  }

  .site-nav.is-open {
    display: flex;
    flex-direction: column;
  }

  .page-home .site-nav {
    left: auto;
    right: 25px;
    width: min(300px, calc(100vw - 50px));
  }

  .home-intro {
    padding: 26px 10px 34px;
  }

  .home-intro-inner {
    padding-inline: 24px;
  }

  .home-intro-logo {
    width: min(100%, 300px);
    margin-bottom: 28px;
  }

  .home-intro-lead,
  .home-intro-body {
    width: min(100%, 560px);
  }

  .home-intro-lead p {
    font-size: clamp(0.94rem, 3.65vw, 1.02rem);
    line-height: 1.48;
  }

  .home-intro-spacer {
    height: 28px;
  }

  .home-intro-body p {
    font-size: clamp(0.86rem, 3.18vw, 0.94rem);
    line-height: 1.58;
    margin-bottom: 6px;
  }

  .home-intro-body p + p {
    margin-top: 12px;
  }

  .gallery-page,
  .contact-page {
    padding: 10px 0 18px;
  }

  .gallery-page-stack {
    gap: 14px;
  }

  .gallery-page .text-content,
  .contact-page .text-content {
    padding-inline: 24px;
  }

  .gallery-page .text-card h1,
  .contact-page .contact-card h1,
  .contact-page .contact-card h2 {
    margin-bottom: 16px;
    font-size: clamp(1.55rem, 6.2vw, 2rem);
    line-height: 1.18;
  }

  .gallery-page .text-card p,
  .contact-page .contact-card p,
  .contact-page .contact-details p {
    font-size: clamp(0.9rem, 4.15vw, 0.98rem);
    line-height: 1.62;
    margin-bottom: 8px;
  }

  .gallery-page .text-card p:first-of-type,
  .contact-page .contact-card .text-content p:first-of-type,
  .contact-page .contact-details p:first-of-type {
    font-size: clamp(0.98rem, 4.35vw, 1.04rem);
  }

  .stack-gallery {
    gap: 14px;
  }

  .lightbox {
    gap: 0;
    padding: 12px;
  }

  .lightbox-stage {
    max-width: 100%;
  }

  .lightbox-nav {
    display: none;
  }

  .site-footer p {
    font-size: 0.84rem;
  }
}
