@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Secular+One&display=swap');

body {
  background: #fff !important;
}

.rabu-vcard38,
.rabu-vcard38 * {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.rabu-vcard38 {
  --architect-accent: #716659;
  --architect-ink: #000;
  --architect-muted: #727272;
  --architect-surface: #f2f2f2;
  --architect-card: #e5e4e3;
  min-height: 100vh;
  padding: 0;
  background: #fff;
}

.rabu-vcard38-shell {
  width: min(670px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
  background: var(--architect-surface);
}

.rabu-vcard38-profile {
  position: relative;
  padding: 56px 30px 34px;
  text-align: center;
}

.rabu-vcard38-topline {
  position: absolute;
  top: 26px;
  left: 30px;
  width: calc(100% - 60px);
  height: 1px;
  background: var(--architect-accent);
}

.rabu-vcard38-topline::before,
.rabu-vcard38-topline::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--architect-accent);
  border-radius: 50%;
  background: var(--architect-surface);
}

.rabu-vcard38-topline::before {
  left: 0;
}

.rabu-vcard38-topline::after {
  right: 0;
}

.rabu-vcard38-avatar {
  position: relative;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  overflow: hidden;
  border: 3px solid var(--architect-accent);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 0 34px 10px rgba(0, 0, 0, 0.13);
}

.rabu-vcard38-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rabu-vcard38-avatar span {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: var(--architect-accent);
  font-size: 48px;
  font-weight: 800;
}

.rabu-vcard38-title {
  margin-top: 16px;
}

