[hidden] { display: none !important; }

/* ============ RESET-ish (single-class only, no descendant selectors) ============ */
.main-wrapper {
  background-color: #faf7f2;
  color: #2a2421;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* ============ PAGE VISIBILITY ============ */
.page { display: block; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 14px;
  padding-right: 28px;
  padding-bottom: 14px;
  padding-left: 28px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border-width: 0;
  border-style: solid;
  transition-property: filter, background-color, color, box-shadow;
  transition-duration: 0.2s;
  white-space: nowrap;
}
.btn--primary {
  background-color: #c27c58;
  color: #faf7f2;
  box-shadow: 0 8px 24px -8px rgba(194,124,88,0.5);
}
.btn--primary:hover { filter: brightness(1.1); }
.btn--ghost {
  background-color: transparent;
  color: #2a2421;
  border-width: 1px;
  border-color: rgba(42,36,33,0.1);
}
.btn--ghost:hover { background-color: rgba(42,36,33,0.05); }
.btn--light {
  background-color: #faf7f2;
  color: #2a2421;
}
.btn--light:hover { filter: brightness(0.95); }
.btn--outline-light {
  background-color: transparent;
  color: #faf7f2;
  border-width: 1px;
  border-color: rgba(250,247,242,0.3);
}
.btn--outline-light:hover { background-color: rgba(250,247,242,0.1); }
.btn--lg {
  padding-top: 16px;
  padding-right: 32px;
  padding-bottom: 16px;
  padding-left: 32px;
  font-size: 16px;
}
.btn--sm {
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  font-size: 13px;
}
.btn--wide { width: 100%; margin-top: 20px; }

/* ============ CONTAINER SIZING ============ */
.header__container,
.hero__container,
.stats__container,
.ba__container,
.calc__container,
.booking__container,
.cta__container,
.pagehero__container,
.services__container,
.contacts__container,
.faq__container,
.vac__container,
.doc__container,
.values__container,
.tst__container,
.promos__container,
.steps__container,
.masters__container,
.guar__container,
.gift__container,
.footer__cta-container,
.footer__container,
.footer__bottom-container,
.cookie__container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(250,247,242,0.9);
  backdrop-filter: blur(8px);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(42,36,33,0.1);
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 72px;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  color: #2a2421;
  flex-shrink: 0;
}
.header__logo { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.header__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1;
  white-space: nowrap;
}
.header__nav {
  display: none;
  align-items: center;
  gap: 30px;
}
.header__link {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2a2421;
  text-decoration: none;
  transition-property: color;
  transition-duration: 0.2s;
}
.header__link:hover { color: #c27c58; }
.header__call {
  display: none;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  padding-right: 16px;
  padding-bottom: 10px;
  padding-left: 16px;
  background-color: #c27c58;
  color: #faf7f2;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 6px 18px -6px rgba(194,124,88,0.5);
  flex-shrink: 0;
}
.header__call:hover { filter: brightness(1.1); }
.header__call-icon { width: 16px; height: 16px; }
.header__burger {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.15);
  background-color: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}
.header__burger-line {
  display: block;
  width: 18px;
  height: 1.5px;
  background-color: #2a2421;
}
.header__mobile {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(42,36,33,0.1);
  background-color: #faf7f2;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.header__mobile-link {
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(42,36,33,0.08);
  color: #2a2421;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.header__mobile-call {
  margin-top: 12px;
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: center;
  background-color: #c27c58;
  color: #faf7f2;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .header__nav { display: flex; }
  .header__call { display: inline-flex; }
  .header__burger { display: none; }
  .header__mobile { display: none !important; }
}

