:root{
  --bg: #f3f1ec;
  --ink: #0e0f12;
  --text: #121318;
  --muted: rgba(18,19,24,.58);
  --line: rgba(18,19,24,.14);

  --wrap: 1120px;
  --r: 18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue";
  background: var(--bg);
  color: var(--text);
  line-height:1.65;
  overflow-x:hidden;
}

/* subtle paper grain */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.08;
  mix-blend-mode: multiply;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

/* soft vignette */
body::after{
  content:"";
  position:fixed;
  inset:-25%;
  pointer-events:none;
  background:
    radial-gradient(900px 520px at 18% 10%, rgba(14,15,18,.10), transparent 60%),
    radial-gradient(900px 520px at 82% 30%, rgba(14,15,18,.07), transparent 60%);
  opacity:.6;
}

a{color:inherit;text-decoration:none}
.container{max-width:var(--wrap);margin:0 auto;padding:0 24px}
.narrow{max-width:640px}
.muted{color:var(--muted)}
.link{
  border-bottom: 1px solid rgba(18,19,24,.28);
}
.link:hover{
  border-bottom-color: rgba(18,19,24,.55);
}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(243,241,236,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 0;
}

.logo{
  letter-spacing: .26em;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--ink);
  transition: .2s ease;
}
.logo:hover{ text-shadow: 0 0 16px rgba(14,15,18,.12); }

.nav{
  display:flex;
  gap:22px;
  align-items:center;
}
.nav a{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(18,19,24,.64);
}
.nav a:hover{color: var(--ink)}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid var(--line);
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  background: transparent;
  color: var(--ink);
  transition: .16s ease;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(18,19,24,.06);
}
.btn--primary{
  background: #ffffff;
  color: #0e0f12;
  border: 1px solid #0e0f12;
}
.btn--primary:hover{
  background: #f5f5f5;
}

.btn--ghost{background: transparent}

/* Burger + mobile */
.burger{
  display:none;
  width:44px;height:40px;
  border-radius:999px;
  border:1px solid var(--line);
  background: transparent;
  padding:10px;
}
.burger span{
  display:block;
  height:2px;
  background: rgba(18,19,24,.78);
  border-radius:2px;
}
.burger span+span{margin-top:7px}

.mobile{
  border-top:1px solid var(--line);
  background: rgba(243,241,236,.92);
}
.mobile__inner{
  padding:18px 0 22px;
  display:grid;
  gap:12px;
}
.mobile__inner a{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(18,19,24,.64);
}
.mobile__inner a:hover{color: var(--ink)}
.mobile__cta{display:flex; gap:10px; margin-top:6px; flex-wrap:wrap}

/* Hero */
.hero{
  padding: 118px 0 92px;
  position:relative;
  overflow:hidden;
}
.hero::after{
  content:"13";
  position:absolute;
  right:-40px;
  bottom:-120px;
  font-size: 340px;
  font-weight: 900;
  letter-spacing: -14px;
  color: rgba(14,15,18,.055);
  user-select:none;
}

.hero__inner{
  position:relative;
  background: rgba(255,255,255,.35);
  border: 1px solid var(--line);
  border-radius: calc(var(--r) + 8px);
  padding: 46px 34px;
}

.eyebrow{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(18,19,24,.62);
}

.title{
  margin: 16px 0 10px;
  font-weight: 560;
  letter-spacing:-.03em;
  line-height: .95;
  font-size: clamp(44px, 6vw, 86px);
  color: var(--ink);
}
.title span{
  display:inline-block;
  margin-top: 6px;
  font-weight: 320;
  opacity: .62;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .55em;
}

.subtitle{
  margin: 18px 0 0;
  color: rgba(18,19,24,.64);
  max-width: 64ch;
  font-size: 16px;
}

.hero__cta{
  margin-top: 22px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.hero__meta{
  margin-top: 26px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  max-width: 760px;
}
.meta{
  border-top:1px solid var(--line);
  padding-top:12px;
}
.meta__k{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(18,19,24,.58);
}
.meta__v{
  margin-top:6px;
  font-weight:700;
  color: var(--ink);
}

/* Sections */
.section{
  padding: 92px 0;
  border-top: 1px solid var(--line);
}
.section__head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 18px;
}
.section__head h2{
  margin:0;
  font-weight: 520;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size: 13px;
  color: rgba(18,19,24,.62);
}
.section__note{
  color: rgba(18,19,24,.55);
  font-size: 11px;
  letter-spacing:.18em;
  text-transform:uppercase;
}

/* Services list */
.list{
  border-top: 1px solid var(--line);
}
.row{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
}
.row__right{
  color: var(--ink);
  font-weight: 800;
}

.section__cta{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.shot{
  grid-column: span 3;
  border-radius: var(--r);
  border:1px solid var(--line);
  background: rgba(255,255,255,.32);
  min-height: 180px;
  cursor:pointer;
  transition: .18s ease;
  position:relative;
  overflow:hidden;
}
.shot::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.22));
  opacity:.7;
  pointer-events:none;
}
.shot:hover{
  transform: translateY(-2px);
}
.shot--lg{
  grid-column: span 6;
  min-height: 290px;
}

/* bind backgrounds to filenames (no inline style needed) */
.shot[data-full="assets/img/gallery-1.jpeg"]{ background: center/cover url("../img/gallery-1.jpeg"); }
.shot[data-full="assets/img/gallery-2.jpeg"]{ background: center/cover url("../img/gallery-2.jpeg"); }
.shot[data-full="assets/img/gallery-3.jpeg"]{ background: center/cover url("../img/gallery-3.jpeg"); }
.shot[data-full="assets/img/gallery-4.jpeg"]{ background: center/cover url("../img/gallery-4.jpeg"); }
.shot[data-full="assets/img/gallery-5.jpeg"]{ background: center/cover url("../img/gallery-5.jpeg"); }
.shot[data-full="assets/img/gallery-6.jpeg"]{ background: center/cover url("../img/gallery-6.jpeg"); }

/* Contacts */
.contacts{
  border-top: 1px solid var(--line);
  margin-top: 10px;
}
.contactRow{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.contact-actions{
  margin-top: 22px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  padding: 34px 0 44px;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.footer__links{
  display:flex;
  gap:14px;
}
.footer__links a{
  color: rgba(18,19,24,.58);
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
}
.footer__links a:hover{color: var(--ink)}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  display:grid;
  place-items:center;
  z-index:100;
}
.lightbox__bg{
  position:absolute;
  inset:0;
  border:0;
  background: rgba(10,11,14,.68);
}
.lightbox__panel{
  position:relative;
  width: min(980px, 92vw);
  border-radius: calc(var(--r) + 6px);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
  background: #0b0c10;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}
.lightbox__img{
  display:block;
  width:100%;
  height:auto;
}
.lightbox__close{
  position:absolute;
  top:12px;
  right:12px;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.9);
  cursor:pointer;
}

/* Reveal */
.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: .6s ease;
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .nav{display:none}
  .burger{display:inline-flex; flex-direction:column; justify-content:center}
  .hero{padding: 96px 0 78px}
  .hero__inner{padding: 38px 22px}
  .hero__meta{grid-template-columns: 1fr; max-width: 520px}
  .section{padding: 78px 0}
  .shot{grid-column: span 6;}
  .shot--lg{grid-column: span 12;}
}
@media (max-width: 520px){
  .hero::after{font-size: 260px; right:-30px; bottom:-110px}
  .row{font-size:16px}
  .contactRow{font-size:14px; flex-direction:column; gap:6px}
  .section__cta{justify-content:flex-start}
  .shot{grid-column: span 12; min-height: 220px;}
}
