﻿:root {
  --black: #07050a;
  --ink: #111016;
  --purple: #4b1f77;
  --violet: #8c4bd8;
  --gold: #d7aa45;
  --gold-soft: #f2d68a;
  --text: #f7f0ff;
  --muted: #c9bed6;
  --line: rgba(242, 214, 138, 0.26);
  --panel: rgba(18, 12, 24, 0.82);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--black);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(7, 5, 10, 0.72);
  border-bottom: 1px solid rgba(215, 170, 69, 0.18);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: 0; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
}
.site-nav { display: flex; align-items: center; gap: clamp(14px, 2.8vw, 34px); }
.site-nav a { color: var(--muted); font-weight: 700; font-size: 14px; }
.site-nav a:hover { color: var(--gold-soft); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; color: var(--text); }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--gold-soft); }

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(20px, 6vw, 80px) 72px;
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,5,10,.94), rgba(41,18,62,.7) 45%, rgba(7,5,10,.42)); }
.hero-content { position: relative; max-width: 780px; }
.eyebrow { margin: 0 0 12px; color: var(--gold-soft); font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2 { font-family: "Cormorant Garamond", Georgia, serif; line-height: .96; margin: 0; letter-spacing: 0; }
h1 { max-width: 820px; font-size: clamp(54px, 9vw, 122px); }
h2 { font-size: clamp(38px, 5.2vw, 72px); }
.hero-copy { max-width: 620px; color: var(--muted); font-size: clamp(18px, 2vw, 23px); margin: 24px 0 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--gold);
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--gold); color: #160d1f; }
.button.secondary { background: rgba(255,255,255,.04); color: var(--gold-soft); }

.section { padding: clamp(70px, 10vw, 130px) clamp(20px, 6vw, 80px); }
.section-text { max-width: 820px; }
.section-text.centered { margin-inline: auto; text-align: center; }
.section-text p:not(.eyebrow) { color: var(--muted); max-width: 650px; margin: 18px auto 0; }
.about { background: linear-gradient(135deg, #07050a 0%, #1c1027 46%, #07050a 100%); }
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 480px); gap: clamp(30px, 6vw, 80px); align-items: start; margin-top: 38px; }
.about-copy { color: var(--muted); font-size: 18px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--panel); }
.stats div { padding: 26px 18px; border-right: 1px solid var(--line); }
.stats div:last-child { border-right: 0; }
.stats strong { display: block; font-family: "Cormorant Garamond", serif; color: var(--gold-soft); font-size: 46px; line-height: 1; }
.stats span { color: var(--muted); font-size: 13px; font-weight: 700; }

.portfolio { background: #0b0710; }
.filter-bar { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin: 34px 0; }
.filter { border: 1px solid var(--line); background: transparent; color: var(--muted); padding: 10px 16px; font-weight: 800; cursor: pointer; }
.filter.active, .filter:hover { background: var(--purple); color: white; border-color: var(--gold); }
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.gallery-item { position: relative; min-height: 360px; overflow: hidden; background: #151019; border: 1px solid rgba(215, 170, 69, .16); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item span { position: absolute; left: 18px; bottom: 18px; padding: 8px 12px; background: rgba(7,5,10,.76); color: var(--gold-soft); font-weight: 800; }
.gallery-item.hidden { display: none; }

.contact { background: linear-gradient(180deg, #0b0710, #190e22); }
.contact-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 6vw, 70px); align-items: start; max-width: 1180px; margin: 0 auto; padding: clamp(24px, 5vw, 56px); border: 1px solid var(--line); background: var(--panel); box-shadow: var(--shadow); }
.contact-panel p { color: var(--muted); }
.contact-form { display: grid; gap: 16px; }
label { display: grid; gap: 8px; color: var(--gold-soft); font-weight: 800; }
input, textarea { width: 100%; border: 1px solid rgba(215, 170, 69, .28); background: rgba(255,255,255,.06); color: white; padding: 14px 15px; font: inherit; }
input:focus, textarea:focus { outline: 2px solid var(--gold); outline-offset: 2px; }

.links { background: #07050a; }
.link-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; max-width: 980px; margin: 34px auto 0; }
.link-list a { border: 1px solid var(--line); padding: 22px; text-align: center; color: var(--gold-soft); font-weight: 900; background: rgba(255,255,255,.04); }
.link-list a:hover { background: var(--purple); }
.contact-detail a { color: var(--gold-soft); font-weight: 800; }
.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px clamp(20px, 6vw, 80px); color: var(--muted); border-top: 1px solid var(--line); background: #050307; }
.site-footer a { color: var(--gold-soft); font-weight: 800; }

@media (max-width: 850px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: 78px; left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch; padding: 18px; background: rgba(7,5,10,.96); border: 1px solid var(--line); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px; }
  .hero { min-height: 88vh; padding-top: 124px; }
  .about-grid, .contact-panel { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stats div { border-right: 0; border-bottom: 1px solid var(--line); }
  .stats div:last-child { border-bottom: 0; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item { min-height: 310px; }
  .link-list { grid-template-columns: 1fr 1fr; }
  .site-footer { flex-direction: column; }
}

@media (max-width: 520px) {
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  .link-list { grid-template-columns: 1fr; }
  .button { width: 100%; }
}