/* ============ HERO ============ */
.hero { position: relative; overflow: hidden; }
.hero__container {
  padding-top: 40px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.hero__copy { text-align: center; }
.hero__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(42,36,33,0.6);
  margin-top: 0;
  margin-bottom: 20px;
}
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 44px;
  line-height: 1.02;
  margin-top: 0;
  margin-bottom: 0;
}
.hero__title-accent { color: #c27c58; font-style: italic; }
.hero__lead {
  margin-top: 24px;
  margin-bottom: 0;
  font-size: 16px;
  color: rgba(42,36,33,0.6);
  line-height: 1.6;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.hero__stats {
  margin-top: 40px;
  padding-top: 28px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(42,36,33,0.1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.hero__stat { text-align: center; }
.hero__stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 8px;
}
.hero__stat-label {
  font-size: 11px;
  color: rgba(42,36,33,0.6);
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0;
}
.hero__photo { position: relative; }
.hero__image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.25);
}
.hero__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: rgba(250,247,242,0.95);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding-top: 14px;
  padding-right: 16px;
  padding-bottom: 14px;
  padding-left: 16px;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.2);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.1);
}
.hero__badge-top { display: flex; align-items: center; gap: 10px; }
.hero__badge-dot {
  width: 8px; height: 8px;
  background-color: #c27c58;
  border-radius: 999px;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}
.hero__badge-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(42,36,33,0.6);
  margin: 0;
}
.hero__badge-text {
  margin-top: 8px;
  margin-bottom: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.2;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

@media (min-width: 768px) {
  .hero__title { font-size: 56px; }
  .hero__lead { font-size: 18px; }
  .hero__stat-value { font-size: 32px; }
  .hero__stat-label { font-size: 12px; }
}
@media (min-width: 1024px) {
  .hero__container { grid-template-columns: 1.05fr 1fr; padding-top: 64px; padding-bottom: 96px; gap: 60px; }
  .hero__copy { text-align: left; }
  .hero__title { font-size: 72px; }
  .hero__lead { margin-left: 0; margin-right: 0; }
  .hero__actions { flex-direction: row; justify-content: flex-start; }
  .hero__stats { margin-left: 0; margin-right: 0; }
  .hero__stat { text-align: left; }
}

/* ============ STATS ============ */
.stats {
  background-color: rgba(42,36,33,0.03);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-color: rgba(42,36,33,0.1);
  border-bottom-color: rgba(42,36,33,0.1);
}
.stats__container {
  padding-top: 56px;
  padding-bottom: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
.stats__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 12px;
}
.stats__label {
  font-size: 13px;
  color: rgba(42,36,33,0.6);
  margin: 0;
}
@media (min-width: 768px) {
  .stats__container { grid-template-columns: repeat(4, 1fr); padding-top: 64px; padding-bottom: 64px; }
  .stats__value { font-size: 56px; }
  .stats__label { font-size: 14px; }
}

/* ============ SECTION HEAD (shared) ============ */
.section-head {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 48px;
}
.section-head__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(42,36,33,0.6);
  margin-top: 0;
  margin-bottom: 16px;
}
.section-head__title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.1;
  margin: 0;
}
.section-head__lead {
  margin-top: 20px;
  margin-bottom: 0;
  color: rgba(42,36,33,0.6);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .section-head__title { font-size: 44px; }
}

/* ============ BEFORE / AFTER ============ */
.ba {
  background-color: rgba(42,36,33,0.03);
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(42,36,33,0.1);
}
.ba__container { padding-top: 64px; padding-bottom: 64px; }
.ba__head {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 48px;
}
.ba__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(42,36,33,0.6);
  margin-top: 0;
  margin-bottom: 16px;
}
.ba__title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 32px;
  margin: 0;
}
.ba__lead {
  margin-top: 20px;
  color: rgba(42,36,33,0.6);
  line-height: 1.6;
}
.ba__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.ba__card {
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.1);
  border-radius: 16px;
  overflow: hidden;
  margin: 0;
}
.ba__frame {
  position: relative;
  aspect-ratio: 1 / 1;
  background-color: rgba(42,36,33,0.05);
  overflow: hidden;
}
.ba__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition-property: transform;
  transition-duration: 0.5s;
}
.ba__img:hover { transform: scale(1.03); }
.ba__tag {
  position: absolute;
  top: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding-top: 4px;
  padding-right: 10px;
  padding-bottom: 4px;
  padding-left: 10px;
  border-radius: 999px;
}
.ba__tag--before {
  left: 12px;
  background-color: rgba(250,247,242,0.9);
  color: #2a2421;
  backdrop-filter: blur(4px);
}
.ba__tag--after {
  right: 12px;
  background-color: #c27c58;
  color: #faf7f2;
}
.ba__caption {
  padding-top: 14px;
  padding-right: 16px;
  padding-bottom: 14px;
  padding-left: 16px;
  font-size: 13px;
  color: rgba(42,36,33,0.6);
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 640px) { .ba__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ba__grid { grid-template-columns: repeat(4, 1fr); } .ba__container { padding-top: 96px; padding-bottom: 96px; } }

