:root{
  --bg:#000000;
  --bg2:#000000;
  --card:rgba(255,255,255,.06);
  --border:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --muted2:rgba(255,255,255,.55);
  --accent: rgba(191,167,106,.92);
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --r:22px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:#000;
  color:var(--text);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
a:hover{opacity:.92}

.container{max-width:1120px;margin:0 auto;padding:0 20px}
.section{padding:120px 0}
.section--alt{background:transparent}

.grid2{display:grid;grid-template-columns:1.1fr .9fr;gap:28px;align-items:start}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}

@media (max-width: 980px){
  .grid2{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .section{padding:70px 0}
}

/* ===================== NAV ===================== */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:50;
  backdrop-filter: blur(12px);
  background:rgba(8,9,12,.55);
  border-bottom:1px solid rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 18px;
  transition: background .25s ease, border-color .25s ease, padding .25s ease, transform .25s ease;
}
.nav--scrolled{
  background:rgba(8,9,12,.84);
  border-bottom-color:rgba(255,255,255,.12);
  padding:2px 18px;
}
.nav--scrolled .brand__mono{width:34px;height:34px;border-radius:11px}
.nav--scrolled .brand__text{font-size:17px}
.nav--scrolled .btn{padding:10px 12px}
.nav--scrolled .lang{padding:7px 9px}

.brand{display:flex;gap:12px;align-items:center}
.brand__mono{
  display:inline-flex;align-items:center;justify-content:center;
  width:38px;height:38px;border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.05);
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  letter-spacing:.04em;
}
.brand__text{
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  font-size:18px;
  letter-spacing:.02em;
}
.nav__links{display:flex;gap:18px;align-items:center}
.nav__links a{font-size:14px;color:var(--muted)}
.nav__links a:hover{color:var(--text)}
.lang{
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.05);
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
  cursor:pointer;
}
@media (max-width: 980px){
  .nav__links a{display:none}
  .lang{display:inline-flex}
}

/* ===================== HERO ===================== */
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding-top:88px;
  position:relative;
  overflow:hidden;
  justify-content:flex-start;
}
.hero__bg{position:absolute;inset:0;background:#000;overflow:hidden}
.hero__bg::before{
  content:"";
  position:absolute;top:0;bottom:0;
  right:-4vw;
  width:min(1120px, 76vw);
  background:url("images/hero.jpg") no-repeat;
  background-size: cover;
  background-position: 60% 58%;
  filter: contrast(.98) brightness(.92) saturate(.96);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
}
.hero__bg::after{
  content:"";
  position:absolute;inset:0;
  background:
    radial-gradient(900px 600px at 18% 45%, rgba(0,0,0,.78) 0%, rgba(0,0,0,.38) 58%, rgba(0,0,0,0) 78%),
    radial-gradient(1200px 800px at 60% 40%, rgba(0,0,0,0) 55%, rgba(0,0,0,.55) 100%),
    radial-gradient(420px 320px at 78% 52%, rgba(255,214,150,.16) 0%, rgba(255,214,150,.07) 35%, rgba(0,0,0,0) 72%);
  pointer-events:none;
}

.hero__content{
  position:relative;
  max-width:860px;
  padding:0 20px;
  margin-left: clamp(0px, 6vw, 110px);
}

.kicker{color:var(--muted2);text-transform:uppercase;letter-spacing:.18em;font-size:12px;margin:0 0 14px}
.hero__title{
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  font-size:56px;
  line-height:1.05;
  margin:0 0 18px;
}
.hero__subtitle{color:var(--muted);font-size:18px;max-width:720px;margin:0 0 28px}
@media (max-width: 600px){ .hero__title{font-size:44px} }

.hero__cta{display:flex;gap:16px;align-items:center;margin-bottom:22px;flex-wrap:wrap}
.hero__meta{display:flex;gap:12px;align-items:center;flex-wrap:wrap;color:var(--muted2);font-size:14px}
.dot{width:4px;height:4px;border-radius:99px;background:rgba(255,255,255,.35);display:inline-block}

/* subtle grain */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.07;
  mix-blend-mode: overlay;
  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='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* ===================== TYPO ===================== */
.h2{
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  font-size:36px;
  margin:0 0 14px;
}
#philosophy .h2{ margin-bottom:46px; }
.h3{
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  font-size:22px;
  margin:0 0 10px;
}
.lead{color:var(--muted);font-size:17px;margin:0 0 12px}
.text{color:var(--muted);margin:0}
.note{color:var(--muted2);margin:16px 0 0;font-size:13px}

/* ===================== CARD ===================== */
.card{
  border-radius:var(--r);
  background:var(--card);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  padding:22px;
}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:14px;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.18);
  font-size:14px;
  gap:8px;
  transition: transform .25s ease, opacity .25s ease, background .25s ease, border-color .25s ease;
}
.btn:active{transform:scale(.985)}
.btn--primary{
  background:rgba(255,255,255,.92);
  color:#0b0c0f;
  border-color:transparent;
}
.btn--ghost{background:rgba(255,255,255,.05);color:var(--text)}
.btn--subtle{
  background: transparent;
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.78);
}
.btn--subtle:hover{
  border-color: rgba(255,255,255,.22);
  color: rgba(255,255,255,.90);
}
.btn--link{
  border-color:transparent;background:transparent;
  color:var(--muted);padding:12px 0;
}
.btn--link:hover{color:var(--text)}

