:root {
  --bg: #07070a;
  --bg-soft: #0e0e12;
  --panel: rgba(255,255,255,0.04);
  --line: rgba(255,255,255,0.10);
  --line-strong: rgba(255,255,255,0.18);
  --text: #f5f4ef;
  --muted: rgba(245,244,239,0.68);
  --soft: rgba(245,244,239,0.42);
  --accent: #d6c3a1;
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

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

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

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
  background: #fff;
  color: #000;
  padding: 8px 12px;
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(7,7,10,0.68), rgba(7,7,10,0.08));
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
}

.brand .name {
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand .role {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft);
}

.menu {
  display: flex;
  gap: 26px;
}

.menu a {
  position: relative;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.74);
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.7);
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-media video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media video,
.hero-media img {
  object-fit: cover;
  filter: brightness(0.34) saturate(0.88);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7,7,10,0.94) 0%, rgba(7,7,10,0.28) 38%, rgba(7,7,10,0.50) 100%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 35%, rgba(0,0,0,0.28) 100%),
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05), transparent 35%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.10;
  mix-blend-mode: soft-light;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 3px 3px, 4px 4px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}

.kicker {
  margin-bottom: 18px;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

.h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 300;
}

.sub {
  margin-top: 22px;
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

.cta-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  font-size: 0.74rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  transition: 0.28s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.26);
}

.btn.primary {
  background: rgba(214,195,161,0.10);
  border-color: rgba(214,195,161,0.28);
}

/* Sections */
.section {
  position: relative;
  padding: 90px 0 110px;
}

.section-head {
  margin-bottom: 26px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--soft);
}

.section h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.card {
  display: block;
  background: linear-gradient(to bottom, rgba(255,255,255,0.035), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.20);
  background: linear-gradient(to bottom, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
}

.thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.card:hover .thumb img {
  transform: scale(1.03);
  filter: brightness(0.96);
}

.meta {
  padding: 22px;
}

.title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desc {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  border: 1px solid var(--line);
  padding: 7px 10px;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 26px 0 40px;
  color: var(--soft);
  font-size: 0.78rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .sub {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .nav {
    min-height: auto;
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .menu {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-inner {
    padding-top: 150px;
    padding-bottom: 60px;
  }

  .h1 {
    font-size: 2.8rem;
    line-height: 1;
  }

  .sub {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .section {
    padding: 70px 0 90px;
  }

  .meta {
    padding: 18px;
  }
}
/* --- About layout: two columns + portrait --- */
.two-col{
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
}

.portrait img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.10);
}

@media (max-width: 900px){
  .two-col{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .portrait{
    max-width: 420px;
  }
}