/* ============ CALCULATOR ============ */
.calc {
  background-color: rgba(42,36,33,0.03);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-color: rgba(42,36,33,0.1);
  border-bottom-color: rgba(42,36,33,0.1);
}
.calc__container {
  padding-top: 64px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1100px;
  align-items: center;
}
.calc__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(42,36,33,0.6);
  margin-top: 0;
  margin-bottom: 16px;
}
.calc__title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.15;
  margin: 0;
}
.calc__lead {
  margin-top: 20px;
  color: rgba(42,36,33,0.6);
  line-height: 1.6;
  max-width: 440px;
}
.calc__box {
  background-color: #faf7f2;
  border-radius: 24px;
  padding-top: 28px;
  padding-right: 28px;
  padding-bottom: 28px;
  padding-left: 28px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.1);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.15);
}
.calc__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 10px;
}
.calc__label--gap { margin-top: 20px; }
.calc__select {
  width: 100%;
  height: 48px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 12px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.15);
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #2a2421;
  box-sizing: border-box;
}
.calc__lengths {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.calc__len {
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-radius: 12px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.15);
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #2a2421;
  text-align: left;
  cursor: pointer;
  transition-property: border-color, background-color;
  transition-duration: 0.2s;
}
.calc__len:hover { border-color: rgba(194,124,88,0.5); }
.calc__len--active {
  border-color: #c27c58;
  background-color: rgba(194,124,88,0.1);
  font-weight: 500;
}
.calc__result {
  margin-top: 24px;
  background-color: #2a2421;
  color: #faf7f2;
  border-radius: 16px;
  padding-top: 22px;
  padding-right: 22px;
  padding-bottom: 22px;
  padding-left: 22px;
  text-align: center;
}
.calc__result-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.6;
  margin-top: 0;
  margin-bottom: 8px;
}
.calc__result-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  margin-top: 0;
  margin-bottom: 12px;
}
.calc__result-note { font-size: 12px; opacity: 0.7; margin: 0; }
@media (min-width: 1024px) {
  .calc__container { grid-template-columns: 1fr 1.1fr; gap: 60px; padding-top: 96px; padding-bottom: 96px; }
  .calc__title { font-size: 44px; }
}

/* ============ BOOKING ============ */
.booking { padding-top: 60px; padding-bottom: 60px; }
.booking__container { max-width: 900px; }
.booking__head { text-align: center; margin-bottom: 40px; }
.booking__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(42,36,33,0.6);
  margin-top: 0;
  margin-bottom: 14px;
}
.booking__title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 32px;
  margin: 0;
}
.booking__lead {
  margin-top: 16px;
  color: rgba(42,36,33,0.6);
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.booking__form {
  background-color: rgba(42,36,33,0.05);
  border-radius: 24px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.1);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.12);
}
.booking__field { display: grid; gap: 6px; }
.booking__label { font-size: 13px; font-weight: 500; }
.booking__input, .booking__select {
  height: 48px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 12px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.15);
  background-color: #faf7f2;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #2a2421;
  box-sizing: border-box;
}
.booking__textarea {
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  border-radius: 12px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.15);
  background-color: #faf7f2;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #2a2421;
  resize: none;
  box-sizing: border-box;
}
.booking__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding-top: 8px;
}
.booking__legal { font-size: 11px; color: rgba(42,36,33,0.6); line-height: 1.5; margin: 0; }
.booking__done {
  background-color: rgba(42,36,33,0.05);
  border-radius: 24px;
  padding-top: 40px;
  padding-right: 30px;
  padding-bottom: 40px;
  padding-left: 30px;
  text-align: center;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.1);
}
.booking__done-icon {
  width: 56px;
  height: 56px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  background-color: rgba(194,124,88,0.15);
  color: #c27c58;
  font-size: 28px;
  line-height: 56px;
  margin-bottom: 20px;
}
.booking__done-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  margin-top: 0;
  margin-bottom: 12px;
}
.booking__done-text { color: rgba(42,36,33,0.6); max-width: 380px; margin-left: auto; margin-right: auto; }
.booking__done-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 640px) {
  .booking__form { grid-template-columns: 1fr 1fr; padding-top: 40px; padding-right: 40px; padding-bottom: 40px; padding-left: 40px; }
  .booking__field--wide { grid-column: 1 / -1; }
  .booking__actions { grid-column: 1 / -1; flex-direction: row; }
  .booking__legal { grid-column: 1 / -1; }
  .booking__done-actions { flex-direction: row; }
}
@media (min-width: 768px) { .booking__title { font-size: 44px; } .booking { padding-top: 96px; padding-bottom: 96px; } }