/* ===================== ABOUT (your version kept) ===================== */
.aboutPhoto{
  position:relative;
  border-radius:0;
  border:none;
  box-shadow:none;
  overflow:hidden;
  background:#000;
  aspect-ratio: 3 / 4;
}
.aboutPhoto::before{
  content:"";
  position:absolute;inset:0;
  background: url("images/about.jpg") no-repeat center;
  background-size: contain;
  filter: contrast(.98) brightness(.92) saturate(.96);
}
.aboutPhoto__caption{
  position:absolute;left:18px;right:18px;bottom:16px;z-index:2;
  display:flex;flex-direction:column;gap:6px;
}
.aboutPhoto__name{
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  font-size:26px;
  line-height:1.05;
  margin:0;
  color:rgba(255,255,255,.94);
}
.aboutPhoto__role{
  margin:0;
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.55);
}
@media (max-width: 980px){
  .aboutPhoto{min-height: 380px;}
  .aboutPhoto__name{font-size:24px;}
}
.aboutSide{display:grid;gap:14px}
.aboutHighlights{border:none;background:transparent}
.aboutHighlights__title{
  margin:0 0 12px;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,.55);
}
.aboutHighlights__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px 12px;
}
.hl{border-radius:14px;border:none;background:transparent;padding:6px 8px}
.hl__k{
  display:block;
  font-size:9px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.55);
  margin-bottom:4px;
}
.hl__v{
  display:block;
  font-size:12px;
  color:rgba(255,255,255,.88);
  line-height:1.25;
}
@media (max-width: 560px){ .aboutHighlights__grid{grid-template-columns:1fr} }

/* ===================== PHILOSOPHY (your editorial layout kept) ===================== */
.phCard{
  border:none;background:transparent;overflow:visible;
  transition: transform .35s ease;
  display:flex;flex-direction:column;
}
.phMedia{
  position:relative;background: transparent;
  height:auto;min-height:280px;
  display:flex;align-items:center;justify-content:center;
  overflow:visible;
}
.philosophyGrid .phCard:nth-child(2) .phMedia img{max-height: 360px}
.phMedia img{
  display:block;width:auto;height:auto;
  max-width:100%;max-height:320px;
  object-fit:contain;
  transform:none;
}
.phBody{padding:26px 4px 0;min-height:180px}
.phTitle{
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  font-size:20px;
  margin:0 0 10px;
  color: rgba(255,255,255,.92);
  line-height:1.15;
}
.phLine{
  width:44px;height:1px;margin:0 0 12px;
  background: linear-gradient(90deg, rgba(191,167,106,.85), rgba(191,167,106,0));
}
.phText{margin:0;color: rgba(255,255,255,.68);line-height:1.6;font-size:14px}

.philosophyGrid{
  display:grid;
  margin-top:26px;
  grid-template-columns: 0.92fr 1.16fr 0.92fr;
  gap: 44px;
  align-items: start;
}
.philosophyGrid .phCard:nth-child(1){ transform: translateY(34px); }
.philosophyGrid .phCard:nth-child(3){ transform: translateY(-22px) scale(0.97); }
.philosophyGrid .phCard:nth-child(1):hover{ transform: translateY(28px); }
.philosophyGrid .phCard:nth-child(2):hover{ transform: translateY(-6px) scale(1.10); }
.philosophyGrid .phCard:nth-child(3):hover{ transform: translateY(-28px) scale(0.97); }

