*{box-sizing:border-box}
html{scroll-behavior:smooth}
:root{--header-h:76px}

body{
  margin:0;
  padding-top:var(--header-h);
  background:var(--bg);
  color:var(--text);
  font-family:Arial,Helvetica,sans-serif;
  -webkit-font-smoothing:antialiased
}

a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}

/* ---------- HEADER ---------- */
.site-header{
  position:fixed;
  z-index:1000;
  top:0;
  left:0;
  right:0;
  height:var(--header-h);
  display:grid;
  grid-template-columns:minmax(190px,1fr) auto minmax(190px,1fr);
  align-items:center;
  gap:30px;
  padding:0 3.5vw;
  color:var(--text);
  background:var(--bg);
  border-bottom:1px solid rgba(0,0,0,.12);
  box-shadow:0 3px 18px rgba(0,0,0,.035);
  mix-blend-mode:normal
}

.brand{
  justify-self:start;
  font-family:Georgia,serif;
  font-size:22px;
  line-height:1;
  white-space:nowrap
}

.site-header nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:30px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  white-space:nowrap
}

.site-header nav a{
  position:relative;
  padding:29px 0 27px
}

.site-header nav a::after{
  content:"";
  position:absolute;
  left:0;
  right:100%;
  bottom:20px;
  height:1px;
  background:var(--text);
  transition:right .2s ease
}

.site-header nav a:hover::after{right:0}

.telegram-link{
  justify-self:end;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 18px;
  background:var(--text);
  color:var(--bg);
  border:1px solid var(--text);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.07em;
  transition:opacity .2s ease
}

.telegram-link:hover{opacity:.78}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  min-height:calc(86vh - var(--header-h));
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:flex-end
}

.hero-fallback{background:linear-gradient(125deg,#3c332e,#a58d7c)}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.62),rgba(0,0,0,.08) 68%)
}

.hero-content{
  position:relative;
  color:#fff;
  padding:0 6vw 7vh;
  max-width:900px
}

.eyebrow{
  font-size:11px;
  letter-spacing:.2em;
  margin-bottom:15px
}

.eyebrow.dark{color:var(--accent)}

.hero h1,
.page-hero h1,
.about-copy h2,
.cta-section h2{
  font-family:Georgia,serif;
  font-weight:400
}

.hero h1{
  max-width:820px;
  font-size:clamp(44px,5.6vw,82px);
  line-height:.98;
  margin:0 0 18px
}

.hero p{
  font-size:13px;
  letter-spacing:.09em;
  margin:0 0 25px
}

.btn-light,.btn-dark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 20px;
  border:1px solid currentColor;
  text-transform:uppercase;
  font-size:11px;
  letter-spacing:.1em
}

.btn-dark{background:var(--text);color:var(--bg)}

/* ---------- SECTIONS ---------- */
.section{padding:82px 5vw}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:34px;
  border-bottom:1px solid rgba(0,0,0,.18);
  padding-bottom:16px
}

.section-head h2{
  font-family:Georgia,serif;
  font-size:clamp(36px,4.4vw,58px);
  line-height:1;
  font-weight:400;
  margin:0
}

.section-head a{
  padding-bottom:4px;
  text-transform:uppercase;
  font-size:10px;
  letter-spacing:.11em;
  border-bottom:1px solid currentColor
}

/* ---------- PORTFOLIO ---------- */
.album-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px
}

.album-card{overflow:hidden}
.album-card img,.album-card .placeholder{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  transition:transform .35s ease
}

.album-card:hover img{transform:scale(1.012)}

.album-meta{padding:12px 0 24px}
.album-meta>div{
  text-transform:uppercase;
  font-size:9px;
  letter-spacing:.12em;
  color:var(--accent)
}

.album-meta h3{
  font-family:Georgia,serif;
  font-size:26px;
  line-height:1.1;
  font-weight:400;
  margin:5px 0 0
}

.placeholder{
  display:grid;
  place-items:center;
  background:#d7cec5;
  color:#6e635b;
  min-height:260px
}

.placeholder.tall{min-height:580px}

/* ---------- ABOUT ---------- */
.about-section{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  min-height:74vh;
  border-top:1px solid rgba(0,0,0,.08);
  border-bottom:1px solid rgba(0,0,0,.08)
}

.about-image img{
  width:100%;
  height:100%;
  min-height:620px;
  object-fit:cover
}

.about-copy{
  padding:7vw 6vw;
  display:flex;
  flex-direction:column;
  justify-content:center
}

.about-copy h2{
  font-size:clamp(38px,4.6vw,62px);
  line-height:1;
  margin:0 0 24px
}

.about-copy p{
  font-size:16px;
  line-height:1.75;
  max-width:590px;
  margin:0
}