/* ============ CTA ============ */
.cta { padding-top: 80px; padding-bottom: 100px; }
.cta__container { max-width: 900px; }
.cta__card {
  background-color: #2a2421;
  color: #faf7f2;
  border-radius: 32px;
  padding-top: 48px;
  padding-right: 32px;
  padding-bottom: 48px;
  padding-left: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 32px;
  margin: 0;
}
.cta__text {
  margin-top: 18px;
  margin-bottom: 32px;
  color: rgba(250,247,242,0.75);
  line-height: 1.6;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) {
  .cta__actions { flex-direction: row; }
  .cta__card { padding-top: 64px; padding-right: 48px; padding-bottom: 64px; padding-left: 48px; }
  .cta__title { font-size: 44px; }
}

/* ============ PAGEHERO ============ */
.pagehero {
  background-color: rgba(42,36,33,0.03);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(42,36,33,0.1);
}
.pagehero__container {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
  max-width: 900px;
}
.pagehero__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(42,36,33,0.6);
  margin-top: 0;
  margin-bottom: 16px;
}
.pagehero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.1;
  margin: 0;
}
.pagehero__lead {
  margin-top: 20px;
  margin-bottom: 0;
  color: rgba(42,36,33,0.6);
  line-height: 1.6;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .pagehero__container { padding-top: 80px; padding-bottom: 80px; }
  .pagehero__title { font-size: 56px; }
}

/* ============ SERVICES ============ */
.services { padding-top: 60px; padding-bottom: 60px; }
.services__container { max-width: 1000px; }
.services__group { margin-bottom: 60px; }
.services__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.services__cat {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 28px;
  margin: 0;
}
.services__meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(42,36,33,0.6);
}
.services__list {
  border-radius: 16px;
  overflow: hidden;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.1);
}
.services__row {
  background-color: #ffffff;
  padding-top: 20px;
  padding-right: 24px;
  padding-bottom: 20px;
  padding-left: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(42,36,33,0.1);
  transition-property: background-color;
  transition-duration: 0.2s;
}
.services__row:hover { background-color: rgba(42,36,33,0.03); }
.services__col { min-width: 0; }
.services__name {
  font-size: 17px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 6px;
}
.services__desc {
  font-size: 14px;
  color: rgba(42,36,33,0.6);
  line-height: 1.5;
  margin: 0;
}
.services__price {
  font-family: 'JetBrains Mono', monospace;
  color: #c27c58;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.services__note {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  background-color: rgba(42,36,33,0.05);
  border-radius: 16px;
  padding-top: 24px;
  padding-right: 28px;
  padding-bottom: 24px;
  padding-left: 28px;
  font-size: 14px;
  color: rgba(42,36,33,0.6);
  line-height: 1.6;
}
.services__cta { text-align: center; margin-top: 40px; }
@media (min-width: 768px) {
  .services { padding-top: 80px; padding-bottom: 80px; }
  .services__head { flex-direction: row; align-items: baseline; justify-content: space-between; }
  .services__cat { font-size: 32px; }
}