.philosophyGrid .phCard:nth-child(2){
  transform: translateY(0) scale(1.10);
  transform-origin: center top;
}

.philosophyGrid .phCard:nth-child(1) .phMedia img,
.philosophyGrid .phCard:nth-child(3) .phMedia img{
  filter: brightness(.88) contrast(.98) saturate(.92);
}
.philosophyGrid .phCard:nth-child(2) .phMedia img{
  filter: brightness(1.02) contrast(1.00) saturate(1.02);
}

@media (max-width: 980px){
  .philosophyGrid{grid-template-columns: 1fr;gap: 28px}
  .philosophyGrid .phCard:nth-child(1),
  .philosophyGrid .phCard:nth-child(2),
  .philosophyGrid .phCard:nth-child(3){transform:none}
  .phMedia{min-height:260px}
}

/* ===================== SERVICES (NEW) ===================== */
.servicesGrid{margin-top:18px}

.service{
  padding:0; /* media takes top */
  overflow:hidden;
}
.service__media{
  position:relative;
  height:460px;
  border-radius: var(--r) var(--r) 0 0;
  overflow:hidden;
}
.service__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.02);
  filter: contrast(.98) brightness(.92) saturate(.98);
  transition: transform 900ms cubic-bezier(.22,1,.36,1), filter 900ms cubic-bezier(.22,1,.36,1);
}
.service__veil{
  position:absolute;inset:0;
  background:
    radial-gradient(900px 280px at 50% 0%, rgba(0,0,0,.00) 40%, rgba(0,0,0,.55) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.12), rgba(0,0,0,.42));
  pointer-events:none;
  opacity:.88;
  transition: opacity 700ms ease;
}
.service__body{
  padding:22px;
}
.service .list{margin:12px 0 0;padding-left:18px;color:var(--muted)}
.service .list li{margin:6px 0}

.service:hover .service__media img{transform: scale(1.06)}
.service:hover .service__veil{opacity:.78}

@media (max-width: 980px){
  .service__media{height:420px}
}

/* ===================== GALLERY (NEW) ===================== */
.galleryHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
/* ===================== GALLERY (CATEGORIES CARDS) ===================== */
.galleryCats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:18px;
}

.galCat{
  position:relative;
  border-radius: var(--r);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  height:240px;
  padding:0;
  cursor:pointer;
  box-shadow: var(--shadow);
  transition: transform .35s ease, border-color .35s ease;
}

.galCat img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.02);
  filter: contrast(.98) brightness(.92) saturate(.98);
  transition: transform 900ms cubic-bezier(.22,1,.36,1);
}

.galCat__veil{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 280px at 50% 0%, rgba(0,0,0,.00) 40%, rgba(0,0,0,.60) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.45));
  opacity:.9;
  pointer-events:none;
}

.galCat__body{
  position:absolute; left:18px; right:18px; bottom:16px;
  display:flex; flex-direction:column; gap:6px;
}

.galCat__h{
  margin:0;
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  font-size:22px;
  line-height:1.1;
  color: rgba(255,255,255,.94);
}

.galCat__p{
  margin:0;
  color: rgba(255,255,255,.72);
  font-size:13px;
  line-height:1.35;
  max-width: 44ch;
}

.galCat:hover{ transform: translateY(-2px); border-color: rgba(255,255,255,.20); }
.galCat:hover img{ transform: scale(1.06); }

.galCat.is-active{
  border-color: rgba(191,167,106,.55);
  box-shadow: 0 18px 60px rgba(0,0,0,.42);
}

@media (max-width: 980px){
  .galleryCats{ grid-template-columns:1fr; }
  .galCat{ height:220px; }
}

