/* === Index 21: Глоток Тишины — bold-statement layout === */
:root {
  --primary: #384150;
  --bg: #f4f5f7;
  --ink: #1a1e26;
  --accent: #f0a32a;
  --paper: #ffffff;
  --line: #dde1e8;
  --mute: #6b7280;
  --deep: #12151e;
  --s: clamp(16px, 2vw, 24px);
  --r: 12px;
  --display: 'Oswald', system-ui, sans-serif;
  --body: 'PT Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.wrap { width: min(1140px, 92vw); margin-inline: auto; }

h1, h2, h3 { font-family: var(--display); line-height: 1; letter-spacing: .02em; text-transform: uppercase; font-weight: 700; }
h1 { font-size: clamp(54px, 8vw, 110px); }
h2 { font-size: clamp(32px, 4.5vw, 64px); }
h3 { font-size: 22px; }
p { color: var(--ink); }
.lead { font-size: clamp(16px, 1.5vw, 19px); color: var(--mute); max-width: 50ch; line-height: 1.65; }
.eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; font-family: var(--display); }
.eyebrow--light { color: var(--accent); }

/* nav */
.nav { position: sticky; top: 0; z-index: 20; background: rgba(244,245,247,.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav__in { display: flex; align-items: center; gap: 20px; height: 64px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand__glyph { font-size: 18px; color: var(--accent); }
.brand span:last-child { font-family: var(--display); font-size: 17px; text-transform: uppercase; letter-spacing: .04em; line-height: 1.1; }
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a { font-family: var(--display); font-size: 14px; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; color: var(--mute); transition: color .15s; }
.nav__links a:hover { color: var(--primary); }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 14px 26px; border-radius: 4px; font-size: 14px; transition: transform .15s, background .15s; }
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: 9px 18px; font-size: 12px; background: var(--accent); color: var(--deep); }
.btn--sm:hover { background: #d4900e; }
.btn--acc { background: var(--accent); color: var(--deep); }
.btn--acc:hover { background: #d4900e; }
.btn--clear { background: transparent; color: var(--primary); box-shadow: inset 0 0 0 2px var(--primary); }
.btn--clear:hover { background: var(--primary); color: #fff; }
.btn--lg { padding: 16px 34px; font-size: 15px; }

/* hero — bold-statement: massive typography centered, then full-width image */
.hero { padding: clamp(48px,6vw,80px) 0 0; }
.hero__center { text-align: center; }
.hero__h1 { color: var(--deep); }
.hero__sub { font-size: clamp(16px,1.5vw,19px); color: var(--mute); max-width: 52ch; margin: 20px auto 32px; line-height: 1.65; }
.hero__cta-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero__wide-image { margin-top: 44px; position: relative; }
.hero__wide-image img { width: 100%; height: clamp(360px,46vw,580px); object-fit: cover; display: block; }
.hero__wide-image figcaption { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); background: rgba(18,21,30,.8); color: rgba(255,255,255,.85); padding: 8px 20px; border-radius: 999px; font-size: 13px; white-space: nowrap; backdrop-filter: blur(8px); }
.hero__row-stats { display: flex; justify-content: space-around; background: var(--deep); padding: 24px 0; flex-wrap: wrap; gap: 12px; }
.rstat { text-align: center; }
.rstat b { display: block; font-family: var(--display); font-size: 26px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .04em; }
.rstat span { font-size: 12px; color: rgba(255,255,255,.5); display: block; margin-top: 4px; }

/* ceremonies */
.section { padding: clamp(46px,6vw,80px) 0; }
.section__head { max-width: 54ch; margin-bottom: 36px; }
.section__sub { color: var(--mute); margin-top: 8px; }
.cerem-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.cerem-card { background: var(--paper); border: 1px solid var(--line); border-radius: calc(var(--r)+4px); padding: 26px; display: flex; flex-direction: column; min-height: 250px; }
.cerem-card--gold { background: var(--deep); border-color: transparent; }
.cerem-card--gold h3 { color: #fff; }
.cerem-card--gold p { color: rgba(255,255,255,.65); }
.cerem-card--gold .cerem-card__dur { color: rgba(255,255,255,.5); }
.cerem-card--gold .cerem-card__price { color: var(--accent); }
.cerem-card__icon { font-size: 30px; margin-bottom: 14px; display: block; }
.cerem-card h3 { font-size: 20px; text-transform: none; letter-spacing: 0; }
.cerem-card p { color: var(--mute); font-size: 14px; margin-top: 8px; flex: 1; }
.cerem-card__dur { display: block; font-size: 12px; color: var(--mute); margin-top: 14px; font-weight: 700; }
.cerem-card__price { font-family: var(--display); font-size: 16px; color: var(--primary); margin-top: 6px; }

/* gongfu — feature section */
.gongfu { background: var(--primary); color: #fff; padding: clamp(46px,6vw,80px) 0; }
.gongfu__layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); align-items: start; }
.gongfu__text h2 { color: #fff; }
.gongfu__desc { color: rgba(255,255,255,.75); margin-top: 14px; max-width: 48ch; line-height: 1.65; }
.gongfu__desc + .gongfu__desc { margin-top: 12px; }
.gongfu__sets { display: grid; gap: 14px; }
.gset { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); padding: 22px 24px; position: relative; }
.gset--main { background: rgba(240,163,42,.15); border-color: rgba(240,163,42,.4); }
.gset__tag { position: absolute; top: -10px; left: 18px; background: var(--accent); color: var(--deep); font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 999px; letter-spacing: .06em; font-family: var(--display); text-transform: uppercase; }
.gset__name { display: block; font-family: var(--display); font-size: 20px; color: #fff; margin-bottom: 10px; }
.gset ul { list-style: none; display: grid; gap: 4px; }
.gset li { font-size: 13.5px; color: rgba(255,255,255,.65); padding-left: 14px; position: relative; }
.gset li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.gset__price { display: block; font-family: var(--display); font-size: 20px; color: var(--accent); margin-top: 12px; }

/* shop */
.shop { padding: clamp(46px,6vw,80px) 0; background: var(--paper); border-block: 1px solid var(--line); }
.shop h2 { margin-bottom: 10px; }
.shop__sub { color: var(--mute); margin-bottom: 32px; }
.shop-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.shop-cat { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px; }
.shop-cat b { display: block; font-family: var(--display); font-size: 17px; color: var(--ink); }
.shop-cat span { font-size: 13px; color: var(--mute); display: block; margin-top: 4px; }

/* contact */
.contact { padding: clamp(46px,6vw,80px) 0; }
.contact__inner { background: var(--deep); border-radius: calc(var(--r)+8px); padding: clamp(28px,4vw,52px); display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.contact__copy h2 { color: #fff; }
.contact__copy p { color: rgba(255,255,255,.75); margin-top: 8px; }
.contact__hours { font-weight: 700; color: rgba(255,255,255,.9) !important; margin-top: 10px !important; }
.contact__note-block { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 22px; }
.contact__note-block p { color: rgba(255,255,255,.65); font-size: 14px; margin-bottom: 18px; line-height: 1.6; }

/* footer */
.foot { background: var(--deep); padding: 26px 0; }
.foot__inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.foot__inner span { font-size: 13px; color: rgba(255,255,255,.4); }

@media (max-width: 900px) {
  .cerem-grid { grid-template-columns: repeat(2,1fr); }
  .gongfu__layout { grid-template-columns: 1fr; }
  .shop-cats { grid-template-columns: repeat(2,1fr); }
  .contact__inner { grid-template-columns: 1fr; }
  .hero__h1 { font-size: clamp(44px,10vw,80px); }
  .nav__links { display: none; }
}
@media (max-width: 520px) {
  .cerem-grid { grid-template-columns: 1fr; }
  .shop-cats { grid-template-columns: 1fr; }
  .hero__row-stats { justify-content: flex-start; gap: 20px; padding: 20px 16px; }
}