.rabu-vcard38-title h1 {
  margin: 0;
  color: var(--architect-accent);
  font-size: clamp(1.85rem, 6vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
}

.rabu-vcard38-title p {
  margin: 4px 0 2px;
  color: var(--architect-ink);
  font-size: 1.05rem;
  font-weight: 500;
}

.rabu-vcard38-title small,
.rabu-vcard38-desc {
  color: var(--architect-muted);
  font-weight: 500;
}

.rabu-vcard38-title small {
  display: block;
  font-size: 0.95rem;
}

.rabu-vcard38-desc {
  max-width: 520px;
  margin: 18px auto 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.rabu-vcard38-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
}

.rabu-vcard38-social a {
  display: inline-flex;
  width: 48px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 12px 12px 18px 18px;
  background: var(--architect-accent);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.rabu-vcard38-social a:hover {
  transform: scale(1.08);
}

.rabu-vcard38-social iconify-icon {
  width: 21px;
  height: 21px;
}

.rabu-vcard38-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.rabu-vcard38-actions .rabu-vcard38-btn:only-child {
  grid-column: 1 / -1;
}

.rabu-vcard38-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid var(--architect-accent);
  border-radius: 10px;
  background: var(--architect-accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.rabu-vcard38-btn.is-light {
  background: #fff;
  color: var(--architect-accent);
}

.rabu-vcard38-section {
  padding: 34px 30px 0;
}

.rabu-vcard38-section:last-of-type {
  padding-bottom: 28px;
}

.rabu-vcard38-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.rabu-vcard38-heading::before,
.rabu-vcard38-heading::after {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--architect-accent);
}

.rabu-vcard38-heading h2 {
  margin: 0;
  color: var(--architect-ink);
  font-family: 'Secular One', sans-serif;
  font-size: clamp(1.55rem, 6vw, 2rem);
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
}

.rabu-vcard38-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.rabu-vcard38-contact {
  position: relative;
  display: grid;
  min-height: 94px;
  align-items: center;
  justify-items: center;
  margin-top: 24px;
  padding: 26px 14px 12px;
  border: 1px solid var(--architect-ink);
  border-radius: 20px;
  background: var(--architect-card);
  color: var(--architect-ink);
  text-align: center;
  text-decoration: none;
}

.rabu-vcard38-contact span {
  position: absolute;
  top: -24px;
  display: inline-flex;
  width: 48px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 12px 12px 18px 18px;
  background: var(--architect-accent);
  color: #fff;
}

.rabu-vcard38-contact strong {
  overflow-wrap: anywhere;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.45;
}

.rabu-vcard38-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 20px;
  background: var(--architect-accent);
  text-align: left;
}

.rabu-vcard38-form label {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.rabu-vcard38-form input,
.rabu-vcard38-form select {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  background: color-mix(in srgb, var(--architect-accent) 76%, #000);
  color: #fff;
  padding: 12px 16px;
  font-size: 0.95rem;
}

.rabu-vcard38-form select option {
  color: #111;
}

.rabu-vcard38-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.rabu-vcard38-slot {
  min-height: 42px;
  border: 1px solid #fff;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  font-weight: 700;
}

.rabu-vcard38-slot.is-active,
.rabu-vcard38-slot:hover:not(:disabled) {
  background: #fff;
  color: var(--architect-accent);
}

.rabu-vcard38-slot.is-unavailable {
  opacity: 0.45;
}

.rabu-vcard38-help {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.rabu-vcard38-cards {
  display: grid;
  gap: 16px;
}

.rabu-vcard38-cards article {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: solid var(--architect-accent);
  border-width: 1px 1px 4px;
  border-radius: 20px;
  background: var(--architect-card);
  padding: 10px;
  text-align: left;
}

.rabu-vcard38-media {
  display: flex;
  min-height: 124px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--architect-accent);
  border-radius: 20px;
  background: #fff;
  color: var(--architect-accent);
  font-size: 2.1rem;
}

.rabu-vcard38-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rabu-vcard38-cards h3 {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--architect-accent);
  font-size: 1.18rem;
  font-weight: 700;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.rabu-vcard38-cards p {
  margin: 0 0 8px;
  color: var(--architect-muted);
  font-weight: 500;
}

.rabu-vcard38-cards strong,
.rabu-vcard38-cards a {
  color: var(--architect-accent);
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
}

.rabu-vcard38-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rabu-vcard38-gallery article {
  overflow: hidden;
  border: 2px solid var(--architect-accent);
  border-radius: 30px;
  background: var(--architect-card);
}

.rabu-vcard38-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.rabu-vcard38-gallery small {
  display: block;
  padding: 10px;
  color: var(--architect-ink);
  font-weight: 600;
  text-align: center;
}

.rabu-vcard38-hours,
.rabu-vcard38-reviews {
  display: grid;
  gap: 12px;
}

.rabu-vcard38-hours {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rabu-vcard38-hours div,
.rabu-vcard38-reviews article {
  border: solid var(--architect-accent);
  border-width: 1px 1px 4px;
  border-radius: 15px;
  background: var(--architect-card);
}

.rabu-vcard38-hours div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 13px;
}

.rabu-vcard38-hours strong,
.rabu-vcard38-reviews strong {
  color: var(--architect-ink);
  font-weight: 700;
}

.rabu-vcard38-hours span {
  color: var(--architect-muted);
  font-weight: 700;
  text-align: right;
}

.rabu-vcard38-reviews article {
  padding: 16px;
}

.rabu-vcard38-reviews div {
  margin: 6px 0;
  color: #c2bdb7;
}

.rabu-vcard38-reviews .is-on {
  color: #f8c451;
}

.rabu-vcard38-reviews p,
.rabu-vcard38-empty {
  margin: 0;
  color: var(--architect-muted);
  line-height: 1.6;
}

.rabu-vcard38-empty {
  text-align: center;
  font-weight: 600;
}

.rabu-vcard38-footer {
  padding: 34px 20px 28px;
  color: var(--architect-muted);
  font-size: 0.86rem;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 575px) {
  .rabu-vcard38-shell {
    border-radius: 0;
  }

  .rabu-vcard38-profile {
    padding: 50px 20px 30px;
  }

  .rabu-vcard38-topline {
    left: 20px;
    width: calc(100% - 40px);
  }

  .rabu-vcard38-avatar {
    width: 112px;
    height: 112px;
  }

  .rabu-vcard38-actions,
  .rabu-vcard38-contact-grid,
  .rabu-vcard38-hours,
  .rabu-vcard38-gallery {
    grid-template-columns: 1fr;
  }

  .rabu-vcard38-section {
    padding: 30px 20px 0;
  }

  .rabu-vcard38-cards article {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .rabu-vcard38-media {
    min-height: 164px;
  }

  .rabu-vcard38-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