.galleryGrid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.galItem{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  overflow:hidden;
  background:rgba(255,255,255,.03);
  cursor:pointer;
  aspect-ratio: 4 / 5;
  position:relative;
}
.galItem img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.01);
  transition: transform 900ms cubic-bezier(.22,1,.36,1), filter 900ms cubic-bezier(.22,1,.36,1);
  filter: contrast(.98) brightness(.92) saturate(.98);
}
.galItem::after{
  content:"";
  position:absolute;inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.22));
  opacity:.65;
  transition: opacity 700ms ease;
  pointer-events:none;
}
.galItem:hover img{transform: scale(1.06)}
.galItem:hover::after{opacity:.45}

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

/* ===================== CONTACT / FORM ===================== */
/* ===================== CONTACT — CONCIERGE (A) ===================== */
.contact__kicker{margin-bottom:10px}
.contactMeta{
  margin-top:22px;
  display:grid;
  gap:10px;
  padding:14px 0 6px;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.contactTrust{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
}
.contactTrust__title{
  margin:0 0 10px;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,.55);
}
.contactTrust__list{
  margin:0;
  padding-left:18px;
  color:rgba(255,255,255,.70);
  font-size:13px;
  line-height:1.6;
}
.contactTrust__list li{ margin:6px 0; }
.cmeta{display:flex;justify-content:space-between;gap:14px}
.cmeta__k{
  font-size:10px;letter-spacing:.18em;text-transform:uppercase;
  color:rgba(255,255,255,.55);
}
.cmeta__v{color:rgba(255,255,255,.86);font-size:13px}

.contactLinks--quiet{margin-top:18px}

.form--concierge{padding:22px}
.formHead{margin-bottom:10px}
.formHead__title{
  margin:0;
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  font-size:20px;
}
.formHead__sub{margin:6px 0 0;color:rgba(255,255,255,.62);font-size:13px}

.step{padding-top:14px}
.step + .step{border-top:1px solid rgba(255,255,255,.08);margin-top:10px}
.step__k{
  margin:0 0 10px;
  font-size:10px;letter-spacing:.18em;text-transform:uppercase;
  color:rgba(255,255,255,.55);
}

.formGrid{grid-template-columns:1fr 1fr;gap:12px}
.formGrid3{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:12px;
}
@media (max-width: 980px){
  .formGrid3{ grid-template-columns: 1fr; }
}
@media (max-width: 980px){ .formGrid{grid-template-columns:1fr} }

.field--line input,
.field--line textarea{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.field--line input:focus,
.field--line textarea:focus{
  outline: none;
  border-color: rgba(191,167,106,.75);   /* золото */
  box-shadow: 0 0 0 2px rgba(191,167,106,.25);
}

.chips{display:flex;gap:10px;flex-wrap:wrap}
.chip{
  border-radius:999px;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.82);
  cursor:pointer;
  font-size:13px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, opacity .25s ease;
}
.chip:hover{border-color:rgba(255,255,255,.22);transform:translateY(-1px)}
.chip.is-active{
  border-color:rgba(191,167,106,.55);
  background:rgba(191,167,106,.10);
  box-shadow: 0 0 20px rgba(191,167,106,.12);
}

.btn--wide{
  width:100%;
  margin-top: 22px;   /* ← добавляет воздух */
}

.fine--lux{margin-top:10px}

/* screen-reader only */
.srOnly{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* ===================== FOOTER ===================== */
.footer{padding:28px 0;border-top:1px solid rgba(255,255,255,.10);color:var(--muted2)}
.footer__in{display:flex;gap:10px;flex-wrap:wrap;align-items:center;justify-content:center}
.sep{opacity:.6}

/* ===================== REVEAL ANIMS (NEW) ===================== */
[data-reveal]{
  opacity:0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 900ms cubic-bezier(.22,1,.36,1) var(--d, 0ms),
    transform 900ms cubic-bezier(.22,1,.36,1) var(--d, 0ms);
}
[data-reveal].is-in{
  opacity:1;
  transform: translate3d(0,0,0);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  [data-reveal]{opacity:1;transform:none;transition:none}
  .service__media img, .galItem img, .btn{transition:none}
}

/* ===================== LIGHTBOX (NEW) ===================== */
.no-scroll{overflow:hidden}

.lightbox{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,1);
  opacity:0;
  pointer-events:none;
  display:flex;                 /* всегда flex */
  align-items:center;
  justify-content:center;
  z-index:100;
  padding:18px;
  transition: opacity .35s ease;
}