/* ============ CONTACTS ============ */
.contacts { padding-top: 60px; padding-bottom: 60px; }
.contacts__container { max-width: 1200px; }
.contacts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.contacts__info { display: flex; flex-direction: column; gap: 28px; }
.contacts__block { }
.contacts__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(42,36,33,0.6);
  margin-top: 0;
  margin-bottom: 8px;
}
.contacts__value { font-size: 17px; margin: 0; }
.contacts__note { font-size: 13px; color: rgba(42,36,33,0.6); margin-top: 6px; margin-bottom: 0; line-height: 1.5; }
.contacts__phone {
  font-size: 26px;
  color: #2a2421;
  text-decoration: none;
  transition-property: color;
  transition-duration: 0.2s;
}
.contacts__phone:hover { color: #c27c58; }
.contacts__email {
  font-size: 17px;
  color: #2a2421;
  text-decoration: none;
  word-break: break-all;
}
.contacts__email:hover { color: #c27c58; }
.contacts__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 12px;
}
.contacts__map {
  position: relative;
  min-height: 400px;
  border-radius: 24px;
  overflow: hidden;
  background-color: rgba(42,36,33,0.05);
}
.contacts__map-frame {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  border-width: 0;
}
.contacts__map-card {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 16px;
  background-color: rgba(250,247,242,0.95);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding-top: 16px;
  padding-right: 18px;
  padding-bottom: 16px;
  padding-left: 18px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.2);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.1);
}
.contacts__map-brand {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 6px;
}
.contacts__map-addr { font-size: 13px; margin: 0; }
.contacts__map-hours { font-size: 12px; color: rgba(42,36,33,0.6); margin-top: 8px; margin-bottom: 0; }
.contacts__map-link {
  display: inline-block;
  margin-top: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #c27c58;
  text-decoration: none;
}
.contacts__map-link:hover { text-decoration: underline; }
@media (min-width: 1024px) {
  .contacts__grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .contacts { padding-top: 80px; padding-bottom: 80px; }
  .contacts__map-card { left: 24px; top: 24px; right: auto; max-width: 300px; }
}

.cform {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
}
.cform__head { text-align: center; margin-bottom: 30px; }
.cform__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(42,36,33,0.6);
  margin-top: 0;
  margin-bottom: 12px;
}
.cform__title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 30px;
  margin: 0;
}
.cform__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.cform__field { display: grid; gap: 6px; }
.cform__field--wide { grid-column: 1 / -1; }
.cform__label { font-size: 13px; font-weight: 500; }
.cform__input {
  height: 48px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 12px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.15);
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #2a2421;
  box-sizing: border-box;
}
.cform__textarea {
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  border-radius: 12px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.15);
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  resize: vertical;
  box-sizing: border-box;
}
.cform__ok {
  color: #16a34a;
  font-size: 14px;
  margin-top: 8px;
}
@media (min-width: 640px) {
  .cform__form { grid-template-columns: 1fr 1fr; }
  .cform__title { font-size: 36px; }
}

/* ============ FAQ ============ */
.faq { padding-top: 60px; padding-bottom: 60px; }
.faq__container { max-width: 800px; }
.faq__item {
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.1);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
}
.faq__q {
  width: 100%;
  padding-top: 20px;
  padding-right: 24px;
  padding-bottom: 20px;
  padding-left: 24px;
  background-color: transparent;
  border-width: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  color: #2a2421;
  transition-property: background-color;
  transition-duration: 0.2s;
}
.faq__q:hover { background-color: rgba(42,36,33,0.03); }
.faq__q-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  line-height: 1.3;
}
.faq__q-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  transition-property: transform, background-color;
  transition-duration: 0.2s;
}
.faq__q-icon--open { transform: rotate(180deg); background-color: rgba(42,36,33,0.05); }
.faq__a {
  padding-top: 0;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  color: rgba(42,36,33,0.7);
  line-height: 1.6;
}
@media (min-width: 768px) { .faq { padding-top: 80px; padding-bottom: 80px; } .faq__q-text { font-size: 22px; } }