.text-link{
  margin-top:25px;
  text-transform:uppercase;
  font-size:11px;
  letter-spacing:.1em;
  border-bottom:1px solid currentColor;
  align-self:flex-start;
  padding-bottom:4px
}

/* ---------- SERVICES ---------- */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:0;
  border-top:1px solid rgba(0,0,0,.18);
  border-bottom:1px solid rgba(0,0,0,.18)
}

.service-card{
  min-width:0;
  padding:30px 30px 32px;
  border-right:1px solid rgba(0,0,0,.14)
}

.service-card:first-child{padding-left:0}
.service-card:last-child{
  border-right:0;
  padding-right:0
}

.service-card h3{
  font-family:Georgia,serif;
  font-size:clamp(28px,2.4vw,38px);
  line-height:1.05;
  font-weight:400;
  margin:0 0 10px
}

.price{
  font-size:16px;
  font-weight:600;
  margin-bottom:20px
}

.service-card p,
.service-desc{
  font-size:14px;
  line-height:1.65;
  color:#625d58
}

.service-card p{margin:0 0 12px}
.service-desc{margin-top:10px}

.service-card a{
  display:inline-block;
  margin-top:22px;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.08em;
  border-bottom:1px solid currentColor;
  padding-bottom:3px
}

/* ---------- FAQ ---------- */
.faq-list details{
  border-top:1px solid rgba(0,0,0,.17);
  padding:22px 0
}

.faq-list details:last-child{
  border-bottom:1px solid rgba(0,0,0,.17)
}

.faq-list summary{
  cursor:pointer;
  font-family:Georgia,serif;
  font-size:20px
}

.faq-list p{
  max-width:800px;
  font-size:14px;
  line-height:1.7
}

/* ---------- CTA / FOOTER ---------- */
.cta-section{
  padding:70px 5vw;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  background:#e3dad1
}

.cta-section h2{
  font-size:clamp(34px,4vw,54px);
  max-width:760px;
  line-height:1.04;
  margin:0
}

.footer{
  padding:55px 5vw;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:30px;
  background:#161616;
  color:#fff
}

.footer-title{
  font-family:Georgia,serif;
  font-size:25px;
  margin-bottom:8px
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap:9px;
  font-size:14px
}

/* ---------- INNER PAGES ---------- */
.page-hero{padding:90px 5vw 65px}
.page-hero h1{
  font-size:clamp(44px,6vw,76px);
  line-height:1;
  margin:0
}

.page-hero p{
  max-width:700px;
  line-height:1.7;
  font-size:15px
}

.gallery{
  padding:0 5vw 80px;
  columns:2;
  column-gap:16px
}

.gallery img{
  width:100%;
  margin:0 0 16px;
  break-inside:avoid
}

.empty-public{
  padding:42px;
  border:1px solid rgba(0,0,0,.18)
}

/* ---------- TABLET ---------- */
@media(max-width:1050px){
  .site-header{
    grid-template-columns:1fr auto;
    gap:20px
  }

  .site-header nav{display:none}

  .services-grid{
    grid-template-columns:1fr;
    border-bottom:0
  }

  .service-card,
  .service-card:first-child,
  .service-card:last-child{
    padding:24px 0;
    border-right:0;
    border-bottom:1px solid rgba(0,0,0,.16)
  }
}

/* ---------- MOBILE ---------- */
@media(max-width:700px){
  :root{--header-h:66px}

  .site-header{
    padding:0 18px;
    grid-template-columns:minmax(0,1fr) auto
  }

  .brand{
    font-size:19px;
    overflow:hidden;
    text-overflow:ellipsis
  }

  .telegram-link{
    min-height:36px;
    padding:0 13px;
    font-size:10px
  }

  .hero{
    min-height:calc(78vh - var(--header-h));
    background-position:center
  }

  .hero-content{
    padding:0 20px 38px
  }

  .hero h1{
    font-size:clamp(38px,12vw,56px);
    max-width:100%
  }

  .hero p{
    font-size:11px;
    line-height:1.5
  }

  .section{padding:62px 20px}

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

  .section-head h2{
    font-size:36px
  }

  .section-head a{display:none}

  .album-grid{grid-template-columns:1fr}

  .album-meta h3{font-size:24px}

  .about-section{grid-template-columns:1fr}

  .about-image img{min-height:440px}

  .about-copy{padding:60px 20px}

  .about-copy h2{font-size:38px}

  .cta-section{
    padding:56px 20px;
    align-items:flex-start;
    flex-direction:column
  }

  .footer{
    grid-template-columns:1fr;
    padding:48px 20px
  }

  .gallery{
    padding:0 20px 60px;
    columns:1
  }

  .page-hero{
    padding:68px 20px 48px
  }
}