.lightbox.is-open{
  opacity:1;
  pointer-events:auto;
}

.lightbox__inner{
  width:min(1080px, 92vw);
  max-height: 88vh;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.lightbox__img{
  width:100%;
  height:auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
}
.lightbox__cap{
  color: rgba(255,255,255,.70);
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.lightbox__close{
  position:absolute;
  top:16px;
  right:16px;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.85);
  cursor:pointer;
}
.lightbox__close:hover{opacity:.92}


/* ===================== GALLERY FILMSTRIP (C) ===================== */

.galleryViewer{
  margin-top:80px;
  display:flex;
  flex-direction:column;
  gap:40px;
}

.galleryMain{
  position:relative;
  max-width: 920px;
  margin: 0 auto;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.02);
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  overflow:hidden;
  aspect-ratio: 16 / 9;
}

.galleryMain__img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: opacity .35s ease, transform 6s ease;
  transform: scale(1.02);
}

.galleryMain:hover .galleryMain__img{
  transform: scale(1.06);
}

.galleryMain__cap{
  margin-top:14px;
  text-align:left;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,.55);
}

.galleryStrip{
  display:flex;
  gap:22px;
  justify-content:center;
  overflow-x:auto;
  padding-bottom:6px;
  scroll-snap-type:x mandatory;
}

.galleryStrip::-webkit-scrollbar{
  height:4px;
}

.galThumb{
  flex:0 0 auto;
  width:120px;
  height:90px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  overflow:hidden;
  background:rgba(255,255,255,.04);
  cursor:pointer;
  position:relative;
  scroll-snap-align:start;
  transition: transform .4s ease, border-color .4s ease, opacity .4s ease;
}

.galThumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
  transition: transform 900ms cubic-bezier(.22,1,.36,1);
}

.galThumb:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.22);
}

.galThumb:hover img{
  transform:scale(1.06);
}

.galThumb.is-active{
  border-color: rgba(191,167,106,.65);
  box-shadow: 0 0 20px rgba(191,167,106,.15);
  transform: scale(1.04);
}

@media (max-width:768px){
  .galThumb{
    width:84px;
    height:64px;
  }
}

.galThumb{
  opacity:0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
}

.galThumb.is-visible{
  opacity:1;
  transform: translateY(0);
}

/* ===================== HERO — MOBILE refined ===================== */
@media (max-width: 600px){

  .hero{
    min-height: 80vh;       /* меньше чем 100vh */
    align-items:flex-start;
    padding-top:100px;
  }

  .hero__content{
    margin-left:0;
    max-width:100%;
  }

  .hero__bg::before{
    right:0;
    width:100%;
    background-position: 60% 82%; /* рука видна */
    background-size: 115%;        /* немного меньше */
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
  }

  .hero__subtitle{
    font-size:15px;
  }

  .hero__meta{
    font-size:12px;
  }

}

#gallery {
  scroll-margin-top: 90px;
}

.galleryViewer {
  scroll-margin-top: 90px;
}

/* ===================== FORM TEXT FIX (typing + autofill) ===================== */
.field input,
.field textarea{
  color: rgba(255,255,255,.92);
  caret-color: rgba(255,255,255,.92);
}

.field input::placeholder,
.field textarea::placeholder{
  color: rgba(255,255,255,.42);
}

/* Chrome autofill */
.field input:-webkit-autofill,
.field textarea:-webkit-autofill{
  -webkit-text-fill-color: rgba(255,255,255,.92) !important;
  caret-color: rgba(255,255,255,.92) !important;
  box-shadow: 0 0 0 1000px rgba(255,255,255,.03) inset !important; /* matches your field--line bg */
  transition: background-color 999999s ease-in-out 0s;
}

/* FIX: field label must take full row width */
.field{
  display:block;
  width:100%;
}

/* FIX: inputs must fill the field width */
.field--line input,
.field--line textarea{
  width:100%;
  display:block;
  padding:12px 14px;  /* чтобы текст не был "впритык" */
}

/* ===================== CONTACT — FORMAT TILES (Variant 3) ===================== */

.formatTiles{
  display:grid;
  gap:10px;
}

