
:root{
  --bg: #f6f4f0;
  --bg-alt: #ffffff;
  --panel: #ffffff;
  --text: #1f2937;
  --muted: #5b6473;
  --line: rgba(31,41,55,0.12);

  --brand: #5a3e2b;      /* строгий тёплый акцент */
  --brand-2:#1f3a5b;     /* холодный акцент для ссылок */
  --gold:  #c7a16b;

  --radius: 18px;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.10);
  --shadow-soft: 0 14px 30px rgba(17, 24, 39, 0.08);

  --container: 1120px;
}

/* Base */
*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin:0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}
img{ max-width:100%; height:auto; display:block; }
a{ color: var(--brand-2); text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.skiplink{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skiplink:focus{
  position:fixed;
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 14px;
  background:#fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  z-index:9999;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: .1px;
  white-space: nowrap;
  cursor:pointer;
}
.btn:hover{ text-decoration:none; }

.btn-lg{ padding: 14px 18px; }

.btn-primary{
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(90, 62, 43, 0.25);
}
.btn-primary:hover{ filter: brightness(1.03); }

.btn-secondary{
  background: #fff;
  color: var(--brand);
  border-color: rgba(90, 62, 43, 0.22);
}
.btn-secondary:hover{
  border-color: rgba(90, 62, 43, 0.35);
}

.btn-ghost{
  background: transparent;
  color: var(--text);
  border-color: rgba(31,41,55,0.18);
}
.btn-ghost:hover{ border-color: rgba(31,41,55,0.28); }

/* Header */
.site-header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(246, 244, 240, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31,41,55,0.08);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 0;
}
.brand-mark{
  width:44px;height:44px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(31,41,55,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  box-shadow: 0 10px 24px rgba(17,24,39,0.06);
}
.brand-mark img{ width:32px;height:32px; object-fit:contain; }
.brand-title{
  font-weight: 700;
  font-size: 14px;
  line-height: 1.1;
}
.brand-subtitle{
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.header-cta{
  display:flex;
  align-items:center;
  gap:14px;
}
.header-phone{
  text-align:right;
}
.phone-link{
  display:inline-block;
  color: var(--text);
  font-weight: 800;
  font-size: 16px;
}
.header-note{
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.header-actions{
  display:flex;
  gap:10px;
}

/* Hero */
.hero{
  padding: 28px 0 10px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.hero-content{
  background: linear-gradient(180deg, rgba(255,255,255,0.9), #fff);
  border: 1px solid rgba(31,41,55,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  position: relative;
}
.hero-kicker{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  color: var(--muted);
  font-size: 13px;
}
.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(199, 161, 107, 0.18);
  color: var(--brand);
  font-weight: 800;
  letter-spacing: .3px;
}
.dot{ opacity: .55; }

.hero-title{
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(30px, 3.3vw, 44px);
  line-height: 1.05;
  margin: 14px 0 10px;
  letter-spacing: -.4px;
}
.hero-lead{
  font-size: 16px;
  color: var(--muted);
  max-width: 58ch;
  margin: 0 0 16px;
}
.hero-trust{
  list-style:none;
  padding:0;
  margin: 0 0 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
}
.hero-trust li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size: 14px;
}
.check{
  width:18px;height:18px;
  border-radius: 6px;
  background: rgba(90, 62, 43, 0.12);
  border: 1px solid rgba(90, 62, 43, 0.18);
  position: relative;
  flex: 0 0 18px;
}
.check::after{
  content:"";
  position:absolute;
  left:5px; top:3px;
  width:6px; height:9px;
  border-right:2px solid var(--brand);
  border-bottom:2px solid var(--brand);
  transform: rotate(40deg);
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 6px;
}

.hero-footnote{
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(31,41,55,0.62);
}

.hero-media{
  display:flex;
  flex-direction: column;
  gap: 14px;
}
.hero-photo{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(31,41,55,0.10);
  box-shadow: var(--shadow-soft);
  background: #fff;
}
.hero-photo img{
  width:100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.hero-badge{
  display:flex;
  align-items:center;
  gap:12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(31,41,55,0.10);
  background: rgba(255,255,255,0.90);
  box-shadow: 0 10px 24px rgba(17,24,39,0.06);
}
.badge-icon{
  width:42px;height:42px;
  border-radius: 14px;
  background: rgba(199,161,107,0.16);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.badge-icon img{ width:30px;height:30px; object-fit:contain; }
.badge-title{ font-weight: 800; }
.badge-subtitle{ font-size: 12px; color: var(--muted); margin-top: 2px; }

.hero-mini{
  padding: 16px 16px;
  border-radius: var(--radius);
  background: rgba(31,58,91, 0.08);
  border: 1px solid rgba(31,58,91, 0.12);
}
.mini-title{ font-weight: 800; margin-bottom: 4px; }
.mini-text{ color: var(--muted); font-size: 14px; }

/* Sections */
.section{
  padding: 52px 0;
}
.section-alt{
  background: var(--bg-alt);
  border-top: 1px solid rgba(31,41,55,0.06);
  border-bottom: 1px solid rgba(31,41,55,0.06);
}
.section-head{
  margin-bottom: 18px;
}
.h2{
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  letter-spacing: -.3px;
}
.h3{
  margin: 0;
  font-size: 20px;
  letter-spacing: -.2px;
}
.muted{ color: var(--muted); }
.tiny{ font-size: 12px; line-height: 1.35; }

/* Tabs */
.tabs{
  background: #fff;
  border: 1px solid rgba(31,41,55,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
}
.tabs-nav{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  padding: 14px;
  background: rgba(31,41,55,0.03);
  border-bottom: 1px solid rgba(31,41,55,0.08);
}
.tab{
  border: 1px solid rgba(31,41,55,0.14);
  background: #fff;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  cursor:pointer;
}
.tab.is-active{
  border-color: rgba(90, 62, 43, 0.38);
  box-shadow: 0 10px 24px rgba(90, 62, 43, 0.08);
}
.tabs-body{ padding: 18px; }

.tab-panel{ display:none; }
.tab-panel.is-active{ display:block; }

.tab-grid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}
.tab-photo{
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(31,41,55,0.10);
  background: #f3f4f6;
}
.tab-photo img{
  width:100%;
  height:100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.tab-info{ padding: 4px 0; }

.two-cols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
.mini-h{
  font-weight: 800;
  font-size: 13px;
  color: rgba(31,41,55,0.82);
  margin-bottom: 8px;
}
.steps{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}
.steps li{ margin-bottom: 6px; }
.bullets{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}
.bullets li{ margin-bottom: 6px; }

.cta-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap: 10px 12px;
  margin-top: 16px;
}
.hint{
  color: rgba(31,41,55,0.62);
  font-size: 12px;
}

/* Cards */
.cards-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(31,41,55,0.10);
  box-shadow: 0 12px 26px rgba(17,24,39,0.06);
  padding: 16px;
}
.card-ico{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(199,161,107,0.16);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--brand);
}
.card-ico svg{ width: 26px; height: 26px; }
.card-title{
  font-size: 16px;
  margin: 10px 0 6px;
  font-weight: 800;
}
.card-text{
  margin:0;
  color: var(--muted);
  font-size: 14px;
}

/* Packages */
.switcher{
  display:flex;
  gap:10px;
  margin: 14px 0 18px;
}
.switch{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(31,41,55,0.14);
  background:#fff;
  font-weight: 800;
  cursor:pointer;
}
.switch.is-active{
  border-color: rgba(90, 62, 43, 0.35);
  background: rgba(199,161,107,0.18);
}
.packs{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.packs.is-hidden{ display:none; }

.pack{
  background:#fff;
  border: 1px solid rgba(31,41,55,0.10);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(17,24,39,0.06);
  padding: 18px;
  display:flex;
  flex-direction:column;
}
.pack-highlight{
  border-color: rgba(90, 62, 43, 0.22);
  box-shadow: 0 18px 45px rgba(90,62,43,0.10);
}
.pack-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
}
.pack-title{
  margin:0;
  font-size: 16px;
  font-weight: 900;
}
.pack-note{
  font-size: 12px;
  color: rgba(31,41,55,0.66);
}
.pack-list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}
.pack-list li{ margin-bottom: 7px; }
.pack-actions{
  margin-top: auto;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  padding-top: 14px;
}

/* Services */
.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service{
  display:flex;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(31,41,55,0.10);
  background:#fff;
  box-shadow: 0 12px 26px rgba(17,24,39,0.06);
}
.service-ico{
  width:44px;height:44px;
  border-radius: 16px;
  background: rgba(31,58,91,0.10);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--brand-2);
  flex: 0 0 44px;
}
.service-ico svg{ width: 26px; height:26px; }
.service-title{
  margin:0;
  font-size: 16px;
  font-weight: 900;
}
.service-text{
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.callout{
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(90, 62, 43, 0.10), rgba(31,58,91,0.08));
  border: 1px solid rgba(31,41,55,0.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.callout-title{ font-weight: 900; }
.callout-text{ color: var(--muted); margin-top: 4px; }
.callout-actions{ display:flex; flex-wrap:wrap; gap: 10px; }

/* Timeline */
.timeline{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.step{
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(31,41,55,0.10);
  padding: 16px;
  display:flex;
  gap: 12px;
  box-shadow: 0 12px 26px rgba(17,24,39,0.06);
}
.step-num{
  width:38px;height:38px;
  border-radius: 14px;
  background: rgba(199,161,107,0.18);
  color: var(--brand);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  flex: 0 0 38px;
}
.step-title{ font-weight: 900; }
.step-text{ color: var(--muted); margin-top: 4px; }
.step-links{ margin-top: 8px; font-size: 13px; color: rgba(31,41,55,0.6); }
.step-links a{ color: var(--brand-2); }
.sep{ opacity:.55; margin: 0 6px; }

/* Accordion */
.accordion{
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.accordion-spacious{ gap: 14px; }

details{
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(31,41,55,0.10);
  box-shadow: 0 12px 26px rgba(17,24,39,0.06);
  overflow:hidden;
}
summary{
  list-style:none;
  padding: 16px;
  cursor:pointer;
  font-weight: 900;
  position: relative;
}
summary::-webkit-details-marker{ display:none; }
summary::after{
  content:"+";
  position:absolute;
  right: 16px;
  top: 14px;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: rgba(31,41,55,0.06);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  color: rgba(31,41,55,0.75);
}
details[open] summary::after{ content:"–"; }
.acc-body{
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 14px;
}

/* Reviews */
.reviews{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.review{
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(31,41,55,0.10);
  box-shadow: 0 12px 26px rgba(17,24,39,0.06);
  padding: 16px;
}
.review-top{
  display:flex;
  gap: 10px;
  align-items:center;
  margin-bottom: 10px;
}
.avatar{
  width: 42px;height:42px;
  border-radius: 16px;
  background: rgba(199,161,107,0.18);
  color: var(--brand);
  font-weight: 900;
  display:flex;
  align-items:center;
  justify-content:center;
}
.review-name{ font-weight: 900; }
.review-meta{ font-size: 12px; color: var(--muted); margin-top: 2px; }
.review-text{ margin:0; color: var(--muted); font-size: 14px; }

/* Contacts */
.contacts-grid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  align-items: start;
}

/* Contacts: single-column layout (when карта/вторая колонка не нужна) */
.contacts-grid--single{
  grid-template-columns: 1fr;
}

.contact-card{
  background:#fff;
  border-radius: var(--radius);
  border: 1px solid rgba(31,41,55,0.10);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.contact-card.contact-card--wide{
  padding: 20px;
}
.contact-title{
  font-weight: 900;
  font-size: 18px;
}
.contact-row{
  display:grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(31,41,55,0.08);
}
.contact-row:last-of-type{ border-bottom: none; }
.contact-label{ color: rgba(31,41,55,0.6); font-size: 13px; }
.contact-value{ font-weight: 700; }
.contact-value--phone a{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
}
.linklike{
  background:none;
  border:none;
  padding:0;
  margin-left: 8px;
  color: var(--brand-2);
  cursor:pointer;
  font-weight: 700;
  font-size: 13px;
  text-decoration: underline;
}
.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 14px;
}
.contact-note{ margin-top: 10px; }

.map-card{
  background:#fff;
  border-radius: var(--radius);
  border: 1px solid rgba(31,41,55,0.10);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
}
.map-wrap{
  position: relative;
}
.map-wrap iframe{ display:block; border:0; width:100%; }
.map-pin{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -55%);
  pointer-events:none;
}
.pulse{
  position:absolute;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: rgba(90,62,43,0.18);
  animation: pulse 1.8s ease-out infinite;
}
.dot{
  position:absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 10px; height:10px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 10px 24px rgba(90,62,43,0.28);
}
@keyframes pulse{
  0%{ transform: scale(0.7); opacity: 1; }
  100%{ transform: scale(2.3); opacity: 0; }
}
.map-footer{
  display:flex;
  gap: 12px;
  padding: 12px;
  border-top: 1px solid rgba(31,41,55,0.08);
  align-items: center;
}
.map-photo{
  width: 120px;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(31,41,55,0.10);
  flex: 0 0 120px;
}
.map-photo img{ width:100%; height:100%; object-fit: cover; aspect-ratio: 16/10; }
.map-meta-title{ font-weight: 900; }
.map-meta-text{ color: var(--muted); font-size: 13px; margin-top: 4px; }

.seo-block{
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px dashed rgba(31,41,55,0.18);
  background: rgba(255,255,255,0.65);
}

/* Footer */
.footer{
  background: #0f172a;
  color: rgba(255,255,255,0.9);
  padding: 26px 0 18px;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 14px;
}
.footer-title{ font-weight: 900; }
.footer-muted{ color: rgba(255,255,255,0.70); margin-top: 4px; font-size: 13px; }
.footer-phone{
  display:inline-block;
  font-weight: 900;
  color: #fff;
  text-decoration:none;
}
.footer-actions{
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.70);
}
.footer-actions a{ color: rgba(255,255,255,0.85); }
.footer-bottom{
  margin-top: 16px;
  display:flex;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}
.footer-bottom .muted{ color: rgba(255,255,255,0.62); }

/* Sticky bar (mobile) */
.stickybar{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 60;
  display:none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sticky-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(15,23,42,0.92);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 16px 40px rgba(0,0,0,0.24);
  text-decoration:none;
  font-weight: 900;
}
.sticky-ico{ font-size: 18px; }

/* Toast */
.toast{
  position: fixed;
  left: 50%;
  bottom: 86px;
  transform: translateX(-50%);
  background: rgba(15,23,42,0.92);
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 16px 40px rgba(0,0,0,0.24);
  font-weight: 700;
  font-size: 13px;
  opacity: 0;
  pointer-events:none;
  transition: opacity .2s ease;
}
.toast.is-visible{ opacity: 1; }

/* Responsive */
@media (max-width: 980px){
  .header-phone{ display:none; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-trust{ grid-template-columns: 1fr; }
  .tab-grid{ grid-template-columns: 1fr; }
  .tab-photo img{ aspect-ratio: 16/9; }
  .two-cols{ grid-template-columns: 1fr; }
  .cards-3{ grid-template-columns: 1fr; }
  .packs{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: 1fr; }
  .timeline{ grid-template-columns: 1fr; }
  .reviews{ grid-template-columns: 1fr; }
  .contacts-grid{ grid-template-columns: 1fr; }
  .stickybar{ display:grid; }
  .toast{ bottom: 92px; }
}

@media (max-width: 420px){
  .header-actions .btn-ghost{ display:none; }
  .hero-content{ padding: 18px; }
  .hero-title{ font-size: 30px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .pulse{ animation: none; }
  .toast{ transition: none; }
}


/* Service link */
.service-links{ margin-top: 8px; }
.service-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight: 800;
  color: var(--brand-2);
  text-decoration: none;
}
.service-link:hover{ text-decoration: underline; }

/* Catalog page */
.page-hero{ padding: 26px 0 10px; }
.page-hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}
.page-hero-content{
  background: linear-gradient(180deg, rgba(255,255,255,0.92), #fff);
  border: 1px solid rgba(31,41,55,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
.breadcrumb{
  font-size: 13px;
  color: var(--muted);
  display:flex;
  flex-wrap:wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.breadcrumb a{ color: var(--brand-2); }
.page-title{
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.05;
  margin: 10px 0 10px;
  letter-spacing: -.4px;
}
.page-lead{
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 14px;
  max-width: 62ch;
}
.page-actions, .page-hero-actions{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 6px; }
.page-bullets{
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}
.page-bullets li{
  margin-bottom: 7px;
  display:flex;
  gap: 10px;
  align-items: center;
}

.page-bullets li .check{ margin-top: 0px; }
.page-hero-media{ display:flex; flex-direction:column; gap:14px; }
.page-hero-media .hero-photo img{ aspect-ratio: 16 / 10; }

.filters{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin: 14px 0 18px;
}
.filter{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(31,41,55,0.14);
  background:#fff;
  font-weight: 800;
  cursor:pointer;
}
.filter.is-active{
  border-color: rgba(90, 62, 43, 0.35);
  background: rgba(199,161,107,0.18);
}

.catalog-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.product{
  background:#fff;
  border: 1px solid rgba(31,41,55,0.10);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(17,24,39,0.06);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.product-photo{
  background: rgba(31,41,55,0.03);
  border-bottom: 1px solid rgba(31,41,55,0.08);
}
.product-photo img{
  width:100%;
  height:100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.product-body{ padding: 16px; display:flex; flex-direction:column; gap: 10px; }
.product-title{ margin:0; font-weight: 900; font-size: 16px; }
.product-text{ margin:0; color: var(--muted); font-size: 14px; }
.product-meta{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}
.product-meta li{ margin-bottom: 6px; }
.product-meta li span{ font-weight: 700; color: rgba(31,41,55,0.72); }

.product-actions{
  margin-top: auto;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  padding-top: 8px;
}

.notice{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(31,58,91, 0.08);
  border: 1px solid rgba(31,58,91, 0.12);
}
.notice-title{ font-weight: 900; }
.notice-text{ margin-top: 6px; color: var(--muted); }

@media (max-width: 980px){
  .page-hero-grid{ grid-template-columns: 1fr; }
  .catalog-grid{ grid-template-columns: 1fr; }
}
