
:root {
  --accent: #B1553C;
  --accent-dark: #8F4330;
  --ink: #26211E;
  --ink-soft: #5C544E;
  --bg: #FFFFFF;
  --bg-soft: #F7F2EE;
  --line: #E8E0DA;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

.container, .section__inner { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* Header */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(6px); border-bottom: 1px solid var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 60px; }
.header__brand { font-weight: 700; font-size: 18px; color: var(--ink); }
.header__nav { display: flex; gap: 4px; flex-wrap: wrap; }
.header__nav a { padding: 8px 12px; border-radius: 8px; color: var(--ink-soft); font-size: 15px; }
.header__nav a:hover { background: var(--bg-soft); color: var(--ink); }

/* Sections */
.section { padding: 64px 0; }
.section:nth-of-type(even) { background: var(--bg-soft); }
.section-title { font-size: 30px; font-weight: 700; margin-bottom: 12px; letter-spacing: -.5px; }
.section-subtitle { color: var(--ink-soft); margin-bottom: 28px; font-size: 17px; }
.text-block { white-space: pre-line; color: var(--ink-soft); max-width: 720px; }

/* Hero */
.hero { padding: 96px 0; background: var(--bg-soft); }
.hero__title { font-size: clamp(34px, 6vw, 56px); font-weight: 800; letter-spacing: -1px; line-height: 1.12; }
.hero__subtitle { font-size: clamp(17px, 2.4vw, 21px); color: var(--ink-soft); margin: 16px 0 28px; max-width: 640px; }
.hero--image-background { background-size: cover; background-position: center; color: #fff; padding: 140px 0; position: relative; }
.hero--image-background .hero__inner { position: relative; z-index: 1; }
.hero--image-background .hero__subtitle { color: rgba(255,255,255,.9); }
.hero__overlay { position: absolute; inset: 0; background: rgba(20,14,10,.55); }
.hero--split .hero__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.hero--split .hero__media img { border-radius: 16px; box-shadow: 0 24px 60px rgba(0,0,0,.14); }

/* Buttons */
.btn { display: inline-block; padding: 14px 28px; border-radius: 12px; font-weight: 600; font-size: 16px; transition: transform .15s ease, background .15s ease; }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }
.btn--light { background: #fff; color: var(--accent-dark); }
.btn--light:hover { background: var(--bg-soft); }

/* Items (services/products) */
.items { list-style: none; display: grid; gap: 20px; margin-top: 8px; }
.items--cards, .items--grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.items--list .item__card { display: flex; align-items: center; gap: 20px; padding: 18px 20px; }
.item__card { background: var(--bg); border: 1px solid var(--line); border-radius: 16px; padding: 24px; height: 100%; display: flex; flex-direction: column; gap: 8px; }
.items--list .item__desc { flex: 1; }
.item__img { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; margin-bottom: 8px; }
.items--list .item__img { width: 110px; height: 110px; margin: 0; border-radius: 10px; }
.item__name { font-size: 18px; font-weight: 700; }
.item__desc { color: var(--ink-soft); font-size: 15px; }
.item__price { font-weight: 700; color: var(--accent-dark); margin-top: auto; }
.item__duration { color: var(--ink-soft); font-size: 14px; margin-left: 8px; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; margin-top: 8px; }
.gallery__item img { border-radius: 12px; width: 100%; height: 220px; object-fit: cover; }
.gallery__item figcaption { color: var(--ink-soft); font-size: 14px; padding-top: 6px; }

/* Team */
.team { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 8px; }
.team__card { text-align: center; background: var(--bg); border: 1px solid var(--line); border-radius: 16px; padding: 24px 16px; }
.team__photo { width: 110px; height: 110px; object-fit: cover; border-radius: 50%; margin: 0 auto 12px; }
.team__name { font-weight: 700; }
.team__position { color: var(--ink-soft); font-size: 14px; }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 8px; }
.review__card { background: var(--bg); border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.review__stars { color: #E8A33D; letter-spacing: 2px; margin-bottom: 8px; }
.review__text { color: var(--ink-soft); margin-bottom: 12px; }
.review__author { font-weight: 600; font-size: 15px; }

/* FAQ */
.faq__item { border: 1px solid var(--line); border-radius: 12px; padding: 16px 20px; margin-bottom: 12px; background: var(--bg); }
.faq__item summary { font-weight: 600; cursor: pointer; }
.faq__answer { color: var(--ink-soft); padding-top: 10px; }

/* Contacts */
.contacts__list { display: grid; gap: 12px; max-width: 640px; }
.contact__row { display: flex; gap: 16px; padding: 14px 18px; background: var(--bg); border: 1px solid var(--line); border-radius: 12px; }
.contact__label { color: var(--ink-soft); min-width: 130px; font-size: 15px; }

/* CTA */
.cta { background: var(--accent); color: #fff; padding: 72px 0; text-align: center; }
.cta__title { font-size: 30px; font-weight: 800; margin-bottom: 10px; }
.cta__text { opacity: .92; margin-bottom: 24px; }

/* Footer */
.footer { background: #1D1815; color: rgba(255,255,255,.85); padding: 40px 0; }
.footer__brand { font-weight: 700; margin-bottom: 6px; }
.footer a { color: rgba(255,255,255,.85); }
.footer__copy { color: rgba(255,255,255,.5); font-size: 14px; margin-top: 12px; }

/* Not found */
.notfound { text-align: center; padding: 140px 20px; }
.notfound h1 { font-size: 64px; font-weight: 800; }

/* Responsive */
@media (max-width: 760px) {
  .section { padding: 44px 0; }
  .section-title { font-size: 24px; }
  .header__inner { flex-direction: column; gap: 8px; padding: 10px 0; }
  .header__nav { justify-content: center; }
  .hero { padding: 56px 0; }
  .hero--image-background { padding: 80px 0; }
  .hero--split .hero__inner { grid-template-columns: 1fr; }
  .items--list .item__card { flex-direction: column; align-items: flex-start; }
  .contact__row { flex-direction: column; gap: 4px; }
}