.tile{
  width:100%;
  text-align:left;
  padding:11px 14px;                 /* ↓ меньше высота */
  border-radius:16px;                /* ↓ мягче */
  border:1px solid rgba(255,255,255,.08);  /* ↓ тоньше */
  background: rgba(255,255,255,.02);       /* ↓ легче фон */
  cursor:pointer;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.tile:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.22);
}

.tile.is-active{
  border-color: rgba(191,167,106,.60);
  background: rgba(191,167,106,.10);
  box-shadow: 0 0 26px rgba(191,167,106,.10);
}

.tile__h{
  display:block;
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  font-size:17px;     /* ↓ было 18 */
  line-height:1.1;
  color: rgba(255,255,255,.90);
}

.tile__p{
  display:block;
  margin-top:4px;     /* ↓ меньше воздуха */
  font-size:12.5px;   /* ↓ легче */
  line-height:1.3;
  color: rgba(255,255,255,.58);
}

/* ===================== CONTACT — CLEAN PORTRAIT ===================== */

.contactPortrait{
  position:relative;
  min-height: 720px;
  background:#000;
  overflow:hidden;
}

.contactPortrait img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:50% 35%;
  filter:none;               /* убрали затемнение */
  transform:none;            /* убрали масштаб */
}

/* убираем overlay полностью */
.contactPortrait::after{
  display:none;
}

/* кнопки — светлая панель */
.contactPortrait__actions{
  position:absolute;
  left:30px;
  bottom:40px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.contactPortrait__actions .btn{
  backdrop-filter:none;
}

/* чуть больше “воздуха” в форме между полями и кнопкой отправки */
.form--concierge .btn--wide{
  margin-top: 14px;
}

@media (max-width: 980px){
  .contactPortrait{ min-height: 520px; }
}

@media (max-width: 560px){
  .contactPortrait{ min-height: 420px; }
  .contactPortrait__actions{ left:12px; right:12px; bottom:12px; padding:10px; }
}

/* ===================== CONTACT — MINIMAL (no photo) ===================== */

/* меньше высота секции */
#contact.section{
  padding: 88px 0;
}
@media (max-width: 980px){
  #contact.section{ padding: 64px 0; }
}

/* левая колонка как аккуратная карточка */
.contactLeft{
  padding: 26px;
}

/* блок с кнопками */
.contactActions{
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

/* ряд вторичных кнопок */
.contactActions__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 520px){
  .contactActions__row{ grid-template-columns: 1fr; }
}

/* чуть уменьшаем кнопки в этом блоке */
#contact .btn{
  padding: 11px 14px;
  border-radius: 14px;
}

/* чтобы wide реально был wide */
#contact .btn--wide{
  width: 100%;
}

/* LUX polish: lighter borders & calmer UI */
:root{
  --border: rgba(255,255,255,.10);
  --card: rgba(255,255,255,.05);
}

/* Make fields calmer */
.field--line input,
.field--line textarea{
  border-color: rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}

/* Format tiles lighter + slightly smaller */
.tile{
  border-color: rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  padding: 12px 14px;
}
.tile__p{ font-size:12.5px; }

/* Fine print quieter */
.fine--lux{
  color: rgba(255,255,255,.50);
  font-size: 12px;
  line-height: 1.5;
}

/* Optional: make left big Telegram button subtle (if you keep both CTAs) */
.contactLeft .btn--primary{
  box-shadow: none;
}


/* Variant A: RIGHT form is primary, LEFT actions are secondary */

/* Left column buttons look quieter */
.contactLeft .btn--subtle{
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
}
.contactLeft .btn--subtle:hover{
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.90);
}

/* Make RIGHT submit feel like the only "main" button */
.form--concierge .btn--primary{
  padding: 13px 16px;
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

/* Fine print quieter */
.fine--lux{
  color: rgba(255,255,255,.50);
  font-size: 12px;
  line-height: 1.5;
}

/* Make date input match dark lux style */
.field--line input[type="date"]{
  color-scheme: dark;
}

/* Optional: hide default date icon glare on some browsers */
.field--line input[type="date"]::-webkit-calendar-picker-indicator{
  opacity:.75;
  filter: invert(1);
}

/* Make contact columns equal height */
#contact .grid2{
  align-items: stretch;
}

#contact .card{
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Push buttons to bottom for symmetry */
.contactLeft{
  justify-content: space-between;
}

.form--concierge{
  justify-content: space-between;
}
