/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

svg {
  display: block;
}

/* === Variables === */
:root {
  --primary: #BA5A86;
  --primary-dark: #9A4B6F;
  --primary-soft: #f7eef3;
  --primary-tint: #e6cfdc;
  --ink: #2c2530;
  --ink-soft: #6d6675;
  --line: #ececec;
  --bg: #ffffff;
  --bg-soft: #faf7f9;
  --max-width: 1140px;
}

/* === Layout helpers === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section[id] {
  scroll-margin-top: 90px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.85);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 6vw, 60px);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin-top: 10px;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--primary);
  color: var(--bg);
  padding: 12px 26px;
  border: 1.5px solid var(--primary);
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease,
              transform 0.18s ease, color 0.18s ease;
}

.btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 14px 32px;
  font-size: 0.98rem;
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
}

.btn--ghost:hover {
  background: var(--primary);
  color: var(--bg);
}

.btn--on-primary {
  background: transparent;
  color: var(--bg);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--on-primary:hover {
  background: var(--bg);
  color: var(--primary);
  border-color: var(--bg);
}

.contact__fb {
  margin-top: 24px;
  align-self: flex-start;
}

.btn--phone {
  padding: 9px 18px;
  font-size: 0.88rem;
}

.btn .ic {
  width: 16px;
  height: 16px;
}

/* === Header === */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--bg);
  flex-shrink: 0;
}

.brand__mark svg {
  width: 21px;
  height: 21px;
}

.brand__text {
  font-size: 1.06rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.2;
  white-space: nowrap;
}

.brand__text strong {
  font-weight: 700;
  color: var(--ink);
}

.header__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header__hours {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.header__hours .ic {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* === Hero === */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  background: var(--bg);
}

.hero__inner {
  max-width: none;
  margin: 0;
  display: flex;
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(24px, 5vw, 88px);
}

.hero__content {
  max-width: 540px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--primary);
}

.hero__title {
  font-size: clamp(1.95rem, 3.6vw, 2.85rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
  margin: 18px 0 16px;
}

.hero__text {
  font-size: 1.06rem;
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__media {
  background-image: url('/images/hero.jpg');
  background-size: cover;
  background-position: center;
  min-height: 540px;
}

/* === Facts strip === */
.facts {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.facts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.fact {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 28px;
}

.fact + .fact {
  border-left: 1px solid var(--line);
}

.fact__ic {
  width: 26px;
  height: 26px;
  padding: 11px;
  box-sizing: content-box;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  flex-shrink: 0;
}

.fact__label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.fact__value {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
}

a.fact__value:hover {
  color: var(--primary);
}

/* === About === */
.about {
  padding: clamp(60px, 9vw, 104px) 0;
  background: var(--bg);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.about__media img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about__text .eyebrow {
  margin-bottom: 14px;
}

.about__lead {
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
}

.about__text p:last-child {
  color: var(--ink-soft);
}

/* === Services === */
.services {
  padding: clamp(60px, 9vw, 104px) 0;
  background: var(--bg-soft);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 28px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease,
              transform 0.18s ease;
}

.card:hover {
  border-color: var(--primary-tint);
  box-shadow: 0 16px 36px -22px rgba(44, 37, 48, 0.35);
  transform: translateY(-4px);
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
}

.card__icon svg {
  width: 27px;
  height: 27px;
}

.card__title {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  margin: 18px 0 8px;
}

.card__text {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* === Payment === */
.payment {
  padding: clamp(48px, 7vw, 80px) 0;
  background: var(--bg);
}

.payment__inner {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  background: var(--primary-soft);
  border-radius: 18px;
  padding: clamp(30px, 5vw, 46px);
}

.payment__ic {
  width: 24px;
  height: 24px;
  padding: 13px;
  box-sizing: content-box;
  border-radius: 50%;
  background: var(--bg);
  color: var(--primary);
}

.payment__text {
  font-size: 1.04rem;
  color: var(--ink);
  max-width: 620px;
}

/* === Team === */
.team {
  padding: clamp(60px, 9vw, 104px) 0;
  background: var(--bg-soft);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 760px;
  margin: 0 auto;
}

.team__member {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
}

.team__photo {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px var(--primary-soft);
}

.team__name {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink);
}

.team__role {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 4px;
}

.team__cta {
  max-width: 680px;
  margin: 44px auto 0;
  text-align: center;
  color: var(--ink-soft);
}

/* === Contact === */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact__info {
  background: var(--primary);
  color: var(--bg);
  display: flex;
  align-items: center;
  padding: clamp(48px, 7vw, 88px) clamp(28px, 5vw, 64px);
}

.contact__info-inner {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.contact__heading {
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  font-weight: 700;
  margin: 10px 0 28px;
}

.contact__list {
  list-style: none;
}

.contact__list li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact__list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact__list span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3px;
}

.contact__list a,
.contact__list p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg);
}

.contact__list a:hover {
  text-decoration: underline;
}

.contact__map {
  min-height: 460px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  display: block;
}

/* === Form === */
.form-section {
  padding: clamp(60px, 9vw, 104px) 0;
  background: var(--bg);
}

.form {
  max-width: 620px;
  margin: 0 auto;
}

.form__field {
  margin-bottom: 18px;
}

.form__field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}

.form__field input,
.form__field textarea {
  width: 100%;
  padding: 12px 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form__field textarea {
  resize: vertical;
  min-height: 130px;
}

.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.form__submit {
  width: 100%;
  margin-top: 6px;
}

/* === Footer === */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--bg);
}

.footer__brand .brand__mark {
  width: 34px;
  height: 34px;
}

.footer__brand .brand__mark svg {
  width: 19px;
  height: 19px;
}

.footer__legal {
  font-size: 0.8rem;
  line-height: 1.8;
}

/* === Responsive === */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    padding: clamp(48px, 9vw, 72px) 24px;
  }

  .hero__content {
    max-width: 560px;
  }

  .hero__media {
    min-height: 320px;
    order: -1;
  }

  .about__inner {
    grid-template-columns: 1fr;
  }

  .about__media {
    order: -1;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .facts__grid {
    grid-template-columns: 1fr;
  }

  .fact + .fact {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .fact {
    padding: 20px 4px;
  }
}

@media (max-width: 600px) {
  .header__hours {
    display: none;
  }

  .brand__text {
    font-size: 0.96rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .team__grid {
    grid-template-columns: 1fr;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
  }
}

@media (max-width: 480px) {
  .btn__cta {
    display: none;
  }
}

@media (max-width: 380px) {
  .brand__text {
    font-size: 0.86rem;
    white-space: normal;
  }
}
