/* Studio Liniya — plain CSS, longhand, BEM, self-classes only */

.html-reset {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  box-sizing: border-box;
}

.main-wrapper {
  width: 100%;
  min-height: 100vh;
  background-color: #f7f1e2;
  color: #2c231a;
  font-family: Manrope, system-ui, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

.page-shell {
  width: 100%;
  max-width: 1240px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 0;
  padding-right: 16px;
  padding-bottom: 0;
  padding-left: 16px;
  box-sizing: border-box;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  width: 100%;
  background-color: rgba(247,241,226,0.94);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #d5cbb6;
  backdrop-filter: blur(8px);
}
.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  cursor: pointer;
}
.brand-mark__glyph {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-mark__disc {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background-color: #b76a48;
  transform: rotate(-15deg);
  box-shadow: 4px 4px 0 #3f5a49;
  transition-property: transform;
  transition-duration: 0.4s;
}
.brand-mark__disc--hover {
  transform: rotate(0deg);
}
.brand-mark__dot {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 10px;
  height: 10px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background-color: #f7f1e2;
}
.brand-mark__stroke {
  position: absolute;
  bottom: 8px;
  right: 6px;
  width: 22px;
  height: 4px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background-color: #f7f1e2;
  transform: rotate(45deg);
}
.brand-mark__square {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 12px;
  height: 12px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  background-color: #cfa25a;
  transform: rotate(12deg);
}
.brand-mark__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-mark__row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.brand-mark__prefix {
  font-family: Fraunces, Georgia, serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: -0.01em;
  text-transform: lowercase;
  opacity: 0.7;
}
.brand-mark__name {
  font-family: Fraunces, Georgia, serif;
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
}
.brand-mark__tagline {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.brand-mark__rule {
  width: 22px;
  height: 1px;
  background-color: #3f5a49;
}
.brand-mark__tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: #3f5a49;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  padding-right: 14px;
  padding-bottom: 8px;
  padding-left: 14px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: #b76a48;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition-property: opacity;
  transition-duration: 0.2s;
}
.header-phone--hover { opacity: 0.9; }
.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 0;
  padding-right: 12px;
  padding-bottom: 0;
  padding-left: 12px;
  height: 42px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #d5cbb6;
  background-color: #ffffff;
  color: #2c231a;
  cursor: pointer;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  transition-property: border-color;
  transition-duration: 0.2s;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
}
.menu-toggle--hover { border-color: #b76a48; }
.menu-toggle__icon {
  width: 18px;
  height: 18px;
}

/* ============ DROPDOWN MENU ============ */
.site-menu {
  position: absolute;
  right: max(8px, calc((100% - 1240px) / 2 + 16px));
  top: 100%;
  width: calc(100% - 16px);
  max-width: 420px;

  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition-property: opacity, transform;
  transition-duration: 0.2s;
  z-index: 60;
}
.site-menu--open {
  opacity: 1;
  transform: translateY(8px);
  pointer-events: auto;
}
.site-menu__panel {
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #d5cbb6;
  background-color: #ffffff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.site-menu__list {
  list-style-type: none;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
}
.site-menu__item { display: block; }
.site-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-right: 14px;
  padding-bottom: 12px;
  padding-left: 14px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition-property: background-color;
  transition-duration: 0.15s;
}
.site-menu__link--hover { background-color: #ebe4d1; }
.site-menu__label-group {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.site-menu__num {
  font-family: Fraunces, Georgia, serif;
  font-size: 12px;
  color: #b76a48;
  font-variant-numeric: tabular-nums;
}
.site-menu__label {
  font-size: 17px;
  font-weight: 500;
}
.site-menu__arrow {
  color: #b76a48;
  opacity: 0;
  transform: translateX(-4px);
  transition-property: opacity, transform;
  transition-duration: 0.15s;
}
.site-menu__arrow--hover {
  opacity: 1;
  transform: translateX(0);
}
.site-menu__foot {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #d5cbb6;
  background-color: rgba(235,228,209,0.6);
  padding-top: 12px;
  padding-right: 14px;
  padding-bottom: 12px;
  padding-left: 14px;
  font-size: 14px;
}
.site-menu__foot-title {
  color: #6a5b4d;
}
.site-menu__foot-links {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.site-menu__foot-phone {
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.site-menu__foot-mail {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* ============ PAGE ============ */
.page { display: none; }
.page--active { display: block; }

.section-band {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}
.section-band--tint {
  background-color: rgba(235,228,209,0.5);
}
.section-band--primary {
  background-color: #b76a48;
  color: #ffffff;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero__inner {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}
.hero__eyebrow {
  color: #b76a48;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
}
.hero__title {
  margin-top: 16px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  max-width: 820px;
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  font-size: 34px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.hero__accent {
  font-style: italic;
  color: #b76a48;
}
.hero__lead {
  margin-top: 18px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  max-width: 640px;
  color: #6a5b4d;
  font-size: 17px;
}
.hero__cta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 12px;
  padding-right: 20px;
  padding-bottom: 12px;
  padding-left: 20px;
  background-color: #b76a48;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  cursor: pointer;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  font-family: inherit;
  font-size: 16px;
  transition-property: opacity;
  transition-duration: 0.2s;
}
.btn-primary--hover { opacity: 0.9; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 12px;
  padding-right: 20px;
  padding-bottom: 12px;
  padding-left: 20px;
  background-color: #f7f1e2;
  color: #2c231a;
  text-decoration: none;
  font-weight: 500;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #d5cbb6;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  transition-property: background-color;
  transition-duration: 0.2s;
}
.btn-outline--hover { background-color: #ebe4d1; }
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  padding-right: 20px;
  padding-bottom: 12px;
  padding-left: 20px;
  background-color: #f7f1e2;
  color: #2c231a;
  text-decoration: none;
  font-weight: 500;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  cursor: pointer;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  font-family: inherit;
  font-size: 16px;
}
.btn-light--hover { opacity: 0.9; }
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  padding-right: 20px;
  padding-bottom: 12px;
  padding-left: 20px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgba(255,255,255,0.4);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  cursor: pointer;
  background-color: transparent;
  font-family: inherit;
  font-size: 16px;
  transition-property: background-color;
  transition-duration: 0.2s;
}
.btn-ghost-light--hover { background-color: rgba(255,255,255,0.12); }

.hero__media {
  margin-top: 36px;
  overflow: hidden;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #d5cbb6;
  box-shadow: 0 30px 60px rgba(60,40,20,0.12);
}
.hero__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.stats-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat-card {
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #d5cbb6;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding-top: 18px;
  padding-right: 18px;
  padding-bottom: 18px;
  padding-left: 18px;
  text-align: left;
}
.stat-card__num {
  font-family: Fraunces, Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  color: #b76a48;
}
.stat-card__label {
  margin-top: 4px;
  font-size: 14px;
  color: #6a5b4d;
}

/* Generic section title */
.section-title {
  font-family: Fraunces, Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  text-align: center;
}
.section-title--left { text-align: left; }
.section-lead {
  margin-top: 12px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  max-width: 640px;
  color: #6a5b4d;
  text-align: center;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #b76a48;
}
.eyebrow-row__label {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

/* Card grids */
.card-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.info-card {
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #d5cbb6;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  padding-top: 22px;
  padding-right: 22px;
  padding-bottom: 22px;
  padding-left: 22px;
  text-align: left;
}
.info-card__icon-box {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: rgba(183,106,72,0.12);
  color: #b76a48;
}
.info-card__title {
  margin-top: 14px;
  font-family: Fraunces, Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}
.info-card__num {
  color: #b76a48;
  font-family: Fraunces, Georgia, serif;
  font-size: 22px;
}
.info-card__text {
  margin-top: 8px;
  color: #6a5b4d;
  font-size: 15px;
}

.stars-row {
  display: flex;
  gap: 4px;
  color: #b76a48;
}
.review-text {
  margin-top: 12px;
  color: #2c231a;
}
.review-meta {
  margin-top: 14px;
  font-size: 14px;
}
.review-meta__name { font-weight: 600; }
.review-meta__role { color: #6a5b4d; }

/* CTA banner */
.cta-banner {
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
  border-bottom-left-radius: 22px;
  background-color: #b76a48;
  color: #ffffff;
  padding-top: 36px;
  padding-right: 24px;
  padding-bottom: 36px;
  padding-left: 24px;
  text-align: center;
}
.cta-banner__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 4px;
  padding-right: 12px;
  padding-bottom: 4px;
  padding-left: 12px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background-color: rgba(255,255,255,0.15);
  font-size: 14px;
}
.cta-banner__title {
  margin-top: 14px;
  font-family: Fraunces, Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
}
.cta-banner__lead {
  margin-top: 12px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  max-width: 640px;
  opacity: 0.9;
}
.cta-banner__actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* PAGE TITLES for inner pages */
.page-title {
  font-family: Fraunces, Georgia, serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.page-lead {
  margin-top: 14px;
  max-width: 640px;
  color: #6a5b4d;
}

/* Two-column layout */
.two-col {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.rich-text__para {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.7;
}
.rich-text__h2 {
  margin-top: 32px;
  font-family: Fraunces, Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}
.rich-text__list {
  margin-top: 10px;
  padding-left: 22px;
}
.rich-text__list-item {
  margin-top: 6px;
  margin-bottom: 6px;
}
.reveal-box {
  margin-top: 16px;
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #d5cbb6;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding-top: 18px;
  padding-right: 18px;
  padding-bottom: 18px;
  padding-left: 18px;
  font-size: 15px;
}
.reveal-box__row { margin-top: 4px; }
.link-inline {
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
  transition-property: color;
  transition-duration: 0.2s;
}
.link-inline--hover { color: #b76a48; }

.aside-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.aside-card {
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #d5cbb6;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  padding-top: 22px;
  padding-right: 22px;
  padding-bottom: 22px;
  padding-left: 22px;
}
.aside-card__num {
  font-family: Fraunces, Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: #b76a48;
}
.aside-card__label { color: #6a5b4d; }

/* SERVICES page */
.service-block {
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #d5cbb6;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  margin-bottom: 18px;
}
.service-block__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.service-block__title {
  font-family: Fraunces, Georgia, serif;
  font-size: 24px;
  font-weight: 600;
}
.service-block__price {
  color: #b76a48;
  font-weight: 600;
}
.service-block__desc {
  margin-top: 10px;
  color: #6a5b4d;
}
.service-block__list {
  margin-top: 16px;
  padding-left: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
.boxed-section {
  margin-top: 24px;
  background-color: rgba(235,228,209,0.5);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #d5cbb6;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  padding-top: 22px;
  padding-right: 22px;
  padding-bottom: 22px;
  padding-left: 22px;
}
.boxed-section--tinted {
  background-color: rgba(183,106,72,0.06);
}
.boxed-section--card {
  background-color: #ffffff;
}
.boxed-section__title {
  font-family: Fraunces, Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}
.boxed-section__text {
  margin-top: 10px;
  color: #6a5b4d;
}

/* CONTACTS */
.contact-card {
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #d5cbb6;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  padding-top: 18px;
  padding-right: 18px;
  padding-bottom: 18px;
  padding-left: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-card__icon {
  color: #b76a48;
  flex-shrink: 0;
  margin-top: 4px;
}
.contact-card__label {
  font-size: 13px;
  color: #6a5b4d;
}
.contact-card__value {
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  word-break: break-word;
}
.contact-card__note {
  margin-top: 4px;
  font-size: 13px;
  color: #6a5b4d;
}
.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.map-frame {
  margin-top: 16px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #d5cbb6;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  overflow: hidden;
}
.map-frame__iframe {
  display: block;
  width: 100%;
  height: 360px;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form__field { display: block; }
.form__label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
}
.form__input {
  width: 100%;
  box-sizing: border-box;
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #d5cbb6;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: #ffffff;
  color: #2c231a;
  font-family: inherit;
  font-size: 16px;
  outline-width: 0;
}
.form__textarea {
  width: 100%;
  box-sizing: border-box;
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #d5cbb6;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: #ffffff;
  color: #2c231a;
  font-family: inherit;
  font-size: 16px;
  min-height: 120px;
  outline-width: 0;
  resize: vertical;
}
.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
}
.form__checkbox {
  margin-top: 4px;
}

/* FAQ */
.faq-wrap {
  margin-top: 24px;
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #d5cbb6;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  overflow: hidden;
}
.faq-item {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #d5cbb6;
}
.faq-item--first { border-top-width: 0; }
.faq-item__button {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  background-color: transparent;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
}
.faq-item__button--open { background-color: rgba(235,228,209,0.5); }
.faq-item__plus {
  color: #b76a48;
  font-size: 24px;
  line-height: 1;
  transition-property: transform;
  transition-duration: 0.2s;
  flex-shrink: 0;
}
.faq-item__plus--open { transform: rotate(45deg); }
.faq-item__body {
  display: none;
  padding-top: 0;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  color: #6a5b4d;
}
.faq-item__body--open { display: block; }

/* VACANCIES */
.vac-toolbar {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.vac-toolbar__search {
  position: relative;
}
.vac-toolbar__icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #6a5b4d;
  pointer-events: none;
}
.vac-toolbar__input {
  width: 100%;
  box-sizing: border-box;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 38px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #d5cbb6;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: #ffffff;
  color: #2c231a;
  font-size: 16px;
  outline-width: 0;
}
.vac-toolbar__select {
  width: 100%;
  box-sizing: border-box;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #d5cbb6;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: #ffffff;
  color: #2c231a;
  font-size: 16px;
  outline-width: 0;
  font-family: inherit;
}
.vac-count {
  margin-top: 18px;
  font-size: 14px;
  color: #6a5b4d;
}
.vac-list {
  margin-top: 12px;
  list-style-type: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.vac-item { display: block; }
.vac-card {
  display: block;
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #d5cbb6;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition-property: border-color;
  transition-duration: 0.2s;
}
.vac-card--hover { border-color: #b76a48; }
.vac-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.vac-card__title {
  font-family: Fraunces, Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}
.vac-card__salary {
  color: #b76a48;
  font-weight: 600;
  white-space: nowrap;
}
.vac-card__short {
  margin-top: 8px;
  color: #6a5b4d;
}
.vac-card__meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: #6a5b4d;
}
.vac-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.vac-card__cta {
  margin-top: 14px;
  color: #b76a48;
  font-weight: 500;
}
.vac-empty {
  padding-top: 32px;
  padding-right: 20px;
  padding-bottom: 32px;
  padding-left: 20px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: dashed;
  border-color: #d5cbb6;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  text-align: center;
  color: #6a5b4d;
}

/* Vacancy detail */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #b76a48;
  text-decoration: none;
  cursor: pointer;
}
.vac-detail__meta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #6a5b4d;
}
.vac-detail__salary {
  margin-top: 12px;
  font-size: 22px;
  font-weight: 600;
  color: #b76a48;
}

/* FOOTER */
.site-footer {
  margin-top: 60px;
  background-color: rgba(235,228,209,0.5);
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #d5cbb6;
}
.site-footer__grid {
  padding-top: 40px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.site-footer__col {
  display: block;
}
.site-footer__brand-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}
.site-footer__brand-prefix {
  font-family: Fraunces, Georgia, serif;
  font-size: 15px;
  font-weight: 300;
  text-transform: lowercase;
  opacity: 0.7;
}
.site-footer__brand-name {
  font-family: Fraunces, Georgia, serif;
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
}
.site-footer__brand-tag {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-footer__brand-rule {
  width: 22px;
  height: 1px;
  background-color: #3f5a49;
}
.site-footer__brand-tag-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: #3f5a49;
}
.site-footer__desc {
  margin-top: 14px;
  color: #6a5b4d;
  font-size: 15px;
}
.site-footer__note {
  margin-top: 14px;
  color: #6a5b4d;
  font-size: 13px;
}
.site-footer__col-title {
  font-weight: 600;
}
.site-footer__list {
  margin-top: 12px;
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
}
.site-footer__link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition-property: color;
  transition-duration: 0.2s;
}
.site-footer__link--hover { color: #b76a48; }
.site-footer__bar {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #d5cbb6;
}
.site-footer__bar-inner {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #6a5b4d;
}

/* ============ CHAT WIDGET ============ */
.chat-bubble {
  position: fixed;
  right: 16px;
  bottom: 0;
  margin-bottom: 0;
  z-index: 55;
  width: 56px;
  height: calc(56px + env(safe-area-inset-bottom, 0px));
  min-height: 56px;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-color: #b76a48;
  color: #ffffff;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  cursor: pointer;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.25);
  transition-property: transform;
  transition-duration: 0.15s;
}
.chat-bubble--hover { transform: scale(1.06); }
.chat-bubble--hidden { display: none; }

.chat-panel {
  position: fixed;
  right: 16px;
  bottom: 0;
  margin-bottom: 0;
  z-index: 55;
  width: calc(100vw - 32px);
  max-width: 360px;
  height: calc(70vh + env(safe-area-inset-bottom, 0px));
  max-height: 560px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 0;
  border-left-width: 1px;
  border-style: solid;
  border-color: #d5cbb6;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: 0 -20px 40px rgba(0,0,0,0.25);
}
.chat-panel--open { display: flex; }
.chat-panel__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  background-color: #b76a48;
  color: #ffffff;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #d5cbb6;
}
.chat-panel__avatar {
  width: 40px;
  height: 40px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  object-fit: cover;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-style: solid;
  border-color: rgba(255,255,255,0.4);
}
.chat-panel__id {
  flex-grow: 1;
  min-width: 0;
}
.chat-panel__name { font-weight: 600; line-height: 1.2; }
.chat-panel__status { font-size: 12px; opacity: 0.9; }
.chat-panel__close {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background-color: transparent;
  color: #ffffff;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  cursor: pointer;
  transition-property: background-color;
  transition-duration: 0.15s;
}
.chat-panel__close--hover { background-color: rgba(255,255,255,0.15); }
.chat-panel__body {
  flex-grow: 1;
  overflow-y: auto;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  background-color: #f7f1e2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chat-msg-bot {
  max-width: 85%;
  background-color: #ebe4d1;
  color: #2c231a;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  font-size: 14px;
  align-self: flex-start;
}
.chat-msg-user {
  max-width: 85%;
  background-color: #b76a48;
  color: #ffffff;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  border-top-left-radius: 16px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  font-size: 14px;
  align-self: flex-end;
}
.chat-quick {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chat-quick__btn {
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #d5cbb6;
  padding-top: 4px;
  padding-right: 10px;
  padding-bottom: 4px;
  padding-left: 10px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  transition-property: background-color;
  transition-duration: 0.15s;
}
.chat-quick__btn--hover { background-color: #ebe4d1; }
.chat-panel__form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #d5cbb6;
  background-color: #ffffff;
}
.chat-panel__input {
  flex-grow: 1;
  min-width: 0;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #d5cbb6;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background-color: #ffffff;
  color: #2c231a;
  font-family: inherit;
  font-size: 14px;
  outline-width: 0;
}
.chat-panel__send {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background-color: #b76a48;
  color: #ffffff;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.chat-panel__send--hover { opacity: 0.9; }

/* COOKIE BANNER */
.cookie {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 45;
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #d5cbb6;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  max-width: 440px;
}
.cookie--hidden { display: none; }
.cookie__text { font-size: 15px; }
.cookie__actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cookie__accept {
  padding-top: 8px;
  padding-right: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: #b76a48;
  color: #ffffff;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.cookie__decline {
  padding-top: 8px;
  padding-right: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: #f7f1e2;
  color: #2c231a;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #d5cbb6;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 96px;
  transform: translateX(-50%);
  z-index: 70;
  background-color: #2c231a;
  color: #ffffff;
  padding-top: 12px;
  padding-right: 18px;
  padding-bottom: 12px;
  padding-left: 18px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
  font-size: 14px;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.2s;
  pointer-events: none;
}
.toast--visible { opacity: 1; }

/* MEDIA QUERIES */
@media (min-width: 640px) {
  .brand-mark__tagline { display: flex; }
  .header-phone { display: inline-flex; }
  .cookie {
    left: 24px;
    right: auto;
    bottom: 24px;
  }
}
@media (min-width: 768px) {
  .page-shell {
    padding-right: 28px;
    padding-left: 28px;
  }
  .main-wrapper { font-size: 18px; }
  .hero__title { font-size: 52px; }
  .page-title { font-size: 46px; }
  .section-title { font-size: 34px; }
  .cta-banner__title { font-size: 36px; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid--three { grid-template-columns: repeat(3, 1fr); }
  .card-grid--four { grid-template-columns: repeat(4, 1fr); }
  .two-col { grid-template-columns: 2fr 1fr; }
  .service-block__list { grid-template-columns: 1fr 1fr; }
  .vac-toolbar { grid-template-columns: 1fr auto auto; }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .map-frame__iframe { height: 440px; }
  .section-band { padding-top: 56px; padding-bottom: 56px; }
  .hero__inner { padding-top: 56px; padding-bottom: 40px; }
  .chat-bubble { right: 24px; bottom: 0; margin-bottom: 0; }
  .chat-panel { right: 24px; bottom: 0; margin-bottom: 0; }
}
@media (min-width: 1024px) {
  .card-grid--wide { grid-template-columns: repeat(4, 1fr); }
  .site-footer__grid { grid-template-columns: repeat(4, 1fr); }
}