/* ============ VACANCIES ============ */
.vac { padding-top: 60px; padding-bottom: 60px; }
.vac__container { max-width: 1000px; }
.vac__item {
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.1);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 16px;
}
.vac__head {
  width: 100%;
  padding-top: 24px;
  padding-right: 28px;
  padding-bottom: 24px;
  padding-left: 28px;
  background-color: transparent;
  border-width: 0;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  text-align: left;
  font-family: 'Inter', sans-serif;
  color: #2a2421;
}
.vac__head:hover { background-color: rgba(42,36,33,0.03); }
.vac__head-col { min-width: 0; }
.vac__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  margin-top: 0;
  margin-bottom: 10px;
}
.vac__short {
  color: rgba(42,36,33,0.6);
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 16px;
}
.vac__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vac__tag {
  padding-top: 5px;
  padding-right: 12px;
  padding-bottom: 5px;
  padding-left: 12px;
  border-radius: 999px;
  font-size: 12px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.1);
}
.vac__tag--filled {
  background-color: rgba(42,36,33,0.05);
  border-color: transparent;
}
.vac__chev {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition-property: transform, background-color;
  transition-duration: 0.2s;
}
.vac__chev--open { transform: rotate(180deg); background-color: rgba(42,36,33,0.05); }
.vac__body {
  padding-top: 24px;
  padding-right: 28px;
  padding-bottom: 28px;
  padding-left: 28px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(42,36,33,0.1);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.vac__block { }
.vac__block-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(42,36,33,0.6);
  margin-top: 0;
  margin-bottom: 12px;
}
.vac__list {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
.vac__foot {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}
.vac__sched { font-size: 13px; color: rgba(42,36,33,0.6); }
@media (min-width: 768px) {
  .vac__body { grid-template-columns: repeat(3, 1fr); }
  .vac__title { font-size: 30px; }
  .vac__foot { flex-direction: row; align-items: center; justify-content: space-between; }
}
@media (min-width: 1024px) { .vac { padding-top: 80px; padding-bottom: 80px; } }

/* ============ DOC (privacy/terms/consent) ============ */
.doc { padding-top: 60px; padding-bottom: 80px; }
.doc__container { max-width: 800px; }
.doc__section { margin-bottom: 32px; }
.doc__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 12px;
}
.doc__p { line-height: 1.7; margin-top: 0; margin-bottom: 12px; }
.doc__list {
  list-style-type: disc;
  padding-left: 24px;
  line-height: 1.7;
  margin: 0;
}

/* ============ VALUES / TST / PROMOS / STEPS / MASTERS / GUAR / GIFT ============ */
.values, .promos, .masters, .gift {
  background-color: rgba(42,36,33,0.03);
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(42,36,33,0.1);
}
.tst, .steps, .guar {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(42,36,33,0.1);
}
.values__container, .tst__container, .promos__container, .steps__container, .masters__container, .guar__container, .gift__container {
  padding-top: 60px;
  padding-bottom: 60px;
}
.values__grid, .tst__grid, .promos__grid, .guar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.steps__grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.masters__grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.gift__grid { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 1100px; margin-left: auto; margin-right: auto; }

.values__card, .promos__card, .steps__card, .guar__card {
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.1);
  border-radius: 16px;
  padding-top: 28px;
  padding-right: 28px;
  padding-bottom: 28px;
  padding-left: 28px;
}
.values__title, .promos__title, .steps__title, .guar__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 12px;
}
.values__text, .promos__text, .steps__text, .guar__text {
  color: rgba(42,36,33,0.6);
  line-height: 1.6;
  margin: 0;
}

.tst__card {
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.1);
  border-radius: 16px;
  padding-top: 28px;
  padding-right: 28px;
  padding-bottom: 28px;
  padding-left: 28px;
  margin: 0;
}
.tst__text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 20px;
}
.tst__foot { font-size: 13px; margin: 0; }
.tst__name { font-weight: 500; }
.tst__role { color: rgba(42,36,33,0.6); }

.promos__tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #c27c58;
  margin-bottom: 14px;
}

.steps__num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 44px;
  color: rgba(194,124,88,0.7);
  margin-top: 0;
  margin-bottom: 14px;
  line-height: 1;
}
.steps__actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.masters__card {
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.1);
  border-radius: 16px;
  padding-top: 28px;
  padding-right: 20px;
  padding-bottom: 28px;
  padding-left: 20px;
  text-align: center;
}
.masters__avatar {
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  border-radius: 999px;
  background-color: rgba(194,124,88,0.1);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(194,124,88,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  color: #c27c58;
}
.masters__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 6px;
}
.masters__role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(42,36,33,0.6);
  margin-top: 0;
  margin-bottom: 12px;
}
.masters__spec {
  font-size: 13px;
  color: rgba(42,36,33,0.6);
  line-height: 1.5;
  margin: 0;
}
.masters__exp { font-size: 12px; color: #c27c58; margin-top: 12px; margin-bottom: 0; }

.guar__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: rgba(194,124,88,0.1);
  color: #c27c58;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 18px;
}

.gift__card {
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.1);
  border-radius: 16px;
  padding-top: 28px;
  padding-right: 20px;
  padding-bottom: 28px;
  padding-left: 20px;
  text-align: center;
}
.gift__value {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 30px;
  color: #c27c58;
  margin-top: 0;
  margin-bottom: 10px;
}
.gift__hint { font-size: 13px; color: rgba(42,36,33,0.6); margin: 0; line-height: 1.5; }
.gift__note {
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  color: rgba(42,36,33,0.6);
}
.gift__phone { color: #c27c58; text-decoration: none; }
.gift__phone:hover { text-decoration: underline; }

@media (min-width: 640px) {
  .values__grid, .tst__grid, .promos__grid { grid-template-columns: 1fr 1fr; }
  .masters__grid { grid-template-columns: 1fr 1fr; }
  .gift__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .steps__grid, .guar__grid { grid-template-columns: repeat(3, 1fr); }
  .steps__actions { flex-direction: row; }
}
@media (min-width: 1024px) {
  .values__container, .tst__container, .promos__container, .steps__container, .masters__container, .guar__container, .gift__container {
    padding-top: 96px; padding-bottom: 96px;
  }
  .masters__grid { grid-template-columns: repeat(4, 1fr); }
  .gift__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============ FOOTER ============ */
.footer {
  background-color: rgba(42,36,33,0.05);
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(42,36,33,0.1);
  margin-top: 60px;
}
.footer__cta {
  background-color: #2a2421;
  color: #faf7f2;
}
.footer__cta-container {
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer__cta-copy { text-align: center; }
.footer__cta-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.6;
  margin-top: 0;
  margin-bottom: 6px;
}
.footer__cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  margin: 0;
}
.footer__cta-icon { width: 18px; height: 18px; }
.footer__container {
  padding-top: 56px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__logo { width: 40px; height: 40px; object-fit: contain; }
.footer__name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
}
.footer__about {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 13px;
  color: rgba(42,36,33,0.6);
  line-height: 1.6;
  max-width: 320px;
}
.footer__coltitle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(42,36,33,0.6);
  margin-top: 0;
  margin-bottom: 14px;
}
.footer__list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.footer__link {
  color: #2a2421;
  text-decoration: none;
  transition-property: color;
  transition-duration: 0.2s;
}
.footer__link:hover { color: #c27c58; }
.footer__muted { color: rgba(42,36,33,0.6); }
.footer__bottom {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(42,36,33,0.1);
}
.footer__bottom-container {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(42,36,33,0.6);
  text-align: center;
}
.footer__bottom-item { margin: 0; }
@media (min-width: 640px) {
  .footer__cta-container { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer__cta-copy { text-align: left; }
  .footer__cta-title { font-size: 26px; }
  .footer__container { grid-template-columns: 1fr 1fr; }
  .footer__bottom-container { flex-direction: row; gap: 24px; }
}
@media (min-width: 1024px) {
  .footer__container { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
}

/* ============ COOKIE ============ */
.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  pointer-events: none;
}
.cookie__container {
  padding-bottom: 16px;
  pointer-events: none;
}
.cookie__card {
  pointer-events: auto;
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.1);
  border-radius: 16px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.2);
  padding-top: 16px;
  padding-right: 20px;
  padding-bottom: 16px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie__text {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(42,36,33,0.85);
  margin: 0;
  flex-grow: 1;
}
.cookie__link { color: #c27c58; text-decoration: underline; }
.cookie__btn {
  align-self: stretch;
  padding-top: 10px;
  padding-right: 24px;
  padding-bottom: 10px;
  padding-left: 24px;
  background-color: #2a2421;
  color: #faf7f2;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border-width: 0;
}
.cookie__btn:hover { filter: brightness(1.1); }
@media (min-width: 640px) {
  .cookie__card { flex-direction: row; align-items: center; }
  .cookie__btn { align-self: auto; flex-shrink: 0; }
}

/* ============ CHAT FAB ============ */
.chatfab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 6px;
  padding-right: 16px;
  padding-bottom: 6px;
  padding-left: 6px;
  background-color: #2a2421;
  color: #faf7f2;
  border-radius: 999px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
  border-width: 0;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition-property: filter;
  transition-duration: 0.2s;
}
.chatfab:hover { filter: brightness(1.1); }
.chatfab__avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  border-width: 2px;
  border-style: solid;
  border-color: #faf7f2;
  flex-shrink: 0;
}
.chatfab__text { font-size: 14px; font-weight: 500; }
.chatfab__dot {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background-color: #c27c58;
  border-width: 2px;
  border-style: solid;
  border-color: #faf7f2;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}
.chatfab--hidden { display: none; }
@media (max-width: 480px) { .chatfab__text { display: none; } .chatfab { padding-right: 6px; } }

/* ============ CHAT PANEL ============ */
.chat {
  position: fixed;
  z-index: 50;
  right: 12px;
  bottom: 16px;
  left: 12px;
  max-height: calc(100vh - 32px);
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.1);
  border-radius: 24px;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.chat__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  background-color: rgba(42,36,33,0.05);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(42,36,33,0.1);
}
.chat__avatar { width: 48px; height: 48px; border-radius: 999px; object-fit: cover; flex-shrink: 0; }
.chat__head-info { flex-grow: 1; min-width: 0; }
.chat__head-name { font-weight: 500; margin: 0; }
.chat__head-status {
  font-size: 12px;
  color: rgba(42,36,33,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  margin-bottom: 0;
}
.chat__head-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background-color: #10b981;
  display: inline-block;
}
.chat__close {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background-color: transparent;
  border-width: 0;
  cursor: pointer;
  color: rgba(42,36,33,0.7);
  font-size: 16px;
  flex-shrink: 0;
}
.chat__close:hover { background-color: rgba(250,247,242,0.6); color: #2a2421; }
.chat__scroll {
  flex-grow: 1;
  overflow-y: auto;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 400px;
}
.chat__msg { display: flex; }
.chat__msg--user { justify-content: flex-end; }
.chat__msg--bot { justify-content: flex-start; }
.chat__bubble {
  max-width: 85%;
  padding-top: 10px;
  padding-right: 16px;
  padding-bottom: 10px;
  padding-left: 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
}
.chat__bubble--bot {
  background-color: rgba(42,36,33,0.05);
  color: #2a2421;
  border-bottom-left-radius: 4px;
}
.chat__bubble--user {
  background-color: #2a2421;
  color: #faf7f2;
  border-bottom-right-radius: 4px;
}
.chat__quick {
  padding-top: 4px;
  padding-right: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chat__quick-btn {
  font-size: 12px;
  padding-top: 6px;
  padding-right: 12px;
  padding-bottom: 6px;
  padding-left: 12px;
  border-radius: 999px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(42,36,33,0.1);
  background-color: transparent;
  color: #2a2421;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.chat__quick-btn:hover { background-color: rgba(42,36,33,0.05); }
.chat__form {
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(42,36,33,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #faf7f2;
}
.chat__input {
  flex-grow: 1;
  padding-top: 10px;
  padding-right: 16px;
  padding-bottom: 10px;
  padding-left: 16px;
  border-radius: 999px;
  background-color: rgba(42,36,33,0.05);
  border-width: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #2a2421;
  outline: none;
}
.chat__send {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: #c27c58;
  color: #faf7f2;
  border-width: 0;
  cursor: pointer;
  font-size: 14px;
  flex-shrink: 0;
}
.chat__send:hover { filter: brightness(1.1); }
@media (min-width: 640px) {
  .chat { right: 24px; left: auto; width: 380px; }
}
